Convert site to Hugo (#8316)

This commit converts content and layout to use Hugo.
This commit is contained in:
Bjørn Erik Pedersen
2018-05-05 18:00:51 +02:00
committed by k8s-ci-robot
parent 7745f0e0c5
commit 7f3b633aa0
2327 changed files with 10928 additions and 171503 deletions
@@ -0,0 +1,115 @@
---
title: Overview
linkTitle: Try Our Interactive Tutorials
---
<!DOCTYPE html>
<html lang="en">
<body>
<link href="./public/css/styles.css" rel="stylesheet">
<div class="layout" id="top">
<main class="content">
<div class="row">
<div class="col-md-9">
<h2>Kubernetes Basics</h2>
<p>This tutorial provides a walkthrough of the basics of the Kubernetes cluster orchestration system. Each module contains some background information on major Kubernetes features and concepts, and includes an interactive online tutorial. These interactive tutorials let you manage a simple cluster and its <a href="/docs/concepts/overview/what-is-kubernetes/#why-containers">containerized applications</a> for yourself.</p>
<p>Using the interactive tutorials, you can learn to:</p>
<ul>
<li>Deploy a containerized application on a cluster</li>
<li>Scale the deployment</li>
<li>Update the containerized application with a new software version</li>
<li>Debug the containerized application</li>
</ul>
<p>The tutorials use Katacoda to run a virtual terminal in your web browser that runs Minikube, a small-scale local deployment of Kubernetes that can run anywhere. There's no need to install any software or configure anything; each interactive tutorial runs directly out of your web browser itself.</p>
</div>
</div>
<br>
<div class="row">
<div class="col-md-9">
<h2>What can Kubernetes do for you?</h2>
<p>With modern web services, users expect applications to be available 24/7, and developers expect to deploy new versions of those applications several times a day. Containerization helps package software to serve these goals, enabling applications to be released and updated in an easy and fast way without downtime. Kubernetes helps you make sure those containerized applications run where and when you want, and helps them find the resources and tools they need to work. <a href="/docs/concepts/overview/what-is-kubernetes/">Kubernetes</a> is a production-ready, open source platform designed with Google's accumulated experience in container orchestration, combined with best-of-breed ideas from the community.</p>
</div>
</div>
<div id="basics-modules" class="content__modules">
<h2>Kubernetes Basics Modules</h2>
<div class="row">
<div class="col-md-12">
<div class="row">
<div class="col-md-4">
<div class="thumbnail">
<a href="/docs/tutorials/kubernetes-basics/cluster-intro/"><img src="./public/images/module_01.svg?v=1469803628347" alt=""></a>
<div class="caption">
<a href="cluster-intro/"><h5>1. Create a Kubernetes cluster</h5></a>
</div>
</div>
</div>
<div class="col-md-4">
<div class="thumbnail">
<a href="/docs/tutorials/kubernetes-basics/deploy-intro/"><img src="./public/images/module_02.svg?v=1469803628347" alt=""></a>
<div class="caption">
<a href="deploy-intro/"><h5>2. Deploy an app</h5></a>
</div>
</div>
</div>
<div class="col-md-4">
<div class="thumbnail">
<a href="/docs/tutorials/kubernetes-basics/explore-intro/"><img src="./public/images/module_03.svg?v=1469803628347" alt=""></a>
<div class="caption">
<a href="explore-intro/"><h5>3. Explore your app</h5></a>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-12">
<div class="row">
<div class="col-md-4">
<div class="thumbnail">
<a href="/docs/tutorials/kubernetes-basics/expose-intro/"><img src="./public/images/module_04.svg?v=1469803628347" alt=""></a>
<div class="caption">
<a href="expose-intro/"><h5>4. Expose your app publicly</h5></a>
</div>
</div>
</div>
<div class="col-md-4">
<div class="thumbnail">
<a href="/docs/tutorials/kubernetes-basics/scale-intro/"><img src="./public/images/module_05.svg?v=1469803628347" alt=""></a>
<div class="caption">
<a href="scale-intro/"><h5>5. Scale up your app</h5></a>
</div>
</div>
</div>
<div class="col-md-4">
<div class="thumbnail">
<a href="/docs/tutorials/kubernetes-basics/update-intro/"><img src="./public/images/module_06.svg?v=1469803628347" alt=""></a>
<div class="caption">
<a href="update-intro/"><h5>6. Update your app</h5></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<a class="btn btn-lg btn-success" href="/docs/tutorials/kubernetes-basics/cluster-intro/" role="button">Start the tutorial<span class="btn__next"></span></a>
</div>
</div>
</main>
</div>
</body>
</html>
@@ -0,0 +1,36 @@
---
title: Interactive Tutorial - Creating a Cluster
---
<!DOCTYPE html>
<html lang="en">
<body>
<link href="/docs/tutorials/kubernetes-basics/public/css/styles.css" rel="stylesheet">
<link href="/docs/tutorials/kubernetes-basics/public/css/overrides.css" rel="stylesheet">
<script src="https://katacoda.com/embed.js"></script>
<div class="layout" id="top">
<main class="content katacoda-content">
<div class="katacoda">
<div class="katacoda__alert">
To interact with the Terminal, please use the desktop/tablet version
</div>
<div class="katacoda__box" id="inline-terminal-1" data-katacoda-id="kubernetes-bootcamp/1" data-katacoda-color="326de6" data-katacoda-secondary="273d6d" data-katacoda-hideintro="false" data-katacoda-font="Roboto" data-katacoda-fontheader="Roboto Slab" data-katacoda-prompt="Kubernetes Bootcamp Terminal" style="height: 600px;"></div>
</div>
<div class="row">
<div class="col-md-12">
<a class="btn btn-lg btn-success" href="/docs/tutorials/kubernetes-basics/deploy-intro/" role="button">Continue to Module 2<span class="btn__next"></span></a>
</div>
</div>
</main>
</div>
</body>
</html>
@@ -0,0 +1,107 @@
---
title: Using Minikube to Create a Cluster
---
<!DOCTYPE html>
<html lang="en">
<body>
<link href="/docs/tutorials/kubernetes-basics/public/css/styles.css" rel="stylesheet">
<div class="layout" id="top">
<main class="content">
<div class="row">
<div class="col-md-8">
<h3>Objectives</h3>
<ul>
<li>Learn what a Kubernetes cluster is.</li>
<li>Learn what Minikube is.</li>
<li>Start a Kubernetes cluster using an online terminal.</li>
</ul>
</div>
<div class="col-md-8">
<h3>Kubernetes Clusters</h3>
<p>
<b>Kubernetes coordinates a highly available cluster of computers that are connected to work as a single unit.</b> The abstractions in Kubernetes allow you to deploy containerized applications to a cluster without tying them specifically to individual machines. To make use of this new model of deployment, applications need to be packaged in a way that decouples them from individual hosts: they need to be containerized. Containerized applications are more flexible and available than in past deployment models, where applications were installed directly onto specific machines as packages deeply integrated into the host. <b>Kubernetes automates the distribution and scheduling of application containers across a cluster in a more efficient way.</b> Kubernetes is an <a href="https://github.com/kubernetes/kubernetes">open-source</a> platform and is production-ready.
</p>
<p>A Kubernetes cluster consists of two types of resources:
<ul>
<li>The <b>Master</b> coordinates the cluster</li>
<li><b>Nodes</b> are the workers that run applications</li>
</ul>
</p>
</div>
<div class="col-md-4">
<div class="content__box content__box_lined">
<h3>Summary:</h3>
<ul>
<li>Kubernetes cluster</li>
<li>Minikube</li>
</ul>
</div>
<div class="content__box content__box_fill">
<p><i>
Kubernetes is a production-grade, open-source platform that orchestrates the placement (scheduling) and execution of application containers within and across computer clusters.
</i></p>
</div>
</div>
</div>
<br>
<div class="row">
<div class="col-md-8">
<h2 style="color: #3771e3;">Cluster Diagram</h2>
</div>
</div>
<div class="row">
<div class="col-md-8">
<p><img src="/docs/tutorials/kubernetes-basics/public/images/module_01_cluster.svg"></p>
</div>
</div>
<br>
<div class="row">
<div class="col-md-8">
<p><b>The Master is responsible for managing the cluster.</b> The master coordinates all activities in your cluster, such as scheduling applications, maintaining applications' desired state, scaling applications, and rolling out new updates.</p>
<p><b>A node is a VM or a physical computer that serves as a worker machine in a Kubernetes cluster.</b> Each node has a Kubelet, which is an agent for managing the node and communicating with the Kubernetes master. The node should also have tools for handling container operations, such as <a href="https://www.docker.com/">Docker</a> or <a href="https://coreos.com/rkt/">rkt</a>. A Kubernetes cluster that handles production traffic should have a minimum of three nodes.</p>
</div>
<div class="col-md-4">
<div class="content__box content__box_fill">
<p><i> Masters manage the cluster and the nodes are used to host the running applications. </i></p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-8">
<p>When you deploy applications on Kubernetes, you tell the master to start the application containers. The master schedules the containers to run on the cluster's nodes. <b>The nodes communicate with the master using the Kubernetes API</b>, which the master exposes. End users can also use the Kubernetes API directly to interact with the cluster.</p>
<p>A Kubernetes cluster can be deployed on either physical or virtual machines. To get started with Kubernetes development, you can use <a href="https://github.com/kubernetes/minikube">Minikube</a>. Minikube is a lightweight Kubernetes implementation that creates a VM on your local machine and deploys a simple cluster containing only one node. Minikube is available for Linux, macOS, and Windows systems. The Minikube CLI provides basic bootstrapping operations for working with your cluster, including start, stop, status, and delete. For this tutorial, however, you'll use a provided online terminal with Minikube pre-installed.</p>
<p>Now that you know what Kubernetes is, let's go to the online tutorial and start our first cluster!</p>
</div>
</div>
<br>
<div class="row">
<div class="col-md-12">
<a class="btn btn-lg btn-success" href="/docs/tutorials/kubernetes-basics/cluster-interactive/" role="button">Start Interactive Tutorial <span class="btn__next"></span></a>
</div>
</div>
</main>
</div>
</body>
</html>
@@ -0,0 +1,40 @@
---
title: Interactive Tutorial - Deploying an App
---
<!DOCTYPE html>
<html lang="en">
<body>
<link href="/docs/tutorials/kubernetes-basics/public/css/styles.css" rel="stylesheet">
<link href="/docs/tutorials/kubernetes-basics/public/css/overrides.css" rel="stylesheet">
<script src="https://katacoda.com/embed.js"></script>
<div class="layout" id="top">
<main class="content katacoda-content">
<br>
<div class="katacoda">
<div class="katacoda__alert">
To interact with the Terminal, please use the desktop/tablet version
</div>
<div class="katacoda__box" id="inline-terminal-1" data-katacoda-id="kubernetes-bootcamp/7" data-katacoda-color="326de6" data-katacoda-secondary="273d6d" data-katacoda-hideintro="false" data-katacoda-font="Roboto" data-katacoda-fontheader="Roboto Slab" data-katacoda-prompt="Kubernetes Bootcamp Terminal" style="height: 600px;">
</div>
</div>
<div class="row">
<div class="col-md-12">
<a class="btn btn-lg btn-success" href="/docs/tutorials/kubernetes-basics/explore-intro/" role="button">Continue to Module 3<span class="btn__next"></span></a>
</div>
</div>
</main>
</div>
</body>
</html>
@@ -0,0 +1,111 @@
---
title: Using kubectl to Create a Deployment
---
<!DOCTYPE html>
<html lang="en">
<body>
<link href="/docs/tutorials/kubernetes-basics/public/css/styles.css" rel="stylesheet">
<div class="layout" id="top">
<main class="content">
<div class="row">
<div class="col-md-8">
<h3>Objectives</h3>
<ul>
<li>Learn about application Deployments.</li>
<li>Deploy your first app on Kubernetes with kubectl.</li>
</ul>
</div>
<div class="col-md-8">
<h3>Kubernetes Deployments</h3>
<p>
Once you have a running Kubernetes cluster, you can deploy your containerized applications on top of it.
To do so, you create a Kubernetes <b>Deployment</b> configuration. The Deployment instructs Kubernetes
how to create and update instances of your application. Once you've created a Deployment, the Kubernetes
master schedules mentioned application instances onto individual Nodes in the cluster.
</p>
<p>Once the application instances are created, a Kubernetes Deployment Controller continuously monitors those instances. If the Node hosting an instance goes down or is deleted, the Deployment controller replaces it. <b>This provides a self-healing mechanism to address machine failure or maintenance.</b></p>
<p>In a pre-orchestration world, installation scripts would often be used to start applications, but they did not allow recovery from machine failure. By both creating your application instances and keeping them running across Nodes, Kubernetes Deployments provide a fundamentally different approach to application management. </p>
</div>
<div class="col-md-4">
<div class="content__box content__box_lined">
<h3>Summary:</h3>
<ul>
<li>Deployments</li>
<li>Kubectl</li>
</ul>
</div>
<div class="content__box content__box_fill">
<p><i>
A Deployment is responsible for creating and updating instances of your application
</i></p>
</div>
</div>
</div>
<br>
<div class="row">
<div class="col-md-8">
<h2 style="color: #3771e3;">Deploying your first app on Kubernetes</h2>
</div>
</div>
<div class="row">
<div class="col-md-8">
<p><img src="/docs/tutorials/kubernetes-basics/public/images/module_02_first_app.svg"></p>
</div>
</div>
<br>
<div class="row">
<div class="col-md-8">
<p>You can create and manage a Deployment by using the Kubernetes command line interface, <b>Kubectl</b>. Kubectl uses the Kubernetes API to interact with the cluster. In this module, you'll learn the most common Kubectl commands needed to create Deployments that run your applications on a Kubernetes cluster.</p>
<p>When you create a Deployment, you'll need to specify the container image for your application and the number of replicas that you want to run. You can change that information later by updating your Deployment; Modules <a href="/docs/tutorials/kubernetes-basics/scale-intro/">5</a> and <a href="/docs/tutorials/kubernetes-basics/update-intro/">6</a> of the bootcamp discuss how you can scale and update your Deployments.</p>
</div>
<div class="col-md-4">
<div class="content__box content__box_fill">
<p><i> Applications need to be packaged into one of the supported container formats in order to be deployed on Kubernetes </i></p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-8">
<p>For our first Deployment, we'll use a <a href="https://nodejs.org">Node.js</a> application packaged in a Docker container. The source code and the Dockerfile are available in the <a href="https://github.com/kubernetes/website/tree/master/docs/tutorials/kubernetes-basics">GitHub repository</a> for the Kubernetes Basics.</p>
<p>Now that you know what Deployments are, let's go to the online tutorial and deploy our first app!</p>
</div>
</div>
<br>
<div class="row">
<div class="col-md-12">
<a class="btn btn-lg btn-success" href="/docs/tutorials/kubernetes-basics/deploy-interactive/" role="button">Start Interactive Tutorial <span class="btn__next"></span></a>
</div>
</div>
</main>
</div>
</body>
</html>
@@ -0,0 +1,40 @@
---
title: Interactive Tutorial - Exploring Your App
---
<!DOCTYPE html>
<html lang="en">
<body>
<link href="/docs/tutorials/kubernetes-basics/public/css/styles.css" rel="stylesheet">
<link href="/docs/tutorials/kubernetes-basics/public/css/overrides.css" rel="stylesheet">
<script src="https://katacoda.com/embed.js"></script>
<div class="layout" id="top">
<main class="content katacoda-content">
<br>
<div class="katacoda">
<div class="katacoda__alert">
To interact with the Terminal, please use the desktop/tablet version
</div>
<div class="katacoda__box" id="inline-terminal-1" data-katacoda-id="kubernetes-bootcamp/4" data-katacoda-color="326de6" data-katacoda-secondary="273d6d" data-katacoda-hideintro="false" data-katacoda-font="Roboto" data-katacoda-fontheader="Roboto Slab" data-katacoda-prompt="Kubernetes Bootcamp Terminal" style="height: 600px;">
</div>
</div>
<div class="row">
<div class="col-md-12">
<a class="btn btn-lg btn-success" href="/docs/tutorials/kubernetes-basics/expose-intro/" role="button">Continue to Module 4<span class="btn__next"></span></a>
</div>
</div>
</main>
</div>
</body>
</html>
@@ -0,0 +1,142 @@
---
title: Viewing Pods and Nodes
---
<!DOCTYPE html>
<html lang="en">
<body>
<link href="/docs/tutorials/kubernetes-basics/public/css/styles.css" rel="stylesheet">
<div class="layout" id="top">
<main class="content">
<div class="row">
<div class="col-md-8">
<h3>Objectives</h3>
<ul>
<li>Learn about Kubernetes Pods.</li>
<li>Learn about Kubernetes Nodes.</li>
<li>Troubleshoot deployed applications.</li>
</ul>
</div>
<div class="col-md-8">
<h2>Kubernetes Pods</h2>
<p>When you created a Deployment in Module <a href="/docs/tutorials/kubernetes-basics/deploy-intro/">2</a>, Kubernetes created a <b>Pod</b> to host your application instance. A Pod is a Kubernetes abstraction that represents a group of one or more application containers (such as Docker or rkt), and some shared resources for those containers. Those resources include:</p>
<ul>
<li>Shared storage, as Volumes</li>
<li>Networking, as a unique cluster IP address</li>
<li>Information about how to run each container, such as the container image version or specific ports to use</li>
</ul>
<p>A Pod models an application-specific "logical host" and can contain different application containers which are relatively tightly coupled. For example, a Pod might include both the container with your Node.js app as well as a different container that feeds the data to be published by the Node.js webserver. The containers in a Pod share an IP Address and port space, are always co-located and co-scheduled, and run in a shared context on the same Node.</p>
<p>Pods are the atomic unit on the Kubernetes platform. When we create a Deployment on Kubernetes, that Deployment creates Pods with containers inside them (as opposed to creating containers directly). Each Pod is tied to the Node where it is scheduled, and remains there until termination (according to restart policy) or deletion. In case of a Node failure, identical Pods are scheduled on other available Nodes in the cluster.</p>
</div>
<div class="col-md-4">
<div class="content__box content__box_lined">
<h3>Summary:</h3>
<ul>
<li>Pods</li>
<li>Nodes</li>
<li>Kubectl main commands</li>
</ul>
</div>
<div class="content__box content__box_fill">
<p><i>
A Pod is a group of one or more application containers (such as Docker or rkt) and includes shared storage (volumes), IP address and information about how to run them.
</i></p>
</div>
</div>
</div>
<br>
<div class="row">
<div class="col-md-8">
<h2 style="color: #3771e3;">Pods overview</h2>
</div>
</div>
<div class="row">
<div class="col-md-8">
<p><img src="/docs/tutorials/kubernetes-basics/public/images/module_03_pods.svg"></p>
</div>
</div>
<br>
<div class="row">
<div class="col-md-8">
<h2>Nodes</h2>
<p>A Pod always runs on a <b>Node</b>. A Node is a worker machine in Kubernetes and may be either a virtual or a physical machine, depending on the cluster. Each Node is managed by the Master. A Node can have multiple pods, and the Kubernetes master automatically handles scheduling the pods across the Nodes in the cluster. The Master's automatic scheduling takes into account the available resources on each Node.</p>
<p>Every Kubernetes Node runs at least:</p>
<ul>
<li>Kubelet, a process responsible for communication between the Kubernetes Master and the Node; it manages the Pods and the containers running on a machine.</li>
<li>A container runtime (like Docker, rkt) responsible for pulling the container image from a registry, unpacking the container, and running the application.</li>
</ul>
</div>
<div class="col-md-4">
<div class="content__box content__box_fill">
<p><i> Containers should only be scheduled together in a single Pod if they are tightly coupled and need to share resources such as disk. </i></p>
</div>
</div>
</div>
<br>
<div class="row">
<div class="col-md-8">
<h2 style="color: #3771e3;">Node overview</h2>
</div>
</div>
<div class="row">
<div class="col-md-8">
<p><img src="/docs/tutorials/kubernetes-basics/public/images/module_03_nodes.svg"></p>
</div>
</div>
<br>
<div class="row">
<div class="col-md-8">
<h2>Troubleshooting with kubectl</h2>
<p>In Module <a href="/docs/tutorials/kubernetes-basics/deploy-intro/">2</a>, you used Kubectl command-line interface. You'll continue to use it in Module 3 to get information about deployed applications and their environments. The most common operations can be done with the following kubectl commands:</p>
<ul>
<li><b>kubectl get</b> - list resources</li>
<li><b>kubectl describe</b> - show detailed information about a resource</li>
<li><b>kubectl logs</b> - print the logs from a container in a pod</li>
<li><b>kubectl exec</b> - execute a command on a container in a pod</li>
</ul>
<p>You can use these commands to see when applications were deployed, what their current statuses are, where they are running and what their configurations are.</p>
<p>Now that we know more about our cluster components and the command line, let's explore our application.</p>
</div>
<div class="col-md-4">
<div class="content__box content__box_fill">
<p><i> A node is a worker machine in Kubernetes and may be a VM or physical machine, depending on the cluster. Multiple Pods can run on one Node. </i></p>
</div>
</div>
</div>
<br>
<div class="row">
<div class="col-md-12">
<a class="btn btn-lg btn-success" href="/docs/tutorials/kubernetes-basics/explore-interactive/" role="button">Start Interactive Tutorial <span class="btn__next"></span></a>
</div>
</div>
</main>
</div>
</body>
</html>
@@ -0,0 +1,37 @@
---
title: Interactive Tutorial - Exposing Your App
---
<!DOCTYPE html>
<html lang="en">
<body>
<link href="/docs/tutorials/kubernetes-basics/public/css/styles.css" rel="stylesheet">
<link href="/docs/tutorials/kubernetes-basics/public/css/overrides.css" rel="stylesheet">
<script src="https://katacoda.com/embed.js"></script>
<div class="layout" id="top">
<main class="content katacoda-content">
<div class="katacoda">
<div class="katacoda__alert">
To interact with the Terminal, please use the desktop/tablet version
</div>
<div class="katacoda__box" id="inline-terminal-1" data-katacoda-id="kubernetes-bootcamp/8" data-katacoda-color="326de6" data-katacoda-secondary="273d6d" data-katacoda-hideintro="false" data-katacoda-font="Roboto" data-katacoda-fontheader="Roboto Slab" data-katacoda-prompt="Kubernetes Bootcamp Terminal" style="height: 600px;">
</div>
</div>
<div class="row">
<div class="col-md-12">
<a class="btn btn-lg btn-success" href="/docs/tutorials/kubernetes-basics/scale-intro/" role="button">Continue to Module 5<span class="btn__next"></span></a>
</div>
</div>
</main>
</div>
</body>
</html>
@@ -0,0 +1,113 @@
---
title: Using a Service to Expose Your App
---
<!DOCTYPE html>
<html lang="en">
<body>
<link href="/docs/tutorials/kubernetes-basics/public/css/styles.css" rel="stylesheet">
<div class="layout" id="top">
<main class="content">
<div class="row">
<div class="col-md-8">
<h3>Objectives</h3>
<ul>
<li>Learn about a Service in Kubernetes</li>
<li>Understand how labels and LabelSelector objects relate to a Service</li>
<li>Expose an application outside a Kubernetes cluster using a Service</li>
</ul>
</div>
<div class="col-md-8">
<h3>Overview of Kubernetes Services</h3>
<p>Kubernetes <a href="/docs/concepts/workloads/pods/pod-overview/">Pods</a> are mortal. Pods in fact have a <a href="/docs/concepts/workloads/pods/pod-lifecycle/">lifecycle</a>. When a worker node dies, the Pods running on the Node are also lost. A <a href="/docs/user-guide/replication-controller/#what-is-a-replicationcontroller">ReplicationController</a> might then dynamically drive the cluster back to desired state via creation of new Pods to keep your application running. As another example, consider an image-processing backend with 3 replicas. Those replicas are fungible; the front-end system should not care about backend replicas or even if a Pod is lost and recreated. That said, each Pod in a Kubernetes cluster has a unique IP address, even Pods on the same Node, so there needs to be a way of automatically reconciling changes among Pods so that your applications continue to function.</p>
<p>A Service in Kubernetes is an abstraction which defines a logical set of Pods and a policy by which to access them. Services enable a loose coupling between dependent Pods. A Service is defined using YAML <a href="/docs/concepts/configuration/overview/#general-config-tips">(preferred)</a> or JSON, like all Kubernetes objects. The set of Pods targeted by a Service is usually determined by a <i>LabelSelector</i> (see below for why you might want a Service without including <code>selector</code> in the spec).</p>
<p>Although each Pod has a unique IP address, those IPs are not exposed outside the cluster without a Service. Services allow your applications to receive traffic. Services can be exposed in different ways by specifying a <code>type</code> in the ServiceSpec:</p>
<ul>
<li><i>ClusterIP</i> (default) - Exposes the Service on an internal IP in the cluster. This type makes the Service only reachable from within the cluster.</li>
<li><i>NodePort</i> - Exposes the Service on the same port of each selected Node in the cluster using NAT. Makes a Service accessible from outside the cluster using <code>&lt;NodeIP&gt;:&lt;NodePort&gt;</code>. Superset of ClusterIP.</li>
<li><i>LoadBalancer</i> - Creates an external load balancer in the current cloud (if supported) and assigns a fixed, external IP to the Service. Superset of NodePort.</li>
<li><i>ExternalName</i> - Exposes the Service using an arbitrary name (specified by <code>externalName</code> in the spec) by returning a CNAME record with the name. No proxy is used. This type requires v1.7 or higher of <code>kube-dns</code>.</li>
</ul>
<p>More information about the different types of Services can be found in the <a href="/docs/tutorials/services/source-ip/">Using Source IP</a> tutorial. Also see <a href="/docs/concepts/services-networking/connect-applications-service">Connecting Applications with Services</a>.</p>
<p>Additionally, note that there are some use cases with Services that involve not defining <code>selector</code> in the spec. A Service created without <code>selector</code> will also not create the corresponding Endpoints object. This allows users to manually map a Service to specific endpoints. Another possibility why there may be no selector is you are strictly using <code>type: ExternalName</code>.</p>
</div>
<div class="col-md-4">
<div class="content__box content__box_lined">
<h3>Summary</h3>
<ul>
<li>Exposing Pods to external traffic</li>
<li>Load balancing traffic across multiple Pods</li>
<li>Using labels</li>
</ul>
</div>
<div class="content__box content__box_fill">
<p><i>A Kubernetes Service is an abstraction layer which defines a logical set of Pods and enables external traffic exposure, load balancing and service discovery for those Pods.</i></p>
</div>
</div>
</div>
<br>
<div class="row">
<div class="col-md-8">
<h3>Services and Labels</h3>
</div>
</div>
<div class="row">
<div class="col-md-8">
<p><img src="/docs/tutorials/kubernetes-basics/public/images/module_04_services.svg" width="150%" height="150%"></p>
</div>
</div>
<div class="row">
<div class="col-md-8">
<p>A Service routes traffic across a set of Pods. Services are the abstraction that allow pods to die and replicate in Kubernetes without impacting your application. Discovery and routing among dependent Pods (such as the frontend and backend components in an application) is handled by Kubernetes Services.</p>
<p>Services match a set of Pods using <a href="/docs/concepts/overview/working-with-objects/labels">labels and selectors</a>, a grouping primitive that allows logical operation on objects in Kubernetes. Labels are key/value pairs attached to objects and can be used in any number of ways:</p>
<ul>
<li>Designate objects for development, test, and production</li>
<li>Embed version tags</li>
<li>Classify an object using tags</li>
</ul>
</div>
<div class="col-md-4">
<div class="content__box content__box_fill">
<p><i>You can create a Service at the same time you create a Deployment by using<br><code>--expose</code> in kubectl.</i></p>
</div>
</div>
</div>
<br>
<div class="row">
<div class="col-md-8">
<p><img src="/docs/tutorials/kubernetes-basics/public/images/module_04_labels.svg"></p>
</div>
</div>
<br>
<div class="row">
<div class="col-md-8">
<p>Labels can be attached to objects at creation time or later on. They can be modified at any time. Let's expose our application now using a Service and apply some labels.</p>
</div>
</div>
<br>
<div class="row">
<div class="col-md-12">
<a class="btn btn-lg btn-success" href="/docs/tutorials/kubernetes-basics/expose-interactive/" role="button">Start Interactive Tutorial<span class="btn__next"></span></a>
</div>
</div>
</main>
</div>
</body>
</html>
@@ -0,0 +1,27 @@
#docsToc .push-menu-close-button,
#docs .flyout-button {
display: block;
}
#docsToc {
position: fixed;
background-color: #fff;
top: 0;
left: 0;
width: 0;
padding: 0;
overflow: hidden;
z-index: 999999;
transition: 0.3s;
}
.open-toc #docsToc {
padding: 50px 20px;
width: 400px;
max-width: 100vw;
overflow-y: auto;
}
#docsContent {
width: 100%;
}
File diff suppressed because it is too large Load Diff
File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.4 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.4 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.4 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.4 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.4 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.3 KiB

@@ -0,0 +1 @@
<svg id="Graphics" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300"><defs><style>.cls-1,.cls-4{fill:#326de6}.cls-2,.cls-3{fill:#fff;stroke-miterlimit:10}.cls-2{stroke:#326de6;stroke-width:1.91px}.cls-3{stroke:#06f7c9;stroke-width:3px}.cls-4{opacity:.08}</style></defs><title>16.07.28_K8S_badge</title><path class="cls-1" d="M114.41 248.61l-15.46-25.8-30.21 3.72 57.48-118.88 45.67 22.08-57.48 118.88z"/><path class="cls-1" d="M185.59 248.61l16.1-26.23 29.57 4.15-57.48-118.88-45.67 22.08 57.48 118.88z"/><path class="cls-2" d="M151.86 51.93l55.48 32a4 4 0 0 1 2 3.49v64.08a4 4 0 0 1-2 3.49l-55.48 32a4 4 0 0 1-4 0L92.36 155a4 4 0 0 1-2-3.49V87.45a4 4 0 0 1 2-3.49l55.48-32a4 4 0 0 1 4.02-.03z"/><path class="cls-3" d="M149.85 184.56a1 1 0 0 1-.51-.14l-55.48-32a1 1 0 0 1-.51-.89V87.45a1 1 0 0 1 .51-.89l55.48-32a1 1 0 0 1 1 0l55.48 32a1 1 0 0 1 .51.89v64.06a1 1 0 0 1-.51.89l-55.48 32a1 1 0 0 1-.49.16z"/><path class="cls-4" d="M156.79 66.47l42.89 24.76a4 4 0 0 1 2 3.49v49.52a4 4 0 0 1-2 3.49l-42.89 24.76a4 4 0 0 1-4 0v-106a4 4 0 0 1 4-.02z"/><path class="cls-1" d="M163.15 109.57L151.7 103a.67.67 0 0 1-.34-.58V89.16a.67.67 0 0 1 .34-.58L163.15 82a.67.67 0 0 1 .67 0l11.45 6.61a.67.67 0 0 1 .34.58v13.22a.67.67 0 0 1-.34.58l-11.45 6.61a.67.67 0 0 1-.67-.03zM135.61 125.89l-12.12 7-12.12-7V111.9l12.12-7 12.12 7v13.99zM137 109.76l-12.12-7v-14l12.12-7 11.78 6.8a.67.67 0 0 1 .34.58v13.22a.67.67 0 0 1-.34.58zM136.82 156l-12.12-7v-14l12.12-7 11.78 6.8a.67.67 0 0 1 .34.58v13.22a.67.67 0 0 1-.34.58zM163.29 155.82l-11.45-6.61a.67.67 0 0 1-.34-.58v-13.22a.67.67 0 0 1 .34-.58l11.45-6.61a.67.67 0 0 1 .67 0l11.45 6.61a.67.67 0 0 1 .34.58v13.22a.67.67 0 0 1-.34.58L164 155.82a.67.67 0 0 1-.71 0zM188.74 126.08l-11.45 6.61a.67.67 0 0 1-.67 0l-11.45-6.61a.67.67 0 0 1-.34-.58v-13.22a.67.67 0 0 1 .34-.58l11.45-6.61a.67.67 0 0 1 .67 0l11.45 6.61a.67.67 0 0 1 .34.58v13.22a.67.67 0 0 1-.34.58zM150.96 119.57h-1.58M158.99 121.34l-1.04-4.55-.7-3.06-4.19-2.01-2.84-1.37-7.01 3.37-.02.01-.86 3.8-.67 2.95-.2.86 2.05 2.57.37.47 2.44 3.06h7.8l1.84-2.31.59-.74 2.44-3.05z"/></svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.4 KiB

@@ -0,0 +1 @@
<svg id="Graphics" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300"><defs><style>.cls-1,.cls-4{fill:#326de6}.cls-2,.cls-3{fill:#fff;stroke-miterlimit:10}.cls-2{stroke:#326de6;stroke-width:1.91px}.cls-3{stroke:#06f7c9;stroke-width:3px}.cls-4{opacity:.08}</style></defs><title>16.07.28_K8S_badge</title><path class="cls-1" d="M114.41 248.61l-15.46-25.8-30.21 3.72 57.48-118.88 45.67 22.08-57.48 118.88z"/><path class="cls-1" d="M185.59 248.61l16.1-26.23 29.57 4.15-57.48-118.88-45.67 22.08 57.48 118.88z"/><path class="cls-2" d="M151.86 51.93l55.48 32a4 4 0 0 1 2 3.49v64.08a4 4 0 0 1-2 3.49l-55.48 32a4 4 0 0 1-4 0L92.36 155a4 4 0 0 1-2-3.49V87.45a4 4 0 0 1 2-3.49l55.48-32a4 4 0 0 1 4.02-.03z"/><path class="cls-3" d="M149.85 184.56a1 1 0 0 1-.51-.14l-55.48-32a1 1 0 0 1-.51-.89V87.45a1 1 0 0 1 .51-.89l55.48-32a1 1 0 0 1 1 0l55.48 32a1 1 0 0 1 .51.89v64.06a1 1 0 0 1-.51.89l-55.48 32a1 1 0 0 1-.49.16z"/><path class="cls-4" d="M156.79 66.47l42.89 24.76a4 4 0 0 1 2 3.49v49.52a4 4 0 0 1-2 3.49l-42.89 24.76a4 4 0 0 1-4 0v-106a4 4 0 0 1 4-.02z"/><path class="cls-1" d="M163.15 109.57L151.7 103a.67.67 0 0 1-.34-.58V89.16a.67.67 0 0 1 .34-.58L163.15 82a.67.67 0 0 1 .67 0l11.45 6.61a.67.67 0 0 1 .34.58v13.22a.67.67 0 0 1-.34.58l-11.45 6.61a.67.67 0 0 1-.67-.03zM135.61 125.89l-12.12 7-12.12-7V111.9l12.12-7 12.12 7v13.99zM137 109.76l-12.12-7v-14l12.12-7 11.78 6.8a.67.67 0 0 1 .34.58v13.22a.67.67 0 0 1-.34.58zM136.82 156l-12.12-7v-14l12.12-7 11.78 6.8a.67.67 0 0 1 .34.58v13.22a.67.67 0 0 1-.34.58zM163.29 155.82l-11.45-6.61a.67.67 0 0 1-.34-.58v-13.22a.67.67 0 0 1 .34-.58l11.45-6.61a.67.67 0 0 1 .67 0l11.45 6.61a.67.67 0 0 1 .34.58v13.22a.67.67 0 0 1-.34.58L164 155.82a.67.67 0 0 1-.71 0zM188.74 126.08l-11.45 6.61a.67.67 0 0 1-.67 0l-11.45-6.61a.67.67 0 0 1-.34-.58v-13.22a.67.67 0 0 1 .34-.58l11.45-6.61a.67.67 0 0 1 .67 0l11.45 6.61a.67.67 0 0 1 .34.58v13.22a.67.67 0 0 1-.34.58zM150.96 119.57h-1.58M158.99 121.34l-1.04-4.55-.7-3.06-4.19-2.01-2.84-1.37-7.01 3.37-.02.01-.86 3.8-.67 2.95-.2.86 2.05 2.57.37.47 2.44 3.06h7.8l1.84-2.31.59-.74 2.44-3.05z"/></svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.2 KiB

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><style>.cls-1{fill:#326de6}.cls-2{fill:none;stroke:#326de6;stroke-linecap:round;stroke-linejoin:round;stroke-width:3px}</style></defs><title>16.07.27_K8S_like_dislike</title><g id="Likes_dislikes"><circle class="cls-1" cx="35.64" cy="43.62" r="2.77" transform="rotate(-76.32 35.639 43.618)"/><path class="cls-2" d="M50.75 79.34a7.07 7.07 0 0 0 5.38-.5l18.24-11a7.07 7.07 0 0 0 3-4.52l2.79-21.1a7.07 7.07 0 0 0-1.69-5.14l-14.79-15.3a7.07 7.07 0 0 0-5.07-1.88l-21.19 2a7.07 7.07 0 0 0-4.63 2.79L21.13 42.45a7.07 7.07 0 0 0-.71 5.36L27.06 68a7.07 7.07 0 0 0 3.75 3.9z"/><path class="cls-2" d="M25 58.13a11 11 0 0 1 10-.33c5.19 2.64 5.65 8.41 5.67 8.67"/></g></svg>

After

Width:  |  Height:  |  Size: 729 B

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><style>.cls-1{fill:#326de6}.cls-2{fill:#fff}</style></defs><title>16.07.27_K8S_like_dislike</title><g id="Likes_dislikes"><path class="cls-1" d="M49.25 79.34a7.07 7.07 0 0 1-5.38-.5l-18.24-11a7.07 7.07 0 0 1-3-4.52l-2.79-21.1a7.07 7.07 0 0 1 1.69-5.14l14.79-15.3a7.07 7.07 0 0 1 5.07-1.88l21.19 2a7.07 7.07 0 0 1 4.63 2.79l11.67 17.8a7.07 7.07 0 0 1 .71 5.36L72.94 68a7.07 7.07 0 0 1-3.75 3.9z"/><path class="cls-2" d="M74.62 62.94a13.21 13.21 0 0 1-3.86.6 11.3 11.3 0 0 1-5.17-1.23c-6-3-6.47-9.64-6.48-9.91a1.5 1.5 0 1 1 3-.18s.39 5.15 4.85 7.42a9.44 9.44 0 0 0 8.56-.29 1.5 1.5 0 0 1 .34-.15"/><circle class="cls-2" cx="65.23" cy="42.52" r="2.77" transform="rotate(-76.32 65.24 42.516)"/></g></svg>

After

Width:  |  Height:  |  Size: 768 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.5 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 350 200"><defs><style>.cls-1{opacity:0.13;}.cls-2{fill:url(#linear-gradient);}.cls-3,.cls-4{fill:#fff;stroke:#326de6;stroke-linecap:round;stroke-linejoin:round;}.cls-3{stroke-width:0.8px;}.cls-4{stroke-width:1.2px;}</style><linearGradient id="linear-gradient" x1="86.51" y1="100" x2="263.49" y2="100" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#326de6"/><stop offset="1" stop-color="#06f7c9"/></linearGradient></defs><title>16.07.28_k8s_visual_diagrams</title><g id="Graphics"><g class="cls-1"><polygon class="cls-2" points="245.97 47.9 263.49 124.69 214.38 186.27 135.62 186.27 86.51 124.69 104.03 47.9 175 13.73 245.97 47.9"/></g><polygon class="cls-3" points="197.46 86.54 176.94 74.69 176.94 51 197.46 39.15 217.98 51 217.98 74.69 197.46 86.54"/><polygon class="cls-3" points="150.26 113.85 129.74 125.69 109.22 113.85 109.22 90.16 129.74 78.31 150.26 90.16 150.26 113.85"/><polygon class="cls-3" points="152.54 86.54 132.02 74.69 132.02 51 152.54 39.15 173.06 51 173.06 74.69 152.54 86.54"/><polygon class="cls-3" points="152.31 164.85 131.79 153 131.79 129.31 152.31 117.46 172.83 129.31 172.83 153 152.31 164.85"/><polygon class="cls-3" points="197.69 164.85 177.17 153 177.17 129.31 197.69 117.46 218.21 129.31 218.21 153 197.69 164.85"/><polygon class="cls-3" points="240.78 113.85 220.26 125.69 199.74 113.85 199.74 90.16 220.26 78.31 240.78 90.16 240.78 113.85"/><line class="cls-4" x1="174.91" y1="101.81" x2="174.91" y2="104.53"/><line class="cls-4" x1="176.27" y1="103.17" x2="173.55" y2="103.17"/><polygon class="cls-4" points="190.13 106.22 188.34 98.37 187.13 93.09 187.13 93.09 187.13 93.09 187.14 93.09 187.13 93.09 187.13 93.09 179.91 89.61 175 87.25 175 87.25 175 87.25 175 87.25 162.89 93.08 162.87 93.09 162.87 93.09 162.87 93.09 162.87 93.09 161.37 99.66 161.37 99.66 161.37 99.66 161.37 99.66 160.21 104.74 159.87 106.22 159.87 106.22 159.87 106.22 159.87 106.22 163.42 110.67 164.05 111.47 164.05 111.47 168.27 116.75 168.27 116.75 168.27 116.75 168.27 116.75 168.27 116.75 175 116.75 175 116.75 181.73 116.75 181.73 116.75 181.73 116.75 181.73 116.75 181.73 116.75 181.73 116.75 184.91 112.77 185.93 111.49 185.93 111.49 190.13 106.22 190.13 106.22 190.13 106.22 190.13 106.22"/></g></svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

@@ -0,0 +1,239 @@
<?xml version="1.0"?>
<svg width="476.1" height="385.3" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<style type="text/css">.st0{fill:#FFFFFF;stroke:#006DE9;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st1{fill:#FFFFFF;stroke:#006DE9;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st2{fill:#FFFFFF;stroke:#326DE6;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st3{opacity:0.71;fill:#326CE6;}
.st4{opacity:0.45;fill:#FFFFFF;}
.st5{fill:#FFFFFF;stroke:#006DE9;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st6{fill:#006DE9;}
.st7{fill:#A0CAEA;}
.st8{fill:#FFFFFF;}
.st9{opacity:0.13;}
.st10{fill:url(#SVGID_1_);}
.st11{fill:url(#SVGID_2_);}
.st12{fill:#FFFFFF;stroke:#326DE6;stroke-width:3.2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st13{fill:#326DE6;}
.st14{fill:none;stroke:#326DE6;stroke-width:2.4;stroke-miterlimit:10;}
.st15{fill:#A0CAE9;}
.st16{fill:#FFFFFF;stroke:#326DE6;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st17{fill:#FFFFFF;stroke:#326DE6;stroke-width:1.6;stroke-miterlimit:10;}
.st18{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;}
.st19{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3749,1.5832;}
.st20{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4006,1.6004;}
.st21{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st22{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st23{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3975,1.5984;}
.st24{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.395,1.5966;}
.st25{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3963,1.5976;}
.st26{opacity:0.1;fill:#EEF406;}
.st27{opacity:2.000000e-02;fill:#EEF406;}
.st28{opacity:0.1;fill:#06F7C9;}
.st29{fill:none;stroke:#006DE9;stroke-width:0.8;stroke-miterlimit:10;}
.st30{opacity:0.1;fill:url(#SVGID_3_);}
.st31{opacity:0.1;fill:url(#SVGID_4_);}
.st32{opacity:0.1;fill:url(#SVGID_5_);}
.st33{opacity:0.1;fill:url(#SVGID_6_);}
.st34{fill:none;stroke:#326DE6;stroke-width:1.2;stroke-miterlimit:10;}
.st35{opacity:0.1;fill:url(#SVGID_7_);}
.st36{opacity:0.1;fill:url(#SVGID_8_);}
.st37{opacity:0.1;fill:url(#SVGID_9_);}
.st38{opacity:0.1;fill:url(#SVGID_10_);}
.st39{fill:none;stroke:#326DE6;stroke-width:2;stroke-miterlimit:10;}
.st40{opacity:0.4;fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st41{fill:none;stroke:#EEF406;stroke-width:2.4596;stroke-miterlimit:10;}
.st42{fill:#011F38;}
.st43{opacity:0.4;}
.st44{opacity:0.1;}
.st45{fill:#326DE6;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st46{fill:none;stroke:#FFFFFF;stroke-width:1.2;stroke-linecap:round;stroke-linejoin:round;}
.st47{fill:#06F7C9;stroke:#FFFFFF;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st48{fill:none;stroke:#011F38;stroke-width:1.2;stroke-linecap:round;stroke-linejoin:round;}
.st49{fill:#326DE6;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;}
.st50{fill:#06F7C9;stroke:#011F38;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st51{fill:#8115FF;stroke:#011F38;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st52{opacity:0.3;}
.st53{opacity:0.2;fill:#6D6E71;}
.st54{fill:#EEF406;}
.st55{fill:#06F7C9;}
.st56{fill:#FFFFFF;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st57{fill:#FFFFFF;stroke:#EEF406;stroke-width:1.6;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st58{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4938,1.6626;}
.st59{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.0084,1.3389;}
.st60{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.724,1.816;}
.st61{fill:#011F38;stroke:#414042;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st62{fill:none;stroke:#011F38;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st63{fill:none;stroke:#011F38;stroke-width:0.2813;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}</style>
<symbol viewBox="-68.6 -66.9 137.2 133.9" id="master_x5F_level1_1_">
<g id="svg_1">
<g id="svg_2">
<line id="svg_3" y2="0.7" x2="0" y1="-11.1" x1="0" class="st0"/>
<line id="svg_4" y2="-5.2" x2="-5.9" y1="-5.2" x1="5.9" class="st0"/>
</g>
<polygon id="svg_5" points="-29.2,-63.9 -65.6,-18.3 -52.6,38.6 0,63.9 52.6,38.6 65.6,-18.3 29.2,-63.9 " class="st1"/>
</g>
</symbol>
<symbol viewBox="-81 -93 162 186.1" id="node_high_level">
<polygon id="svg_6" points="-80,-46 -80,46 0,92 80,46 80,-46 0,-92 " class="st2"/>
<g id="Isolation_Mode_3_"/>
</symbol>
<symbol viewBox="-87.5 -100.6 175.1 201.1" id="node_x5F_empty">
<use transform="matrix(1.0808,0,0,1.0808,-0.00003292006,-0.00003749943) " y="-93" x="-81" id="XMLID_201_" height="186.1" width="162" xlink:href="#node_high_level"/>
<g id="svg_7">
<polygon id="svg_8" points="76.8,-28.1 -14,-80.3 0,-88.3 76.7,-44.4 " class="st3"/>
<polygon id="svg_9" points="76.8,-28.1 32.1,-53.8 38.8,-66.1 76.7,-44.4 " class="st4"/>
</g>
</symbol>
<symbol viewBox="-87.6 -101 175.2 202" id="node_x5F_new">
<polygon id="svg_10" points="0,-100 -86.6,-50 -86.6,50 0,100 86.6,50 86.6,-50 " class="st5"/>
<polygon id="svg_11" points="-86.6,-20.2 -86.6,-50 0,-100 25.8,-85.1 " class="st6"/>
<polygon id="svg_12" points="-40.8,-70.7 -32.9,-57 15.7,-85.1 0,-94.3 " class="st7"/>
<text id="svg_13" font-family="&#x27;RobotoSlab-Regular'" font-size="11.3632px" class="st8" transform="matrix(0.866,-0.5,-0.5,-0.866,-33.9256,-70.7388) ">Docker</text>
<text id="svg_14" font-family="&#x27;RobotoSlab-Regular'" font-size="11.3632px" class="st8" transform="matrix(0.866,-0.5,-0.5,-0.866,-76.0668,-46.4087) ">Kubelt</text>
</symbol>
<g>
<title>Layer 1</title>
<g id="CLUSTER">
<g class="st9" id="XMLID_296_">
<g id="svg_15">
<linearGradient y2="185.2931" x2="343.0902" y1="185.2931" x1="28.6348" gradientUnits="userSpaceOnUse" id="SVGID_1_">
<stop stop-color="#326DE6" offset="0"/>
<stop stop-color="#10FFC6" offset="1"/>
</linearGradient>
<polygon id="svg_16" points="311.9,92.7 343.1,229.2 255.8,338.6 115.9,338.6 28.6,229.2 59.8,92.7 185.9,32 " class="st10"/>
</g>
</g>
</g>
<g id="master">
<use id="svg_17" transform="matrix(0.4,0,0,-0.4,185.8606,187.2514) " y="-66.9" x="-68.6" height="133.9" width="137.2" xlink:href="#master_x5F_level1_1_"/>
<g id="master_x5F_level1"/>
</g>
<g id="description">
<g id="svg_72">
<path id="svg_73" d="m374.4,188.6l0,0l-2.8,6.8l-0.8,0l-2.8,-6.8l0,0l0.1,3.5l0,2.5l1,0.2l0,0.7l-3.1,0l0,-0.7l1,-0.2l0,-6.7l-1,-0.2l0,-0.7l1,0l1.5,0l2.7,6.9l0,0l2.7,-6.9l2.4,0l0,0.7l-1,0.2l0,6.7l1,0.2l0,0.7l-3.1,0l0,-0.7l1,-0.2l0,-2.6l0.2,-3.4z" class="st42"/>
<path id="svg_74" d="m381.5,195.4c0,-0.2 -0.1,-0.3 -0.1,-0.5s0,-0.3 0,-0.4c-0.2,0.3 -0.5,0.5 -0.8,0.7s-0.7,0.3 -1.1,0.3c-0.7,0 -1.2,-0.2 -1.5,-0.5s-0.5,-0.8 -0.5,-1.4c0,-0.6 0.2,-1.1 0.7,-1.4s1.2,-0.5 2,-0.5l1.2,0l0,-0.7c0,-0.4 -0.1,-0.7 -0.4,-0.9s-0.6,-0.3 -1,-0.3c-0.3,0 -0.5,0 -0.8,0.1s-0.4,0.2 -0.5,0.3l-0.1,0.7l-0.9,0l0,-1.2c0.3,-0.2 0.6,-0.4 1,-0.6s0.9,-0.2 1.3,-0.2c0.7,0 1.3,0.2 1.7,0.6s0.7,0.9 0.7,1.6l0,3.1c0,0.1 0,0.2 0,0.2s0,0.2 0,0.2l0.5,0.1l0,0.7l-1.4,0zm-1.9,-0.8c0.4,0 0.7,-0.1 1,-0.3s0.5,-0.4 0.7,-0.7l0,-1l-1.2,0c-0.5,0 -0.8,0.1 -1.1,0.3s-0.4,0.5 -0.4,0.8c0,0.3 0.1,0.5 0.3,0.6s0.4,0.3 0.7,0.3z" class="st42"/>
<path id="svg_75" d="m388.8,191.1l-0.9,0l-0.2,-0.8c-0.1,-0.1 -0.3,-0.2 -0.5,-0.3s-0.5,-0.1 -0.7,-0.1c-0.4,0 -0.7,0.1 -0.9,0.3s-0.3,0.4 -0.3,0.7c0,0.2 0.1,0.4 0.3,0.6s0.5,0.3 1.1,0.4c0.8,0.2 1.4,0.4 1.8,0.7s0.6,0.7 0.6,1.2c0,0.6 -0.2,1 -0.7,1.4s-1,0.5 -1.8,0.5c-0.5,0 -0.9,-0.1 -1.3,-0.2s-0.7,-0.3 -1,-0.5l0,-1.4l0.9,0l0.2,0.8c0.1,0.1 0.3,0.2 0.5,0.3s0.5,0.1 0.7,0.1c0.4,0 0.7,-0.1 1,-0.2s0.3,-0.4 0.3,-0.7c0,-0.3 -0.1,-0.5 -0.3,-0.6s-0.6,-0.3 -1.1,-0.4c-0.8,-0.2 -1.3,-0.4 -1.7,-0.7s-0.6,-0.7 -0.6,-1.2c0,-0.5 0.2,-1 0.7,-1.3s1,-0.5 1.7,-0.5c0.5,0 0.9,0.1 1.3,0.2s0.7,0.3 1,0.5l-0.1,1.2z" class="st42"/>
<path id="svg_76" d="m392.1,187.5l0,1.5l1.2,0l0,0.9l-1.2,0l0,3.8c0,0.3 0.1,0.5 0.2,0.6s0.3,0.2 0.5,0.2c0.1,0 0.2,0 0.3,0s0.2,0 0.3,-0.1l0.2,0.8c-0.1,0.1 -0.3,0.1 -0.5,0.2s-0.4,0.1 -0.6,0.1c-0.5,0 -0.8,-0.1 -1.1,-0.4s-0.4,-0.7 -0.4,-1.3l0,-3.8l-1,0l0,-0.9l1,0l0,-1.5l1.1,0l0,-0.1z" class="st42"/>
<path id="svg_77" d="m397.4,195.5c-0.9,0 -1.6,-0.3 -2.1,-0.9s-0.8,-1.4 -0.8,-2.3l0,-0.3c0,-0.9 0.3,-1.7 0.8,-2.3s1.2,-0.9 1.9,-0.9c0.9,0 1.5,0.3 1.9,0.8s0.7,1.2 0.7,2.1l0,0.7l-4.1,0l0,0c0,0.6 0.2,1.1 0.5,1.5s0.7,0.6 1.2,0.6c0.4,0 0.7,-0.1 1,-0.2s0.5,-0.3 0.8,-0.5l0.5,0.8c-0.2,0.2 -0.5,0.4 -0.9,0.6s-0.9,0.3 -1.4,0.3zm-0.2,-5.6c-0.4,0 -0.7,0.2 -1,0.5s-0.4,0.7 -0.5,1.2l0,0l2.9,0l0,-0.2c0,-0.5 -0.1,-0.8 -0.4,-1.1s-0.5,-0.4 -1,-0.4z" class="st42"/>
<path id="svg_78" d="m400.9,189.8l0,-0.7l2,0l0.1,0.9c0.2,-0.3 0.4,-0.6 0.7,-0.8s0.6,-0.3 0.9,-0.3c0.1,0 0.2,0 0.3,0s0.2,0 0.2,0l-0.2,1.1l-0.7,0c-0.3,0 -0.6,0.1 -0.8,0.2s-0.4,0.3 -0.5,0.6l0,3.6l1,0.2l0,0.7l-3.1,0l0,-0.7l1,-0.2l0,-4.4l-0.9,-0.2z" class="st42"/>
</g>
<g id="svg_79">
<path id="svg_80" d="m366,230.1l1,-0.2l0,-4.5l-1,-0.2l0,-0.7l2,0l0.1,0.9c0.2,-0.3 0.5,-0.6 0.8,-0.8s0.7,-0.3 1.1,-0.3c0.7,0 1.2,0.2 1.6,0.6s0.6,1 0.6,1.9l0,3.1l1,0.2l0,0.7l-3.2,0l0,-0.7l1,-0.2l0,-3.1c0,-0.6 -0.1,-1 -0.3,-1.2s-0.6,-0.4 -1,-0.4c-0.3,0 -0.6,0.1 -0.9,0.2s-0.5,0.4 -0.6,0.7l0,3.7l1,0.2l0,0.7l-3.2,0l0,-0.6z" class="st42"/>
<path id="svg_81" d="m373.9,227.6c0,-0.9 0.3,-1.7 0.8,-2.3s1.2,-0.9 2.1,-0.9c0.9,0 1.6,0.3 2.1,0.9s0.8,1.4 0.8,2.3l0,0.1c0,0.9 -0.3,1.7 -0.8,2.3s-1.2,0.9 -2.1,0.9c-0.9,0 -1.6,-0.3 -2.1,-0.9s-0.8,-1.4 -0.8,-2.3l0,-0.1zm1.1,0.1c0,0.7 0.1,1.2 0.4,1.7s0.7,0.7 1.3,0.7c0.5,0 1,-0.2 1.2,-0.7s0.4,-1 0.4,-1.7l0,-0.1c0,-0.7 -0.1,-1.2 -0.4,-1.7s-0.7,-0.7 -1.3,-0.7s-1,0.2 -1.3,0.7s-0.4,1 -0.4,1.7l0,0.1l0.1,0z" class="st42"/>
<path id="svg_82" d="m384.9,230c-0.2,0.3 -0.5,0.5 -0.8,0.7s-0.6,0.2 -1,0.2c-0.8,0 -1.4,-0.3 -1.8,-0.8s-0.7,-1.3 -0.7,-2.2l0,-0.1c0,-1 0.2,-1.8 0.7,-2.5s1,-0.9 1.8,-0.9c0.4,0 0.7,0.1 1,0.2s0.5,0.3 0.7,0.6l0,-2.6l-1,-0.2l0,-0.7l1,0l1.2,0l0,8.2l1,0.2l0,0.7l-2,0l-0.1,-0.8zm-3.2,-2.1c0,0.6 0.1,1.1 0.4,1.5s0.7,0.6 1.2,0.6c0.3,0 0.6,-0.1 0.9,-0.2s0.4,-0.4 0.6,-0.7l0,-2.9c-0.1,-0.3 -0.3,-0.5 -0.6,-0.6s-0.5,-0.2 -0.9,-0.2c-0.6,0 -1,0.2 -1.2,0.7s-0.4,1.1 -0.4,1.8l0,0z" class="st42"/>
<path id="svg_83" d="m390.7,230.9c-0.9,0 -1.6,-0.3 -2.1,-0.9s-0.8,-1.4 -0.8,-2.3l0,-0.3c0,-0.9 0.3,-1.7 0.8,-2.3s1.2,-0.9 1.9,-0.9c0.9,0 1.5,0.3 1.9,0.8s0.7,1.2 0.7,2.1l0,0.7l-4.1,0l0,0c0,0.6 0.2,1.1 0.5,1.5s0.7,0.6 1.2,0.6c0.4,0 0.7,-0.1 1,-0.2s0.5,-0.3 0.8,-0.5l0.5,0.8c-0.2,0.2 -0.5,0.4 -0.9,0.6s-0.9,0.3 -1.4,0.3zm-0.2,-5.6c-0.4,0 -0.7,0.2 -1,0.5s-0.4,0.7 -0.5,1.2l0,0l2.9,0l0,-0.2c0,-0.5 -0.1,-0.8 -0.4,-1.1s-0.5,-0.4 -1,-0.4z" class="st42"/>
<path id="svg_84" d="m397.1,232.5l1,-0.2l0,-7l-1,-0.2l0,-0.7l1.9,0l0.1,0.8c0.2,-0.3 0.5,-0.5 0.8,-0.7s0.7,-0.2 1.1,-0.2c0.8,0 1.4,0.3 1.8,0.9s0.7,1.4 0.7,2.5l0,0.1c0,0.9 -0.2,1.7 -0.7,2.2s-1,0.8 -1.8,0.8c-0.4,0 -0.7,-0.1 -1,-0.2s-0.5,-0.3 -0.8,-0.6l0,2.2l1,0.2l0,0.7l-3.1,0l0,-0.6zm5.2,-4.8c0,-0.7 -0.1,-1.3 -0.4,-1.8s-0.7,-0.7 -1.3,-0.7c-0.3,0 -0.6,0.1 -0.8,0.2s-0.4,0.4 -0.6,0.6l0,3.1c0.1,0.3 0.3,0.5 0.6,0.6s0.5,0.2 0.9,0.2c0.5,0 1,-0.2 1.2,-0.6s0.4,-0.9 0.4,-1.6l0,0z" class="st42"/>
<path id="svg_85" d="m404.5,225.2l0,-0.7l2,0l0.1,0.9c0.2,-0.3 0.4,-0.6 0.7,-0.8s0.6,-0.3 0.9,-0.3c0.1,0 0.2,0 0.3,0s0.2,0 0.2,0l-0.2,1.1l-0.7,0c-0.3,0 -0.6,0.1 -0.8,0.2s-0.4,0.3 -0.5,0.6l0,3.6l1,0.2l0,0.7l-3.1,0l0,-0.7l1,-0.2l0,-4.5l-0.9,-0.1z" class="st42"/>
<path id="svg_86" d="m409.3,227.6c0,-0.9 0.3,-1.7 0.8,-2.3s1.2,-0.9 2.1,-0.9c0.9,0 1.6,0.3 2.1,0.9s0.8,1.4 0.8,2.3l0,0.1c0,0.9 -0.3,1.7 -0.8,2.3s-1.2,0.9 -2.1,0.9c-0.9,0 -1.6,-0.3 -2.1,-0.9s-0.8,-1.4 -0.8,-2.3l0,-0.1zm1.2,0.1c0,0.7 0.1,1.2 0.4,1.7s0.7,0.7 1.3,0.7c0.5,0 1,-0.2 1.2,-0.7s0.4,-1 0.4,-1.7l0,-0.1c0,-0.7 -0.1,-1.2 -0.4,-1.7s-0.7,-0.7 -1.3,-0.7s-1,0.2 -1.3,0.7s-0.4,1 -0.4,1.7l0,0.1l0.1,0z" class="st42"/>
<path id="svg_87" d="m418.9,230c0.4,0 0.7,-0.1 1,-0.4s0.4,-0.5 0.4,-0.9l1,0l0,0c0,0.5 -0.2,1 -0.7,1.5s-1.1,0.6 -1.8,0.6c-0.9,0 -1.6,-0.3 -2.1,-0.9s-0.7,-1.4 -0.7,-2.3l0,-0.2c0,-0.9 0.2,-1.7 0.7,-2.3s1.2,-0.9 2.1,-0.9c0.5,0 1,0.1 1.4,0.3s0.7,0.4 1,0.7l0.1,1.4l-0.9,0l-0.3,-1c-0.1,-0.1 -0.3,-0.2 -0.5,-0.3s-0.5,-0.1 -0.7,-0.1c-0.6,0 -1,0.2 -1.3,0.7s-0.4,1 -0.4,1.6l0,0.2c0,0.6 0.1,1.2 0.4,1.6s0.7,0.7 1.3,0.7z" class="st42"/>
<path id="svg_88" d="m425.4,230.9c-0.9,0 -1.6,-0.3 -2.1,-0.9s-0.8,-1.4 -0.8,-2.3l0,-0.3c0,-0.9 0.3,-1.7 0.8,-2.3s1.2,-0.9 1.9,-0.9c0.9,0 1.5,0.3 1.9,0.8s0.7,1.2 0.7,2.1l0,0.7l-4.1,0l0,0c0,0.6 0.2,1.1 0.5,1.5s0.7,0.6 1.2,0.6c0.4,0 0.7,-0.1 1,-0.2s0.5,-0.3 0.8,-0.5l0.5,0.8c-0.2,0.2 -0.5,0.4 -0.9,0.6s-0.8,0.3 -1.4,0.3zm-0.1,-5.6c-0.4,0 -0.7,0.2 -1,0.5s-0.4,0.7 -0.5,1.2l0,0l2.9,0l0,-0.2c0,-0.5 -0.1,-0.8 -0.4,-1.1s-0.6,-0.4 -1,-0.4z" class="st42"/>
<path id="svg_89" d="m433.8,226.5l-0.8,0l-0.2,-0.8c-0.1,-0.1 -0.3,-0.2 -0.5,-0.3s-0.5,-0.1 -0.7,-0.1c-0.4,0 -0.7,0.1 -0.9,0.3s-0.3,0.4 -0.3,0.7c0,0.2 0.1,0.4 0.3,0.6s0.5,0.3 1.1,0.4c0.8,0.2 1.4,0.4 1.8,0.7s0.6,0.7 0.6,1.2c0,0.6 -0.2,1 -0.7,1.4s-1,0.5 -1.8,0.5c-0.5,0 -0.9,-0.1 -1.3,-0.2s-0.7,-0.3 -1,-0.5l0,-1.4l0.9,0l0.2,0.8c0.1,0.1 0.3,0.2 0.5,0.3s0.5,0.1 0.7,0.1c0.4,0 0.7,-0.1 1,-0.2s0.3,-0.4 0.3,-0.7c0,-0.3 -0.1,-0.5 -0.3,-0.6s-0.6,-0.3 -1.1,-0.4c-0.8,-0.2 -1.3,-0.4 -1.7,-0.7s-0.6,-0.7 -0.6,-1.2c0,-0.5 0.2,-1 0.7,-1.3s1,-0.5 1.7,-0.5c0.5,0 0.9,0.1 1.3,0.2s0.7,0.3 1,0.5l-0.2,1.2z" class="st42"/>
<path id="svg_90" d="m440,226.5l-0.9,0l-0.2,-0.8c-0.1,-0.1 -0.3,-0.2 -0.5,-0.3s-0.5,-0.1 -0.7,-0.1c-0.4,0 -0.7,0.1 -0.9,0.3s-0.3,0.4 -0.3,0.7c0,0.2 0.1,0.4 0.3,0.6s0.5,0.3 1.1,0.4c0.8,0.2 1.4,0.4 1.8,0.7s0.6,0.7 0.6,1.2c0,0.6 -0.2,1 -0.7,1.4s-1,0.5 -1.8,0.5c-0.5,0 -0.9,-0.1 -1.3,-0.2s-0.7,-0.3 -1,-0.5l0,-1.4l0.9,0l0.2,0.8c0.1,0.1 0.3,0.2 0.5,0.3s0.5,0.1 0.7,0.1c0.4,0 0.7,-0.1 1,-0.2s0.3,-0.4 0.3,-0.7c0,-0.3 -0.1,-0.5 -0.3,-0.6s-0.6,-0.3 -1.1,-0.4c-0.8,-0.2 -1.3,-0.4 -1.7,-0.7s-0.6,-0.7 -0.6,-1.2c0,-0.5 0.2,-1 0.7,-1.3s1,-0.5 1.7,-0.5c0.5,0 0.9,0.1 1.3,0.2s0.7,0.3 1,0.5l-0.1,1.2z" class="st42"/>
<path id="svg_91" d="m444.1,230.9c-0.9,0 -1.6,-0.3 -2.1,-0.9s-0.8,-1.4 -0.8,-2.3l0,-0.3c0,-0.9 0.3,-1.7 0.8,-2.3s1.2,-0.9 1.9,-0.9c0.9,0 1.5,0.3 1.9,0.8s0.7,1.2 0.7,2.1l0,0.7l-4.1,0l0,0c0,0.6 0.2,1.1 0.5,1.5s0.7,0.6 1.2,0.6c0.4,0 0.7,-0.1 1,-0.2s0.5,-0.3 0.8,-0.5l0.5,0.8c-0.2,0.2 -0.5,0.4 -0.9,0.6s-0.9,0.3 -1.4,0.3zm-0.2,-5.6c-0.4,0 -0.7,0.2 -1,0.5s-0.4,0.7 -0.5,1.2l0,0l2.9,0l0,-0.2c0,-0.5 -0.1,-0.8 -0.4,-1.1s-0.5,-0.4 -1,-0.4z" class="st42"/>
<path id="svg_92" d="m452.5,226.5l-0.9,0l-0.2,-0.8c-0.1,-0.1 -0.3,-0.2 -0.5,-0.3s-0.5,-0.1 -0.7,-0.1c-0.4,0 -0.7,0.1 -0.9,0.3s-0.3,0.4 -0.3,0.7c0,0.2 0.1,0.4 0.3,0.6s0.5,0.3 1.1,0.4c0.8,0.2 1.4,0.4 1.8,0.7s0.6,0.7 0.6,1.2c0,0.6 -0.2,1 -0.7,1.4s-1,0.5 -1.8,0.5c-0.5,0 -0.9,-0.1 -1.3,-0.2s-0.7,-0.3 -1,-0.5l0,-1.4l0.9,0l0.2,0.8c0.1,0.1 0.3,0.2 0.5,0.3s0.5,0.1 0.7,0.1c0.4,0 0.7,-0.1 1,-0.2s0.3,-0.4 0.3,-0.7c0,-0.3 -0.1,-0.5 -0.3,-0.6s-0.6,-0.3 -1.1,-0.4c-0.8,-0.2 -1.3,-0.4 -1.7,-0.7s-0.6,-0.7 -0.6,-1.2c0,-0.5 0.2,-1 0.7,-1.3s1,-0.5 1.7,-0.5c0.5,0 0.9,0.1 1.3,0.2s0.7,0.3 1,0.5l-0.1,1.2z" class="st42"/>
</g>
<g id="svg_93">
<path id="svg_94" d="m374.4,111.8l0,0.7l-1,0.2l0,7.6l-1.2,0l-4.1,-6.6l0,0l0,5.7l1,0.2l0,0.7l-3.1,0l0,-0.7l1,-0.2l0,-6.7l-1,-0.2l0,-0.7l1,0l1.2,0l4.1,6.6l0,0l0,-5.7l-1,-0.2l0,-0.7l2.1,0l1,0z" class="st42"/>
<path id="svg_95" d="m375.3,117.1c0,-0.9 0.3,-1.7 0.8,-2.3s1.2,-0.9 2.1,-0.9c0.9,0 1.6,0.3 2.1,0.9s0.8,1.4 0.8,2.3l0,0.1c0,0.9 -0.3,1.7 -0.8,2.3s-1.2,0.9 -2.1,0.9c-0.9,0 -1.6,-0.3 -2.1,-0.9s-0.8,-1.4 -0.8,-2.3l0,-0.1zm1.2,0.1c0,0.7 0.1,1.2 0.4,1.7s0.7,0.7 1.3,0.7c0.5,0 1,-0.2 1.2,-0.7s0.4,-1 0.4,-1.7l0,-0.1c0,-0.7 -0.1,-1.2 -0.4,-1.7s-0.7,-0.7 -1.3,-0.7s-1,0.2 -1.3,0.7s-0.4,1 -0.4,1.7l0,0.1l0.1,0z" class="st42"/>
<path id="svg_96" d="m386.3,119.5c-0.2,0.3 -0.5,0.5 -0.8,0.7s-0.6,0.2 -1,0.2c-0.8,0 -1.4,-0.3 -1.8,-0.8s-0.7,-1.3 -0.7,-2.2l0,-0.1c0,-1 0.2,-1.8 0.7,-2.5s1,-0.9 1.8,-0.9c0.4,0 0.7,0.1 1,0.2s0.5,0.3 0.7,0.6l0,-2.6l-1,-0.2l0,-0.7l1,0l1.2,0l0,8.2l1,0.2l0,0.7l-2,0l-0.1,-0.8zm-3.1,-2.1c0,0.6 0.1,1.1 0.4,1.5s0.7,0.6 1.2,0.6c0.3,0 0.6,-0.1 0.9,-0.2s0.4,-0.4 0.6,-0.7l0,-2.9c-0.1,-0.3 -0.3,-0.5 -0.6,-0.6s-0.5,-0.2 -0.9,-0.2c-0.6,0 -1,0.2 -1.2,0.7s-0.4,1.1 -0.4,1.8l0,0z" class="st42"/>
<path id="svg_97" d="m392.2,120.4c-0.9,0 -1.6,-0.3 -2.1,-0.9s-0.8,-1.4 -0.8,-2.3l0,-0.2c0,-0.9 0.3,-1.7 0.8,-2.3s1.2,-0.9 1.9,-0.9c0.9,0 1.5,0.3 1.9,0.8s0.7,1.2 0.7,2.1l0,0.7l-4.1,0l0,0c0,0.6 0.2,1.1 0.5,1.5s0.7,0.6 1.2,0.6c0.4,0 0.7,-0.1 1,-0.2s0.5,-0.3 0.8,-0.5l0.5,0.8c-0.2,0.2 -0.5,0.4 -0.9,0.6s-0.9,0.2 -1.4,0.2zm-0.2,-5.6c-0.4,0 -0.7,0.2 -1,0.5s-0.4,0.7 -0.5,1.2l0,0l2.9,0l0,-0.2c0,-0.5 -0.1,-0.8 -0.4,-1.1s-0.5,-0.4 -1,-0.4z" class="st42"/>
</g>
<g id="svg_98">
<g id="svg_99">
<path id="svg_100" d="m128.4,356.6l1,-0.2l0,-6.9l-1,-0.2l0,-1.2l4,0l0,1.2l-1,0.2l0,2.6l0.8,0l1.9,-2.7l-0.6,-0.1l0,-1.2l3.8,0l0,1.2l-1,0.2l-2.4,3.2l2.7,3.8l1,0.2l0,1.2l-3.8,0l0,-1.2l0.6,-0.1l-1.9,-2.8l-1.1,0l0,2.7l1,0.2l0,1.2l-4,0l0,-1.3z" class="st42"/>
<path id="svg_101" d="m143,356.9c-0.2,0.3 -0.5,0.6 -0.9,0.8c-0.3,0.2 -0.7,0.3 -1.2,0.3c-0.8,0 -1.4,-0.2 -1.8,-0.7c-0.4,-0.5 -0.6,-1.2 -0.6,-2.3l0,-3l-0.8,-0.2l0,-1.2l0.8,0l1.9,0l0,4.3c0,0.5 0.1,0.9 0.3,1.1c0.2,0.2 0.4,0.3 0.8,0.3c0.3,0 0.6,0 0.8,-0.1s0.4,-0.2 0.5,-0.4l0,-3.8l-0.8,-0.2l0,-1.2l0.8,0l1.9,0l0,5.8l0.9,0.2l0,1.2l-2.6,0l0,-0.9z" class="st42"/>
<path id="svg_102" d="m153.4,354.4c0,1.1 -0.2,1.9 -0.7,2.6c-0.5,0.6 -1.2,1 -2.1,1c-0.4,0 -0.8,-0.1 -1.1,-0.3c-0.3,-0.2 -0.6,-0.4 -0.8,-0.8l-0.1,0.9l-1.6,0l0,-9l-1,-0.2l0,-1.2l3,0l0,3.9c0.2,-0.3 0.5,-0.5 0.7,-0.7c0.3,-0.2 0.6,-0.2 1,-0.2c0.9,0 1.6,0.3 2.1,1c0.5,0.7 0.7,1.6 0.7,2.8l0,0.2l-0.1,0zm-1.9,-0.1c0,-0.7 -0.1,-1.3 -0.3,-1.7c-0.2,-0.4 -0.6,-0.6 -1.1,-0.6c-0.3,0 -0.6,0.1 -0.8,0.2c-0.2,0.1 -0.4,0.3 -0.5,0.5l0,3c0.1,0.2 0.3,0.4 0.5,0.5c0.2,0.1 0.5,0.2 0.8,0.2c0.5,0 0.8,-0.2 1,-0.5s0.3,-0.9 0.3,-1.5l0,-0.1l0.1,0z" class="st42"/>
<path id="svg_103" d="m157.8,358c-1,0 -1.9,-0.3 -2.5,-1c-0.6,-0.7 -0.9,-1.5 -0.9,-2.5l0,-0.3c0,-1.1 0.3,-1.9 0.9,-2.6c0.6,-0.7 1.4,-1 2.4,-1c1,0 1.7,0.3 2.3,0.9c0.5,0.6 0.8,1.4 0.8,2.4l0,1.1l-4.3,0l0,0c0,0.5 0.2,0.9 0.5,1.2c0.3,0.3 0.7,0.5 1.1,0.5c0.4,0 0.8,0 1.1,-0.1c0.3,-0.1 0.6,-0.2 0.9,-0.4l0.5,1.2c-0.3,0.2 -0.7,0.4 -1.2,0.6c-0.5,-0.1 -1,0 -1.6,0zm-0.2,-6c-0.4,0 -0.6,0.1 -0.8,0.4c-0.2,0.3 -0.3,0.6 -0.4,1.1l0,0l2.4,0l0,-0.2c0,-0.4 -0.1,-0.7 -0.3,-1s-0.5,-0.3 -0.9,-0.3z" class="st42"/>
<path id="svg_104" d="m161.7,356.6l0.9,-0.2l0,-4.4l-1,-0.2l0,-1.2l2.8,0l0.1,1c0.2,-0.4 0.4,-0.7 0.7,-0.9c0.3,-0.2 0.6,-0.3 0.9,-0.3c0.1,0 0.2,0 0.3,0c0.1,0 0.2,0 0.3,0.1l-0.2,1.8l-0.8,0c-0.3,0 -0.5,0.1 -0.7,0.2c-0.2,0.1 -0.3,0.3 -0.4,0.5l0,3.5l0.9,0.2l0,1.2l-3.8,0l0,-1.3z" class="st42"/>
<path id="svg_105" d="m167.2,356.6l0.9,-0.2l0,-4.4l-1,-0.2l0,-1.2l2.8,0l0.1,1c0.2,-0.4 0.5,-0.7 0.9,-0.9s0.7,-0.3 1.2,-0.3c0.7,0 1.3,0.2 1.7,0.7s0.6,1.2 0.6,2.1l0,3.1l0.9,0.2l0,1.2l-3.7,0l0,-1.2l0.8,-0.2l0,-3.1c0,-0.5 -0.1,-0.8 -0.3,-1c-0.2,-0.2 -0.5,-0.3 -0.9,-0.3c-0.3,0 -0.5,0.1 -0.7,0.2c-0.2,0.1 -0.4,0.3 -0.5,0.4l0,3.9l0.8,0.2l0,1.2l-3.7,0l0,-1.2l0.1,0z" class="st42"/>
<path id="svg_106" d="m179.3,358c-1,0 -1.9,-0.3 -2.5,-1c-0.6,-0.7 -0.9,-1.5 -0.9,-2.5l0,-0.3c0,-1.1 0.3,-1.9 0.9,-2.6c0.6,-0.7 1.4,-1 2.4,-1c1,0 1.7,0.3 2.3,0.9c0.5,0.6 0.8,1.4 0.8,2.4l0,1.1l-4.3,0l0,0c0,0.5 0.2,0.9 0.5,1.2c0.3,0.3 0.7,0.5 1.1,0.5c0.4,0 0.8,0 1.1,-0.1c0.3,-0.1 0.6,-0.2 0.9,-0.4l0.5,1.2c-0.3,0.2 -0.7,0.4 -1.2,0.6c-0.5,-0.1 -1,0 -1.6,0zm-0.2,-6c-0.4,0 -0.6,0.1 -0.8,0.4c-0.2,0.3 -0.3,0.6 -0.4,1.1l0,0l2.4,0l0,-0.2c0,-0.4 -0.1,-0.7 -0.3,-1s-0.5,-0.3 -0.9,-0.3z" class="st42"/>
<path id="svg_107" d="m186,348.9l0,1.8l1.3,0l0,1.4l-1.3,0l0,3.7c0,0.3 0.1,0.5 0.2,0.6c0.1,0.1 0.3,0.2 0.5,0.2c0.1,0 0.2,0 0.3,0c0.1,0 0.2,0 0.3,-0.1l0.2,1.4c-0.2,0.1 -0.4,0.1 -0.6,0.1c-0.2,0 -0.4,0 -0.7,0c-0.7,0 -1.2,-0.2 -1.5,-0.6c-0.4,-0.4 -0.5,-0.9 -0.5,-1.7l0,-3.7l-1.2,0l0,-1.4l1.1,0l0,-1.8l1.9,0l0,0.1z" class="st42"/>
<path id="svg_108" d="m191.6,358c-1,0 -1.9,-0.3 -2.5,-1c-0.6,-0.7 -0.9,-1.5 -0.9,-2.5l0,-0.3c0,-1.1 0.3,-1.9 0.9,-2.6c0.6,-0.7 1.4,-1 2.4,-1c1,0 1.7,0.3 2.3,0.9c0.5,0.6 0.8,1.4 0.8,2.4l0,1.1l-4.3,0l0,0c0,0.5 0.2,0.9 0.5,1.2c0.3,0.3 0.7,0.5 1.1,0.5c0.4,0 0.8,0 1.1,-0.1c0.3,-0.1 0.6,-0.2 0.9,-0.4l0.5,1.2c-0.3,0.2 -0.7,0.4 -1.2,0.6c-0.5,-0.1 -1,0 -1.6,0zm-0.1,-6c-0.4,0 -0.6,0.1 -0.8,0.4c-0.2,0.3 -0.3,0.6 -0.4,1.1l0,0l2.4,0l0,-0.2c0,-0.4 -0.1,-0.7 -0.3,-1s-0.5,-0.3 -0.9,-0.3z" class="st42"/>
<path stroke="null" style="vector-effect: non-scaling-stroke;" id="svg_110" d="m201,353.1l-1.3,0l-0.2,-0.9c-0.1,-0.1 -0.3,-0.2 -0.5,-0.3c-0.2,-0.1 -0.4,-0.1 -0.7,-0.1c-0.3,0 -0.6,0.1 -0.8,0.2s-0.3,0.3 -0.3,0.6c0,0.2 0.1,0.4 0.3,0.5c0.2,0.1 0.6,0.3 1.1,0.4c0.9,0.2 1.5,0.4 2,0.8c0.4,0.3 0.6,0.8 0.6,1.4c0,0.6 -0.3,1.2 -0.8,1.6c-0.6,0.4 -1.3,0.6 -2.2,0.6c-0.6,0 -1.1,-0.1 -1.5,-0.2c-0.5,-0.2 -0.9,-0.4 -1.2,-0.7l0,-1.6l1.4,0l0.3,0.9c0.1,0.1 0.3,0.2 0.5,0.2s0.4,0.1 0.6,0.1c0.4,0 0.7,-0.1 0.9,-0.2c0.2,-0.1 0.3,-0.3 0.3,-0.6c0,-0.2 -0.1,-0.4 -0.3,-0.6c-0.2,-0.2 -0.6,-0.3 -1.1,-0.4c-0.8,-0.2 -1.5,-0.4 -1.9,-0.8c-0.4,-0.3 -0.6,-0.8 -0.6,-1.4c0,-0.6 0.2,-1.1 0.7,-1.6s1.2,-0.7 2.1,-0.7c0.6,0 1.1,0.1 1.6,0.2c0.5,0.2 0.9,0.3 1.2,0.6l-0.2,2z" class="st42"/>
<path id="svg_111" d="m208.9,356.5c0.3,0 0.6,-0.1 0.8,-0.3c0.2,-0.2 0.3,-0.5 0.3,-0.8l1.8,0l0,0c0,0.7 -0.3,1.3 -0.8,1.8c-0.6,0.5 -1.3,0.7 -2.1,0.7c-1.1,0 -1.9,-0.3 -2.5,-1s-0.9,-1.5 -0.9,-2.6l0,-0.2c0,-1.1 0.3,-1.9 0.9,-2.6s1.4,-1 2.5,-1c0.6,0 1.1,0.1 1.6,0.3c0.5,0.2 0.8,0.4 1.1,0.7l0,1.9l-1.6,0l-0.3,-1.1c-0.1,-0.1 -0.2,-0.2 -0.4,-0.2c-0.1,-0.1 -0.3,-0.1 -0.5,-0.1c-0.5,0 -0.9,0.2 -1.2,0.6s-0.3,0.9 -0.3,1.5l0,0.2c0,0.6 0.1,1.2 0.3,1.6c0.4,0.4 0.8,0.6 1.3,0.6z" class="st42"/>
<path fill="black" id="svg_112" d="m212.5,348.6l0,-1.2l3,0l0,9l0.9,0.2l0,1.2l-3.8,0l0,-1.2l0.9,-0.2l0,-7.6l-1,-0.2z" class="st42"/>
<path id="svg_113" d="m222,356.9c-0.2,0.3 -0.5,0.6 -0.9,0.8c-0.3,0.2 -0.7,0.3 -1.2,0.3c-0.8,0 -1.4,-0.2 -1.8,-0.7c-0.4,-0.5 -0.6,-1.2 -0.6,-2.3l0,-3l-0.8,-0.2l0,-1.2l0.8,0l1.9,0l0,4.3c0,0.5 0.1,0.9 0.3,1.1c0.2,0.2 0.4,0.3 0.8,0.3c0.3,0 0.6,0 0.8,-0.1s0.4,-0.2 0.5,-0.4l0,-3.8l-0.8,-0.2l0,-1.2l0.8,0l1.9,0l0,5.8l0.9,0.2l0,1.2l-2.6,0l0,-0.9z" class="st42"/>
<path id="svg_114" d="m231.4,353.1l-1.3,0l-0.2,-0.9c-0.1,-0.1 -0.3,-0.2 -0.5,-0.3c-0.2,-0.1 -0.4,-0.1 -0.7,-0.1c-0.3,0 -0.6,0.1 -0.8,0.2s-0.3,0.3 -0.3,0.6c0,0.2 0.1,0.4 0.3,0.5c0.2,0.1 0.6,0.3 1.1,0.4c0.9,0.2 1.5,0.4 2,0.8c0.4,0.3 0.6,0.8 0.6,1.4c0,0.6 -0.3,1.2 -0.8,1.6c-0.6,0.4 -1.3,0.6 -2.2,0.6c-0.6,0 -1.1,-0.1 -1.5,-0.2c-0.5,-0.2 -0.9,-0.4 -1.2,-0.7l0,-1.6l1.4,0l0.3,0.9c0.1,0.1 0.3,0.2 0.5,0.2s0.4,0.1 0.6,0.1c0.4,0 0.7,-0.1 0.9,-0.2c0.2,-0.1 0.3,-0.3 0.3,-0.6c0,-0.2 -0.1,-0.4 -0.3,-0.6c-0.2,-0.2 -0.6,-0.3 -1.1,-0.4c-0.8,-0.2 -1.5,-0.4 -1.9,-0.8c-0.4,-0.3 -0.6,-0.8 -0.6,-1.4c0,-0.6 0.2,-1.1 0.7,-1.6s1.2,-0.7 2.1,-0.7c0.6,0 1.1,0.1 1.6,0.2c0.5,0.2 0.9,0.3 1.2,0.6l-0.2,2z" class="st42"/>
<path id="svg_115" d="m235.4,348.9l0,1.8l1.3,0l0,1.4l-1.3,0l0,3.7c0,0.3 0.1,0.5 0.2,0.6c0.1,0.1 0.3,0.2 0.5,0.2c0.1,0 0.2,0 0.3,0c0.1,0 0.2,0 0.3,-0.1l0.2,1.4c-0.2,0.1 -0.4,0.1 -0.6,0.1c-0.2,0 -0.4,0 -0.7,0c-0.7,0 -1.2,-0.2 -1.5,-0.6c-0.4,-0.4 -0.5,-0.9 -0.5,-1.7l0,-3.7l-1.1,0l0,-1.4l1.1,0l0,-1.8l1.8,0l0,0.1z" class="st42"/>
<path id="svg_116" d="m241,358c-1,0 -1.9,-0.3 -2.5,-1c-0.6,-0.7 -0.9,-1.5 -0.9,-2.5l0,-0.3c0,-1.1 0.3,-1.9 0.9,-2.6c0.6,-0.7 1.4,-1 2.4,-1c1,0 1.7,0.3 2.3,0.9c0.5,0.6 0.8,1.4 0.8,2.4l0,1.1l-4.3,0l0,0c0,0.5 0.2,0.9 0.5,1.2c0.3,0.3 0.7,0.5 1.1,0.5c0.4,0 0.8,0 1.1,-0.1c0.3,-0.1 0.6,-0.2 0.9,-0.4l0.5,1.2c-0.3,0.2 -0.7,0.4 -1.2,0.6c-0.5,-0.1 -1,0 -1.6,0zm-0.2,-6c-0.4,0 -0.6,0.1 -0.8,0.4c-0.2,0.3 -0.3,0.6 -0.4,1.1l0,0l2.4,0l0,-0.2c0,-0.4 -0.1,-0.7 -0.3,-1s-0.5,-0.3 -0.9,-0.3z" class="st42"/>
<path id="svg_117" d="m245,356.6l0.9,-0.2l0,-4.4l-1,-0.2l0,-1.2l2.8,0l0.1,1c0.2,-0.4 0.4,-0.7 0.7,-0.9c0.3,-0.2 0.6,-0.3 0.9,-0.3c0.1,0 0.2,0 0.3,0c0.1,0 0.2,0 0.3,0.1l-0.2,1.8l-0.8,0c-0.3,0 -0.5,0.1 -0.7,0.2c-0.2,0.1 -0.3,0.3 -0.4,0.5l0,3.5l0.9,0.2l0,1.2l-3.8,0l0,-1.3z" class="st42"/>
</g>
</g>
<line id="svg_118" y2="191.7" x2="201.6" y1="191.7" x1="360.6" class="st62"/>
<line id="svg_119" y2="228.8" x2="160" y1="228.8" x1="360.6" class="st62"/>
<line id="svg_120" y2="118.3" x2="243.4" y1="118.3" x1="360.6" class="st62"/>
</g>
<g id="Node">
<g id="Node_x5F_level3_x5F_1">
<g id="Isolation_Mode"/>
</g>
<polygon id="svg_18" points="182.7,139.9 147.1,160.4 111.4,139.9 111.4,98.7 147.1,78.2 182.7,98.7 " class="st16"/>
<polygon id="svg_19" points="129.3,150.2 147.1,160.4 182.7,139.9 182.7,119.3 " class="st13"/>
<polygon id="svg_20" points="163.5,147.7 157.4,137.2 179.9,124.2 179.9,138.3 " class="st7"/>
<g id="svg_21">
<path id="svg_22" d="m162.5,139.3c0.4,-0.3 0.9,-0.3 1.3,-0.2c0.4,0.1 0.8,0.4 1,0.8l0.3,0.5c0.3,0.4 0.3,0.9 0.2,1.3c-0.1,0.4 -0.4,0.8 -0.8,1l-1.4,0.8l-0.2,-0.3l0.3,-0.3l-1.6,-2.7l-0.4,0.2l-0.2,-0.3l0.4,-0.2l1.1,-0.6zm-0.4,0.7l1.6,2.7l0.6,-0.3c0.3,-0.2 0.5,-0.4 0.6,-0.8c0.1,-0.3 0,-0.6 -0.2,-1l-0.3,-0.5c-0.2,-0.3 -0.4,-0.5 -0.7,-0.6c-0.3,-0.1 -0.6,-0.1 -0.9,0.1l-0.7,0.4z" class="st8"/>
<path id="svg_23" d="m165.7,140.3c-0.2,-0.4 -0.3,-0.8 -0.2,-1.1c0.1,-0.4 0.3,-0.6 0.6,-0.9c0.4,-0.2 0.7,-0.2 1.1,-0.1c0.3,0.1 0.6,0.4 0.9,0.8l0,0.1c0.2,0.4 0.3,0.8 0.2,1.1c-0.1,0.4 -0.3,0.6 -0.6,0.8c-0.4,0.2 -0.7,0.2 -1.1,0.1c-0.4,-0.1 -0.7,-0.3 -0.9,-0.8l0,0zm0.5,-0.2c0.2,0.3 0.3,0.5 0.6,0.6c0.2,0.1 0.4,0.1 0.7,0c0.2,-0.1 0.3,-0.3 0.4,-0.6c0,-0.2 -0.1,-0.5 -0.2,-0.8l0,-0.1c-0.2,-0.3 -0.3,-0.5 -0.6,-0.6c-0.2,-0.1 -0.4,-0.1 -0.7,0c-0.2,0.1 -0.3,0.3 -0.4,0.6c-0.1,0.3 0,0.6 0.2,0.9l0,0z" class="st8"/>
<path id="svg_24" d="m170.1,139.1c0.2,-0.1 0.3,-0.2 0.3,-0.4c0.1,-0.2 0.1,-0.3 0,-0.5l0.4,-0.2l0,0c0.1,0.2 0.2,0.5 0,0.8c-0.1,0.3 -0.3,0.5 -0.6,0.7c-0.4,0.2 -0.7,0.3 -1.1,0.1c-0.3,-0.1 -0.6,-0.4 -0.8,-0.7l-0.1,-0.1c-0.2,-0.4 -0.3,-0.7 -0.2,-1.1s0.3,-0.6 0.6,-0.9c0.2,-0.1 0.4,-0.2 0.6,-0.2c0.2,0 0.4,0 0.6,0l0.3,0.6l-0.4,0.2l-0.3,-0.3c-0.1,0 -0.2,0 -0.3,0c-0.1,0 -0.2,0.1 -0.3,0.1c-0.2,0.1 -0.4,0.3 -0.4,0.6c0,0.2 0.1,0.5 0.2,0.7l0.1,0.1c0.2,0.3 0.3,0.5 0.5,0.6c0.5,0 0.7,0 0.9,-0.1z" class="st8"/>
<path id="svg_25" d="m169.8,135.2l-0.2,-0.3l0.9,-0.5l1.2,2.1l0.3,-0.2l0.2,-1l-0.3,0.1l-0.2,-0.3l1.1,-0.6l0.2,0.3l-0.3,0.2l-0.2,1.2l1.4,0.6l0.3,-0.1l0.2,0.3l-1.1,0.6l-0.2,-0.3l0.2,-0.2l-1.2,-0.5l-0.3,0.2l0.5,0.8l0.4,-0.2l0.2,0.3l-1.2,0.7l-0.2,-0.3l0.3,-0.3l-1.7,-3l-0.3,0.4z" class="st8"/>
<path id="svg_26" d="m175.9,136.3c-0.4,0.2 -0.7,0.3 -1.1,0.1s-0.6,-0.4 -0.9,-0.7l-0.1,-0.1c-0.2,-0.4 -0.3,-0.7 -0.2,-1.1c0.1,-0.4 0.3,-0.6 0.6,-0.8c0.3,-0.2 0.7,-0.2 1,-0.1s0.5,0.3 0.7,0.7l0.2,0.3l-1.7,1l0,0c0.1,0.2 0.3,0.4 0.5,0.5c0.2,0.1 0.4,0.1 0.6,-0.1c0.2,-0.1 0.3,-0.2 0.4,-0.3c0.1,-0.1 0.2,-0.2 0.2,-0.4l0.4,0.2c0,0.1 -0.1,0.3 -0.2,0.4c0,0.1 -0.2,0.2 -0.4,0.4zm-1.4,-2.3c-0.2,0.1 -0.3,0.2 -0.3,0.4s0,0.4 0.1,0.6l0,0l1.2,-0.7l0,-0.1c-0.1,-0.2 -0.2,-0.3 -0.4,-0.4c-0.2,0.1 -0.4,0.1 -0.6,0.2z" class="st8"/>
<path id="svg_27" d="m176,133.1l-0.2,-0.3l0.8,-0.5l0.3,0.3c0,-0.2 0,-0.3 0.1,-0.5c0.1,-0.1 0.2,-0.2 0.3,-0.3c0,0 0.1,0 0.1,-0.1c0,0 0.1,0 0.1,0l0.2,0.5l-0.3,0.1c-0.1,0.1 -0.2,0.2 -0.3,0.3c-0.1,0.1 -0.1,0.2 -0.1,0.4l0.8,1.5l0.4,-0.2l0.2,0.3l-1.2,0.7l-0.2,-0.3l0.3,-0.3l-1.1,-1.8l-0.2,0.2z" class="st8"/>
</g>
<g id="svg_28">
<path id="svg_29" d="m141.1,151.8l-0.2,-0.3l0.9,-0.5l1.2,2.1l0.3,-0.2l0.2,-1l-0.3,0.1l-0.2,-0.3l1.1,-0.6l0.2,0.3l-0.3,0.2l-0.2,1.2l1.4,0.6l0.3,-0.1l0.2,0.3l-1.1,0.6l-0.2,-0.3l0.2,-0.2l-1.2,-0.5l-0.3,0.2l0.5,0.8l0.4,-0.2l0.2,0.3l-1.2,0.7l-0.2,-0.3l0.3,-0.3l-1.7,-3l-0.3,0.4z" class="st8"/>
<path id="svg_30" d="m147.6,152c0,0.2 0,0.3 -0.1,0.5c-0.1,0.1 -0.2,0.3 -0.4,0.4c-0.3,0.2 -0.5,0.2 -0.8,0.1c-0.3,-0.1 -0.5,-0.3 -0.7,-0.7l-0.7,-1.1l-0.3,0.1l-0.2,-0.3l0.3,-0.2l0.5,-0.3l0.9,1.5c0.2,0.3 0.3,0.4 0.4,0.5s0.3,0 0.5,-0.1c0.2,-0.1 0.3,-0.2 0.4,-0.3c0.1,-0.1 0.1,-0.3 0.1,-0.4l-0.9,-1.5l-0.4,0.1l-0.2,-0.3l0.3,-0.2l0.5,-0.3l1.3,2.2l0.3,-0.1l0.2,0.3l-0.7,0.4l-0.3,-0.3z" class="st8"/>
<path id="svg_31" d="m150.6,149.2c0.2,0.4 0.3,0.7 0.2,1c0,0.3 -0.2,0.6 -0.5,0.8c-0.2,0.1 -0.3,0.1 -0.5,0.2c-0.2,0 -0.3,0 -0.5,-0.1l0.1,0.4l-0.4,0.2l-1.9,-3.3l-0.4,0.2l-0.2,-0.3l0.9,-0.5l0.8,1.4c0,-0.2 0.1,-0.3 0.1,-0.4c0.1,-0.1 0.2,-0.2 0.4,-0.3c0.3,-0.2 0.6,-0.2 1,0s0.7,0.2 0.9,0.7l0,0zm-0.5,0.2c-0.2,-0.3 -0.4,-0.5 -0.6,-0.6c-0.2,-0.1 -0.4,-0.1 -0.7,0c-0.1,0.1 -0.2,0.2 -0.3,0.3c-0.1,0.1 -0.1,0.3 -0.1,0.4l0.7,1.1c0.1,0.1 0.3,0.1 0.4,0.1c0.1,0 0.3,0 0.4,-0.1c0.2,-0.1 0.3,-0.3 0.4,-0.5c0.1,-0.2 0,-0.4 -0.2,-0.7l0,0z" class="st8"/>
<path id="svg_32" d="m153,149.5c-0.4,0.2 -0.7,0.3 -1.1,0.1s-0.6,-0.4 -0.9,-0.7l-0.1,-0.1c-0.2,-0.4 -0.3,-0.7 -0.2,-1.1c0.1,-0.4 0.3,-0.6 0.6,-0.8c0.3,-0.2 0.7,-0.2 1,-0.1s0.5,0.3 0.7,0.7l0.2,0.3l-1.7,1l0,0c0.1,0.2 0.3,0.4 0.5,0.5c0.2,0.1 0.4,0.1 0.6,-0.1c0.2,-0.1 0.3,-0.2 0.4,-0.3c0.1,-0.1 0.2,-0.2 0.2,-0.4l0.4,0.2c0,0.1 -0.1,0.3 -0.2,0.4s-0.2,0.2 -0.4,0.4zm-1.4,-2.3c-0.2,0.1 -0.3,0.2 -0.3,0.4c0,0.2 0,0.4 0.1,0.6l0,0l1.2,-0.7l0,-0.1c-0.1,-0.2 -0.2,-0.3 -0.4,-0.4s-0.4,0.1 -0.6,0.2z" class="st8"/>
<path id="svg_33" d="m152.4,145.2l-0.2,-0.3l0.9,-0.5l1.9,3.3l0.4,-0.2l0.2,0.3l-1.2,0.7l-0.2,-0.3l0.3,-0.3l-1.7,-3l-0.4,0.3z" class="st8"/>
<path id="svg_34" d="m157.1,147.1c-0.4,0.2 -0.7,0.3 -1.1,0.1s-0.6,-0.4 -0.9,-0.7l-0.1,-0.1c-0.2,-0.4 -0.3,-0.7 -0.2,-1.1c0.1,-0.4 0.3,-0.6 0.6,-0.8c0.3,-0.2 0.7,-0.2 1,-0.1s0.5,0.3 0.7,0.7l0.2,0.3l-1.7,1l0,0c0.1,0.2 0.3,0.4 0.5,0.5c0.2,0.1 0.4,0.1 0.6,-0.1c0.2,-0.1 0.3,-0.2 0.4,-0.3c0.1,-0.1 0.2,-0.2 0.2,-0.4l0.4,0.2c0,0.1 -0.1,0.3 -0.2,0.4s-0.2,0.3 -0.4,0.4zm-1.4,-2.3c-0.2,0.1 -0.3,0.2 -0.3,0.4s0,0.4 0.1,0.6l0,0l1.2,-0.7l0,-0.1c-0.1,-0.2 -0.2,-0.3 -0.4,-0.4c-0.2,0.1 -0.4,0.1 -0.6,0.2z" class="st8"/>
<path id="svg_35" d="m157.5,142.6l0.4,0.6l0.5,-0.3l0.2,0.3l-0.5,0.3l0.9,1.6c0.1,0.1 0.1,0.2 0.2,0.2c0.1,0 0.2,0 0.2,0c0,0 0.1,-0.1 0.1,-0.1c0,0 0.1,-0.1 0.1,-0.1l0.2,0.3c0,0.1 -0.1,0.1 -0.2,0.2c-0.1,0.1 -0.2,0.1 -0.2,0.2c-0.2,0.1 -0.4,0.1 -0.6,0.1c-0.2,0 -0.3,-0.2 -0.5,-0.4l-0.9,-1.6l-0.4,0.2l-0.2,-0.3l0.4,-0.2l-0.4,-0.6l0.7,-0.4z" class="st8"/>
</g>
<polygon id="svg_36" points="225.1,160.4 189.4,139.9 189.4,98.7 225.1,78.2 260.7,98.7 260.7,139.9 " class="st16"/>
<polygon id="svg_37" points="189.4,119.3 189.4,139.9 225.1,160.4 242.9,150.2 " class="st13"/>
<polygon id="svg_38" points="208.7,147.7 214.8,137.2 237.3,150.2 225.1,157.2 " class="st7"/>
<g id="svg_39">
<path id="svg_40" d="m215.5,142.6c0.5,0.3 0.7,0.6 0.8,1c0.1,0.4 0,0.9 -0.2,1.3l-0.3,0.5c-0.3,0.4 -0.6,0.7 -1,0.8c-0.4,0.1 -0.9,0 -1.3,-0.2l-1.4,-0.8l0.2,-0.3l0.4,0.2l1.6,-2.7l-0.3,-0.3l0.2,-0.3l0.4,0.2l0.9,0.6zm-0.8,0l-1.6,2.7l0.6,0.3c0.3,0.2 0.6,0.2 0.9,0.1c0.3,-0.1 0.6,-0.3 0.7,-0.6l0.3,-0.5c0.2,-0.3 0.2,-0.6 0.2,-1c-0.1,-0.3 -0.3,-0.6 -0.6,-0.8l-0.5,-0.2z" class="st8"/>
<path id="svg_41" d="m216.2,145.9c0.2,-0.4 0.5,-0.6 0.8,-0.8c0.3,-0.1 0.7,-0.1 1,0.1c0.4,0.2 0.6,0.5 0.6,0.9c0.1,0.4 0,0.7 -0.2,1.1l0,0.1c-0.2,0.4 -0.5,0.6 -0.8,0.8c-0.3,0.1 -0.7,0.1 -1,-0.1c-0.4,-0.2 -0.6,-0.5 -0.6,-0.9c-0.1,-0.4 0,-0.8 0.2,-1.2l0,0zm0.5,0.3c-0.2,0.3 -0.2,0.5 -0.2,0.8c0,0.2 0.1,0.4 0.4,0.6c0.2,0.1 0.4,0.1 0.7,0c0.2,-0.1 0.4,-0.3 0.6,-0.6l0,-0.1c0.2,-0.3 0.2,-0.5 0.2,-0.8c0,-0.2 -0.1,-0.4 -0.4,-0.6c-0.2,-0.1 -0.4,-0.1 -0.7,0c-0.3,0.2 -0.5,0.4 -0.6,0.7l0,0z" class="st8"/>
<path id="svg_42" d="m219.5,149.1c0.2,0.1 0.3,0.1 0.5,0.1c0.2,0 0.3,-0.1 0.4,-0.2l0.4,0.2l0,0c-0.1,0.2 -0.3,0.4 -0.6,0.4c-0.3,0.1 -0.6,0 -0.9,-0.2c-0.4,-0.2 -0.6,-0.5 -0.6,-0.9c-0.1,-0.4 0,-0.7 0.2,-1.1l0.1,-0.1c0.2,-0.4 0.5,-0.6 0.8,-0.7s0.7,-0.1 1.1,0.1c0.2,0.1 0.4,0.3 0.5,0.4s0.2,0.3 0.2,0.5l-0.3,0.6l-0.4,-0.2l0.1,-0.5c0,-0.1 -0.1,-0.2 -0.1,-0.3c-0.1,-0.1 -0.2,-0.2 -0.3,-0.2c-0.2,-0.1 -0.5,-0.2 -0.7,0c-0.2,0.1 -0.4,0.3 -0.5,0.6l-0.1,0.1c-0.2,0.3 -0.2,0.5 -0.2,0.7c0.1,0.4 0.2,0.6 0.4,0.7z" class="st8"/>
<path id="svg_43" d="m222.7,146.8l0.2,-0.3l0.9,0.5l-1.2,2.1l0.3,0.2l0.9,-0.4l-0.2,-0.2l0.2,-0.3l1.1,0.6l-0.2,0.3l-0.3,-0.1l-1.1,0.4l0.2,1.5l0.3,0.2l-0.2,0.3l-1.1,-0.6l0.2,-0.3l0.3,0.1l-0.2,-1.2l-0.3,-0.2l-0.5,0.8l0.3,0.3l-0.2,0.3l-1.2,-0.7l0.2,-0.3l0.4,0.2l1.7,-3l-0.5,-0.2z" class="st8"/>
<path id="svg_44" d="m224.8,152.7c-0.4,-0.2 -0.6,-0.5 -0.6,-0.8s0,-0.7 0.2,-1.1l0.1,-0.1c0.2,-0.4 0.5,-0.6 0.9,-0.7s0.7,-0.1 1,0.1c0.3,0.2 0.5,0.5 0.6,0.8c0.1,0.3 0,0.6 -0.2,1l-0.2,0.3l-1.7,-1l0,0c-0.1,0.2 -0.2,0.5 -0.2,0.7c0,0.2 0.2,0.4 0.4,0.5c0.2,0.1 0.3,0.1 0.5,0.2c0.1,0 0.3,0 0.4,0l0,0.4c-0.1,0 -0.3,0 -0.5,0s-0.4,-0.2 -0.7,-0.3zm1.3,-2.4c-0.2,-0.1 -0.3,-0.1 -0.5,0c-0.2,0.1 -0.4,0.2 -0.5,0.4l0,0l1.2,0.7l0,-0.1c0.1,-0.2 0.1,-0.4 0.1,-0.5c0,-0.2 -0.1,-0.4 -0.3,-0.5z" class="st8"/>
<path id="svg_45" d="m227.6,151.2l0.2,-0.3l0.8,0.5l-0.2,0.4c0.1,-0.1 0.3,-0.1 0.4,-0.2c0.1,0 0.3,0 0.4,0.1c0,0 0.1,0 0.1,0.1c0,0 0.1,0.1 0.1,0.1l-0.3,0.4l-0.3,-0.2c-0.1,-0.1 -0.2,-0.1 -0.4,-0.1c-0.1,0 -0.2,0.1 -0.3,0.1l-0.8,1.5l0.3,0.3l-0.2,0.3l-1.2,-0.7l0.2,-0.3l0.4,0.2l1.1,-1.8l-0.3,-0.4z" class="st8"/>
</g>
<g id="svg_46">
<path id="svg_47" d="m194,130.3l0.2,-0.3l0.9,0.5l-1.2,2.1l0.3,0.2l0.9,-0.4l-0.2,-0.2l0.2,-0.3l1.1,0.6l-0.2,0.3l-0.3,-0.1l-1.1,0.4l0.2,1.5l0.3,0.2l-0.2,0.3l-1.1,-0.6l0.2,-0.3l0.3,0.1l-0.2,-1.2l-0.3,-0.2l-0.5,0.8l0.3,0.3l-0.2,0.3l-1.2,-0.7l0.2,-0.3l0.4,0.2l1.7,-3l-0.5,-0.2z" class="st8"/>
<path id="svg_48" d="m197.1,136.1c-0.2,0.1 -0.3,0.1 -0.5,0.1c-0.2,0 -0.3,0 -0.5,-0.1c-0.3,-0.2 -0.4,-0.4 -0.5,-0.6c-0.1,-0.3 0,-0.6 0.2,-1l0.7,-1.1l-0.3,-0.2l0.2,-0.3l0.3,0.2l0.5,0.3l-0.9,1.5c-0.2,0.3 -0.2,0.5 -0.2,0.6c0,0.1 0.1,0.3 0.3,0.4c0.2,0.1 0.3,0.1 0.5,0.1c0.1,0 0.3,-0.1 0.4,-0.1l0.9,-1.5l-0.3,-0.3l0.2,-0.3l0.3,0.2l0.5,0.3l-1.3,2.2l0.3,0.2l-0.2,0.3l-0.7,-0.4l0.1,-0.5z" class="st8"/>
<path id="svg_49" d="m201,137.3c-0.2,0.4 -0.5,0.6 -0.8,0.7s-0.6,0.1 -0.9,-0.1c-0.2,-0.1 -0.3,-0.2 -0.4,-0.3c-0.1,-0.1 -0.1,-0.3 -0.1,-0.5l-0.2,0.3l-0.4,-0.2l1.9,-3.3l-0.3,-0.3l0.2,-0.3l0.9,0.5l-0.8,1.4c0.1,-0.1 0.3,-0.1 0.5,-0.1s0.3,0.1 0.5,0.2c0.3,0.2 0.5,0.5 0.5,0.8s-0.3,0.7 -0.6,1.2l0,0zm-0.4,-0.4c0.2,-0.3 0.3,-0.6 0.3,-0.8c0,-0.2 -0.1,-0.4 -0.3,-0.6c-0.1,-0.1 -0.3,-0.1 -0.4,-0.1c-0.1,0 -0.3,0.1 -0.4,0.1l-0.7,1.1c0,0.2 0,0.3 0.1,0.4c0.1,0.1 0.2,0.2 0.3,0.3c0.2,0.1 0.4,0.1 0.6,0c0.1,0.1 0.3,-0.1 0.5,-0.4l0,0z" class="st8"/>
<path id="svg_50" d="m202,139.4c-0.4,-0.2 -0.6,-0.5 -0.6,-0.8c-0.1,-0.4 0,-0.7 0.2,-1.1l0.1,-0.1c0.2,-0.4 0.5,-0.6 0.9,-0.7c0.4,-0.1 0.7,-0.1 1,0.1c0.3,0.2 0.5,0.5 0.6,0.8c0.1,0.3 0,0.6 -0.2,1l-0.2,0.3l-1.7,-1l0,0c-0.1,0.2 -0.2,0.5 -0.2,0.7c0,0.2 0.2,0.4 0.4,0.5c0.2,0.1 0.3,0.1 0.5,0.2c0.1,0 0.3,0 0.4,0l0,0.4c-0.1,0 -0.3,0 -0.5,0c-0.3,-0.1 -0.5,-0.1 -0.7,-0.3zm1.2,-2.3c-0.2,-0.1 -0.3,-0.1 -0.5,0c-0.2,0.1 -0.3,0.2 -0.5,0.4l0,0l1.2,0.7l0,-0.1c0.1,-0.2 0.1,-0.4 0.1,-0.5c0,-0.2 -0.1,-0.4 -0.3,-0.5z" class="st8"/>
<path id="svg_51" d="m205.3,136.8l0.2,-0.3l0.9,0.5l-1.9,3.3l0.3,0.3l-0.2,0.3l-1.2,-0.7l0.2,-0.3l0.4,0.2l1.7,-3l-0.4,-0.3z" class="st8"/>
<path id="svg_52" d="m206.1,141.8c-0.4,-0.2 -0.6,-0.5 -0.6,-0.8c-0.1,-0.4 0,-0.7 0.2,-1.1l0.1,-0.1c0.2,-0.4 0.5,-0.6 0.9,-0.7c0.4,-0.1 0.7,-0.1 1,0.1c0.3,0.2 0.5,0.5 0.6,0.8c0.1,0.3 0,0.6 -0.2,1l-0.2,0.3l-1.7,-1l0,0c-0.1,0.2 -0.2,0.5 -0.2,0.7c0,0.2 0.2,0.4 0.4,0.5c0.2,0.1 0.3,0.1 0.5,0.2c0.1,0 0.3,0 0.4,0l0,0.4c-0.1,0 -0.3,0 -0.5,0c-0.3,-0.1 -0.5,-0.2 -0.7,-0.3zm1.2,-2.3c-0.2,-0.1 -0.3,-0.1 -0.5,0c-0.2,0.1 -0.3,0.2 -0.5,0.4l0,0l1.2,0.7l0,-0.1c0.1,-0.2 0.1,-0.4 0.1,-0.5c0,-0.3 -0.1,-0.4 -0.3,-0.5z" class="st8"/>
<path id="svg_53" d="m210.2,139.9l-0.4,0.6l0.5,0.3l-0.2,0.3l-0.5,-0.3l-0.9,1.6c-0.1,0.1 -0.1,0.2 -0.1,0.3c0,0.1 0.1,0.1 0.2,0.2c0,0 0.1,0 0.1,0.1c0.1,0 0.1,0 0.1,0.1l-0.1,0.4c-0.1,0 -0.1,0 -0.2,0c-0.1,0 -0.2,-0.1 -0.3,-0.1c-0.2,-0.1 -0.3,-0.3 -0.4,-0.4c0,-0.2 0,-0.4 0.1,-0.6l0.9,-1.6l-0.4,-0.2l0.2,-0.3l0.4,0.2l0.4,-0.6l0.6,0z" class="st8"/>
</g>
<polygon id="svg_54" points="147.1,296.4 111.4,275.9 111.4,234.7 147.1,214.1 182.7,234.7 182.7,275.9 " class="st16"/>
<polygon id="svg_55" points="129.3,224.4 147.1,214.1 182.7,234.7 182.7,255.3 " class="st13"/>
<polygon id="svg_56" points="163.5,226.9 157.4,237.4 179.9,250.4 179.9,236.3 " class="st7"/>
<g id="svg_57">
<path id="svg_58" d="m164.2,232.3c0.5,0.3 0.7,0.6 0.8,1c0.1,0.4 0,0.9 -0.2,1.3l-0.3,0.5c-0.3,0.4 -0.6,0.7 -1,0.8c-0.4,0.1 -0.9,0 -1.3,-0.2l-1.4,-0.8l0.2,-0.3l0.4,0.2l1.6,-2.7l-0.3,-0.3l0.2,-0.3l0.4,0.2l0.9,0.6zm-0.8,0l-1.6,2.7l0.6,0.3c0.3,0.2 0.6,0.2 0.9,0.1c0.3,-0.1 0.6,-0.3 0.7,-0.6l0.3,-0.5c0.2,-0.3 0.3,-0.6 0.2,-1c-0.1,-0.3 -0.3,-0.6 -0.6,-0.8l-0.5,-0.2z" class="st8"/>
<path id="svg_59" d="m164.9,235.6c0.2,-0.4 0.5,-0.6 0.8,-0.8c0.3,-0.1 0.7,-0.1 1,0.1c0.4,0.2 0.6,0.5 0.6,0.9c0.1,0.4 0,0.7 -0.2,1.1l0,0.1c-0.2,0.4 -0.5,0.6 -0.8,0.8c-0.3,0.1 -0.7,0.1 -1,-0.1c-0.4,-0.2 -0.6,-0.5 -0.6,-0.9c-0.1,-0.4 0,-0.8 0.2,-1.2l0,0zm0.5,0.3c-0.2,0.3 -0.2,0.5 -0.2,0.8c0,0.2 0.1,0.4 0.4,0.6c0.2,0.1 0.4,0.1 0.7,0c0.2,-0.1 0.4,-0.3 0.6,-0.6l0,-0.1c0.2,-0.3 0.2,-0.5 0.2,-0.8c0,-0.2 -0.1,-0.4 -0.4,-0.6c-0.2,-0.1 -0.4,-0.1 -0.7,0c-0.2,0.2 -0.4,0.4 -0.6,0.7l0,0z" class="st8"/>
<path id="svg_60" d="m168.2,238.8c0.2,0.1 0.3,0.1 0.5,0.1c0.2,0 0.3,-0.1 0.4,-0.2l0.4,0.2l0,0c-0.1,0.2 -0.3,0.4 -0.6,0.4c-0.3,0.1 -0.6,0 -0.9,-0.2c-0.4,-0.2 -0.6,-0.5 -0.6,-0.9c-0.1,-0.4 0,-0.7 0.2,-1.1l0.1,-0.1c0.2,-0.4 0.5,-0.6 0.8,-0.7c0.3,-0.1 0.7,-0.1 1.1,0.1c0.2,0.1 0.4,0.3 0.5,0.4s0.2,0.3 0.2,0.5l-0.3,0.7l-0.4,-0.2l0.1,-0.5c0,-0.1 -0.1,-0.2 -0.1,-0.3c-0.1,-0.1 -0.2,-0.2 -0.3,-0.2c-0.2,-0.1 -0.5,-0.2 -0.7,0c-0.2,0.1 -0.4,0.3 -0.5,0.6l-0.1,0.1c-0.2,0.3 -0.2,0.5 -0.2,0.7c0.1,0.3 0.2,0.5 0.4,0.6z" class="st8"/>
<path id="svg_61" d="m171.4,236.5l0.2,-0.3l0.9,0.5l-1.2,2.1l0.3,0.2l0.9,-0.4l-0.2,-0.2l0.2,-0.3l1.1,0.6l-0.2,0.3l-0.4,0l-1.1,0.4l0.2,1.5l0.3,0.2l-0.2,0.3l-1.1,-0.6l0.2,-0.3l0.3,0.1l-0.2,-1.2l-0.3,-0.2l-0.5,0.8l0.3,0.3l-0.2,0.3l-1.2,-0.7l0.2,-0.3l0.4,0.2l1.7,-3l-0.4,-0.3z" class="st8"/>
<path id="svg_62" d="m173.6,242.4c-0.4,-0.2 -0.6,-0.5 -0.6,-0.8c-0.1,-0.4 0,-0.7 0.2,-1.1l0.1,-0.1c0.2,-0.4 0.5,-0.6 0.9,-0.7c0.4,-0.1 0.7,-0.1 1,0.1c0.3,0.2 0.5,0.5 0.6,0.8c0.1,0.3 0,0.6 -0.2,1l-0.2,0.3l-1.7,-1l0,0c-0.1,0.2 -0.2,0.5 -0.2,0.7c0,0.2 0.2,0.4 0.4,0.5c0.2,0.1 0.3,0.1 0.5,0.2s0.3,0 0.4,0l0,0.4c-0.1,0 -0.3,0 -0.5,0c-0.3,-0.1 -0.5,-0.2 -0.7,-0.3zm1.2,-2.4c-0.2,-0.1 -0.3,-0.1 -0.5,0c-0.2,0.1 -0.4,0.2 -0.5,0.4l0,0l1.2,0.7l0,-0.1c0.1,-0.2 0.1,-0.4 0.1,-0.5c0,-0.2 -0.1,-0.4 -0.3,-0.5z" class="st8"/>
<path id="svg_63" d="m176.3,240.9l0.2,-0.3l0.8,0.5l-0.2,0.4c0.1,-0.1 0.3,-0.1 0.4,-0.2c0.2,0 0.3,0 0.4,0.1c0,0 0.1,0 0.1,0.1c0,0 0.1,0.1 0.1,0.1l-0.3,0.4l-0.3,-0.2c-0.1,-0.1 -0.2,-0.1 -0.4,-0.1c-0.1,0 -0.2,0.1 -0.3,0.1l-0.8,1.5l0.3,0.3l-0.2,0.3l-1.2,-0.7l0.2,-0.3l0.4,0.2l1.1,-1.8l-0.3,-0.4z" class="st8"/>
</g>
<g id="svg_64">
<path id="svg_65" d="m142.7,220l0.2,-0.3l0.9,0.5l-1.2,2.1l0.3,0.2l0.9,-0.4l-0.2,-0.2l0.2,-0.3l1.1,0.6l-0.2,0.3l-0.3,-0.1l-1.1,0.4l0.2,1.5l0.3,0.2l-0.2,0.3l-1.1,-0.6l0.2,-0.3l0.3,0.1l-0.2,-1.2l-0.3,-0.2l-0.5,0.8l0.3,0.3l-0.2,0.3l-1.2,-0.7l0.2,-0.3l0.4,0.2l1.7,-3l-0.5,-0.2z" class="st8"/>
<path id="svg_66" d="m145.8,225.8c-0.2,0.1 -0.3,0.1 -0.5,0.1s-0.3,0 -0.5,-0.1c-0.3,-0.2 -0.4,-0.4 -0.5,-0.6s0,-0.6 0.2,-1l0.7,-1.1l-0.3,-0.2l0.2,-0.3l0.3,0.2l0.5,0.3l-0.9,1.5c-0.2,0.3 -0.2,0.5 -0.2,0.6s0.1,0.3 0.3,0.4c0.2,0.1 0.3,0.1 0.5,0.1c0.1,0 0.3,-0.1 0.4,-0.1l0.9,-1.5l-0.3,-0.3l0.2,-0.3l0.3,0.2l0.5,0.3l-1.3,2.2l0.3,0.2l-0.2,0.3l-0.7,-0.4l0.1,-0.5z" class="st8"/>
<path id="svg_67" d="m149.8,227c-0.2,0.4 -0.5,0.6 -0.8,0.7c-0.3,0.1 -0.6,0.1 -0.9,-0.1c-0.2,-0.1 -0.3,-0.2 -0.4,-0.3c-0.1,-0.1 -0.1,-0.3 -0.1,-0.5l-0.2,0.3l-0.4,-0.2l1.9,-3.3l-0.3,-0.3l0.2,-0.3l0.9,0.5l-0.8,1.4c0.1,-0.1 0.3,-0.1 0.5,-0.1c0.2,0 0.3,0.1 0.5,0.2c0.3,0.2 0.5,0.5 0.5,0.8c-0.3,0.3 -0.4,0.7 -0.6,1.2l0,0zm-0.5,-0.4c0.2,-0.3 0.3,-0.6 0.3,-0.8c0,-0.2 -0.1,-0.4 -0.3,-0.6c-0.1,-0.1 -0.3,-0.1 -0.4,-0.1c-0.1,0 -0.3,0.1 -0.4,0.1l-0.7,1.1c0,0.2 0,0.3 0.1,0.4s0.2,0.2 0.3,0.3c0.2,0.1 0.4,0.1 0.6,0c0.2,0.1 0.3,0 0.5,-0.4l0,0z" class="st8"/>
<path id="svg_68" d="m150.7,229.1c-0.4,-0.2 -0.6,-0.5 -0.6,-0.8c-0.1,-0.4 0,-0.7 0.2,-1.1l0.1,-0.1c0.2,-0.4 0.5,-0.6 0.9,-0.7c0.4,-0.1 0.7,-0.1 1,0.1c0.3,0.2 0.5,0.5 0.6,0.8s0,0.6 -0.2,1l-0.2,0.3l-1.7,-1l0,0c-0.1,0.2 -0.2,0.5 -0.2,0.7s0.2,0.4 0.4,0.5c0.2,0.1 0.3,0.1 0.5,0.2c0.1,0 0.3,0 0.4,0l0,0.4c-0.1,0 -0.3,0 -0.5,0c-0.3,-0.1 -0.5,-0.1 -0.7,-0.3zm1.2,-2.3c-0.2,-0.1 -0.3,-0.1 -0.5,0c-0.2,0.1 -0.4,0.2 -0.5,0.4l0,0l1.2,0.7l0,-0.1c0.1,-0.2 0.1,-0.4 0.1,-0.5c0,-0.2 -0.1,-0.4 -0.3,-0.5z" class="st8"/>
<path id="svg_69" d="m154,226.5l0.2,-0.3l0.9,0.5l-1.9,3.3l0.3,0.3l-0.2,0.3l-1.2,-0.7l0.2,-0.3l0.4,0.2l1.7,-3l-0.4,-0.3z" class="st8"/>
<path id="svg_70" d="m154.8,231.5c-0.4,-0.2 -0.6,-0.5 -0.6,-0.8c-0.1,-0.4 0,-0.7 0.2,-1.1l0.1,-0.1c0.2,-0.4 0.5,-0.6 0.9,-0.7c0.4,-0.1 0.7,-0.1 1,0.1c0.3,0.2 0.5,0.5 0.6,0.8s0,0.6 -0.2,1l-0.2,0.3l-1.7,-1l0,0c-0.1,0.2 -0.2,0.5 -0.2,0.7s0.2,0.4 0.4,0.5c0.2,0.1 0.3,0.1 0.5,0.2c0.1,0 0.3,0 0.4,0l0,0.4c-0.1,0 -0.3,0 -0.5,0c-0.3,-0.1 -0.5,-0.1 -0.7,-0.3zm1.3,-2.3c-0.2,-0.1 -0.3,-0.1 -0.5,0c-0.2,0.1 -0.4,0.2 -0.5,0.4l0,0l1.2,0.7l0,-0.1c0.1,-0.2 0.1,-0.4 0.1,-0.5c0,-0.2 -0.1,-0.4 -0.3,-0.5z" class="st8"/>
<path id="svg_71" d="m158.9,229.6l-0.4,0.6l0.5,0.3l-0.2,0.3l-0.5,-0.3l-0.9,1.6c-0.1,0.1 -0.1,0.2 -0.1,0.3c0,0.1 0.1,0.1 0.2,0.2c0,0 0.1,0 0.1,0.1c0.1,0 0.1,0 0.1,0.1l-0.1,0.4c-0.1,0 -0.1,0 -0.2,0c-0.1,0 -0.2,-0.1 -0.3,-0.1c-0.2,-0.1 -0.3,-0.3 -0.4,-0.4c0,-0.2 0,-0.4 0.1,-0.6l0.9,-1.6l-0.4,-0.2l0.2,-0.3l0.4,0.2l0.4,-0.6l0.6,0z" class="st8"/>
</g>
</g>
<g id="service"/>
<g id="pods"/>
<g id="IP"/>
<g id="deployments"/>
<g id="containers_x2F_volumes"/>
<g id="labels_x2F_selectors"/>
<g id="Layer_14"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 41 KiB

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 350 200"><defs><style>.cls-1{opacity:0.13;}.cls-2{fill:url(#linear-gradient);}.cls-3,.cls-4{fill:#fff;}.cls-3,.cls-4,.cls-5,.cls-7{stroke:#326de6;}.cls-3,.cls-4,.cls-6,.cls-7{stroke-linecap:round;stroke-linejoin:round;}.cls-3,.cls-5,.cls-6,.cls-7{stroke-width:0.8px;}.cls-4{stroke-width:1.2px;}.cls-5,.cls-7{fill:none;}.cls-5{stroke-miterlimit:10;}.cls-6{fill:#06f7c9;stroke:#011f38;}.cls-8{fill:#326de6;}</style><linearGradient id="linear-gradient" x1="181.65" y1="100" x2="302.12" y2="100" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#326de6"/><stop offset="1" stop-color="#06f7c9"/></linearGradient></defs><title>16.07.28_k8s_visual_diagrams</title><g id="Graphics"><g class="cls-1"><polygon class="cls-2" points="290.19 64.54 302.12 116.81 268.69 158.72 215.07 158.72 181.65 116.81 193.58 64.54 241.88 41.28 290.19 64.54"/></g><polygon class="cls-3" points="257.17 90.84 243.2 82.77 243.2 66.64 257.17 58.58 271.14 66.64 271.14 82.77 257.17 90.84"/><polygon class="cls-3" points="225.04 109.43 211.07 117.49 197.11 109.43 197.11 93.3 211.07 85.23 225.04 93.3 225.04 109.43"/><polygon class="cls-3" points="226.59 90.84 212.63 82.77 212.63 66.64 226.59 58.58 240.56 66.64 240.56 82.77 226.59 90.84"/><polygon class="cls-3" points="226.44 144.14 212.47 136.08 212.47 119.95 226.44 111.89 240.41 119.95 240.41 136.08 226.44 144.14"/><polygon class="cls-3" points="257.32 144.14 243.36 136.08 243.36 119.95 257.32 111.89 271.29 119.95 271.29 136.08 257.32 144.14"/><polygon class="cls-3" points="286.66 109.43 272.69 117.49 258.72 109.43 258.72 93.3 272.69 85.23 286.66 93.3 286.66 109.43"/><line class="cls-4" x1="241.82" y1="101.23" x2="241.82" y2="103.08"/><line class="cls-4" x1="242.75" y1="102.16" x2="240.9" y2="102.16"/><polygon class="cls-4" points="252.18 104.23 250.96 98.89 250.14 95.3 250.14 95.3 250.14 95.3 250.14 95.3 250.14 95.3 250.14 95.3 245.22 92.93 241.88 91.32 241.88 91.32 241.88 91.32 241.88 91.32 233.64 95.29 233.62 95.3 233.62 95.3 233.62 95.3 233.62 95.3 232.6 99.77 232.6 99.77 232.6 99.77 232.6 99.77 231.81 103.23 231.58 104.23 231.58 104.23 231.58 104.23 231.58 104.23 234 107.26 234.43 107.81 234.43 107.81 237.3 111.4 237.3 111.4 237.3 111.4 237.3 111.4 237.3 111.4 241.88 111.4 241.88 111.4 246.47 111.4 246.47 111.4 246.47 111.4 246.47 111.4 246.47 111.4 246.47 111.4 248.63 108.69 249.32 107.82 249.32 107.82 252.18 104.23 252.18 104.23 252.18 104.23 252.18 104.23"/><circle class="cls-5" cx="68.81" cy="100.33" r="20.93"/><polygon class="cls-6" points="59.12 94.72 68.81 89.13 78.51 94.72 68.81 100.33 59.12 94.72"/><polygon class="cls-6" points="59.12 105.92 59.12 94.72 68.81 100.33 68.81 111.52 59.12 105.92"/><polygon class="cls-6" points="68.81 111.52 68.81 100.33 78.51 94.72 78.51 105.92 68.81 111.52"/><line class="cls-7" x1="106.55" y1="100.33" x2="163.02" y2="100.33"/><polygon class="cls-8" points="160.37 103.6 159.82 103.01 162.71 100.33 159.82 97.64 160.37 97.05 163.88 100.33 160.37 103.6"/></g></svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

@@ -0,0 +1,293 @@
<svg width="476.1" height="385.3" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<style type="text/css">.st0{fill:#FFFFFF;stroke:#006DE9;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st1{fill:#FFFFFF;stroke:#006DE9;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st2{fill:#FFFFFF;stroke:#326DE6;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st3{opacity:0.71;fill:#326CE6;}
.st4{opacity:0.45;fill:#FFFFFF;}
.st5{fill:#FFFFFF;stroke:#006DE9;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st6{fill:#006DE9;}
.st7{fill:#A0CAEA;}
.st8{fill:#FFFFFF;}
.st9{opacity:0.13;}
.st10{fill:url(#SVGID_1_);}
.st11{fill:url(#SVGID_2_);}
.st12{fill:#FFFFFF;stroke:#326DE6;stroke-width:3.2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st13{fill:#326DE6;}
.st14{fill:none;stroke:#326DE6;stroke-width:2.4;stroke-miterlimit:10;}
.st15{fill:#A0CAE9;}
.st16{fill:#FFFFFF;stroke:#326DE6;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st17{fill:#FFFFFF;stroke:#326DE6;stroke-width:1.6;stroke-miterlimit:10;}
.st18{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;}
.st19{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3749,1.5832;}
.st20{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4006,1.6004;}
.st21{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st22{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st23{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3975,1.5984;}
.st24{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.395,1.5966;}
.st25{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3963,1.5976;}
.st26{opacity:0.1;fill:#EEF406;}
.st27{opacity:2.000000e-02;fill:#EEF406;}
.st28{opacity:0.1;fill:#06F7C9;}
.st29{fill:none;stroke:#006DE9;stroke-width:0.8;stroke-miterlimit:10;}
.st30{opacity:0.1;fill:url(#SVGID_3_);}
.st31{opacity:0.1;fill:url(#SVGID_4_);}
.st32{opacity:0.1;fill:url(#SVGID_5_);}
.st33{opacity:0.1;fill:url(#SVGID_6_);}
.st34{fill:none;stroke:#326DE6;stroke-width:1.2;stroke-miterlimit:10;}
.st35{opacity:0.1;fill:url(#SVGID_7_);}
.st36{opacity:0.1;fill:url(#SVGID_8_);}
.st37{opacity:0.1;fill:url(#SVGID_9_);}
.st38{opacity:0.1;fill:url(#SVGID_10_);}
.st39{fill:none;stroke:#326DE6;stroke-width:2;stroke-miterlimit:10;}
.st40{opacity:0.4;fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st41{fill:none;stroke:#EEF406;stroke-width:2.4596;stroke-miterlimit:10;}
.st42{fill:#011F38;}
.st43{opacity:0.4;}
.st44{opacity:0.1;}
.st45{fill:#326DE6;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st46{fill:none;stroke:#FFFFFF;stroke-width:1.2;stroke-linecap:round;stroke-linejoin:round;}
.st47{fill:#06F7C9;stroke:#FFFFFF;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st48{fill:none;stroke:#011F38;stroke-width:1.2;stroke-linecap:round;stroke-linejoin:round;}
.st49{fill:#326DE6;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;}
.st50{fill:#06F7C9;stroke:#011F38;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st51{fill:#8115FF;stroke:#011F38;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st52{opacity:0.3;}
.st53{opacity:0.2;fill:#6D6E71;}
.st54{fill:#EEF406;}
.st55{fill:#06F7C9;}
.st56{fill:#FFFFFF;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st57{fill:#FFFFFF;stroke:#EEF406;stroke-width:1.6;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st58{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4938,1.6626;}
.st59{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.0084,1.3389;}
.st60{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.724,1.816;}
.st61{fill:#011F38;stroke:#414042;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st62{fill:none;stroke:#011F38;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st63{fill:none;stroke:#011F38;stroke-width:0.2813;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}</style>
<symbol id="master_x5F_level1_1_" viewBox="-68.6 -66.9 137.2 133.9">
<g id="svg_1">
<g id="svg_2">
<line class="st0" x1="0" y1="-11.1" x2="0" y2="0.7" id="svg_3"/>
<line class="st0" x1="5.9" y1="-5.2" x2="-5.9" y2="-5.2" id="svg_4"/>
</g>
<polygon class="st1" points="-29.2,-63.9 -65.6,-18.3 -52.6,38.6 0,63.9 52.6,38.6 65.6,-18.3 29.2,-63.9 " id="svg_5"/>
</g>
</symbol>
<symbol id="node_high_level" viewBox="-81 -93 162 186.1">
<polygon class="st2" points="-80,-46 -80,46 0,92 80,46 80,-46 0,-92 " id="svg_6"/>
<g id="Isolation_Mode_3_"/>
</symbol>
<symbol id="node_x5F_empty" viewBox="-87.5 -100.6 175.1 201.1">
<use xlink:href="#node_high_level" width="162" height="186.1" id="XMLID_201_" x="-81" y="-93" transform="matrix(1.0808,0,0,1.0808,-0.00003292006,-0.00003749943) "/>
<g id="svg_7">
<polygon class="st3" points="76.8,-28.1 -14,-80.3 0,-88.3 76.7,-44.4 " id="svg_8"/>
<polygon class="st4" points="76.8,-28.1 32.1,-53.8 38.8,-66.1 76.7,-44.4 " id="svg_9"/>
</g>
</symbol>
<symbol id="node_x5F_new" viewBox="-87.6 -101 175.2 202">
<polygon class="st5" points="0,-100 -86.6,-50 -86.6,50 0,100 86.6,50 86.6,-50 " id="svg_10"/>
<polygon class="st6" points="-86.6,-20.2 -86.6,-50 0,-100 25.8,-85.1 " id="svg_11"/>
<polygon class="st7" points="-40.8,-70.7 -32.9,-57 15.7,-85.1 0,-94.3 " id="svg_12"/>
<text transform="matrix(0.866,-0.5,-0.5,-0.866,-33.9256,-70.7388) " class="st8" font-size="11.3632px" font-family="&#x27;RobotoSlab-Regular'" id="svg_13">Docker</text>
<text transform="matrix(0.866,-0.5,-0.5,-0.866,-76.0668,-46.4087) " class="st8" font-size="11.3632px" font-family="&#x27;RobotoSlab-Regular'" id="svg_14">Kubelt</text>
</symbol>
<g>
<title>Layer 1</title>
<g id="CLUSTER">
<g id="XMLID_8_" class="st9">
<g id="svg_15">
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="27.9955" y1="185.5114" x2="342.4509" y2="185.5114">
<stop offset="0" stop-color="#326DE6"/>
<stop offset="1" stop-color="#10FFC6"/>
</linearGradient>
<polygon class="st10" points="311.3,92.9 342.5,229.4 255.2,338.8 115.3,338.8 28,229.4 59.1,92.9 185.2,32.2 " id="svg_16"/>
</g>
</g>
</g>
<g id="master">
<g id="master_x5F_level1"/>
<use xlink:href="#master_x5F_level1_1_" width="137.2" height="133.9" x="-68.6" y="-66.9" transform="matrix(0.4,0,0,-0.4,185.2213,187.4709) " id="svg_17"/>
</g>
<g id="Node">
<g id="Node_x5F_level3_x5F_1">
<g id="Isolation_Mode"/>
</g>
<polygon class="st16" points="224.6,160.7 189,140.1 189,98.9 224.6,78.4 260.3,98.9 260.3,140.1 " id="svg_18"/>
<polygon class="st13" points="189,127.8 189,140.1 224.6,160.7 235.2,154.5 " id="svg_19"/>
<polygon class="st7" points="207.8,148.6 211.1,143 231.1,154.5 224.6,158.3 " id="svg_20"/>
<g id="svg_21">
<path class="st8" d="m213.7,146.5c0.4,0.2 0.6,0.5 0.7,0.9c0.1,0.4 0,0.7 -0.2,1.1l-0.2,0.4c-0.2,0.4 -0.5,0.6 -0.9,0.7c-0.4,0.1 -0.7,0 -1.1,-0.2l-1.2,-0.7l0.1,-0.2l0.4,0.1l1.3,-2.3l-0.3,-0.2l0.1,-0.3l0.3,0.2l1,0.5zm-0.6,0l-1.3,2.3l0.5,0.3c0.3,0.2 0.5,0.2 0.8,0.1c0.3,-0.1 0.5,-0.3 0.6,-0.5l0.2,-0.4c0.2,-0.3 0.2,-0.5 0.2,-0.8c-0.1,-0.3 -0.2,-0.5 -0.5,-0.6l-0.5,-0.4z" id="svg_22"/>
<path class="st8" d="m214.3,149.2c0.2,-0.3 0.4,-0.5 0.7,-0.6c0.3,-0.1 0.6,-0.1 0.9,0.1c0.3,0.2 0.5,0.4 0.5,0.7c0.1,0.3 0,0.6 -0.2,0.9l0,0c-0.2,0.3 -0.4,0.5 -0.7,0.6c-0.3,0.1 -0.6,0.1 -0.9,-0.1c-0.3,-0.2 -0.5,-0.4 -0.5,-0.7c0,-0.2 0,-0.5 0.2,-0.9l0,0zm0.4,0.3c-0.1,0.2 -0.2,0.4 -0.2,0.6c0,0.2 0.1,0.4 0.3,0.5c0.2,0.1 0.4,0.1 0.5,0c0.2,-0.1 0.3,-0.3 0.5,-0.5l0,0c0.1,-0.2 0.2,-0.4 0.2,-0.6c0,-0.2 -0.1,-0.4 -0.3,-0.5c-0.2,-0.1 -0.4,-0.1 -0.6,0s-0.2,0.2 -0.4,0.5l0,0z" id="svg_23"/>
<path class="st8" d="m217.1,151.9c0.1,0.1 0.3,0.1 0.4,0.1c0.1,0 0.2,-0.1 0.3,-0.2l0.4,0.2l0,0c-0.1,0.2 -0.3,0.3 -0.5,0.3c-0.3,0 -0.5,0 -0.7,-0.1c-0.3,-0.2 -0.5,-0.4 -0.5,-0.7c0,-0.3 0,-0.6 0.2,-0.9l0,-0.1c0.2,-0.3 0.4,-0.5 0.7,-0.6c0.3,-0.1 0.6,-0.1 0.9,0.1c0.2,0.1 0.3,0.2 0.4,0.4c0.1,0.1 0.2,0.3 0.2,0.4l-0.3,0.5l-0.3,-0.2l0.1,-0.4c0,-0.1 -0.1,-0.1 -0.1,-0.2c-0.1,-0.1 -0.1,-0.1 -0.2,-0.2c-0.2,-0.1 -0.4,-0.1 -0.6,0c-0.2,0.1 -0.3,0.3 -0.4,0.5l0,0.1c-0.1,0.2 -0.2,0.4 -0.2,0.6c-0.1,0.2 0,0.3 0.2,0.4z" id="svg_24"/>
<path class="st8" d="m219.7,150l0.1,-0.3l0.7,0.4l-1,1.8l0.2,0.1l0.8,-0.3l-0.2,-0.1l0.1,-0.3l0.9,0.5l-0.1,0.3l-0.3,-0.1l-1,0.3l0.2,1.3l0.2,0.2l-0.1,0.2l-0.9,-0.5l0.1,-0.2l0.2,0.1l-0.2,-1l-0.3,-0.1l-0.1,0.7l0.3,0.2l-0.1,0.2l-1,-0.6l0.1,-0.2l0.4,0.1l1.4,-2.5l-0.4,-0.2z" id="svg_25"/>
<path class="st8" d="m221.5,154.9c-0.3,-0.2 -0.5,-0.4 -0.5,-0.7s0,-0.6 0.2,-0.9l0,-0.1c0.2,-0.3 0.4,-0.5 0.7,-0.6c0.3,-0.1 0.6,-0.1 0.8,0.1c0.3,0.2 0.5,0.4 0.5,0.6c0,0.3 0,0.5 -0.2,0.8l-0.1,0.2l-1.4,-0.8l0,0c-0.1,0.2 -0.2,0.4 -0.1,0.6c0,0.2 0.1,0.3 0.3,0.4c0.1,0.1 0.3,0.1 0.4,0.1c0.1,0 0.2,0 0.3,0l0,0.3c-0.1,0 -0.3,0 -0.4,0c-0.1,0.2 -0.3,0.1 -0.5,0zm1.1,-1.9c-0.1,-0.1 -0.3,-0.1 -0.4,0c-0.2,0.1 -0.3,0.2 -0.4,0.3l0,0l1,0.6l0,-0.1c0.1,-0.2 0.1,-0.3 0.1,-0.5c-0.1,-0.1 -0.2,-0.2 -0.3,-0.3z" id="svg_26"/>
<path class="st8" d="m223.9,153.7l0.1,-0.3l0.7,0.4l-0.1,0.3c0.1,-0.1 0.2,-0.1 0.4,-0.1c0.1,0 0.2,0 0.4,0.1c0,0 0.1,0 0.1,0.1c0,0 0.1,0 0.1,0.1l-0.3,0.3l-0.2,-0.1c-0.1,-0.1 -0.2,-0.1 -0.3,-0.1c-0.1,0 -0.2,0 -0.3,0.1l-0.7,1.2l0.3,0.2l-0.1,0.2l-1,-0.6l0.1,-0.2l0.4,0.1l0.9,-1.5l-0.5,-0.2z" id="svg_27"/>
</g>
<g id="svg_28">
<path class="st8" d="m194.3,135.3l0.1,-0.3l0.7,0.4l-1,1.8l0.2,0.1l0.8,-0.3l-0.2,-0.1l0.1,-0.3l0.9,0.5l-0.1,0.3l-0.3,-0.1l-1,0.3l0.2,1.3l0.2,0.2l-0.1,0.2l-0.9,-0.5l0.1,-0.2l0.2,0.1l-0.2,-1l-0.3,-0.1l-0.4,0.7l0.3,0.2l-0.1,0.2l-1,-0.6l0.1,-0.2l0.4,0.1l1.4,-2.5l-0.1,-0.2z" id="svg_29"/>
<path class="st8" d="m196.8,140.2c-0.1,0.1 -0.3,0.1 -0.4,0.1c-0.1,0 -0.3,0 -0.4,-0.1c-0.2,-0.1 -0.4,-0.3 -0.4,-0.5c0,-0.2 0,-0.5 0.2,-0.8l0.6,-1l-0.2,-0.2l0.1,-0.3l0.2,0.1l0.4,0.2l-0.7,1.3c-0.1,0.2 -0.2,0.4 -0.2,0.5c0,0.1 0.1,0.2 0.2,0.3c0.1,0.1 0.3,0.1 0.4,0.1s0.2,0 0.3,-0.1l0.7,-1.2l-0.3,-0.2l0.1,-0.3l0.3,0.2l0.4,0.2l-1.1,1.8l0.2,0.2l-0.1,0.2l-0.6,-0.3l0.3,-0.2z" id="svg_30"/>
<path class="st8" d="m200.1,141.2c-0.2,0.3 -0.4,0.5 -0.7,0.6c-0.3,0.1 -0.5,0.1 -0.8,-0.1c-0.1,-0.1 -0.2,-0.2 -0.3,-0.3c-0.1,-0.1 -0.1,-0.2 -0.1,-0.4l-0.2,0.3l-0.3,-0.2l1.6,-2.8l-0.3,-0.2l0.1,-0.3l0.7,0.4l-0.7,1.2c0.1,-0.1 0.2,-0.1 0.4,-0.1c0.1,0 0.3,0 0.4,0.1c0.3,0.2 0.4,0.4 0.4,0.7c0.1,0.4 0,0.7 -0.2,1.1l0,0zm-0.4,-0.3c0.1,-0.2 0.2,-0.5 0.2,-0.7c0,-0.2 -0.1,-0.4 -0.3,-0.5c-0.1,-0.1 -0.2,-0.1 -0.4,-0.1c-0.1,0 -0.2,0.1 -0.3,0.1l-0.5,0.9c0,0.1 0,0.2 0.1,0.3c0.1,0.1 0.1,0.2 0.3,0.3c0.2,0.1 0.4,0.1 0.5,0c0.2,0.1 0.3,0 0.4,-0.3l0,0z" id="svg_31"/>
<path class="st8" d="m200.9,143c-0.3,-0.2 -0.5,-0.4 -0.5,-0.7s0,-0.6 0.2,-0.9l0,-0.1c0.2,-0.3 0.4,-0.5 0.7,-0.6c0.3,-0.1 0.6,-0.1 0.8,0.1c0.3,0.2 0.5,0.4 0.5,0.6c0,0.3 0,0.5 -0.2,0.8l-0.1,0.2l-1.4,-0.8l0,0c-0.1,0.2 -0.2,0.4 -0.1,0.6c0,0.2 0.1,0.3 0.3,0.4c0.1,0.1 0.3,0.1 0.4,0.1c0.1,0 0.2,0 0.3,0l0,0.3c-0.1,0 -0.3,0 -0.4,0c-0.2,0.2 -0.3,0.1 -0.5,0zm1,-2c-0.1,-0.1 -0.3,-0.1 -0.4,0c-0.2,0.1 -0.3,0.2 -0.4,0.3l0,0l1,0.6l0,-0.1c0.1,-0.2 0.1,-0.3 0.1,-0.5c0,0 -0.1,-0.2 -0.3,-0.3z" id="svg_32"/>
<path class="st8" d="m203.7,140.8l0.1,-0.3l0.7,0.4l-1.6,2.8l0.3,0.2l-0.1,0.2l-1,-0.6l0.1,-0.2l0.4,0.1l1.4,-2.5l-0.3,-0.1z" id="svg_33"/>
<path class="st8" d="m204.3,145c-0.3,-0.2 -0.5,-0.4 -0.5,-0.7c-0.1,-0.3 0,-0.6 0.2,-0.9l0,-0.1c0.2,-0.3 0.4,-0.5 0.7,-0.6c0.3,-0.1 0.6,-0.1 0.8,0.1c0.3,0.2 0.5,0.4 0.5,0.6c0,0.3 0,0.5 -0.2,0.8l-0.1,0.2l-1.4,-0.8l0,0c-0.1,0.2 -0.2,0.4 -0.1,0.6c0,0.2 0.1,0.3 0.3,0.4c0.1,0.1 0.3,0.1 0.4,0.1s0.2,0 0.3,0l0,0.3c-0.1,0 -0.3,0 -0.4,0c-0.1,0.1 -0.3,0.1 -0.5,0zm1.1,-2c-0.1,-0.1 -0.3,-0.1 -0.4,0c-0.2,0.1 -0.3,0.2 -0.4,0.3l0,0l1,0.6l0,-0.1c0.1,-0.2 0.1,-0.3 0.1,-0.5c-0.1,-0.1 -0.2,-0.2 -0.3,-0.3z" id="svg_34"/>
<path class="st8" d="m207.8,143.4l-0.3,0.5l0.4,0.2l-0.2,0.3l-0.4,-0.2l-0.8,1.3c-0.1,0.1 -0.1,0.2 -0.1,0.2c0,0.1 0.1,0.1 0.1,0.2c0,0 0.1,0 0.1,0.1c0,0 0.1,0 0.1,0l-0.1,0.3c-0.1,0 -0.1,0 -0.2,0c-0.1,0 -0.2,-0.1 -0.2,-0.1c-0.2,-0.1 -0.3,-0.2 -0.3,-0.4s0,-0.3 0.1,-0.5l0.8,-1.3l-0.3,-0.2l0.2,-0.3l0.3,0.2l0.3,-0.5l0.5,0.2z" id="svg_35"/>
</g>
<polygon class="st16" points="182.3,140.1 146.6,160.7 111,140.1 111,99 146.6,78.4 182.3,99 " id="svg_36"/>
<polygon class="st13" points="136,154.5 146.6,160.7 182.3,140.1 182.2,127.9 " id="svg_37"/>
<polygon class="st7" points="163.4,148.6 160.2,143 180.2,131.4 180.2,138.9 " id="svg_38"/>
<g id="svg_39">
<path class="st8" d="m164.6,142.5c0.4,-0.2 0.7,-0.3 1.1,-0.2c0.4,0.1 0.6,0.3 0.9,0.7l0.2,0.4c0.2,0.4 0.3,0.7 0.2,1.1c-0.1,0.4 -0.3,0.7 -0.7,0.9l-1.2,0.7l-0.1,-0.2l0.3,-0.2l-1.3,-2.3l-0.4,0.1l-0.1,-0.3l0.3,-0.2l0.8,-0.5zm-0.3,0.6l1.3,2.3l0.5,-0.3c0.3,-0.2 0.4,-0.4 0.5,-0.6c0.1,-0.3 0,-0.5 -0.2,-0.8l-0.2,-0.4c-0.2,-0.3 -0.4,-0.5 -0.6,-0.5c-0.3,-0.1 -0.5,-0.1 -0.8,0.1l-0.5,0.2z" id="svg_40"/>
<path class="st8" d="m167.3,143.4c-0.2,-0.3 -0.2,-0.6 -0.2,-0.9c0.1,-0.3 0.2,-0.5 0.5,-0.7c0.3,-0.2 0.6,-0.2 0.9,-0.1c0.3,0.1 0.5,0.3 0.7,0.6l0,0c0.2,0.3 0.2,0.6 0.2,0.9c-0.1,0.3 -0.2,0.5 -0.5,0.7c-0.3,0.2 -0.6,0.2 -0.9,0.1c-0.3,0 -0.5,-0.3 -0.7,-0.6l0,0zm0.4,-0.2c0.1,0.2 0.3,0.4 0.5,0.5s0.4,0.1 0.6,0c0.2,-0.1 0.3,-0.3 0.3,-0.5c0,-0.2 0,-0.4 -0.2,-0.6l0,0c-0.1,-0.2 -0.3,-0.4 -0.5,-0.5c-0.2,-0.1 -0.4,-0.1 -0.6,0c-0.2,0.1 -0.3,0.3 -0.3,0.5s0,0.3 0.2,0.6l0,0z" id="svg_41"/>
<path class="st8" d="m171,142.3c0.1,-0.1 0.2,-0.2 0.3,-0.3c0.1,-0.1 0,-0.3 0,-0.4l0.3,-0.2l0,0c0.1,0.2 0.1,0.4 0,0.6c-0.1,0.2 -0.2,0.4 -0.5,0.6c-0.3,0.2 -0.6,0.2 -0.9,0.1c-0.3,-0.1 -0.5,-0.3 -0.7,-0.6l0,-0.1c-0.2,-0.3 -0.2,-0.6 -0.2,-0.9c0,-0.3 0.2,-0.5 0.5,-0.7c0.2,-0.1 0.3,-0.2 0.5,-0.2s0.3,0 0.5,0l0.3,0.5l-0.3,0.2l-0.3,-0.3c-0.1,0 -0.2,0 -0.2,0c-0.1,0 -0.2,0 -0.3,0.1c-0.2,0.1 -0.3,0.3 -0.3,0.5c0,0.2 0.1,0.4 0.2,0.6l0,0.1c0.1,0.2 0.3,0.4 0.4,0.5c0.3,0.1 0.5,0.1 0.7,-0.1z" id="svg_42"/>
<path class="st8" d="m170.6,139.1l-0.1,-0.3l0.7,-0.4l1,1.8l0.2,-0.1l0.1,-0.8l-0.2,0.1l-0.1,-0.3l0.9,-0.5l0.1,0.3l-0.2,0.2l-0.2,1l1.2,0.5l0.3,-0.1l0.1,0.2l-0.9,0.5l-0.1,-0.2l0.2,-0.1l-1,-0.4l-0.3,0.1l0.4,0.7l0.4,-0.1l0.1,0.2l-1,0.6l-0.1,-0.2l0.3,-0.2l-1.4,-2.6l-0.4,0.1z" id="svg_43"/>
<path class="st8" d="m175.8,140c-0.3,0.2 -0.6,0.2 -0.9,0.1c-0.3,-0.1 -0.5,-0.3 -0.7,-0.6l-0.1,-0.1c-0.2,-0.3 -0.2,-0.6 -0.2,-0.9c0.1,-0.3 0.2,-0.5 0.5,-0.7c0.3,-0.2 0.6,-0.2 0.8,-0.1c0.2,0.1 0.5,0.3 0.6,0.6l0.1,0.2l-1.4,0.8l0,0c0.1,0.2 0.3,0.3 0.4,0.4c0.2,0.1 0.4,0.1 0.5,0c0.1,-0.1 0.2,-0.2 0.3,-0.3c0.1,-0.1 0.1,-0.2 0.2,-0.3l0.3,0.2c0,0.1 -0.1,0.2 -0.2,0.4c0.1,0.1 -0.1,0.2 -0.2,0.3zm-1.2,-1.9c-0.1,0.1 -0.2,0.2 -0.2,0.4c0,0.2 0,0.3 0.1,0.5l0,0l1,-0.6l0,-0.1c-0.1,-0.2 -0.2,-0.3 -0.3,-0.3c-0.3,0 -0.4,0 -0.6,0.1z" id="svg_44"/>
<path class="st8" d="m175.8,137.4l-0.1,-0.3l0.7,-0.4l0.2,0.3c0,-0.1 0,-0.3 0.1,-0.4c0.1,-0.1 0.1,-0.2 0.3,-0.3c0,0 0.1,0 0.1,0c0,0 0.1,0 0.1,0l0.2,0.4l-0.2,0.1c-0.1,0.1 -0.2,0.1 -0.2,0.2s-0.1,0.2 0,0.3l0.7,1.2l0.4,-0.1l0.1,0.2l-1,0.6l-0.1,-0.2l0.3,-0.2l-0.9,-1.5l-0.7,0.1z" id="svg_45"/>
</g>
<g id="svg_46">
<path class="st8" d="m145.1,153.8l-0.1,-0.3l0.7,-0.4l1,1.8l0.2,-0.1l0.1,-0.8l-0.2,0.1l-0.1,-0.3l0.9,-0.5l0.1,0.3l-0.2,0.2l-0.2,1l1.2,0.5l0.3,-0.1l0.1,0.2l-0.9,0.5l-0.1,-0.2l0.2,-0.1l-1,-0.4l-0.3,0.1l0.4,0.7l0.4,-0.1l0.1,0.2l-1,0.6l-0.1,-0.2l0.3,-0.2l-1.4,-2.5l-0.4,0z" id="svg_47"/>
<path class="st8" d="m150.6,154c0,0.2 0,0.3 -0.1,0.4c-0.1,0.1 -0.2,0.2 -0.3,0.3c-0.2,0.1 -0.5,0.2 -0.7,0.1c-0.2,-0.1 -0.4,-0.3 -0.6,-0.6l-0.6,-1l-0.3,0.1l-0.1,-0.3l0.2,-0.1l0.4,-0.2l0.7,1.3c0.1,0.2 0.3,0.4 0.4,0.4c0.1,0 0.2,0 0.4,-0.1c0.1,-0.1 0.2,-0.2 0.3,-0.3c0.1,-0.1 0.1,-0.2 0.1,-0.4l-0.7,-1.2l-0.3,0.1l-0.1,-0.3l0.3,-0.2l0.4,-0.2l1.1,1.8l0.3,-0.1l0.1,0.2l-0.6,0.3l-0.3,0z" id="svg_48"/>
<path class="st8" d="m153.1,151.7c0.2,0.3 0.2,0.6 0.2,0.9c0,0.3 -0.2,0.5 -0.4,0.6c-0.1,0.1 -0.3,0.1 -0.4,0.1c-0.1,0 -0.3,0 -0.4,-0.1l0.1,0.3l-0.3,0.2l-1.6,-2.8l-0.4,0.1l-0.1,-0.3l0.7,-0.4l0.7,1.2c0,-0.1 0.1,-0.3 0.1,-0.4c0.1,-0.1 0.2,-0.2 0.3,-0.3c0.3,-0.2 0.5,-0.2 0.8,0c0.3,0.2 0.5,0.5 0.7,0.9l0,0zm-0.4,0.1c-0.1,-0.2 -0.3,-0.4 -0.5,-0.5s-0.4,-0.1 -0.5,0c-0.1,0.1 -0.2,0.2 -0.3,0.3c0,0.1 -0.1,0.2 -0.1,0.3l0.5,0.9c0.1,0.1 0.2,0.1 0.3,0.1c0.1,0 0.2,0 0.4,-0.1c0.2,-0.1 0.3,-0.2 0.3,-0.4c0.1,-0.1 0.1,-0.3 -0.1,-0.6l0,0z" id="svg_49"/>
<path class="st8" d="m155.1,151.9c-0.3,0.2 -0.6,0.2 -0.9,0.1s-0.5,-0.3 -0.7,-0.6l-0.1,-0.1c-0.2,-0.3 -0.2,-0.6 -0.2,-0.9c0.1,-0.3 0.2,-0.5 0.5,-0.7c0.3,-0.2 0.6,-0.2 0.8,-0.1c0.2,0.1 0.5,0.3 0.6,0.6l0.1,0.2l-1.4,0.8l0,0c0.1,0.2 0.3,0.3 0.4,0.4c0.2,0.1 0.4,0.1 0.5,0c0.1,-0.1 0.2,-0.2 0.3,-0.3c0.1,-0.1 0.1,-0.2 0.2,-0.3l0.3,0.2c0,0.1 -0.1,0.2 -0.2,0.4c0.1,0.1 0,0.2 -0.2,0.3zm-1.2,-1.9c-0.1,0.1 -0.2,0.2 -0.2,0.4c0,0.2 0,0.3 0.1,0.5l0,0l1,-0.6l0,-0.1c-0.1,-0.2 -0.2,-0.3 -0.3,-0.3c-0.3,0 -0.4,0 -0.6,0.1z" id="svg_50"/>
<path class="st8" d="m154.6,148.4l-0.1,-0.3l0.7,-0.4l1.6,2.8l0.4,-0.1l0.1,0.2l-1,0.6l-0.1,-0.2l0.3,-0.2l-1.4,-2.5l-0.5,0.1z" id="svg_51"/>
<path class="st8" d="m158.6,149.9c-0.3,0.2 -0.6,0.2 -0.9,0.1c-0.3,-0.1 -0.5,-0.3 -0.7,-0.6l-0.1,-0.1c-0.2,-0.3 -0.2,-0.6 -0.2,-0.9c0.1,-0.3 0.2,-0.5 0.5,-0.7c0.3,-0.2 0.6,-0.2 0.8,-0.1c0.2,0.1 0.5,0.3 0.6,0.6l0.1,0.2l-1.4,0.8l0,0c0.1,0.2 0.3,0.3 0.4,0.4c0.2,0.1 0.4,0.1 0.5,0c0.1,-0.1 0.2,-0.2 0.3,-0.3c0.1,-0.1 0.1,-0.2 0.2,-0.3l0.3,0.2c0,0.1 -0.1,0.2 -0.2,0.4c0.1,0.1 -0.1,0.2 -0.2,0.3zm-1.2,-1.9c-0.1,0.1 -0.2,0.2 -0.2,0.4c0,0.2 0,0.3 0.1,0.5l0,0l1,-0.6l0,-0.1c-0.1,-0.2 -0.2,-0.3 -0.3,-0.3c-0.3,0 -0.5,0 -0.6,0.1z" id="svg_52"/>
<path class="st8" d="m158.9,146.1l0.3,0.5l0.4,-0.2l0.2,0.3l-0.4,0.2l0.8,1.3c0.1,0.1 0.1,0.2 0.2,0.2c0.1,0 0.1,0 0.2,0c0,0 0.1,0 0.1,-0.1c0,0 0.1,-0.1 0.1,-0.1l0.2,0.2c0,0 -0.1,0.1 -0.1,0.2c-0.1,0.1 -0.1,0.1 -0.2,0.1c-0.2,0.1 -0.3,0.1 -0.5,0.1c-0.1,0 -0.3,-0.2 -0.4,-0.4l-0.7,-1.3l-0.3,0.2l-0.2,-0.3l0.3,-0.2l-0.3,-0.5l0.3,-0.2z" id="svg_53"/>
</g>
<polygon class="st16" points="146.2,296.6 110.6,276.1 110.6,234.9 146.2,214.4 181.9,234.9 181.9,276.1 " id="svg_54"/>
<polygon class="st13" points="135.6,220.5 146.2,214.4 181.9,234.9 181.8,247.2 " id="svg_55"/>
<polygon class="st7" points="163,226.4 159.8,232.1 179.8,243.6 179.8,236.1 " id="svg_56"/>
<g id="svg_57">
<path class="st8" d="m145.8,218.8l0.1,-0.3l0.7,0.4l-1,1.8l0.2,0.1l0.8,-0.3l-0.2,-0.1l0.1,-0.3l0.9,0.5l-0.1,0.3l-0.3,-0.1l-1,0.3l0.2,1.3l0.2,0.2l-0.1,0.2l-0.9,-0.5l0.1,-0.2l0.2,0.1l-0.2,-1l-0.3,-0.1l-0.4,0.7l0.3,0.2l-0.1,0.2l-1,-0.6l0.1,-0.2l0.4,0.1l1.4,-2.5l-0.1,-0.2z" id="svg_58"/>
<path class="st8" d="m148.4,223.7c-0.1,0.1 -0.3,0.1 -0.4,0.1c-0.1,0 -0.3,0 -0.4,-0.1c-0.2,-0.1 -0.4,-0.3 -0.4,-0.5c0,-0.2 0,-0.5 0.2,-0.8l0.6,-1l-0.2,-0.2l0.1,-0.3l0.2,0.1l0.4,0.2l-0.7,1.3c-0.1,0.2 -0.2,0.4 -0.2,0.5c0,0.1 0.1,0.2 0.2,0.3c0.1,0.1 0.3,0.1 0.4,0.1c0.1,0 0.2,0 0.3,-0.1l0.7,-1.2l-0.3,-0.2l0.1,-0.3l0.3,0.2l0.4,0.2l-1.1,1.8l0.2,0.2l-0.1,0.2l-0.6,-0.3l0.3,-0.2z" id="svg_59"/>
<path class="st8" d="m151.7,224.7c-0.2,0.3 -0.4,0.5 -0.7,0.6c-0.3,0.1 -0.5,0.1 -0.8,-0.1c-0.1,-0.1 -0.2,-0.2 -0.3,-0.3c-0.1,-0.1 -0.1,-0.2 -0.1,-0.4l-0.2,0.3l-0.3,-0.2l1.6,-2.8l-0.3,-0.2l0.1,-0.3l0.7,0.4l-0.7,1.2c0.1,-0.1 0.2,-0.1 0.4,-0.1c0.1,0 0.3,0 0.4,0.1c0.3,0.2 0.4,0.4 0.4,0.7c0.1,0.4 0,0.7 -0.2,1.1l0,0zm-0.4,-0.3c0.1,-0.2 0.2,-0.5 0.2,-0.7c0,-0.2 -0.1,-0.4 -0.3,-0.5c-0.1,-0.1 -0.2,-0.1 -0.4,-0.1c-0.1,0 -0.2,0.1 -0.3,0.1l-0.5,0.9c0,0.1 0,0.2 0.1,0.3c0.1,0.1 0.1,0.2 0.3,0.3c0.2,0.1 0.4,0.1 0.5,0c0.1,0.1 0.3,-0.1 0.4,-0.3l0,0z" id="svg_60"/>
<path class="st8" d="m152.5,226.5c-0.3,-0.2 -0.5,-0.4 -0.5,-0.7s0,-0.6 0.2,-0.9l0.1,-0.1c0.2,-0.3 0.4,-0.5 0.7,-0.6c0.3,-0.1 0.6,-0.1 0.8,0.1c0.3,0.2 0.5,0.4 0.5,0.6c0,0.3 0,0.5 -0.2,0.8l-0.1,0.2l-1.4,-0.8l0,0c-0.1,0.2 -0.2,0.4 -0.1,0.6c0,0.2 0.1,0.3 0.3,0.4c0.1,0.1 0.3,0.1 0.4,0.1c0.1,0 0.2,0 0.3,0l0,0.3c-0.1,0 -0.3,0 -0.4,0c-0.3,0.1 -0.5,0.1 -0.6,0zm1,-2c-0.1,-0.1 -0.3,-0.1 -0.4,0c-0.2,0.1 -0.3,0.2 -0.4,0.3l0,0l1,0.6l0,-0.1c0.1,-0.2 0.1,-0.3 0.1,-0.5s-0.1,-0.2 -0.3,-0.3z" id="svg_61"/>
<path class="st8" d="m155.3,224.3l0.1,-0.3l0.7,0.4l-1.6,2.8l0.3,0.2l-0.1,0.2l-1,-0.6l0.1,-0.2l0.4,0.1l1.4,-2.5l-0.3,-0.1z" id="svg_62"/>
<path class="st8" d="m155.9,228.5c-0.3,-0.2 -0.5,-0.4 -0.5,-0.7s0,-0.6 0.2,-0.9l0,-0.1c0.2,-0.3 0.4,-0.5 0.7,-0.6c0.3,-0.1 0.6,-0.1 0.8,0.1c0.3,0.2 0.5,0.4 0.5,0.6c0,0.3 0,0.5 -0.2,0.8l-0.1,0.2l-1.4,-0.8l0,0c-0.1,0.2 -0.2,0.4 -0.1,0.6c0,0.2 0.1,0.3 0.3,0.4c0.1,0.1 0.3,0.1 0.4,0.1c0.1,0 0.2,0 0.3,0l0,0.3c-0.1,0 -0.3,0 -0.4,0c-0.1,0.1 -0.3,0.1 -0.5,0zm1.1,-2c-0.1,-0.1 -0.3,-0.1 -0.4,0s-0.3,0.2 -0.4,0.3l0,0l1,0.6l0,-0.1c0.1,-0.2 0.1,-0.3 0.1,-0.5c-0.1,-0.1 -0.2,-0.2 -0.3,-0.3z" id="svg_63"/>
<path class="st8" d="m159.4,226.9l-0.3,0.5l0.4,0.2l-0.2,0.3l-0.4,-0.2l-0.8,1.3c-0.1,0.1 -0.1,0.2 -0.1,0.2c0,0.1 0.1,0.1 0.1,0.2c0,0 0.1,0 0.1,0.1c0,0 0.1,0 0.1,0l-0.1,0.3c-0.1,0 -0.1,0 -0.2,0c-0.1,0 -0.2,-0.1 -0.2,-0.1c-0.2,-0.1 -0.3,-0.2 -0.3,-0.4s0,-0.3 0.1,-0.5l0.8,-1.3l-0.3,-0.2l0.2,-0.3l0.3,0.2l0.3,-0.5l0.5,0.2z" id="svg_64"/>
</g>
<g id="svg_65">
<path class="st8" d="m166.1,230.5c0.4,0.2 0.6,0.5 0.7,0.9c0.1,0.4 0,0.7 -0.2,1.1l-0.2,0.4c-0.2,0.4 -0.5,0.6 -0.9,0.7s-0.7,0 -1.1,-0.2l-1.2,-0.7l0.1,-0.2l0.4,0.1l1.3,-2.3l-0.3,-0.2l0.1,-0.3l0.3,0.2l1,0.5zm-0.7,0l-1.3,2.3l0.5,0.3c0.3,0.2 0.5,0.2 0.8,0.1c0.3,-0.1 0.5,-0.3 0.6,-0.5l0.2,-0.4c0.2,-0.3 0.2,-0.5 0.2,-0.8c-0.1,-0.3 -0.2,-0.5 -0.5,-0.6l-0.5,-0.4z" id="svg_66"/>
<path class="st8" d="m166.7,233.2c0.2,-0.3 0.4,-0.5 0.7,-0.6c0.3,-0.1 0.6,-0.1 0.9,0.1c0.3,0.2 0.5,0.4 0.5,0.7c0.1,0.3 0,0.6 -0.2,0.9l0,0c-0.2,0.3 -0.4,0.5 -0.7,0.6c-0.3,0.1 -0.6,0.1 -0.9,-0.1c-0.3,-0.2 -0.5,-0.4 -0.5,-0.7c-0.1,-0.2 0,-0.5 0.2,-0.9l0,0zm0.3,0.3c-0.1,0.2 -0.2,0.4 -0.2,0.6c0,0.2 0.1,0.4 0.3,0.5c0.2,0.1 0.4,0.1 0.5,0c0.2,-0.1 0.3,-0.3 0.5,-0.5l0,0c0.1,-0.2 0.2,-0.4 0.2,-0.6c0,-0.2 -0.1,-0.4 -0.3,-0.5c-0.2,-0.1 -0.4,-0.1 -0.6,0c-0.1,0.1 -0.2,0.2 -0.4,0.5l0,0z" id="svg_67"/>
<path class="st8" d="m169.4,235.9c0.1,0.1 0.3,0.1 0.4,0.1s0.2,-0.1 0.3,-0.2l0.3,0.2l0,0c-0.1,0.2 -0.3,0.3 -0.5,0.3c-0.3,0 -0.5,0 -0.7,-0.1c-0.3,-0.2 -0.5,-0.4 -0.5,-0.7c0,-0.3 0,-0.6 0.2,-0.9l0,-0.1c0.2,-0.3 0.4,-0.5 0.7,-0.6c0.3,-0.1 0.6,-0.1 0.9,0.1c0.2,0.1 0.3,0.2 0.4,0.4c0.1,0.1 0.2,0.3 0.2,0.4l-0.3,0.5l-0.3,-0.2l0.1,-0.4c0,-0.1 -0.1,-0.1 -0.1,-0.2c-0.1,-0.1 -0.1,-0.1 -0.2,-0.2c-0.2,-0.1 -0.4,-0.1 -0.6,0c-0.2,0.1 -0.3,0.3 -0.4,0.5l0,0.1c-0.1,0.2 -0.2,0.4 -0.2,0.6c0,0.1 0.1,0.3 0.3,0.4z" id="svg_68"/>
<path class="st8" d="m172.1,234l0.1,-0.3l0.7,0.4l-1,1.8l0.2,0.1l0.8,-0.3l-0.2,-0.1l0.1,-0.3l0.9,0.5l-0.1,0.3l-0.3,-0.1l-1,0.3l0.2,1.3l0.2,0.2l-0.1,0.2l-0.9,-0.5l0.1,-0.2l0.2,0.1l-0.2,-1l-0.3,-0.1l-0.4,0.7l0.3,0.2l-0.1,0.2l-1,-0.6l0.1,-0.2l0.4,0.1l1.4,-2.5l-0.1,-0.2z" id="svg_69"/>
<path class="st8" d="m173.9,238.9c-0.3,-0.2 -0.5,-0.4 -0.5,-0.7c-0.1,-0.3 0,-0.6 0.2,-0.9l0,-0.1c0.2,-0.3 0.4,-0.5 0.7,-0.6c0.3,-0.1 0.6,-0.1 0.8,0.1c0.3,0.2 0.5,0.4 0.5,0.6c0,0.3 0,0.5 -0.2,0.8l-0.1,0.2l-1.4,-0.8l0,0c-0.1,0.2 -0.2,0.4 -0.1,0.6c0,0.2 0.1,0.3 0.3,0.4c0.1,0.1 0.3,0.1 0.4,0.1c0.1,0 0.2,0 0.3,0l0,0.3c-0.1,0 -0.3,0 -0.4,0c-0.2,0.2 -0.4,0.1 -0.5,0zm1,-2c-0.1,-0.1 -0.3,-0.1 -0.4,0c-0.2,0.1 -0.3,0.2 -0.4,0.3l0,0l1,0.6l0,-0.1c0.1,-0.2 0.1,-0.3 0.1,-0.5c0,0 -0.1,-0.2 -0.3,-0.3z" id="svg_70"/>
<path class="st8" d="m176.2,237.7l0.1,-0.3l0.7,0.4l-0.1,0.3c0.1,-0.1 0.2,-0.1 0.4,-0.1c0.1,0 0.2,0 0.4,0.1c0,0 0.1,0 0.1,0.1c0,0 0.1,0 0.1,0.1l-0.3,0.3l-0.2,-0.1c-0.1,-0.1 -0.2,-0.1 -0.3,-0.1c-0.1,0 -0.2,0 -0.3,0.1l-0.7,1.2l0.3,0.2l-0.1,0.2l-1,-0.6l0.1,-0.2l0.4,0.1l0.9,-1.5l-0.5,-0.2z" id="svg_71"/>
</g>
</g>
<g id="service"/>
<g id="pods">
<circle class="st29" cx="146.2" cy="119.5" r="20.9" id="svg_72"/>
</g>
<g id="IP"/>
<g id="deployments">
<g id="svg_73">
<g id="svg_74">
<circle class="st47" cx="177.4" cy="181.7" r="10.1" id="svg_75"/>
<g id="svg_76">
<g id="svg_77">
<path class="st48" d="m180.9,176c1.9,1.2 3.2,3.3 3.2,5.8c0,3.7 -3,6.7 -6.7,6.7c-3.7,0 -6.7,-3 -6.7,-6.7c0,-2.9 1.9,-5.4 4.5,-6.4" id="svg_78"/>
<g id="svg_79">
<polygon class="st42" points="182.1,178.9 181.2,176.2 183.9,175.3 182.4,174.5 179.6,175.4 180.5,178.1 " id="svg_80"/>
</g>
</g>
</g>
<g id="svg_81">
<path class="st42" d="m174.8,185.1l0,-6.7l2.3,0c0.8,0 1.5,0.3 2,0.8c0.5,0.5 0.8,1.2 0.8,2l0,1.1c0,0.8 -0.3,1.5 -0.8,2c-0.5,0.5 -1.2,0.8 -2,0.8l-2.3,0zm1.3,-5.7l0,4.7l0.9,0c0.5,0 0.9,-0.2 1.1,-0.5c0.3,-0.3 0.4,-0.8 0.4,-1.3l0,-1.1c0,-0.5 -0.1,-0.9 -0.4,-1.3c-0.3,-0.3 -0.7,-0.5 -1.1,-0.5l-0.9,0z" id="svg_82"/>
</g>
</g>
</g>
</g>
<g id="containers_x2F_volumes">
<g id="svg_83">
<polygon class="st50" points="136.5,113.9 146.2,108.3 155.9,113.9 146.2,119.5 " id="svg_84"/>
<polygon class="st50" points="136.5,125.1 136.5,113.9 146.2,119.5 146.2,130.7 " id="svg_85"/>
<polygon class="st50" points="146.2,130.7 146.2,119.5 155.9,113.9 155.9,125.1 " id="svg_86"/>
</g>
</g>
<g id="labels_x2F_selectors"/>
<g id="description">
<g id="svg_87">
<path class="st42" d="m373.8,200.8l0,0l-2.8,6.8l-0.8,0l-2.8,-6.8l0,0l0.1,3.5l0,2.5l1,0.2l0,0.7l-3.1,0l0,-0.7l1,-0.2l0,-6.8l-1,-0.2l0,-0.7l1,0l1.5,0l2.7,6.9l0,0l2.7,-6.9l2.4,0l0,0.7l-1,0.2l0,6.7l1,0.2l0,0.7l-3.1,0l0,-0.7l1,-0.2l0,-2.5l0.2,-3.4z" id="svg_88"/>
<path class="st42" d="m380.8,207.6c0,-0.2 -0.1,-0.3 -0.1,-0.5s0,-0.3 0,-0.4c-0.2,0.3 -0.5,0.5 -0.8,0.7s-0.7,0.3 -1.1,0.3c-0.7,0 -1.2,-0.2 -1.5,-0.5s-0.5,-0.8 -0.5,-1.4c0,-0.6 0.2,-1.1 0.7,-1.4s1.2,-0.5 2,-0.5l1.2,0l0,-0.7c0,-0.4 -0.1,-0.7 -0.4,-0.9s-0.6,-0.3 -1,-0.3c-0.3,0 -0.5,0 -0.8,0.1s-0.4,0.2 -0.5,0.3l-0.1,0.7l-0.9,0l0,-1.2c0.3,-0.2 0.6,-0.4 1,-0.6s0.9,-0.2 1.3,-0.2c0.7,0 1.3,0.2 1.7,0.6s0.7,0.9 0.7,1.6l0,3.1c0,0.1 0,0.2 0,0.2s0,0.2 0,0.2l0.5,0.1l0,0.7l-1.4,0zm-1.8,-0.8c0.4,0 0.7,-0.1 1,-0.3s0.5,-0.4 0.7,-0.7l0,-1l-1.2,0c-0.5,0 -0.8,0.1 -1.1,0.3s-0.4,0.5 -0.4,0.8c0,0.3 0.1,0.5 0.3,0.6s0.3,0.3 0.7,0.3z" id="svg_89"/>
<path class="st42" d="m388.2,203.3l-0.9,0l-0.2,-0.8c-0.1,-0.1 -0.3,-0.2 -0.5,-0.3s-0.5,-0.1 -0.7,-0.1c-0.4,0 -0.7,0.1 -0.9,0.3s-0.3,0.4 -0.3,0.7c0,0.2 0.1,0.4 0.3,0.6s0.5,0.3 1.1,0.4c0.8,0.2 1.4,0.4 1.8,0.7s0.6,0.7 0.6,1.2c0,0.6 -0.2,1 -0.7,1.4s-1,0.5 -1.8,0.5c-0.5,0 -0.9,-0.1 -1.3,-0.2s-0.7,-0.3 -1,-0.5l0,-1.4l0.9,0l0.2,0.8c0.1,0.1 0.3,0.2 0.5,0.3s0.5,0.1 0.7,0.1c0.4,0 0.7,-0.1 1,-0.2s0.3,-0.4 0.3,-0.7c0,-0.3 -0.1,-0.5 -0.3,-0.6s-0.6,-0.3 -1.1,-0.4c-0.8,-0.2 -1.3,-0.4 -1.7,-0.7s-0.6,-0.7 -0.6,-1.2c0,-0.5 0.2,-1 0.7,-1.3s1,-0.5 1.7,-0.5c0.5,0 0.9,0.1 1.3,0.2s0.7,0.3 1,0.5l-0.1,1.2z" id="svg_90"/>
<path class="st42" d="m391.5,199.8l0,1.5l1.2,0l0,0.9l-1.2,0l0,3.8c0,0.3 0.1,0.5 0.2,0.6s0.3,0.2 0.5,0.2c0.1,0 0.2,0 0.3,0s0.2,0 0.3,-0.1l0.2,0.8c-0.1,0.1 -0.3,0.1 -0.5,0.2s-0.4,0.1 -0.6,0.1c-0.5,0 -0.8,-0.1 -1.1,-0.4s-0.4,-0.7 -0.4,-1.3l0,-3.8l-1,0l0,-0.9l1,0l0,-1.5l1.1,0l0,-0.1z" id="svg_91"/>
<path class="st42" d="m396.7,207.8c-0.9,0 -1.6,-0.3 -2.1,-0.9s-0.8,-1.4 -0.8,-2.3l0,-0.3c0,-0.9 0.3,-1.7 0.8,-2.3s1.2,-0.9 1.9,-0.9c0.9,0 1.5,0.3 1.9,0.8s0.7,1.2 0.7,2.1l0,0.7l-4.1,0l0,0c0,0.6 0.2,1.1 0.5,1.5s0.7,0.6 1.2,0.6c0.4,0 0.7,-0.1 1,-0.2s0.5,-0.3 0.8,-0.5l0.5,0.8c-0.2,0.2 -0.5,0.4 -0.9,0.6s-0.8,0.3 -1.4,0.3zm-0.1,-5.7c-0.4,0 -0.7,0.2 -1,0.5s-0.4,0.7 -0.5,1.2l0,0l2.9,0l0,-0.2c0,-0.5 -0.1,-0.8 -0.4,-1.1s-0.6,-0.4 -1,-0.4z" id="svg_92"/>
<path class="st42" d="m400.3,202l0,-0.7l2,0l0.1,0.9c0.2,-0.3 0.4,-0.6 0.7,-0.8s0.6,-0.3 0.9,-0.3c0.1,0 0.2,0 0.3,0s0.2,0 0.2,0l-0.2,1.1l-0.7,0c-0.3,0 -0.6,0.1 -0.8,0.2s-0.4,0.3 -0.5,0.6l0,3.6l1,0.2l0,0.7l-3.1,0l0,-0.7l1,-0.2l0,-4.5l-0.9,-0.1z" id="svg_93"/>
</g>
<g id="svg_94">
<path class="st42" d="m365.4,230.3l1,-0.2l0,-4.5l-1,-0.2l0,-0.7l2,0l0.1,0.9c0.2,-0.3 0.5,-0.6 0.8,-0.8s0.7,-0.3 1.1,-0.3c0.7,0 1.2,0.2 1.6,0.6s0.6,1 0.6,1.9l0,3.1l1,0.2l0,0.7l-3.1,0l0,-0.7l1,-0.2l0,-3.1c0,-0.6 -0.1,-1 -0.3,-1.2s-0.6,-0.4 -1,-0.4c-0.3,0 -0.6,0.1 -0.9,0.2s-0.5,0.4 -0.6,0.7l0,3.7l1,0.2l0,0.7l-3.1,0l0,-0.6l-0.2,0z" id="svg_95"/>
<path class="st42" d="m373.2,227.8c0,-0.9 0.3,-1.7 0.8,-2.3s1.2,-0.9 2.1,-0.9c0.9,0 1.6,0.3 2.1,0.9s0.8,1.4 0.8,2.3l0,0.1c0,0.9 -0.3,1.7 -0.8,2.3s-1.2,0.9 -2.1,0.9c-0.9,0 -1.6,-0.3 -2.1,-0.9s-0.8,-1.4 -0.8,-2.3l0,-0.1zm1.2,0.1c0,0.7 0.1,1.2 0.4,1.7s0.7,0.7 1.3,0.7c0.5,0 1,-0.2 1.2,-0.7s0.4,-1 0.4,-1.7l0,-0.1c0,-0.7 -0.1,-1.2 -0.4,-1.7s-0.7,-0.7 -1.3,-0.7s-1,0.2 -1.3,0.7s-0.4,1 -0.4,1.7l0,0.1l0.1,0z" id="svg_96"/>
<path class="st42" d="m384.2,230.3c-0.2,0.3 -0.5,0.5 -0.8,0.7s-0.6,0.2 -1,0.2c-0.8,0 -1.4,-0.3 -1.8,-0.8s-0.7,-1.3 -0.7,-2.2l0,-0.2c0,-1 0.2,-1.8 0.7,-2.5s1,-0.9 1.8,-0.9c0.4,0 0.7,0.1 1,0.2s0.5,0.3 0.7,0.6l0,-2.6l-1,-0.2l0,-0.7l1,0l1.2,0l0,8.2l1,0.2l0,0.7l-2,0l-0.1,-0.7zm-3.1,-2.2c0,0.6 0.1,1.1 0.4,1.5s0.7,0.6 1.2,0.6c0.3,0 0.6,-0.1 0.9,-0.2s0.4,-0.4 0.6,-0.7l0,-2.9c-0.1,-0.3 -0.3,-0.5 -0.6,-0.6s-0.5,-0.2 -0.9,-0.2c-0.6,0 -1,0.2 -1.2,0.7s-0.4,1.1 -0.4,1.8l0,0z" id="svg_97"/>
<path class="st42" d="m390,231.1c-0.9,0 -1.6,-0.3 -2.1,-0.9s-0.8,-1.4 -0.8,-2.3l0,-0.3c0,-0.9 0.3,-1.7 0.8,-2.3s1.2,-0.9 1.9,-0.9c0.9,0 1.5,0.3 1.9,0.8s0.7,1.2 0.7,2.1l0,0.7l-4.1,0l0,0c0,0.6 0.2,1.1 0.5,1.5s0.7,0.6 1.2,0.6c0.4,0 0.7,-0.1 1,-0.2s0.5,-0.3 0.8,-0.5l0.5,0.8c-0.2,0.2 -0.5,0.4 -0.9,0.6s-0.8,0.3 -1.4,0.3zm-0.1,-5.6c-0.4,0 -0.7,0.2 -1,0.5s-0.4,0.7 -0.5,1.2l0,0l2.9,0l0,-0.2c0,-0.5 -0.1,-0.8 -0.4,-1.1s-0.6,-0.4 -1,-0.4z" id="svg_98"/>
<path class="st42" d="m396.4,232.7l1,-0.2l0,-7l-1,-0.2l0,-0.7l1.9,0l0.1,0.8c0.2,-0.3 0.5,-0.5 0.8,-0.7s0.7,-0.2 1.1,-0.2c0.8,0 1.4,0.3 1.8,0.9s0.7,1.4 0.7,2.5l0,0.1c0,0.9 -0.2,1.7 -0.7,2.2s-1,0.8 -1.8,0.8c-0.4,0 -0.7,-0.1 -1,-0.2s-0.5,-0.3 -0.8,-0.6l0,2.2l1,0.2l0,0.7l-3.1,0l0,-0.6zm5.2,-4.7c0,-0.7 -0.1,-1.3 -0.4,-1.8s-0.7,-0.7 -1.3,-0.7c-0.3,0 -0.6,0.1 -0.8,0.2s-0.4,0.4 -0.6,0.6l0,3.1c0.1,0.3 0.3,0.5 0.6,0.6s0.5,0.2 0.9,0.2c0.5,0 1,-0.2 1.2,-0.6s0.4,-0.9 0.4,-1.6l0,0z" id="svg_99"/>
<path class="st42" d="m403.8,225.4l0,-0.7l2,0l0.1,0.9c0.2,-0.3 0.4,-0.6 0.7,-0.8s0.6,-0.3 0.9,-0.3c0.1,0 0.2,0 0.3,0s0.2,0 0.2,0l-0.2,1.1l-0.7,0c-0.3,0 -0.6,0.1 -0.8,0.2s-0.4,0.3 -0.5,0.6l0,3.6l1,0.2l0,0.7l-3.1,0l0,-0.7l1,-0.2l0,-4.5l-0.9,-0.1z" id="svg_100"/>
<path class="st42" d="m408.7,227.8c0,-0.9 0.3,-1.7 0.8,-2.3s1.2,-0.9 2.1,-0.9c0.9,0 1.6,0.3 2.1,0.9s0.8,1.4 0.8,2.3l0,0.1c0,0.9 -0.3,1.7 -0.8,2.3s-1.2,0.9 -2.1,0.9c-0.9,0 -1.6,-0.3 -2.1,-0.9s-0.8,-1.4 -0.8,-2.3l0,-0.1zm1.2,0.1c0,0.7 0.1,1.2 0.4,1.7s0.7,0.7 1.3,0.7c0.5,0 1,-0.2 1.2,-0.7s0.4,-1 0.4,-1.7l0,-0.1c0,-0.7 -0.1,-1.2 -0.4,-1.7s-0.7,-0.7 -1.3,-0.7s-1,0.2 -1.3,0.7s-0.4,1 -0.4,1.7l0,0.1l0.1,0z" id="svg_101"/>
<path class="st42" d="m418.3,230.2c0.4,0 0.7,-0.1 1,-0.4s0.4,-0.5 0.4,-0.9l1,0l0,0c0,0.5 -0.2,1 -0.7,1.5s-1.1,0.6 -1.8,0.6c-0.9,0 -1.6,-0.3 -2.1,-0.9s-0.7,-1.4 -0.7,-2.3l0,-0.2c0,-0.9 0.2,-1.7 0.7,-2.3s1.2,-0.9 2.1,-0.9c0.5,0 1,0.1 1.4,0.3s0.7,0.4 1,0.7l0.1,1.4l-0.9,0l-0.3,-1c-0.1,-0.1 -0.3,-0.2 -0.5,-0.3s-0.5,-0.1 -0.7,-0.1c-0.6,0 -1,0.2 -1.3,0.7s-0.4,1 -0.4,1.6l0,0.2c0,0.6 0.1,1.2 0.4,1.6s0.7,0.7 1.3,0.7z" id="svg_102"/>
<path class="st42" d="m424.8,231.1c-0.9,0 -1.6,-0.3 -2.1,-0.9s-0.8,-1.4 -0.8,-2.3l0,-0.3c0,-0.9 0.3,-1.7 0.8,-2.3s1.2,-0.9 1.9,-0.9c0.9,0 1.5,0.3 1.9,0.8s0.7,1.2 0.7,2.1l0,0.7l-4.1,0l0,0c0,0.6 0.2,1.1 0.5,1.5s0.7,0.6 1.2,0.6c0.4,0 0.7,-0.1 1,-0.2s0.5,-0.3 0.8,-0.5l0.5,0.8c-0.2,0.2 -0.5,0.4 -0.9,0.6s-0.9,0.3 -1.4,0.3zm-0.2,-5.6c-0.4,0 -0.7,0.2 -1,0.5s-0.4,0.7 -0.5,1.2l0,0l2.9,0l0,-0.2c0,-0.5 -0.1,-0.8 -0.4,-1.1s-0.5,-0.4 -1,-0.4z" id="svg_103"/>
<path class="st42" d="m433.2,226.7l-0.9,0l-0.2,-0.8c-0.1,-0.1 -0.3,-0.2 -0.5,-0.3s-0.5,-0.1 -0.7,-0.1c-0.4,0 -0.7,0.1 -0.9,0.3s-0.3,0.4 -0.3,0.7c0,0.2 0.1,0.4 0.3,0.6s0.5,0.3 1.1,0.4c0.8,0.2 1.4,0.4 1.8,0.7s0.6,0.7 0.6,1.2c0,0.6 -0.2,1 -0.7,1.4s-1,0.5 -1.8,0.5c-0.5,0 -0.9,-0.1 -1.3,-0.2s-0.7,-0.3 -1,-0.5l0,-1.4l0.9,0l0.2,0.8c0.1,0.1 0.3,0.2 0.5,0.3s0.5,0.1 0.7,0.1c0.4,0 0.7,-0.1 1,-0.2s0.3,-0.4 0.3,-0.7c0,-0.3 -0.1,-0.5 -0.3,-0.6s-0.6,-0.3 -1.1,-0.4c-0.8,-0.2 -1.3,-0.4 -1.7,-0.7s-0.6,-0.7 -0.6,-1.2c0,-0.5 0.2,-1 0.7,-1.3s1,-0.5 1.7,-0.5c0.5,0 0.9,0.1 1.3,0.2s0.7,0.3 1,0.5l-0.1,1.2z" id="svg_104"/>
<path class="st42" d="m439.3,226.7l-0.9,0l-0.2,-0.8c-0.1,-0.1 -0.3,-0.2 -0.5,-0.3s-0.5,-0.1 -0.7,-0.1c-0.4,0 -0.7,0.1 -0.9,0.3s-0.3,0.4 -0.3,0.7c0,0.2 0.1,0.4 0.3,0.6s0.5,0.3 1.1,0.4c0.8,0.2 1.4,0.4 1.8,0.7s0.6,0.7 0.6,1.2c0,0.6 -0.2,1 -0.7,1.4s-1,0.5 -1.8,0.5c-0.5,0 -0.9,-0.1 -1.3,-0.2s-0.7,-0.3 -1,-0.5l0,-1.4l0.9,0l0.2,0.8c0.1,0.1 0.3,0.2 0.5,0.3s0.5,0.1 0.7,0.1c0.4,0 0.7,-0.1 1,-0.2s0.3,-0.4 0.3,-0.7c0,-0.3 -0.1,-0.5 -0.3,-0.6s-0.6,-0.3 -1.1,-0.4c-0.8,-0.2 -1.3,-0.4 -1.7,-0.7s-0.6,-0.7 -0.6,-1.2c0,-0.5 0.2,-1 0.7,-1.3s1,-0.5 1.7,-0.5c0.5,0 0.9,0.1 1.3,0.2s0.7,0.3 1,0.5l-0.1,1.2z" id="svg_105"/>
<path class="st42" d="m443.5,231.1c-0.9,0 -1.6,-0.3 -2.1,-0.9s-0.8,-1.4 -0.8,-2.3l0,-0.3c0,-0.9 0.3,-1.7 0.8,-2.3s1.2,-0.9 1.9,-0.9c0.9,0 1.5,0.3 1.9,0.8s0.7,1.2 0.7,2.1l0,0.7l-4.1,0l0,0c0,0.6 0.2,1.1 0.5,1.5s0.7,0.6 1.2,0.6c0.4,0 0.7,-0.1 1,-0.2s0.5,-0.3 0.8,-0.5l0.5,0.8c-0.2,0.2 -0.5,0.4 -0.9,0.6s-0.9,0.3 -1.4,0.3zm-0.2,-5.6c-0.4,0 -0.7,0.2 -1,0.5s-0.4,0.7 -0.5,1.2l0,0l2.9,0l0,-0.2c0,-0.5 -0.1,-0.8 -0.4,-1.1s-0.5,-0.4 -1,-0.4z" id="svg_106"/>
<path class="st42" d="m451.9,226.7l-0.9,0l-0.2,-0.8c-0.1,-0.1 -0.3,-0.2 -0.5,-0.3s-0.5,-0.1 -0.7,-0.1c-0.4,0 -0.7,0.1 -0.9,0.3s-0.3,0.4 -0.3,0.7c0,0.2 0.1,0.4 0.3,0.6s0.5,0.3 1.1,0.4c0.8,0.2 1.4,0.4 1.8,0.7s0.6,0.7 0.6,1.2c0,0.6 -0.2,1 -0.7,1.4s-1,0.5 -1.8,0.5c-0.5,0 -0.9,-0.1 -1.3,-0.2s-0.7,-0.3 -1,-0.5l0,-1.4l0.9,0l0.2,0.8c0.1,0.1 0.3,0.2 0.5,0.3s0.5,0.1 0.7,0.1c0.4,0 0.7,-0.1 1,-0.2s0.3,-0.4 0.3,-0.7c0,-0.3 -0.1,-0.5 -0.3,-0.6s-0.6,-0.3 -1.1,-0.4c-0.8,-0.2 -1.3,-0.4 -1.7,-0.7s-0.6,-0.7 -0.6,-1.2c0,-0.5 0.2,-1 0.7,-1.3s1,-0.5 1.7,-0.5c0.5,0 0.9,0.1 1.3,0.2s0.7,0.3 1,0.5l-0.1,1.2z" id="svg_107"/>
</g>
<g id="svg_108">
<path class="st42" d="m373.8,95l0,0.7l-1,0.2l0,7.6l-1.2,0l-4.1,-6.6l0,0l0,5.7l1,0.2l0,0.7l-3.1,0l0,-0.7l1,-0.2l0,-6.7l-1,-0.2l0,-0.7l1,0l1.2,0l4.1,6.6l0,0l0,-5.7l-1,-0.2l0,-0.7l2.1,0l1,0z" id="svg_109"/>
<path class="st42" d="m374.7,100.3c0,-0.9 0.3,-1.7 0.8,-2.3s1.2,-0.9 2.1,-0.9c0.9,0 1.6,0.3 2.1,0.9s0.8,1.4 0.8,2.3l0,0.1c0,0.9 -0.3,1.7 -0.8,2.3s-1.2,0.9 -2.1,0.9c-0.9,0 -1.6,-0.3 -2.1,-0.9s-0.8,-1.4 -0.8,-2.3l0,-0.1zm1.2,0.1c0,0.7 0.1,1.2 0.4,1.7s0.7,0.7 1.3,0.7c0.5,0 1,-0.2 1.2,-0.7s0.4,-1 0.4,-1.7l0,-0.1c0,-0.7 -0.1,-1.2 -0.4,-1.7s-0.7,-0.7 -1.3,-0.7s-1,0.2 -1.3,0.7s-0.4,1 -0.4,1.7l0,0.1l0.1,0z" id="svg_110"/>
<path class="st42" d="m385.7,102.8c-0.2,0.3 -0.5,0.5 -0.8,0.7s-0.6,0.2 -1,0.2c-0.8,0 -1.4,-0.3 -1.8,-0.8s-0.7,-1.3 -0.7,-2.2l0,-0.1c0,-1 0.2,-1.8 0.7,-2.5s1,-0.9 1.8,-0.9c0.4,0 0.7,0.1 1,0.2s0.5,0.3 0.7,0.6l0,-2.6l-1,-0.2l0,-0.7l1,0l1.2,0l0,8.2l1,0.2l0,0.7l-2,0l-0.1,-0.8zm-3.1,-2.2c0,0.6 0.1,1.1 0.4,1.5s0.7,0.6 1.2,0.6c0.3,0 0.6,-0.1 0.9,-0.2s0.4,-0.4 0.6,-0.7l0,-2.9c-0.1,-0.3 -0.3,-0.5 -0.6,-0.6s-0.5,-0.2 -0.9,-0.2c-0.6,0 -1,0.2 -1.2,0.7s-0.4,1.1 -0.4,1.8l0,0z" id="svg_111"/>
<path class="st42" d="m391.5,103.6c-0.9,0 -1.6,-0.3 -2.1,-0.9s-0.8,-1.4 -0.8,-2.3l0,-0.3c0,-0.9 0.3,-1.7 0.8,-2.3s1.2,-0.9 1.9,-0.9c0.9,0 1.5,0.3 1.9,0.8s0.7,1.2 0.7,2.1l0,0.7l-4.1,0l0,0c0,0.6 0.2,1.1 0.5,1.5s0.7,0.6 1.2,0.6c0.4,0 0.7,-0.1 1,-0.2s0.5,-0.3 0.8,-0.5l0.5,0.8c-0.2,0.2 -0.5,0.4 -0.9,0.6s-0.9,0.3 -1.4,0.3zm-0.2,-5.6c-0.4,0 -0.7,0.2 -1,0.5s-0.4,0.7 -0.5,1.2l0,0l2.9,0l0,-0.2c0,-0.5 -0.1,-0.8 -0.4,-1.1s-0.5,-0.4 -1,-0.4z" id="svg_112"/>
</g>
<line class="st62" x1="360" y1="203.9" x2="188.6" y2="203.9" id="svg_113"/>
<g id="svg_114">
<path class="st42" d="m369,176.9c1.1,0 2,0.3 2.7,1s1,1.6 1,2.7l0,1.2c0,1.1 -0.3,2 -1,2.7s-1.6,1 -2.7,1l-3.6,0l0,-0.7l1,-0.2l0,-6.7l-1,-0.2l0,-0.7l1,0l2.6,0l0,-0.1zm-1.4,0.9l0,6.7l1.5,0c0.8,0 1.4,-0.3 1.9,-0.8s0.7,-1.2 0.7,-2l0,-1.2c0,-0.8 -0.2,-1.5 -0.7,-2s-1.1,-0.8 -1.9,-0.8l-1.5,0l0,0.1z" id="svg_115"/>
<path class="st42" d="m376.8,185.5c-0.9,0 -1.6,-0.3 -2.1,-0.9s-0.8,-1.4 -0.8,-2.3l0,-0.3c0,-0.9 0.3,-1.7 0.8,-2.3s1.2,-0.9 1.9,-0.9c0.9,0 1.5,0.3 1.9,0.8s0.7,1.2 0.7,2.1l0,0.7l-4.1,0l0,0c0,0.6 0.2,1.1 0.5,1.5s0.7,0.6 1.2,0.6c0.4,0 0.7,-0.1 1,-0.2s0.5,-0.3 0.8,-0.5l0.5,0.8c-0.2,0.2 -0.5,0.4 -0.9,0.6s-0.9,0.3 -1.4,0.3zm-0.2,-5.6c-0.4,0 -0.7,0.2 -1,0.5s-0.4,0.7 -0.5,1.2l0,0l2.9,0l0,-0.2c0,-0.5 -0.1,-0.8 -0.4,-1.1s-0.5,-0.4 -1,-0.4z" id="svg_116"/>
<path class="st42" d="m380.2,187.1l1,-0.2l0,-7l-1,-0.2l0,-0.7l1.9,0l0.1,0.8c0.2,-0.3 0.5,-0.5 0.8,-0.7s0.7,-0.2 1.1,-0.2c0.8,0 1.4,0.3 1.8,0.9s0.7,1.4 0.7,2.5l0,0.1c0,0.9 -0.2,1.7 -0.7,2.2s-1,0.8 -1.8,0.8c-0.4,0 -0.7,-0.1 -1,-0.2s-0.5,-0.3 -0.8,-0.6l0,2.2l1,0.2l0,0.7l-3.1,0l0,-0.6zm5.2,-4.8c0,-0.7 -0.1,-1.3 -0.4,-1.8s-0.7,-0.7 -1.3,-0.7c-0.3,0 -0.6,0.1 -0.8,0.2s-0.4,0.4 -0.6,0.6l0,3.1c0.1,0.3 0.3,0.5 0.6,0.6s0.5,0.2 0.9,0.2c0.5,0 1,-0.2 1.2,-0.6s0.4,-0.9 0.4,-1.6l0,0z" id="svg_117"/>
<path class="st42" d="m387.4,177l0,-0.7l2.1,0l0,8.2l1,0.2l0,0.7l-3.1,0l0,-0.7l1,-0.2l0,-7.3l-1,-0.2z" id="svg_118"/>
<path class="st42" d="m391.2,182.2c0,-0.9 0.3,-1.7 0.8,-2.3s1.2,-0.9 2.1,-0.9c0.9,0 1.6,0.3 2.1,0.9s0.8,1.4 0.8,2.3l0,0.1c0,0.9 -0.3,1.7 -0.8,2.3s-1.2,0.9 -2.1,0.9c-0.9,0 -1.6,-0.3 -2.1,-0.9s-0.8,-1.4 -0.8,-2.3l0,-0.1zm1.1,0.1c0,0.7 0.1,1.2 0.4,1.7s0.7,0.7 1.3,0.7c0.5,0 1,-0.2 1.2,-0.7s0.4,-1 0.4,-1.7l0,-0.1c0,-0.7 -0.1,-1.2 -0.4,-1.7s-0.7,-0.7 -1.3,-0.7s-1,0.2 -1.3,0.7s-0.4,1 -0.4,1.7l0,0.1l0.1,0z" id="svg_119"/>
<path class="st42" d="m403.9,179.8l-0.6,0.1l-2.4,6.5c-0.2,0.4 -0.4,0.8 -0.7,1.1s-0.7,0.5 -1.2,0.5c-0.1,0 -0.2,0 -0.4,0s-0.3,0 -0.3,-0.1l0.1,-0.9c0,0 0,0 0.2,0s0.3,0 0.3,0c0.2,0 0.4,-0.1 0.6,-0.3s0.3,-0.5 0.4,-0.7l0.3,-0.7l-2.1,-5.4l-0.6,-0.1l0,-0.7l2.6,0l0,0.7l-0.7,0.1l1.1,3.1l0.2,0.8l0,0l1.3,-3.9l-0.7,-0.1l0,-0.7l2.6,0l0,0.7z" id="svg_120"/>
<path class="st42" d="m404.4,184.7l1,-0.2l0,-4.5l-1,-0.2l0,-0.7l2,0l0.1,0.8c0.2,-0.3 0.5,-0.5 0.8,-0.7s0.7,-0.2 1.1,-0.2s0.8,0.1 1.1,0.3s0.5,0.5 0.7,0.9c0.2,-0.4 0.5,-0.6 0.8,-0.9s0.7,-0.3 1.1,-0.3c0.6,0 1.2,0.2 1.5,0.7s0.6,1.1 0.6,2l0,2.9l1,0.2l0,0.7l-3.1,0l0,-0.7l1,-0.2l0,-2.9c0,-0.6 -0.1,-1.1 -0.3,-1.3s-0.5,-0.4 -1,-0.4c-0.4,0 -0.7,0.1 -1,0.4s-0.4,0.6 -0.4,1.1l0,3.1l1,0.2l0,0.7l-3.1,0l0,-0.7l1,-0.2l0,-2.9c0,-0.6 -0.1,-1 -0.3,-1.3s-0.5,-0.4 -1,-0.4c-0.4,0 -0.6,0.1 -0.9,0.2s-0.4,0.3 -0.5,0.6l0,3.8l1,0.2l0,0.7l-3.1,0l0,-0.8l-0.1,0z" id="svg_121"/>
<path class="st42" d="m418.8,185.5c-0.9,0 -1.6,-0.3 -2.1,-0.9s-0.8,-1.4 -0.8,-2.3l0,-0.3c0,-0.9 0.3,-1.7 0.8,-2.3s1.2,-0.9 1.9,-0.9c0.9,0 1.5,0.3 1.9,0.8s0.7,1.2 0.7,2.1l0,0.7l-4.1,0l0,0c0,0.6 0.2,1.1 0.5,1.5s0.7,0.6 1.2,0.6c0.4,0 0.7,-0.1 1,-0.2s0.5,-0.3 0.8,-0.5l0.5,0.8c-0.2,0.2 -0.5,0.4 -0.9,0.6s-0.9,0.3 -1.4,0.3zm-0.2,-5.6c-0.4,0 -0.7,0.2 -1,0.5s-0.4,0.7 -0.5,1.2l0,0l2.9,0l0,-0.2c0,-0.5 -0.1,-0.8 -0.4,-1.1s-0.5,-0.4 -1,-0.4z" id="svg_122"/>
<path class="st42" d="m422.2,184.7l1,-0.2l0,-4.5l-1,-0.2l0,-0.7l2,0l0.1,0.9c0.2,-0.3 0.5,-0.6 0.8,-0.8s0.7,-0.3 1.1,-0.3c0.7,0 1.2,0.2 1.6,0.6s0.6,1 0.6,1.9l0,3.1l1,0.2l0,0.7l-3.1,0l0,-0.7l1,-0.2l0,-3.1c0,-0.6 -0.1,-1 -0.3,-1.2s-0.6,-0.4 -1,-0.4c-0.3,0 -0.6,0.1 -0.9,0.2s-0.5,0.4 -0.6,0.7l0,3.7l1,0.2l0,0.7l-3.1,0l0,-0.6l-0.2,0z" id="svg_123"/>
<path class="st42" d="m432.1,177.5l0,1.5l1.2,0l0,0.9l-1.2,0l0,3.8c0,0.3 0.1,0.5 0.2,0.6s0.3,0.2 0.5,0.2c0.1,0 0.2,0 0.3,0s0.2,0 0.3,-0.1l0.2,0.8c-0.1,0.1 -0.3,0.1 -0.5,0.2s-0.4,0.1 -0.6,0.1c-0.5,0 -0.8,-0.1 -1.1,-0.4s-0.4,-0.7 -0.4,-1.3l0,-3.8l-1,0l0,-0.9l1,0l0,-1.5l1.1,0l0,-0.1z" id="svg_124"/>
</g>
<line class="st62" x1="360" y1="181.7" x2="181.5" y2="181.7" id="svg_125"/>
<line class="st62" x1="360" y1="229" x2="159.4" y2="229" id="svg_126"/>
<line class="st62" x1="360" y1="101.5" x2="242.8" y2="101.5" id="svg_127"/>
<g id="svg_128">
<path class="st42" d="m368.5,126.3c0.4,0 0.7,-0.1 1,-0.4s0.4,-0.5 0.4,-0.9l1,0l0,0c0,0.5 -0.2,1 -0.7,1.5s-1.1,0.6 -1.8,0.6c-0.9,0 -1.6,-0.3 -2.1,-0.9s-0.7,-1.4 -0.7,-2.3l0,-0.2c0,-0.9 0.2,-1.7 0.7,-2.3s1.2,-0.9 2.1,-0.9c0.5,0 1,0.1 1.4,0.3s0.7,0.4 1,0.7l0.1,1.4l-0.9,0l-0.3,-1c-0.1,-0.1 -0.3,-0.2 -0.5,-0.3s-0.5,-0.1 -0.7,-0.1c-0.6,0 -1,0.2 -1.3,0.7s-0.4,1 -0.4,1.6l0,0.2c0,0.6 0.1,1.2 0.4,1.6s0.6,0.7 1.3,0.7z" id="svg_129"/>
<path class="st42" d="m372.1,123.8c0,-0.9 0.3,-1.7 0.8,-2.3s1.2,-0.9 2.1,-0.9c0.9,0 1.6,0.3 2.1,0.9s0.8,1.4 0.8,2.3l0,0.1c0,0.9 -0.3,1.7 -0.8,2.3s-1.2,0.9 -2.1,0.9c-0.9,0 -1.6,-0.3 -2.1,-0.9s-0.8,-1.4 -0.8,-2.3l0,-0.1zm1.1,0.1c0,0.7 0.1,1.2 0.4,1.7s0.7,0.7 1.3,0.7c0.5,0 1,-0.2 1.2,-0.7s0.4,-1 0.4,-1.7l0,-0.1c0,-0.7 -0.1,-1.2 -0.4,-1.7s-0.7,-0.7 -1.3,-0.7s-1,0.2 -1.3,0.7s-0.4,1 -0.4,1.7l0,0.1l0.1,0z" id="svg_130"/>
<path class="st42" d="m378.6,126.3l1,-0.2l0,-4.5l-1,-0.2l0,-0.7l2,0l0.1,0.9c0.2,-0.3 0.5,-0.6 0.8,-0.8s0.7,-0.3 1.1,-0.3c0.7,0 1.2,0.2 1.6,0.6s0.6,1 0.6,1.9l0,3.1l1,0.2l0,0.7l-3.1,0l0,-0.7l1,-0.2l0,-3.1c0,-0.6 -0.1,-1 -0.3,-1.2s-0.6,-0.4 -1,-0.4c-0.3,0 -0.6,0.1 -0.9,0.2s-0.5,0.4 -0.6,0.7l0,3.7l1,0.2l0,0.7l-3.1,0l0,-0.6l-0.2,0z" id="svg_131"/>
<path class="st42" d="m388.6,119.2l0,1.5l1.2,0l0,0.9l-1.2,0l0,3.8c0,0.3 0.1,0.5 0.2,0.6s0.3,0.2 0.5,0.2c0.1,0 0.2,0 0.3,0s0.2,0 0.3,-0.1l0.2,0.8c-0.1,0.1 -0.3,0.1 -0.5,0.2s-0.4,0.1 -0.6,0.1c-0.5,0 -0.8,-0.1 -1.1,-0.4s-0.4,-0.7 -0.4,-1.3l0,-3.8l-1,0l0,-0.9l1,0l0,-1.5l1.1,0l0,-0.1z" id="svg_132"/>
<path class="st42" d="m395.1,127c0,-0.2 -0.1,-0.3 -0.1,-0.5s0,-0.3 0,-0.4c-0.2,0.3 -0.5,0.5 -0.8,0.7s-0.7,0.3 -1.1,0.3c-0.7,0 -1.2,-0.2 -1.5,-0.5s-0.5,-0.8 -0.5,-1.4c0,-0.6 0.2,-1.1 0.7,-1.4s1.2,-0.5 2,-0.5l1.2,0l0,-0.7c0,-0.4 -0.1,-0.7 -0.4,-0.9s-0.6,-0.3 -1,-0.3c-0.3,0 -0.5,0 -0.8,0.1s-0.4,0.2 -0.5,0.3l-0.1,0.7l-0.9,0l0,-1.2c0.3,-0.2 0.6,-0.4 1,-0.6s0.9,-0.2 1.3,-0.2c0.7,0 1.3,0.2 1.7,0.6s0.7,0.9 0.7,1.6l0,3.1c0,0.1 0,0.2 0,0.2s0,0.2 0,0.2l0.5,0.1l0,0.7l-1.4,0zm-1.9,-0.8c0.4,0 0.7,-0.1 1,-0.3s0.5,-0.4 0.7,-0.7l0,-1l-1.2,0c-0.5,0 -0.8,0.1 -1.1,0.3s-0.4,0.5 -0.4,0.8c0,0.3 0.1,0.5 0.3,0.6s0.4,0.3 0.7,0.3z" id="svg_133"/>
<path class="st42" d="m397.5,126.3l1,-0.2l0,-4.5l-1,-0.2l0,-0.7l2.1,0l0,5.4l1,0.2l0,0.7l-3.1,0l0,-0.7zm2.1,-7.2l-1.2,0l0,-1.2l1.2,0l0,1.2z" id="svg_134"/>
<path class="st42" d="m401.3,126.3l1,-0.2l0,-4.5l-1,-0.2l0,-0.7l2,0l0.1,0.9c0.2,-0.3 0.5,-0.6 0.8,-0.8s0.7,-0.3 1.1,-0.3c0.7,0 1.2,0.2 1.6,0.6s0.6,1 0.6,1.9l0,3.1l1,0.2l0,0.7l-3.1,0l0,-0.7l1,-0.2l0,-3.1c0,-0.6 -0.1,-1 -0.3,-1.2s-0.6,-0.4 -1,-0.4c-0.3,0 -0.6,0.1 -0.9,0.2s-0.5,0.4 -0.6,0.7l0,3.7l1,0.2l0,0.7l-3.1,0l0,-0.6l-0.2,0z" id="svg_135"/>
<path class="st42" d="m412,127.2c-0.9,0 -1.6,-0.3 -2.1,-0.9s-0.8,-1.4 -0.8,-2.3l0,-0.3c0,-0.9 0.3,-1.7 0.8,-2.3s1.2,-0.9 1.9,-0.9c0.9,0 1.5,0.3 1.9,0.8s0.7,1.2 0.7,2.1l0,0.7l-4.1,0l0,0c0,0.6 0.2,1.1 0.5,1.5s0.7,0.6 1.2,0.6c0.4,0 0.7,-0.1 1,-0.2s0.5,-0.3 0.8,-0.5l0.5,0.8c-0.2,0.2 -0.5,0.4 -0.9,0.6s-0.8,0.3 -1.4,0.3zm-0.1,-5.7c-0.4,0 -0.7,0.2 -1,0.5s-0.4,0.7 -0.5,1.2l0,0l2.9,0l0,-0.2c0,-0.5 -0.1,-0.8 -0.4,-1.1s-0.6,-0.4 -1,-0.4z" id="svg_136"/>
<path class="st42" d="m415.6,121.4l0,-0.7l2,0l0.1,0.9c0.2,-0.3 0.4,-0.6 0.7,-0.8s0.6,-0.3 0.9,-0.3c0.1,0 0.2,0 0.3,0s0.2,0 0.2,0l-0.2,1.1l-0.7,0c-0.3,0 -0.6,0.1 -0.8,0.2s-0.4,0.3 -0.5,0.6l0,3.6l1,0.2l0,0.7l-3.1,0l0,-0.7l1,-0.2l0,-4.5l-0.9,-0.1z" id="svg_137"/>
<path class="st42" d="m420.6,126.3l1,-0.2l0,-4.5l-1,-0.2l0,-0.7l2.1,0l0,5.4l1,0.2l0,0.7l-3.1,0l0,-0.7zm2.1,-7.2l-1.2,0l0,-1.2l1.2,0l0,1.2z" id="svg_138"/>
<path class="st42" d="m426,126.1l2.6,0l0.1,-1l1,0l0,1.9l-5,0l0,-0.8l3.4,-4.6l-2.3,0l-0.1,1l-1,0l0,-1.9l4.8,0l0,0.8l-3.5,4.6z" id="svg_139"/>
<path class="st42" d="m433.7,127.2c-0.9,0 -1.6,-0.3 -2.1,-0.9s-0.8,-1.4 -0.8,-2.3l0,-0.3c0,-0.9 0.3,-1.7 0.8,-2.3s1.2,-0.9 1.9,-0.9c0.9,0 1.5,0.3 1.9,0.8s0.7,1.2 0.7,2.1l0,0.7l-4.1,0l0,0c0,0.6 0.2,1.1 0.5,1.5s0.7,0.6 1.2,0.6c0.4,0 0.7,-0.1 1,-0.2s0.5,-0.3 0.8,-0.5l0.5,0.8c-0.2,0.2 -0.5,0.4 -0.9,0.6s-0.9,0.3 -1.4,0.3zm-0.2,-5.7c-0.4,0 -0.7,0.2 -1,0.5s-0.4,0.7 -0.5,1.2l0,0l2.9,0l0,-0.2c0,-0.5 -0.1,-0.8 -0.4,-1.1s-0.5,-0.4 -1,-0.4z" id="svg_140"/>
<path class="st42" d="m441.5,126.3c-0.2,0.3 -0.5,0.5 -0.8,0.7s-0.6,0.2 -1,0.2c-0.8,0 -1.4,-0.3 -1.8,-0.8s-0.7,-1.3 -0.7,-2.2l0,-0.2c0,-1 0.2,-1.8 0.7,-2.5s1,-0.9 1.8,-0.9c0.4,0 0.7,0.1 1,0.2s0.5,0.3 0.7,0.6l0,-2.6l-1,-0.2l0,-0.7l1,0l1.2,0l0,8.2l1,0.2l0,0.7l-2,0l-0.1,-0.7zm-3.1,-2.2c0,0.6 0.1,1.1 0.4,1.5s0.7,0.6 1.2,0.6c0.3,0 0.6,-0.1 0.9,-0.2s0.4,-0.4 0.6,-0.7l0,-2.9c-0.1,-0.3 -0.3,-0.5 -0.6,-0.6s-0.5,-0.2 -0.9,-0.2c-0.6,0 -1,0.2 -1.2,0.7s-0.4,1.1 -0.4,1.8l0,0z" id="svg_141"/>
<path class="st42" d="m451.5,127c0,-0.2 -0.1,-0.3 -0.1,-0.5s0,-0.3 0,-0.4c-0.2,0.3 -0.5,0.5 -0.8,0.7s-0.7,0.3 -1.1,0.3c-0.7,0 -1.2,-0.2 -1.5,-0.5s-0.5,-0.8 -0.5,-1.4c0,-0.6 0.2,-1.1 0.7,-1.4s1.2,-0.5 2,-0.5l1.2,0l0,-0.7c0,-0.4 -0.1,-0.7 -0.4,-0.9s-0.6,-0.3 -1,-0.3c-0.3,0 -0.5,0 -0.8,0.1s-0.4,0.2 -0.5,0.3l-0.1,0.7l-0.9,0l0,-1.2c0.3,-0.2 0.6,-0.4 1,-0.6s0.9,-0.2 1.3,-0.2c0.7,0 1.3,0.2 1.7,0.6s0.7,0.9 0.7,1.6l0,3.1c0,0.1 0,0.2 0,0.2s0,0.2 0,0.2l0.5,0.1l0,0.7l-1.4,0zm-1.8,-0.8c0.4,0 0.7,-0.1 1,-0.3s0.5,-0.4 0.7,-0.7l0,-1l-1.2,0c-0.5,0 -0.8,0.1 -1.1,0.3s-0.4,0.5 -0.4,0.8c0,0.3 0.1,0.5 0.3,0.6s0.3,0.3 0.7,0.3z" id="svg_142"/>
<path class="st42" d="m453.9,128.7l1,-0.2l0,-7l-1,-0.2l0,-0.7l1.9,0l0.1,0.8c0.2,-0.3 0.5,-0.5 0.8,-0.7s0.7,-0.2 1.1,-0.2c0.8,0 1.4,0.3 1.8,0.9s0.7,1.4 0.7,2.5l0,0.1c0,0.9 -0.2,1.7 -0.7,2.2s-1,0.8 -1.8,0.8c-0.4,0 -0.7,-0.1 -1,-0.2s-0.5,-0.3 -0.8,-0.6l0,2.2l1,0.2l0,0.7l-3.1,0l0,-0.6zm5.2,-4.7c0,-0.7 -0.1,-1.3 -0.4,-1.8s-0.7,-0.7 -1.3,-0.7c-0.3,0 -0.6,0.1 -0.8,0.2s-0.4,0.4 -0.6,0.6l0,3.1c0.1,0.3 0.3,0.5 0.6,0.6s0.5,0.2 0.9,0.2c0.5,0 1,-0.2 1.2,-0.6s0.4,-0.9 0.4,-1.6l0,0z" id="svg_143"/>
<path class="st42" d="m461.1,128.7l1,-0.2l0,-7l-1,-0.2l0,-0.7l1.9,0l0.1,0.8c0.2,-0.3 0.5,-0.5 0.8,-0.7s0.7,-0.2 1.1,-0.2c0.8,0 1.4,0.3 1.8,0.9s0.7,1.4 0.7,2.5l0,0.1c0,0.9 -0.2,1.7 -0.7,2.2s-1,0.8 -1.8,0.8c-0.4,0 -0.7,-0.1 -1,-0.2s-0.5,-0.3 -0.8,-0.6l0,2.2l1,0.2l0,0.7l-3.1,0l0,-0.6zm5.2,-4.7c0,-0.7 -0.1,-1.3 -0.4,-1.8s-0.7,-0.7 -1.3,-0.7c-0.3,0 -0.6,0.1 -0.8,0.2s-0.4,0.4 -0.6,0.6l0,3.1c0.1,0.3 0.3,0.5 0.6,0.6s0.5,0.2 0.9,0.2c0.5,0 1,-0.2 1.2,-0.6s0.4,-0.9 0.4,-1.6l0,0z" id="svg_144"/>
</g>
<line class="st62" x1="360" y1="123.7" x2="150.2" y2="123.7" id="svg_145"/>
<g id="svg_146">
<path class="st42" d="m120.9,356.9l1,-0.2l0,-6.9l-1,-0.2l0,-1.2l4,0l0,1.2l-1,0.2l0,2.6l0.8,0l1.9,-2.7l-0.6,-0.1l0,-1.2l3.8,0l0,1.2l-1,0.2l-2.4,3.2l2.7,3.8l1,0.2l0,1.2l-3.8,0l0,-1.2l0.6,-0.1l-1.9,-2.9l-1.1,0l0,2.7l1,0.2l0,1.2l-4,0l0,-1.2z" id="svg_147"/>
<path class="st42" d="m135.6,357.1c-0.2,0.3 -0.5,0.6 -0.9,0.8s-0.7,0.3 -1.2,0.3c-0.8,0 -1.4,-0.2 -1.8,-0.7c-0.4,-0.5 -0.6,-1.2 -0.6,-2.3l0,-3l-0.8,-0.2l0,-1.2l0.8,0l1.9,0l0,4.3c0,0.5 0.1,0.9 0.3,1.1s0.4,0.3 0.8,0.3c0.3,0 0.6,0 0.8,-0.1s0.4,-0.2 0.5,-0.4l0,-3.9l-0.8,-0.2l0,-1.2l0.8,0l1.9,0l0,5.8l0.9,0.2l0,1.2l-2.6,0l0,-0.8z" id="svg_148"/>
<path class="st42" d="m146,354.6c0,1.1 -0.2,1.9 -0.7,2.6c-0.5,0.6 -1.2,1 -2.1,1c-0.4,0 -0.8,-0.1 -1.1,-0.3s-0.6,-0.4 -0.8,-0.8l-0.1,0.9l-1.7,0l0,-9l-1,-0.2l0,-1.2l3,0l0,3.9c0.2,-0.3 0.5,-0.5 0.7,-0.7s0.6,-0.2 1,-0.2c0.9,0 1.6,0.3 2.1,1c0.5,0.7 0.7,1.6 0.7,2.8l0,0.2zm-1.9,-0.1c0,-0.7 -0.1,-1.3 -0.3,-1.7s-0.6,-0.6 -1.1,-0.6c-0.3,0 -0.6,0.1 -0.8,0.2s-0.4,0.3 -0.5,0.5l0,3c0.1,0.2 0.3,0.4 0.5,0.5c0.2,0.1 0.5,0.2 0.8,0.2c0.5,0 0.8,-0.2 1,-0.5c0.2,-0.4 0.3,-0.9 0.3,-1.5l0,-0.1l0.1,0z" id="svg_149"/>
<path class="st42" d="m150.3,358.2c-1,0 -1.9,-0.3 -2.5,-1c-0.6,-0.7 -0.9,-1.5 -0.9,-2.5l0,-0.3c0,-1.1 0.3,-1.9 0.9,-2.6c0.6,-0.7 1.4,-1 2.4,-1c1,0 1.7,0.3 2.3,0.9c0.5,0.6 0.8,1.4 0.8,2.4l0,1.1l-4.3,0l0,0c0,0.5 0.2,0.9 0.5,1.2c0.3,0.3 0.7,0.5 1.1,0.5c0.4,0 0.8,0 1.1,-0.1s0.6,-0.2 0.9,-0.4l0.5,1.2c-0.3,0.2 -0.7,0.4 -1.2,0.6s-1,0 -1.6,0zm-0.1,-6c-0.4,0 -0.6,0.1 -0.8,0.4c-0.2,0.3 -0.3,0.6 -0.4,1.1l0,0l2.4,0l0,-0.2c0,-0.4 -0.1,-0.7 -0.3,-1c-0.3,-0.2 -0.6,-0.3 -0.9,-0.3z" id="svg_150"/>
<path class="st42" d="m154.3,356.9l0.9,-0.2l0,-4.5l-1,-0.2l0,-1.2l2.8,0l0.1,1c0.2,-0.4 0.4,-0.7 0.7,-0.9c0.3,-0.2 0.6,-0.3 0.9,-0.3c0.1,0 0.2,0 0.3,0c0.1,0 0.2,0 0.3,0.1l-0.2,1.8l-0.8,0c-0.3,0 -0.5,0.1 -0.7,0.2c-0.2,0.1 -0.3,0.3 -0.4,0.5l0,3.5l0.9,0.2l0,1.2l-3.8,0l0,-1.2z" id="svg_151"/>
<path class="st42" d="m159.7,356.9l0.9,-0.2l0,-4.5l-1,-0.2l0,-1.2l2.8,0l0.1,1c0.2,-0.4 0.5,-0.7 0.9,-0.9s0.7,-0.3 1.2,-0.3c0.7,0 1.3,0.2 1.7,0.7c0.4,0.5 0.6,1.2 0.6,2.1l0,3.1l0.9,0.2l0,1.2l-3.7,0l0,-1.2l0.8,-0.2l0,-3.1c0,-0.5 -0.1,-0.8 -0.3,-1c-0.2,-0.2 -0.5,-0.3 -0.9,-0.3c-0.3,0 -0.5,0.1 -0.7,0.2c-0.2,0.1 -0.4,0.3 -0.5,0.4l0,3.9l0.8,0.2l0,1.2l-3.7,0l0,-1.1l0.1,0z" id="svg_152"/>
<path class="st42" d="m171.9,358.2c-1,0 -1.9,-0.3 -2.5,-1c-0.6,-0.7 -0.9,-1.5 -0.9,-2.5l0,-0.3c0,-1.1 0.3,-1.9 0.9,-2.6c0.6,-0.7 1.4,-1 2.4,-1c1,0 1.7,0.3 2.3,0.9c0.5,0.6 0.8,1.4 0.8,2.4l0,1.1l-4.3,0l0,0c0,0.5 0.2,0.9 0.5,1.2c0.3,0.3 0.7,0.5 1.1,0.5c0.4,0 0.8,0 1.1,-0.1s0.6,-0.2 0.9,-0.4l0.5,1.2c-0.3,0.2 -0.7,0.4 -1.2,0.6s-1.1,0 -1.6,0zm-0.2,-6c-0.4,0 -0.6,0.1 -0.8,0.4c-0.2,0.3 -0.3,0.6 -0.4,1.1l0,0l2.4,0l0,-0.2c0,-0.4 -0.1,-0.7 -0.3,-1c-0.2,-0.2 -0.5,-0.3 -0.9,-0.3z" id="svg_153"/>
<path class="st42" d="m178.5,349.1l0,1.8l1.3,0l0,1.4l-1.3,0l0,3.7c0,0.3 0.1,0.5 0.2,0.6c0.1,0.1 0.3,0.2 0.5,0.2c0.1,0 0.2,0 0.3,0c0.1,0 0.2,0 0.3,-0.1l0.2,1.4c-0.2,0.1 -0.4,0.1 -0.6,0.1c-0.2,0 -0.4,0 -0.7,0c-0.7,0 -1.2,-0.2 -1.5,-0.6c-0.4,-0.4 -0.5,-0.9 -0.5,-1.7l0,-3.7l-1.1,0l0,-1.4l1.1,0l0,-1.8l1.8,0l0,0.1z" id="svg_154"/>
<path class="st42" d="m184.2,358.2c-1,0 -1.9,-0.3 -2.5,-1c-0.6,-0.7 -0.9,-1.5 -0.9,-2.5l0,-0.3c0,-1.1 0.3,-1.9 0.9,-2.6c0.6,-0.7 1.4,-1 2.4,-1c1,0 1.7,0.3 2.3,0.9c0.5,0.6 0.8,1.4 0.8,2.4l0,1.1l-4.3,0l0,0c0,0.5 0.2,0.9 0.5,1.2c0.3,0.3 0.7,0.5 1.1,0.5c0.4,0 0.8,0 1.1,-0.1s0.6,-0.2 0.9,-0.4l0.5,1.2c-0.3,0.2 -0.7,0.4 -1.2,0.6s-1,0 -1.6,0zm-0.2,-6c-0.4,0 -0.6,0.1 -0.8,0.4c-0.2,0.3 -0.3,0.6 -0.4,1.1l0,0l2.4,0l0,-0.2c0,-0.4 -0.1,-0.7 -0.3,-1c-0.2,-0.2 -0.5,-0.3 -0.9,-0.3z" id="svg_155"/>
<path class="st42" d="m193.69375,353.3l-1.3,0l-0.2,-0.9c-0.1,-0.1 -0.3,-0.2 -0.5,-0.3c-0.2,-0.1 -0.4,-0.1 -0.7,-0.1c-0.3,0 -0.6,0.1 -0.8,0.2c-0.2,0.2 -0.3,0.3 -0.3,0.6c0,0.2 0.1,0.4 0.3,0.5s0.6,0.3 1.1,0.4c0.9,0.2 1.5,0.4 2,0.8s0.6,0.8 0.6,1.4c0,0.6 -0.3,1.2 -0.8,1.6c-0.6,0.4 -1.3,0.6 -2.2,0.6c-0.6,0 -1.1,-0.1 -1.5,-0.2c-0.5,-0.2 -0.9,-0.4 -1.2,-0.7l0,-1.6l1.4,0l0.3,0.9c0.1,0.1 0.3,0.2 0.5,0.2c0.2,0 0.4,0.1 0.6,0.1c0.4,0 0.7,-0.1 0.9,-0.2s0.3,-0.3 0.3,-0.6c0,-0.2 -0.1,-0.4 -0.3,-0.6s-0.6,-0.3 -1.1,-0.4c-0.8,-0.2 -1.5,-0.4 -1.9,-0.8s-0.6,-0.8 -0.6,-1.4c0,-0.6 0.2,-1.1 0.7,-1.6s1.2,-0.7 2.1,-0.7c0.6,0 1.1,0.1 1.6,0.2s0.9,0.3 1.2,0.6l-0.2,2z" id="svg_157" fill="black"/>
<path class="st42" d="m211.9,351.6l-1.4,0l-0.2,-1.3c-0.2,-0.2 -0.4,-0.3 -0.7,-0.5s-0.6,-0.2 -1,-0.2c-0.8,0 -1.5,0.3 -1.9,0.9c-0.5,0.6 -0.7,1.4 -0.7,2.4l0,0.3c0,1 0.2,1.8 0.7,2.4c0.5,0.6 1.1,0.9 1.9,0.9c0.4,0 0.7,-0.1 1,-0.2c0.3,-0.1 0.6,-0.3 0.7,-0.5l0.2,-1.3l1.4,0l0,1.9c-0.4,0.5 -0.9,0.8 -1.5,1.1c-0.6,0.3 -1.3,0.4 -2,0.4c-1.3,0 -2.4,-0.4 -3.2,-1.3s-1.2,-2.1 -1.2,-3.5l0,-0.1c0,-1.4 0.4,-2.6 1.2,-3.5c0.8,-0.9 1.9,-1.4 3.2,-1.4c0.7,0 1.4,0.1 2,0.4c0.6,0.3 1.1,0.6 1.5,1.1l0,2z" id="svg_158"/>
<path class="st42" d="m212.6,348.8l0,-1.2l3,0l0,9l0.9,0.2l0,1.2l-3.8,0l0,-1.2l0.9,-0.2l0,-7.6l-1,-0.2z" id="svg_159"/>
<path class="st42" d="m222.2,357.1c-0.2,0.3 -0.5,0.6 -0.9,0.8s-0.7,0.3 -1.2,0.3c-0.8,0 -1.4,-0.2 -1.8,-0.7c-0.4,-0.5 -0.6,-1.2 -0.6,-2.3l0,-3l-0.7,-0.2l0,-1.2l0.8,0l1.9,0l0,4.3c0,0.5 0.1,0.9 0.3,1.1s0.4,0.3 0.8,0.3c0.3,0 0.6,0 0.8,-0.1s0.4,-0.2 0.5,-0.4l0,-3.9l-0.8,-0.2l0,-1.2l0.8,0l1.9,0l0,5.8l0.9,0.2l0,1.2l-2.6,0l-0.1,-0.8z" id="svg_160"/>
<path class="st42" d="m231.5,353.3l-1.3,0l-0.2,-0.9c-0.1,-0.1 -0.3,-0.2 -0.5,-0.3c-0.2,-0.1 -0.4,-0.1 -0.7,-0.1c-0.3,0 -0.6,0.1 -0.8,0.2c-0.2,0.2 -0.3,0.3 -0.3,0.6c0,0.2 0.1,0.4 0.3,0.5s0.6,0.3 1.1,0.4c0.9,0.2 1.5,0.4 2,0.8s0.6,0.8 0.6,1.4c0,0.6 -0.3,1.2 -0.8,1.6c-0.6,0.4 -1.3,0.6 -2.2,0.6c-0.6,0 -1.1,-0.1 -1.5,-0.2c-0.5,-0.2 -0.9,-0.4 -1.2,-0.7l0,-1.6l1.4,0l0.3,0.9c0.1,0.1 0.3,0.2 0.5,0.2c0.2,0 0.4,0.1 0.6,0.1c0.4,0 0.7,-0.1 0.9,-0.2s0.3,-0.3 0.3,-0.6c0,-0.2 -0.1,-0.4 -0.3,-0.6s-0.6,-0.3 -1.1,-0.4c-0.8,-0.2 -1.5,-0.4 -1.9,-0.8s-0.6,-0.8 -0.6,-1.4c0,-0.6 0.2,-1.1 0.7,-1.6s1.2,-0.7 2.1,-0.7c0.6,0 1.1,0.1 1.6,0.2s0.9,0.3 1.2,0.6l-0.2,2z" id="svg_161"/>
<path class="st42" d="m235.5,349.1l0,1.8l1.3,0l0,1.4l-1.3,0l0,3.7c0,0.3 0.1,0.5 0.2,0.6c0.1,0.1 0.3,0.2 0.5,0.2c0.1,0 0.2,0 0.3,0c0.1,0 0.2,0 0.3,-0.1l0.2,1.4c-0.2,0.1 -0.4,0.1 -0.6,0.1c-0.2,0 -0.4,0 -0.7,0c-0.7,0 -1.2,-0.2 -1.5,-0.6c-0.4,-0.4 -0.5,-0.9 -0.5,-1.7l0,-3.7l-1.1,0l0,-1.4l1.1,0l0,-1.8l1.8,0l0,0.1z" id="svg_162"/>
<path class="st42" d="m241.2,358.2c-1,0 -1.9,-0.3 -2.5,-1c-0.6,-0.7 -0.9,-1.5 -0.9,-2.5l0,-0.3c0,-1.1 0.3,-1.9 0.9,-2.6c0.6,-0.7 1.4,-1 2.4,-1c1,0 1.7,0.3 2.3,0.9c0.5,0.6 0.8,1.4 0.8,2.4l0,1.1l-4.3,0l0,0c0,0.5 0.2,0.9 0.5,1.2c0.3,0.3 0.7,0.5 1.1,0.5c0.4,0 0.8,0 1.1,-0.1s0.6,-0.2 0.9,-0.4l0.5,1.2c-0.3,0.2 -0.7,0.4 -1.2,0.6s-1,0 -1.6,0zm-0.2,-6c-0.4,0 -0.6,0.1 -0.8,0.4c-0.2,0.3 -0.3,0.6 -0.4,1.1l0,0l2.4,0l0,-0.2c0,-0.4 -0.1,-0.7 -0.3,-1c-0.2,-0.2 -0.5,-0.3 -0.9,-0.3z" id="svg_163"/>
<path class="st42" d="m245.1,356.9l0.9,-0.2l0,-4.5l-1,-0.2l0,-1.2l2.8,0l0.1,1c0.2,-0.4 0.4,-0.7 0.7,-0.9c0.3,-0.2 0.6,-0.3 0.9,-0.3c0.1,0 0.2,0 0.3,0c0.1,0 0.2,0 0.3,0.1l-0.2,1.8l-0.8,0c-0.3,0 -0.5,0.1 -0.7,0.2c-0.2,0.1 -0.3,0.3 -0.4,0.5l0,3.5l0.9,0.2l0,1.2l-3.8,0l0,-1.2z" id="svg_164"/>
</g>
</g>
<g id="Layer_14"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 52 KiB

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 350 200"><defs><style>.cls-1{fill:#fff}.cls-2{fill:#326de6}.cls-3{opacity:.1;fill:url(#linear-gradient)}.cls-4{fill:none;stroke:#326de6;stroke-miterlimit:10;stroke-width:1.2px}.cls-5{fill:#06f7c9;stroke:#011f38;stroke-linecap:round;stroke-linejoin:round;stroke-width:.8px}</style><linearGradient id="linear-gradient" x1="140.96" y1="100.17" x2="209.04" y2="100.17" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#326de6"/><stop offset="1" stop-color="#10ffc6"/></linearGradient></defs><title>16.07.28_k8s_visual_diagrams</title><g id="Graphics"><path class="cls-1" d="M175 167.25l-58.1-33.54V66.63L175 33.08l58.1 33.55v67.08L175 167.25z"/><path class="cls-2" d="M175 168.16a.91.91 0 0 1-.46-.12l-58.1-33.54a.91.91 0 0 1-.46-.79V66.63a.91.91 0 0 1 .46-.79l58.1-33.54a.91.91 0 0 1 .91 0l58.1 33.54a.91.91 0 0 1 .46.79v67.08a.91.91 0 0 1-.46.79L175.46 168a.91.91 0 0 1-.46.16zm-57.18-35l57.18 33 57.18-33v-66L175 34.14l-57.18 33z"/><circle class="cls-3" cx="175" cy="100.17" r="34.04"/><circle class="cls-4" cx="175" cy="100.17" r="34.13"/><path class="cls-5" d="M163.14 93.32L175 86.47l11.86 6.85-11.86 6.85-11.86-6.85z"/><path class="cls-5" d="M163.14 107.02v-13.7l11.86 6.85v13.69l-11.86-6.84zM175 113.86v-13.69l11.86-6.85v13.7L175 113.86z"/></g></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

@@ -0,0 +1,521 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 504 432" style="enable-background:new 0 0 504 432;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FFFFFF;stroke:#326DE6;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st1{opacity:0.71;fill:#326CE6;}
.st2{opacity:0.45;fill:#FFFFFF;}
.st3{fill:#FFFFFF;stroke:#006DE9;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st4{fill:#006DE9;}
.st5{fill:#A0CAEA;}
.st6{fill:#FFFFFF;}
.st7{opacity:0.13;}
.st8{fill:url(#SVGID_1_);}
.st9{fill:url(#SVGID_2_);}
.st10{fill:#FFFFFF;stroke:#006DE9;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st11{fill:#FFFFFF;stroke:#006DE9;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st12{fill:#FFFFFF;stroke:#326DE6;stroke-width:3.2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st13{fill:#326DE6;}
.st14{fill:none;stroke:#326DE6;stroke-width:2.4;stroke-miterlimit:10;}
.st15{fill:#A0CAE9;}
.st16{fill:#FFFFFF;stroke:#326DE6;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st17{fill:#FFFFFF;stroke:#326DE6;stroke-width:1.6;stroke-miterlimit:10;}
.st18{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;}
.st19{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3749,1.5832;}
.st20{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4006,1.6004;}
.st21{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st22{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st23{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3975,1.5984;}
.st24{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.395,1.5966;}
.st25{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3963,1.5976;}
.st26{opacity:0.1;fill:#EEF406;}
.st27{opacity:2.000000e-02;fill:#EEF406;}
.st28{opacity:0.1;fill:#06F7C9;}
.st29{fill:none;stroke:#006DE9;stroke-width:0.8;stroke-miterlimit:10;}
.st30{opacity:0.1;fill:url(#SVGID_3_);}
.st31{opacity:0.1;fill:url(#SVGID_4_);}
.st32{opacity:0.1;fill:url(#SVGID_5_);}
.st33{opacity:0.1;fill:url(#SVGID_6_);}
.st34{fill:none;stroke:#326DE6;stroke-width:1.2;stroke-miterlimit:10;}
.st35{opacity:0.1;fill:url(#SVGID_7_);}
.st36{opacity:0.1;fill:url(#SVGID_8_);}
.st37{opacity:0.1;fill:url(#SVGID_9_);}
.st38{opacity:0.1;fill:url(#SVGID_10_);}
.st39{fill:none;stroke:#326DE6;stroke-width:2;stroke-miterlimit:10;}
.st40{opacity:0.4;fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st41{fill:none;stroke:#EEF406;stroke-width:2.4596;stroke-miterlimit:10;}
.st42{fill:#011F38;}
.st43{opacity:0.4;}
.st44{opacity:0.1;}
.st45{fill:#326DE6;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st46{fill:none;stroke:#FFFFFF;stroke-width:1.2;stroke-linecap:round;stroke-linejoin:round;}
.st47{fill:#06F7C9;stroke:#FFFFFF;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st48{fill:none;stroke:#011F38;stroke-width:1.2;stroke-linecap:round;stroke-linejoin:round;}
.st49{fill:#326DE6;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;}
.st50{fill:#06F7C9;stroke:#011F38;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st51{fill:#8115FF;stroke:#011F38;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st52{opacity:0.3;}
.st53{opacity:0.2;fill:#6D6E71;}
.st54{fill:#EEF406;}
.st55{fill:#06F7C9;}
.st56{fill:#FFFFFF;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st57{fill:#FFFFFF;stroke:#EEF406;stroke-width:1.6;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st58{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4938,1.6626;}
.st59{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.0084,1.3389;}
.st60{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.724,1.816;}
.st61{fill:#011F38;stroke:#414042;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st62{fill:none;stroke:#011F38;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st63{fill:none;stroke:#011F38;stroke-width:0.2813;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
</style>
<symbol id="node_high_level" viewBox="-81 -93 162 186.1">
<polygon class="st0" points="-80,-46 -80,46 0,92 80,46 80,-46 0,-92 "/>
<g id="Isolation_Mode_3_">
</g>
</symbol>
<symbol id="node_x5F_empty" viewBox="-87.5 -100.6 175.1 201.1">
<use xlink:href="#node_high_level" width="162" height="186.1" id="XMLID_201_" x="-81" y="-93" transform="matrix(1.0808 0 0 1.0808 -3.292006e-05 -3.749943e-05)" style="overflow:visible;"/>
<g>
<polygon class="st1" points="76.8,-28.1 -14,-80.3 0,-88.3 76.7,-44.4 "/>
<polygon class="st2" points="76.8,-28.1 32.1,-53.8 38.8,-66.1 76.7,-44.4 "/>
</g>
</symbol>
<symbol id="node_x5F_new" viewBox="-87.6 -101 175.2 202">
<polygon class="st3" points="0,-100 -86.6,-50 -86.6,50 0,100 86.6,50 86.6,-50 "/>
<polygon class="st4" points="-86.6,-20.2 -86.6,-50 0,-100 25.8,-85.1 "/>
<polygon class="st5" points="-40.8,-70.7 -32.9,-57 15.7,-85.1 0,-94.3 "/>
<text transform="matrix(0.866 -0.5 -0.5 -0.866 -33.9256 -70.7388)" class="st6" style="font-family:'RobotoSlab-Regular'; font-size:11.3632px;">Docker</text>
<text transform="matrix(0.866 -0.5 -0.5 -0.866 -76.0668 -46.4087)" class="st6" style="font-family:'RobotoSlab-Regular'; font-size:11.3632px;">Kubelt</text>
</symbol>
<g id="CLUSTER">
</g>
<g id="master">
<g id="master_x5F_level1">
</g>
</g>
<g id="Node">
<polygon class="st13" points="27.2,290.9 27.2,311.3 191.3,406 209,395.8 "/>
<polygon class="st14" points="27.2,311.3 27.2,122 191.3,27.3 355.3,122 355.3,311.3 191.3,406 "/>
<polygon class="st15" points="110.5,356.6 116.9,345.4 204.2,395.8 191.3,403.3 "/>
<g>
<path class="st6" d="M145,365.7c0.8,0.4,1.3,1,1.5,1.8c0.2,0.7,0.1,1.5-0.4,2.2l-0.5,0.8c-0.4,0.8-1,1.2-1.8,1.4
c-0.7,0.2-1.5,0.1-2.3-0.4l-2.5-1.4l0.3-0.5l0.7,0.3l2.7-4.7l-0.6-0.5l0.3-0.5l0.7,0.4L145,365.7z M143.6,365.7l-2.7,4.7l1,0.6
c0.5,0.3,1.1,0.4,1.6,0.2c0.5-0.2,0.9-0.5,1.3-1.1l0.5-0.8c0.3-0.6,0.4-1.1,0.3-1.6c-0.1-0.5-0.4-1-1-1.3L143.6,365.7z"/>
<path class="st6" d="M146.3,371.3c0.4-0.6,0.9-1.1,1.5-1.3c0.6-0.2,1.2-0.2,1.8,0.2c0.6,0.4,1,0.8,1.1,1.5s0,1.3-0.4,1.9l-0.1,0.1
c-0.4,0.7-0.9,1.1-1.5,1.3c-0.6,0.2-1.2,0.1-1.8-0.2c-0.6-0.4-1-0.8-1.1-1.5S145.8,372,146.3,371.3L146.3,371.3z M147,371.8
c-0.3,0.5-0.4,0.9-0.4,1.3s0.2,0.7,0.6,1c0.4,0.2,0.8,0.2,1.1,0c0.4-0.2,0.7-0.5,1-1l0.1-0.1c0.3-0.5,0.4-0.9,0.4-1.3
c0-0.4-0.2-0.7-0.6-1c-0.4-0.2-0.8-0.2-1.1,0C147.6,370.9,147.3,371.3,147,371.8L147,371.8z"/>
<path class="st6" d="M151.9,376.8c0.3,0.2,0.5,0.2,0.8,0.2c0.3,0,0.5-0.2,0.7-0.4l0.7,0.4l0,0c-0.2,0.4-0.6,0.6-1.1,0.7
c-0.5,0.1-1,0-1.5-0.3c-0.6-0.4-1-0.9-1.1-1.5c-0.1-0.6,0-1.2,0.4-1.9l0.1-0.2c0.4-0.6,0.8-1,1.4-1.3c0.6-0.2,1.2-0.2,1.8,0.2
c0.4,0.2,0.6,0.4,0.8,0.7c0.2,0.3,0.4,0.6,0.4,0.9l-0.5,1l-0.6-0.4l0.2-0.8c0-0.1-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.3-0.5-0.4
c-0.4-0.2-0.8-0.3-1.2-0.1c-0.4,0.2-0.7,0.5-0.9,1l-0.1,0.2c-0.3,0.4-0.4,0.9-0.4,1.3S151.5,376.6,151.9,376.8z"/>
<path class="st6" d="M157.4,372.9l0.3-0.5l1.5,0.8l-2.1,3.7l0.5,0.3l1.6-0.6l-0.4-0.3l0.3-0.5l1.8,1.1l-0.3,0.5l-0.6-0.2l-2,0.7
l0.4,2.6l0.4,0.4l-0.3,0.5l-1.8-1.1l0.3-0.5l0.4,0.2l-0.3-2.1l-0.5-0.3l-0.8,1.4l0.6,0.5l-0.3,0.5l-2.1-1.2l0.3-0.5l0.7,0.3
l2.9-5.1L157.4,372.9z"/>
<path class="st6" d="M161,382.9c-0.6-0.4-1-0.8-1.1-1.5c-0.1-0.6,0-1.2,0.4-1.9l0.1-0.2c0.4-0.6,0.8-1,1.5-1.2
c0.6-0.2,1.2-0.2,1.7,0.1c0.6,0.3,0.9,0.8,1,1.3c0.1,0.5,0,1.1-0.4,1.7l-0.3,0.5l-2.8-1.6l0,0c-0.2,0.4-0.3,0.8-0.3,1.2
s0.3,0.7,0.6,0.9c0.3,0.2,0.5,0.3,0.8,0.3c0.2,0,0.5,0,0.7,0l0,0.7c-0.2,0.1-0.5,0.1-0.8,0C161.7,383.2,161.4,383.1,161,382.9z
M163.2,378.9c-0.3-0.2-0.6-0.2-0.9-0.1c-0.3,0.1-0.6,0.3-0.8,0.6l0,0l2,1.2l0.1-0.1c0.2-0.3,0.2-0.6,0.2-0.9
C163.7,379.3,163.5,379.1,163.2,378.9z"/>
<path class="st6" d="M165.8,380.4l0.3-0.5l1.4,0.8l-0.3,0.7c0.3-0.2,0.5-0.2,0.8-0.3c0.3,0,0.5,0,0.7,0.2c0.1,0,0.1,0.1,0.2,0.1
c0.1,0,0.1,0.1,0.1,0.1l-0.5,0.7l-0.4-0.3c-0.2-0.1-0.4-0.2-0.6-0.2c-0.2,0-0.4,0.1-0.6,0.2l-1.5,2.5l0.6,0.5l-0.3,0.5l-2.1-1.2
l0.3-0.5l0.7,0.3l1.8-3.1L165.8,380.4z"/>
</g>
<g>
<path class="st6" d="M59.5,316.4l0.3-0.5l1.5,0.8l-2.1,3.7l0.5,0.3l1.6-0.6l-0.4-0.3l0.3-0.5l1.8,1.1l-0.3,0.5l-0.6-0.2l-2,0.7
l0.4,2.6l0.4,0.4l-0.3,0.5l-1.8-1.1l0.3-0.5l0.4,0.2l-0.3-2.1l-0.5-0.3l-0.8,1.4l0.6,0.5l-0.3,0.5l-2.1-1.2l0.3-0.5l0.7,0.3
l2.9-5.1L59.5,316.4z"/>
<path class="st6" d="M64.8,326.4c-0.3,0.2-0.6,0.2-0.8,0.2c-0.3,0-0.6-0.1-0.9-0.2c-0.5-0.3-0.8-0.6-0.9-1.1
c-0.1-0.5,0.1-1,0.4-1.7l1.1-2l-0.4-0.4l0.3-0.5l0.5,0.3l0.8,0.5l-1.5,2.6c-0.3,0.5-0.4,0.8-0.3,1.1c0,0.3,0.2,0.5,0.5,0.6
c0.3,0.2,0.6,0.2,0.8,0.2c0.3,0,0.5-0.1,0.7-0.2l1.5-2.5l-0.5-0.5l0.3-0.5l0.6,0.3l0.8,0.5l-2.2,3.8l0.4,0.4l-0.3,0.5l-1.2-0.7
L64.8,326.4z"/>
<path class="st6" d="M71.5,328.4c-0.4,0.6-0.8,1.1-1.3,1.3c-0.5,0.2-1.1,0.2-1.6-0.1c-0.3-0.2-0.5-0.4-0.7-0.6
c-0.1-0.2-0.2-0.5-0.2-0.8l-0.4,0.5l-0.7-0.4l3.3-5.7l-0.6-0.5l0.3-0.5l1.5,0.8l-1.4,2.5c0.3-0.1,0.5-0.2,0.8-0.2
c0.3,0,0.5,0.1,0.8,0.3c0.5,0.3,0.8,0.8,0.9,1.4C72.2,327,72,327.6,71.5,328.4L71.5,328.4z M70.8,327.9c0.3-0.5,0.4-1,0.4-1.4
c0-0.4-0.2-0.7-0.6-1c-0.2-0.1-0.5-0.2-0.7-0.2s-0.5,0.1-0.7,0.2l-1.1,1.9c0,0.3,0,0.5,0.1,0.7c0.1,0.2,0.3,0.4,0.5,0.5
c0.4,0.2,0.7,0.2,1.1,0.1C70.2,328.7,70.5,328.4,70.8,327.9L70.8,327.9z"/>
<path class="st6" d="M73.1,332.1c-0.6-0.4-1-0.8-1.1-1.5c-0.1-0.6,0-1.2,0.4-1.9l0.1-0.2c0.4-0.6,0.8-1,1.5-1.2
c0.6-0.2,1.2-0.2,1.7,0.1c0.6,0.3,0.9,0.8,1,1.3c0.1,0.5,0,1.1-0.4,1.7L76,331l-2.9-1.6l0,0c-0.2,0.4-0.3,0.8-0.3,1.2
c0,0.4,0.3,0.7,0.6,0.9c0.3,0.2,0.5,0.3,0.8,0.3c0.2,0,0.5,0,0.7,0l0,0.7c-0.2,0.1-0.5,0.1-0.8,0
C73.8,332.5,73.5,332.3,73.1,332.1z M75.3,328.1c-0.3-0.2-0.6-0.2-0.9-0.1s-0.6,0.3-0.8,0.6l0,0l2,1.2l0.1-0.1
c0.2-0.3,0.2-0.6,0.2-0.9S75.6,328.3,75.3,328.1z"/>
<path class="st6" d="M78.9,327.6l0.3-0.5l1.5,0.8l-3.3,5.7l0.6,0.5l-0.3,0.5l-2.1-1.2l0.3-0.5l0.7,0.3l2.9-5.1L78.9,327.6z"/>
<path class="st6" d="M80.2,336.2c-0.6-0.4-1-0.8-1.1-1.5c-0.1-0.6,0-1.2,0.4-1.9l0.1-0.2c0.4-0.6,0.8-1,1.5-1.2
c0.6-0.2,1.2-0.2,1.7,0.1c0.6,0.3,0.9,0.8,1,1.3c0.1,0.5,0,1.1-0.4,1.7l-0.3,0.5l-2.9-1.6l0,0c-0.2,0.4-0.3,0.8-0.3,1.2
c0,0.4,0.3,0.7,0.6,0.9c0.3,0.2,0.5,0.3,0.8,0.3c0.2,0,0.5,0,0.7,0l0,0.7c-0.2,0.1-0.5,0.1-0.8,0
C80.9,336.6,80.6,336.4,80.2,336.2z M82.3,332.2c-0.3-0.2-0.6-0.2-0.9-0.1s-0.6,0.3-0.8,0.6l0,0l2,1.2l0.1-0.1
c0.2-0.3,0.2-0.6,0.2-0.9S82.7,332.4,82.3,332.2z"/>
<path class="st6" d="M87.3,332.9l-0.6,1.1l0.8,0.5l-0.3,0.6l-0.8-0.5l-1.5,2.7c-0.1,0.2-0.2,0.4-0.1,0.5c0,0.1,0.1,0.2,0.3,0.3
c0.1,0,0.2,0.1,0.2,0.1c0.1,0,0.2,0.1,0.2,0.1l-0.2,0.6c-0.1,0-0.2,0-0.4-0.1c-0.2-0.1-0.3-0.1-0.5-0.2c-0.3-0.2-0.5-0.4-0.6-0.7
c-0.1-0.3,0-0.7,0.2-1.1l1.5-2.7l-0.7-0.4l0.3-0.6l0.7,0.4l0.6-1.1L87.3,332.9z"/>
</g>
<g id="Node_x5F_level3_x5F_1">
<g id="Isolation_Mode">
</g>
</g>
</g>
<g id="service">
</g>
<g id="pods">
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="112.0342" y1="278.8816" x2="173.4959" y2="278.8816">
<stop offset="0" style="stop-color:#326DE6"/>
<stop offset="1" style="stop-color:#10FFC6"/>
</linearGradient>
<circle style="opacity:0.1;fill:url(#SVGID_1_);" cx="142.8" cy="278.9" r="30.7"/>
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="148.6926" y1="192.4681" x2="194.7889" y2="192.4681">
<stop offset="0" style="stop-color:#326DE6"/>
<stop offset="1" style="stop-color:#10FFC6"/>
</linearGradient>
<circle style="opacity:0.1;fill:url(#SVGID_2_);" cx="171.7" cy="192.5" r="23"/>
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="217.9671" y1="162.705" x2="299.9161" y2="162.705">
<stop offset="0" style="stop-color:#326DE6"/>
<stop offset="1" style="stop-color:#10FFC6"/>
</linearGradient>
<circle class="st30" cx="258.9" cy="162.7" r="41"/>
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="205.6747" y1="278.4409" x2="312.2084" y2="278.4409">
<stop offset="0" style="stop-color:#326DE6"/>
<stop offset="1" style="stop-color:#10FFC6"/>
</linearGradient>
<circle class="st31" cx="258.9" cy="278.4" r="53.3"/>
<circle class="st34" cx="142.8" cy="278.9" r="30.7"/>
<circle class="st34" cx="171.7" cy="192.5" r="23"/>
<circle class="st34" cx="258.9" cy="162.7" r="41"/>
<circle class="st34" cx="258.9" cy="278.4" r="53.3"/>
</g>
<g id="IP">
<g>
<path class="st42" d="M111.6,266.2l0.5-1.3l-6.1-2.8l-0.5,1.5l-0.4-0.2l0.5-2.2l6.7,3.1l0.7-1.3l0.4,0.2l-1.5,3.2L111.6,266.2z"/>
<path class="st42" d="M114.1,256.7c0.9,0.6,1.4,1.2,1.6,1.9c0.2,0.7,0.1,1.3-0.3,2c-0.4,0.6-1,1-1.7,1c-0.7,0.1-1.5-0.2-2.3-0.8
l-1.5-1c-0.8-0.6-1.4-1.2-1.6-1.9s-0.1-1.3,0.3-2c0.4-0.6,1-1,1.7-1c0.7-0.1,1.5,0.2,2.3,0.8L114.1,256.7z M112.1,256.2
c-0.7-0.5-1.3-0.7-1.8-0.7c-0.5,0-1,0.3-1.3,0.8c-0.3,0.5-0.4,1-0.2,1.5c0.2,0.5,0.6,1,1.3,1.4l1.6,1.1c0.7,0.5,1.3,0.7,1.8,0.7
s1-0.3,1.3-0.7c0.3-0.5,0.4-1,0.2-1.5s-0.6-1-1.3-1.4L112.1,256.2z"/>
<path class="st42" d="M118,256.9l-0.5,0.6l-0.7-0.6l0.5-0.6L118,256.9z"/>
<path class="st42" d="M118.6,255.5l1-1l-4.6-4.9l-1,1.2l-0.3-0.3l1.3-1.9l5.1,5.4l1.1-0.9l0.3,0.4l-2.6,2.4L118.6,255.5z"/>
<path class="st42" d="M124.4,247.6c0.6,0.8,0.8,1.6,0.8,2.3c0,0.7-0.4,1.3-1,1.7c-0.6,0.4-1.3,0.5-2,0.3c-0.7-0.2-1.3-0.7-1.9-1.6
l-1-1.5c-0.6-0.8-0.8-1.6-0.8-2.3c0-0.7,0.4-1.3,1-1.7c0.6-0.4,1.3-0.6,2-0.3c0.7,0.2,1.3,0.7,1.9,1.6L124.4,247.6z M122.8,246.4
c-0.5-0.7-0.9-1.1-1.4-1.3c-0.5-0.2-1-0.1-1.5,0.2c-0.5,0.3-0.7,0.8-0.7,1.3c0,0.5,0.2,1.1,0.7,1.8l1.1,1.6
c0.5,0.7,0.9,1.1,1.5,1.3c0.5,0.2,1,0.1,1.5-0.2c0.5-0.3,0.7-0.8,0.7-1.3s-0.2-1.1-0.7-1.8L122.8,246.4z"/>
<path class="st42" d="M128,249.2l-0.7,0.3l-0.4-0.8l0.7-0.3L128,249.2z"/>
<path class="st42" d="M129.1,248.1l1.3-0.6l-2.4-6.3l-1.4,0.8l-0.2-0.4l1.9-1.3l2.7,6.9l1.4-0.5l0.2,0.4l-3.3,1.3L129.1,248.1z"/>
<path class="st42" d="M137.4,243c0.2,1,0.2,1.8-0.1,2.5c-0.3,0.6-0.8,1-1.6,1.2c-0.8,0.2-1.4,0-2-0.4c-0.5-0.4-0.9-1.2-1.2-2.2
l-0.4-1.7c-0.2-1-0.2-1.8,0.1-2.5s0.8-1,1.6-1.2c0.8-0.2,1.4,0,2,0.4c0.5,0.5,0.9,1.2,1.2,2.2L137.4,243z M136.3,241.3
c-0.2-0.8-0.5-1.4-0.9-1.7c-0.4-0.4-0.9-0.5-1.5-0.4c-0.6,0.1-1,0.4-1.2,0.9c-0.2,0.5-0.2,1.1-0.1,1.9l0.4,1.9
c0.2,0.8,0.5,1.4,0.9,1.7c0.4,0.4,0.9,0.5,1.5,0.4c0.6-0.1,1-0.4,1.2-0.9c0.2-0.5,0.2-1.1,0.1-1.9L136.3,241.3z"/>
<path class="st42" d="M140.1,245.9l-0.7,0.1l-0.1-0.9l0.7-0.1L140.1,245.9z"/>
<path class="st42" d="M141.4,245.7l0-0.5l2.7-2.9c0.5-0.5,0.9-1,1.1-1.3c0.2-0.4,0.3-0.7,0.3-1c0-0.5-0.1-0.9-0.4-1.2
c-0.3-0.3-0.7-0.5-1.2-0.5c-0.6,0-1.1,0.1-1.4,0.5c-0.3,0.3-0.5,0.8-0.5,1.3l-0.6,0l0,0c0-0.7,0.2-1.2,0.7-1.7
c0.5-0.4,1.1-0.7,1.8-0.6c0.7,0,1.2,0.2,1.6,0.6s0.6,0.9,0.6,1.6c0,0.4-0.2,0.9-0.5,1.3c-0.3,0.4-0.7,0.9-1.2,1.5l-2.3,2.4l0,0
l3.5,0.1l0.1-1.1l0.6,0l-0.1,1.7L141.4,245.7z"/>
</g>
<g>
<path class="st42" d="M148.3,182.8l0.6-1.3l-6-3l-0.5,1.5l-0.4-0.2l0.6-2.2l6.7,3.3l0.7-1.2l0.4,0.2l-1.5,3.2L148.3,182.8z"/>
<path class="st42" d="M151.1,173.5c0.8,0.6,1.3,1.3,1.5,2c0.2,0.7,0,1.3-0.5,1.9c-0.5,0.6-1.1,0.9-1.8,0.9c-0.7,0-1.5-0.3-2.3-0.9
l-1.4-1.1c-0.8-0.6-1.3-1.3-1.5-2c-0.2-0.7,0-1.3,0.4-1.9c0.5-0.6,1.1-0.9,1.8-0.9c0.7,0,1.5,0.3,2.3,0.9L151.1,173.5z
M149.2,172.8c-0.6-0.5-1.2-0.8-1.8-0.8s-1,0.2-1.4,0.7c-0.4,0.5-0.5,1-0.3,1.5s0.6,1,1.2,1.5l1.6,1.2c0.6,0.5,1.2,0.8,1.8,0.8
c0.5,0,1-0.2,1.4-0.7c0.4-0.5,0.5-1,0.3-1.5c-0.2-0.5-0.6-1-1.2-1.5L149.2,172.8z"/>
<path class="st42" d="M155.1,174.1l-0.5,0.5l-0.6-0.7l0.5-0.5L155.1,174.1z"/>
<path class="st42" d="M155.8,172.7l1.1-0.9l-3.9-5.5l-1.2,1.1l-0.3-0.4l1.5-1.7l4.3,6.1l1.2-0.8l0.3,0.4l-2.9,2L155.8,172.7z"/>
<path class="st42" d="M162.8,165.9c0.4,0.9,0.5,1.8,0.4,2.4c-0.2,0.7-0.6,1.2-1.3,1.5c-0.7,0.3-1.4,0.3-2,0
c-0.6-0.3-1.1-1-1.6-1.9l-0.7-1.6c-0.4-0.9-0.5-1.8-0.4-2.4c0.2-0.7,0.6-1.2,1.3-1.5c0.7-0.3,1.4-0.3,2,0c0.6,0.3,1.1,1,1.6,1.9
L162.8,165.9z M161.4,164.4c-0.3-0.7-0.7-1.3-1.2-1.5s-1-0.3-1.5-0.1c-0.5,0.2-0.9,0.6-1,1.1c-0.1,0.5,0,1.2,0.3,1.9l0.8,1.8
c0.3,0.7,0.7,1.3,1.2,1.5c0.5,0.3,1,0.3,1.5,0.1c0.5-0.2,0.9-0.6,1-1.2s0-1.2-0.3-1.9L161.4,164.4z"/>
<path class="st42" d="M165.9,168.3l-0.7,0.2l-0.2-0.9l0.7-0.2L165.9,168.3z"/>
<path class="st42" d="M167.2,167.5l1.4-0.2l-0.8-6.7l-1.5,0.4l-0.1-0.5l2.2-0.7l0.8,7.4l1.4-0.1l0.1,0.5l-3.5,0.4L167.2,167.5z"/>
<path class="st42" d="M176.6,164.9c-0.1,1-0.4,1.8-0.9,2.3s-1.1,0.7-1.9,0.7c-0.8-0.1-1.3-0.4-1.7-1c-0.4-0.6-0.5-1.4-0.4-2.4
l0.2-1.8c0.1-1,0.4-1.8,0.9-2.3c0.5-0.5,1.1-0.7,1.9-0.7c0.8,0.1,1.4,0.4,1.7,1c0.4,0.6,0.5,1.4,0.4,2.4L176.6,164.9z
M176.1,162.9c0.1-0.8,0-1.5-0.3-1.9c-0.3-0.5-0.7-0.7-1.3-0.8c-0.6-0.1-1.1,0.1-1.4,0.5s-0.6,1-0.6,1.8l-0.2,2
c-0.1,0.8,0,1.4,0.3,1.9c0.3,0.5,0.7,0.7,1.3,0.8c0.6,0.1,1.1-0.1,1.4-0.5c0.3-0.4,0.6-1,0.6-1.8L176.1,162.9z"/>
<path class="st42" d="M178.2,168.5l-0.7-0.2l0.2-0.9l0.7,0.2L178.2,168.5z"/>
<path class="st42" d="M179.7,168.4l1.3,0.5l2.5-6.2l-1.5-0.4l0.2-0.4l2.2,0.4l-2.8,6.9l1.3,0.6l-0.2,0.4l-3.3-1.3L179.7,168.4z"/>
</g>
<g>
<path class="st42" d="M224.4,135.7l0.9-1.1l-5.1-4.3l-0.8,1.3l-0.4-0.3l1.1-2l5.7,4.8l1-1l0.4,0.3l-2.3,2.7L224.4,135.7z"/>
<path class="st42" d="M229.1,127.1c0.7,0.8,1.1,1.5,1.1,2.2c0.1,0.7-0.2,1.3-0.8,1.8c-0.6,0.5-1.2,0.7-1.9,0.6
c-0.7-0.1-1.4-0.5-2.1-1.3l-1.2-1.3c-0.7-0.7-1.1-1.5-1.1-2.2s0.2-1.3,0.8-1.8c0.6-0.5,1.2-0.7,1.9-0.6c0.7,0.1,1.4,0.5,2.1,1.3
L229.1,127.1z M227.3,126.1c-0.6-0.6-1.1-1-1.6-1.1c-0.5-0.1-1,0-1.4,0.4c-0.4,0.4-0.6,0.9-0.5,1.4c0.1,0.5,0.4,1.1,0.9,1.7
l1.4,1.5c0.6,0.6,1.1,0.9,1.6,1.1c0.5,0.1,1,0,1.4-0.4c0.4-0.4,0.6-0.9,0.5-1.4c-0.1-0.5-0.4-1.1-0.9-1.7L227.3,126.1z"/>
<path class="st42" d="M232.8,128.1l-0.6,0.5l-0.5-0.7l0.6-0.5L232.8,128.1z"/>
<path class="st42" d="M233.7,126.8l1.2-0.8l-3.7-5.6l-1.2,1l-0.2-0.4l1.6-1.6l4,6.2l1.2-0.7l0.3,0.4l-2.9,1.9L233.7,126.8z"/>
<path class="st42" d="M240.8,119.9c0.5,0.9,0.6,1.7,0.5,2.4c-0.1,0.7-0.6,1.2-1.3,1.5c-0.7,0.3-1.4,0.4-2,0.1
c-0.6-0.3-1.2-0.9-1.6-1.8l-0.8-1.6c-0.5-0.9-0.6-1.7-0.5-2.4c0.1-0.7,0.6-1.2,1.3-1.5c0.7-0.3,1.4-0.4,2-0.1
c0.6,0.3,1.2,0.9,1.6,1.8L240.8,119.9z M239.3,118.5c-0.4-0.7-0.8-1.2-1.2-1.5c-0.5-0.3-1-0.3-1.5,0c-0.5,0.3-0.8,0.7-0.9,1.2
c-0.1,0.5,0.1,1.2,0.4,1.9l0.9,1.8c0.4,0.7,0.8,1.2,1.3,1.5s1,0.3,1.5,0c0.5-0.3,0.8-0.7,0.9-1.2c0.1-0.5-0.1-1.2-0.4-1.9
L239.3,118.5z"/>
<path class="st42" d="M244,122l-0.7,0.3l-0.3-0.8l0.7-0.3L244,122z"/>
<path class="st42" d="M245.3,121l1.4-0.5l-1.8-6.5l-1.4,0.6l-0.1-0.4l2-1.1l2,7.1l1.4-0.3l0.1,0.5l-3.4,1L245.3,121z"/>
<path class="st42" d="M254,116.4c0.2,1,0.1,1.8-0.3,2.4c-0.3,0.6-0.9,1-1.7,1.1c-0.8,0.1-1.4-0.1-1.9-0.5c-0.5-0.5-0.9-1.2-1-2.2
l-0.3-1.8c-0.2-1-0.1-1.8,0.3-2.4c0.3-0.6,0.9-1,1.7-1.1c0.8-0.1,1.4,0.1,1.9,0.5c0.5,0.5,0.9,1.2,1,2.2L254,116.4z M253.1,114.7
c-0.1-0.8-0.4-1.4-0.8-1.8c-0.4-0.4-0.9-0.5-1.4-0.4c-0.6,0.1-1,0.4-1.2,0.9s-0.3,1.1-0.2,1.9l0.3,2c0.1,0.8,0.4,1.4,0.8,1.8
c0.4,0.4,0.9,0.5,1.4,0.4c0.6-0.1,1-0.4,1.2-0.9c0.2-0.5,0.3-1.1,0.2-1.9L253.1,114.7z"/>
<path class="st42" d="M256.6,119.4l-0.7,0l-0.1-0.9l0.7,0L256.6,119.4z"/>
<path class="st42" d="M259.6,115l0.8,0c0.6,0,1-0.1,1.3-0.4c0.3-0.3,0.5-0.6,0.5-1.1c0-0.5-0.1-0.9-0.4-1.2
c-0.3-0.3-0.7-0.5-1.2-0.5c-0.5,0-0.9,0.1-1.3,0.4c-0.3,0.3-0.5,0.7-0.5,1.2l-0.6,0l0,0c0-0.6,0.2-1.1,0.7-1.5
c0.5-0.4,1-0.6,1.7-0.6c0.7,0,1.3,0.2,1.7,0.6c0.4,0.4,0.6,1,0.6,1.6c0,0.4-0.1,0.7-0.4,1c-0.2,0.3-0.6,0.6-1,0.7
c0.5,0.2,0.9,0.4,1.1,0.8s0.3,0.7,0.3,1.2c0,0.7-0.3,1.3-0.7,1.6c-0.5,0.4-1.1,0.6-1.8,0.5c-0.7,0-1.3-0.2-1.8-0.7
c-0.5-0.4-0.7-1-0.7-1.7l0,0l0.6,0c0,0.5,0.1,0.9,0.5,1.3c0.3,0.3,0.8,0.5,1.3,0.5c0.6,0,1-0.1,1.3-0.4c0.3-0.3,0.5-0.7,0.5-1.2
c0-0.6-0.1-1-0.5-1.3s-0.8-0.4-1.4-0.4l-0.8,0L259.6,115z"/>
</g>
<g>
<path class="st42" d="M217.2,240.9l0.9-1.1l-4.9-4.6l-0.9,1.3l-0.3-0.3l1.2-1.9l5.4,5.1l1-1l0.3,0.3l-2.4,2.5L217.2,240.9z"/>
<path class="st42" d="M222.4,232.4c0.7,0.8,1,1.5,1.1,2.2c0,0.7-0.2,1.3-0.8,1.8c-0.6,0.5-1.2,0.7-1.9,0.6
c-0.7-0.1-1.4-0.6-2.1-1.4l-1.2-1.3c-0.7-0.8-1-1.5-1.1-2.2c0-0.7,0.2-1.3,0.8-1.8c0.6-0.5,1.2-0.7,1.9-0.6s1.4,0.6,2.1,1.4
L222.4,232.4z M220.6,231.4c-0.5-0.6-1.1-1-1.6-1.1c-0.5-0.1-1,0-1.5,0.4c-0.4,0.4-0.6,0.8-0.6,1.4s0.3,1.1,0.9,1.7l1.3,1.5
c0.5,0.6,1.1,1,1.6,1.1c0.5,0.1,1,0,1.5-0.4c0.4-0.4,0.6-0.8,0.6-1.4c-0.1-0.5-0.4-1.1-0.9-1.7L220.6,231.4z"/>
<path class="st42" d="M226.1,233.5l-0.6,0.4l-0.5-0.7l0.6-0.4L226.1,233.5z"/>
<path class="st42" d="M227,232.2l1.2-0.8l-3.7-5.6l-1.2,1l-0.2-0.4l1.6-1.6l4.1,6.2l1.2-0.7l0.3,0.4l-2.9,1.9L227,232.2z"/>
<path class="st42" d="M233.9,225.2c0.5,0.9,0.7,1.7,0.5,2.4c-0.1,0.7-0.5,1.2-1.2,1.6c-0.7,0.4-1.4,0.4-2,0.1
c-0.6-0.3-1.2-0.9-1.7-1.8l-0.8-1.6c-0.5-0.9-0.6-1.7-0.5-2.4c0.1-0.7,0.5-1.2,1.2-1.6c0.7-0.4,1.4-0.4,2-0.1
c0.6,0.3,1.2,0.9,1.7,1.8L233.9,225.2z M232.5,223.8c-0.4-0.7-0.8-1.2-1.3-1.5c-0.5-0.2-1-0.2-1.5,0c-0.5,0.3-0.8,0.7-0.9,1.2
c-0.1,0.5,0.1,1.2,0.5,1.9l0.9,1.8c0.4,0.7,0.8,1.2,1.3,1.4s1,0.2,1.5,0c0.5-0.3,0.8-0.7,0.9-1.2c0.1-0.5-0.1-1.2-0.5-1.9
L232.5,223.8z"/>
<path class="st42" d="M237.3,227.1l-0.7,0.3l-0.4-0.8l0.7-0.3L237.3,227.1z"/>
<path class="st42" d="M238.5,226.1l1.3-0.5l-2.3-6.3l-1.4,0.7l-0.2-0.4l1.9-1.2l2.5,7l1.4-0.4l0.2,0.5l-3.3,1.2L238.5,226.1z"/>
<path class="st42" d="M246.9,220.9c0.3,1,0.2,1.8-0.1,2.5c-0.3,0.6-0.8,1.1-1.6,1.3c-0.7,0.2-1.4,0.1-2-0.4
c-0.6-0.4-1-1.1-1.2-2.1l-0.4-1.7c-0.3-1-0.2-1.8,0.1-2.5c0.3-0.6,0.8-1.1,1.6-1.3c0.8-0.2,1.4-0.1,2,0.4s1,1.1,1.2,2.1
L246.9,220.9z M245.8,219.2c-0.2-0.8-0.5-1.4-0.9-1.7c-0.4-0.3-0.9-0.5-1.5-0.3c-0.6,0.1-1,0.5-1.1,1c-0.2,0.5-0.2,1.1,0,1.9
l0.5,1.9c0.2,0.8,0.5,1.4,0.9,1.7c0.4,0.4,0.9,0.5,1.5,0.3c0.6-0.1,1-0.5,1.1-1s0.2-1.2,0-1.9L245.8,219.2z"/>
<path class="st42" d="M249.7,223.5l-0.7,0.1l-0.2-0.9l0.7-0.1L249.7,223.5z"/>
<path class="st42" d="M255,220.3l1.2-0.1l0.1,0.5l-1.2,0.1l0.1,1.5l0.9,0l0,0.5l-2.4,0.2l0-0.5l0.9-0.2l-0.1-1.5l-3.7,0.3l0-0.4
l3.1-5.9l0.7-0.1L255,220.3z M251.5,220.6l2.9-0.3l-0.4-4.5l0,0l-0.2,0.6L251.5,220.6z"/>
</g>
</g>
<g id="deployments">
</g>
<g id="containers_x2F_volumes">
<g>
<g>
<polygon class="st50" points="124,273.8 131.9,269.3 139.8,273.8 131.9,278.4 "/>
<polygon class="st50" points="124,283 124,273.8 131.9,278.4 131.9,287.6 "/>
<polygon class="st50" points="131.9,287.6 131.9,278.4 139.8,273.8 139.8,283 "/>
</g>
<g>
<path class="st51" d="M161.6,282.4C161.6,282.4,161.6,282.4,161.6,282.4C161.6,282.3,161.6,282.3,161.6,282.4v-8h-15.8v7.9
c0,0,0,0,0,0c0,0,0,0,0,0v0.1h0c0.2,2.2,3.6,3.9,7.9,3.9s7.7-1.7,7.9-3.9h0V282.4z"/>
<ellipse class="st51" cx="153.7" cy="274.5" rx="7.9" ry="4.1"/>
</g>
</g>
<g>
<g>
<polygon class="st50" points="163.8,187.9 171.7,183.3 179.7,187.9 171.7,192.5 "/>
<polygon class="st50" points="163.8,197 163.8,187.9 171.7,192.5 171.7,201.6 "/>
<polygon class="st50" points="171.7,201.6 171.7,192.5 179.7,187.9 179.7,197 "/>
</g>
</g>
<g>
<g>
<polygon class="st50" points="251,148.6 258.9,144 266.9,148.6 258.9,153.2 "/>
<polygon class="st50" points="251,157.8 251,148.6 258.9,153.2 258.9,162.3 "/>
<polygon class="st50" points="258.9,162.3 258.9,153.2 266.9,148.6 266.9,157.8 "/>
</g>
<g>
<polygon class="st50" points="242.1,166 248,162.6 254,166 248,169.5 "/>
<polygon class="st50" points="242.1,172.9 242.1,166 248,169.5 248,176.3 "/>
<polygon class="st50" points="248,176.3 248,169.5 254,166 254,172.9 "/>
</g>
<g>
<path class="st51" d="M277.7,173.4C277.7,173.4,277.7,173.4,277.7,173.4C277.7,173.4,277.7,173.4,277.7,173.4v-8h-15.8v7.9
c0,0,0,0,0,0c0,0,0,0,0,0v0.1h0c0.2,2.2,3.6,3.9,7.9,3.9c4.3,0,7.7-1.7,7.9-3.9h0V173.4z"/>
<ellipse class="st51" cx="269.8" cy="165.5" rx="7.9" ry="4.1"/>
</g>
</g>
<g>
<g>
<path class="st51" d="M241.9,284.5C241.9,284.5,241.9,284.5,241.9,284.5C241.9,284.4,241.9,284.4,241.9,284.5v-10.6h-21.1v10.6
c0,0,0,0,0,0c0,0,0,0,0,0v0.2h0c0.2,2.9,4.9,5.2,10.5,5.2c5.7,0,10.3-2.3,10.5-5.2h0V284.5z"/>
<ellipse class="st51" cx="231.3" cy="274" rx="10.6" ry="5.4"/>
</g>
<g>
<path class="st51" d="M285.3,262.8C285.3,262.8,285.3,262.8,285.3,262.8C285.3,262.7,285.3,262.7,285.3,262.8v-10.6h-21.1v10.6
c0,0,0,0,0,0c0,0,0,0,0,0v0.2h0c0.2,2.9,4.9,5.2,10.5,5.2s10.3-2.3,10.5-5.2h0V262.8z"/>
<ellipse class="st51" cx="274.7" cy="252.3" rx="10.6" ry="5.4"/>
</g>
<g>
<polygon class="st50" points="249.7,273.1 260.2,267 270.8,273.1 260.2,279.2 "/>
<polygon class="st50" points="249.7,285.3 249.7,273.1 260.2,279.2 260.2,291.4 "/>
<polygon class="st50" points="260.2,291.4 260.2,279.2 270.8,273.1 270.8,285.3 "/>
</g>
<g>
<polygon class="st50" points="281.3,274.6 289.2,270 297.1,274.6 289.2,279.2 "/>
<polygon class="st50" points="281.3,283.8 281.3,274.6 289.2,279.2 289.2,288.3 "/>
<polygon class="st50" points="289.2,288.3 289.2,279.2 297.1,274.6 297.1,283.8 "/>
</g>
</g>
<g>
<g>
<polygon class="st50" points="248.8,297.5 243.5,294.4 238.2,297.5 243.5,300.5 "/>
<polygon class="st50" points="248.8,303.6 248.8,297.5 243.5,300.5 243.5,306.6 "/>
<polygon class="st50" points="243.5,306.6 243.5,300.5 238.2,297.5 238.2,303.6 "/>
</g>
</g>
</g>
<g id="labels_x2F_selectors">
</g>
<g id="description">
<g>
<path class="st42" d="M390,257.5l-0.8,0.1l1.3,3.6l0.1,0.5h0l0.1-0.5l1.3-3.6l-0.8-0.1v-0.7h2.4v0.7l-0.5,0.1l-2.1,5.5h-0.9
l-2.2-5.5l-0.5-0.1v-0.7h2.4V257.5z"/>
<path class="st42" d="M394.5,259.9c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,2.1-0.9c0.9,0,1.6,0.3,2.1,0.9s0.8,1.4,0.8,2.3v0.1
c0,0.9-0.3,1.7-0.8,2.3s-1.2,0.9-2.1,0.9c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3V259.9z M395.6,260c0,0.7,0.1,1.2,0.4,1.7
s0.7,0.7,1.3,0.7c0.5,0,1-0.2,1.2-0.7s0.4-1,0.4-1.7v-0.1c0-0.7-0.1-1.2-0.4-1.7s-0.7-0.7-1.3-0.7s-1,0.2-1.3,0.7s-0.4,1-0.4,1.7
V260z"/>
<path class="st42" d="M400.9,254.7V254h2.1v8.2l1,0.2v0.7h-3.1v-0.7l1-0.2v-7.3L400.9,254.7z"/>
<path class="st42" d="M409.4,262.2c-0.2,0.3-0.5,0.6-0.8,0.8s-0.7,0.3-1.1,0.3c-0.7,0-1.2-0.2-1.6-0.7s-0.6-1.1-0.6-2.1v-2.8
l-0.7-0.2v-0.7h0.7h1.2v3.8c0,0.7,0.1,1.1,0.3,1.4s0.5,0.4,0.9,0.4c0.4,0,0.7-0.1,1-0.2s0.5-0.4,0.6-0.7v-3.7l-0.8-0.2v-0.7h0.8
h1.2v5.4l0.7,0.2v0.7h-1.8L409.4,262.2z"/>
<path class="st42" d="M411.9,262.4l1-0.2v-4.5l-1-0.2v-0.7h2l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2s0.8,0.1,1.1,0.3
s0.5,0.5,0.7,0.9c0.2-0.4,0.5-0.6,0.8-0.9s0.7-0.3,1.1-0.3c0.6,0,1.2,0.2,1.5,0.7s0.6,1.1,0.6,2v2.9l1,0.2v0.7h-3.1v-0.7l1-0.2
v-2.9c0-0.6-0.1-1.1-0.3-1.3s-0.5-0.4-1-0.4c-0.4,0-0.7,0.1-1,0.4s-0.4,0.6-0.4,1.1v3.1l1,0.2v0.7h-3.1v-0.7l1-0.2v-2.9
c0-0.6-0.1-1-0.3-1.3s-0.5-0.4-1-0.4c-0.4,0-0.6,0.1-0.9,0.2s-0.4,0.3-0.5,0.6v3.8l1,0.2v0.7h-3.1V262.4z"/>
<path class="st42" d="M426.3,263.2c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S426.8,263.2,426.3,263.2z M426.1,257.6c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S426.6,257.6,426.1,257.6z"/>
</g>
<line class="st62" x1="385.3" y1="260.7" x2="274" y2="260.7"/>
<g>
<path class="st42" d="M387.7,348.8l1-0.2v-4.5l-1-0.2v-0.7h2l0.1,0.9c0.2-0.3,0.5-0.6,0.8-0.8s0.7-0.3,1.1-0.3
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.9v3.1l1,0.2v0.7h-3.1v-0.7l1-0.2v-3.1c0-0.6-0.1-1-0.3-1.2s-0.6-0.4-1-0.4
c-0.3,0-0.6,0.1-0.9,0.2s-0.5,0.4-0.6,0.7v3.7l1,0.2v0.7h-3.1V348.8z"/>
<path class="st42" d="M395.5,346.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,2.1-0.9c0.9,0,1.6,0.3,2.1,0.9s0.8,1.4,0.8,2.3v0.1
c0,0.9-0.3,1.7-0.8,2.3s-1.2,0.9-2.1,0.9c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3V346.3z M396.7,346.5c0,0.7,0.1,1.2,0.4,1.7
s0.7,0.7,1.3,0.7c0.5,0,1-0.2,1.2-0.7s0.4-1,0.4-1.7v-0.1c0-0.7-0.1-1.2-0.4-1.7s-0.7-0.7-1.3-0.7s-1,0.2-1.3,0.7s-0.4,1-0.4,1.7
V346.5z"/>
<path class="st42" d="M406.5,348.8c-0.2,0.3-0.5,0.5-0.8,0.7s-0.6,0.2-1,0.2c-0.8,0-1.4-0.3-1.8-0.8s-0.7-1.3-0.7-2.2v-0.1
c0-1,0.2-1.8,0.7-2.5s1-0.9,1.8-0.9c0.4,0,0.7,0.1,1,0.2s0.5,0.3,0.7,0.6v-2.6l-1-0.2v-0.7h1h1.2v8.2l1,0.2v0.7h-2L406.5,348.8z
M403.4,346.6c0,0.6,0.1,1.1,0.4,1.5s0.7,0.6,1.2,0.6c0.3,0,0.6-0.1,0.9-0.2s0.4-0.4,0.6-0.7v-2.9c-0.1-0.3-0.3-0.5-0.6-0.6
s-0.5-0.2-0.9-0.2c-0.6,0-1,0.2-1.2,0.7s-0.4,1.1-0.4,1.8V346.6z"/>
<path class="st42" d="M412.3,349.7c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S412.9,349.7,412.3,349.7z M412.2,344c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S412.6,344,412.2,344z"/>
<path class="st42" d="M418.7,351.2l1-0.2v-7l-1-0.2v-0.7h1.9l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2
c0.8,0,1.4,0.3,1.8,0.9s0.7,1.4,0.7,2.5v0.1c0,0.9-0.2,1.7-0.7,2.2s-1,0.8-1.8,0.8c-0.4,0-0.7-0.1-1-0.2s-0.5-0.3-0.8-0.6v2.2
l1,0.2v0.7h-3.1V351.2z M423.9,346.5c0-0.7-0.1-1.3-0.4-1.8s-0.7-0.7-1.3-0.7c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.4-0.6,0.6v3.1
c0.1,0.3,0.3,0.5,0.6,0.6s0.5,0.2,0.9,0.2c0.5,0,1-0.2,1.2-0.6s0.4-0.9,0.4-1.6V346.5z"/>
<path class="st42" d="M426.2,344v-0.7h2l0.1,0.9c0.2-0.3,0.4-0.6,0.7-0.8s0.6-0.3,0.9-0.3c0.1,0,0.2,0,0.3,0s0.2,0,0.2,0l-0.2,1.1
l-0.7,0c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.3-0.5,0.6v3.6l1,0.2v0.7h-3.1v-0.7l1-0.2v-4.5L426.2,344z"/>
<path class="st42" d="M431,346.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,2.1-0.9c0.9,0,1.6,0.3,2.1,0.9s0.8,1.4,0.8,2.3v0.1
c0,0.9-0.3,1.7-0.8,2.3s-1.2,0.9-2.1,0.9c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3V346.3z M432.2,346.5c0,0.7,0.1,1.2,0.4,1.7
s0.7,0.7,1.3,0.7c0.5,0,1-0.2,1.2-0.7s0.4-1,0.4-1.7v-0.1c0-0.7-0.1-1.2-0.4-1.7s-0.7-0.7-1.3-0.7s-1,0.2-1.3,0.7s-0.4,1-0.4,1.7
V346.5z"/>
<path class="st42" d="M440.6,348.8c0.4,0,0.7-0.1,1-0.4s0.4-0.5,0.4-0.9h1l0,0c0,0.5-0.2,1-0.7,1.5s-1.1,0.6-1.8,0.6
c-0.9,0-1.6-0.3-2.1-0.9s-0.7-1.4-0.7-2.3v-0.2c0-0.9,0.2-1.7,0.7-2.3s1.2-0.9,2.1-0.9c0.5,0,1,0.1,1.4,0.3s0.7,0.4,1,0.7l0.1,1.4
h-0.9l-0.3-1c-0.1-0.1-0.3-0.2-0.5-0.3s-0.5-0.1-0.7-0.1c-0.6,0-1,0.2-1.3,0.7s-0.4,1-0.4,1.6v0.2c0,0.6,0.1,1.2,0.4,1.6
S440,348.8,440.6,348.8z"/>
<path class="st42" d="M447.1,349.7c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S447.6,349.7,447.1,349.7z M446.9,344c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S447.4,344,446.9,344z"/>
<path class="st42" d="M455.5,345.2h-0.9l-0.2-0.8c-0.1-0.1-0.3-0.2-0.5-0.3s-0.5-0.1-0.7-0.1c-0.4,0-0.7,0.1-0.9,0.3
s-0.3,0.4-0.3,0.7c0,0.2,0.1,0.4,0.3,0.6s0.5,0.3,1.1,0.4c0.8,0.2,1.4,0.4,1.8,0.7s0.6,0.7,0.6,1.2c0,0.6-0.2,1-0.7,1.4
s-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.3-1-0.5l0-1.4h0.9l0.2,0.8c0.1,0.1,0.3,0.2,0.5,0.3s0.5,0.1,0.7,0.1
c0.4,0,0.7-0.1,1-0.2s0.3-0.4,0.3-0.7c0-0.3-0.1-0.5-0.3-0.6s-0.6-0.3-1.1-0.4c-0.8-0.2-1.3-0.4-1.7-0.7s-0.6-0.7-0.6-1.2
c0-0.5,0.2-1,0.7-1.3s1-0.5,1.7-0.5c0.5,0,0.9,0.1,1.3,0.2s0.7,0.3,1,0.5L455.5,345.2z"/>
<path class="st42" d="M461.6,345.2h-0.9l-0.2-0.8c-0.1-0.1-0.3-0.2-0.5-0.3s-0.5-0.1-0.7-0.1c-0.4,0-0.7,0.1-0.9,0.3
s-0.3,0.4-0.3,0.7c0,0.2,0.1,0.4,0.3,0.6s0.5,0.3,1.1,0.4c0.8,0.2,1.4,0.4,1.8,0.7s0.6,0.7,0.6,1.2c0,0.6-0.2,1-0.7,1.4
s-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.3-1-0.5l0-1.4h0.9l0.2,0.8c0.1,0.1,0.3,0.2,0.5,0.3s0.5,0.1,0.7,0.1
c0.4,0,0.7-0.1,1-0.2s0.3-0.4,0.3-0.7c0-0.3-0.1-0.5-0.3-0.6s-0.6-0.3-1.1-0.4c-0.8-0.2-1.3-0.4-1.7-0.7s-0.6-0.7-0.6-1.2
c0-0.5,0.2-1,0.7-1.3s1-0.5,1.7-0.5c0.5,0,0.9,0.1,1.3,0.2s0.7,0.3,1,0.5L461.6,345.2z"/>
<path class="st42" d="M465.8,349.7c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S466.3,349.7,465.8,349.7z M465.6,344c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S466.1,344,465.6,344z"/>
<path class="st42" d="M474.2,345.2h-0.9l-0.2-0.8c-0.1-0.1-0.3-0.2-0.5-0.3s-0.5-0.1-0.7-0.1c-0.4,0-0.7,0.1-0.9,0.3
s-0.3,0.4-0.3,0.7c0,0.2,0.1,0.4,0.3,0.6s0.5,0.3,1.1,0.4c0.8,0.2,1.4,0.4,1.8,0.7s0.6,0.7,0.6,1.2c0,0.6-0.2,1-0.7,1.4
s-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.3-1-0.5l0-1.4h0.9l0.2,0.8c0.1,0.1,0.3,0.2,0.5,0.3s0.5,0.1,0.7,0.1
c0.4,0,0.7-0.1,1-0.2s0.3-0.4,0.3-0.7c0-0.3-0.1-0.5-0.3-0.6s-0.6-0.3-1.1-0.4c-0.8-0.2-1.3-0.4-1.7-0.7s-0.6-0.7-0.6-1.2
c0-0.5,0.2-1,0.7-1.3s1-0.5,1.7-0.5c0.5,0,0.9,0.1,1.3,0.2s0.7,0.3,1,0.5L474.2,345.2z"/>
</g>
<line class="st62" x1="385.3" y1="347.2" x2="114.1" y2="347.2"/>
<g>
<path class="st42" d="M390.7,283.9c0.4,0,0.7-0.1,1-0.4s0.4-0.5,0.4-0.9h1l0,0c0,0.5-0.2,1-0.7,1.5s-1.1,0.6-1.8,0.6
c-0.9,0-1.6-0.3-2.1-0.9s-0.7-1.4-0.7-2.3v-0.2c0-0.9,0.2-1.7,0.7-2.3s1.2-0.9,2.1-0.9c0.5,0,1,0.1,1.4,0.3s0.7,0.4,1,0.7l0.1,1.4
h-0.9l-0.3-1c-0.1-0.1-0.3-0.2-0.5-0.3s-0.5-0.1-0.7-0.1c-0.6,0-1,0.2-1.3,0.7s-0.4,1-0.4,1.6v0.2c0,0.6,0.1,1.2,0.4,1.6
S390.1,283.9,390.7,283.9z"/>
<path class="st42" d="M394.3,281.4c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,2.1-0.9c0.9,0,1.6,0.3,2.1,0.9s0.8,1.4,0.8,2.3v0.1
c0,0.9-0.3,1.7-0.8,2.3s-1.2,0.9-2.1,0.9c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3V281.4z M395.5,281.5c0,0.7,0.1,1.2,0.4,1.7
s0.7,0.7,1.3,0.7c0.5,0,1-0.2,1.2-0.7s0.4-1,0.4-1.7v-0.1c0-0.7-0.1-1.2-0.4-1.7s-0.7-0.7-1.3-0.7s-1,0.2-1.3,0.7s-0.4,1-0.4,1.7
V281.5z"/>
<path class="st42" d="M400.9,283.9l1-0.2v-4.5l-1-0.2v-0.7h2l0.1,0.9c0.2-0.3,0.5-0.6,0.8-0.8s0.7-0.3,1.1-0.3
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.9v3.1l1,0.2v0.7h-3.1v-0.7l1-0.2v-3.1c0-0.6-0.1-1-0.3-1.2s-0.6-0.4-1-0.4
c-0.3,0-0.6,0.1-0.9,0.2s-0.5,0.4-0.6,0.7v3.7l1,0.2v0.7h-3.1V283.9z"/>
<path class="st42" d="M410.8,276.8v1.5h1.2v0.9h-1.2v3.8c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2c0.1,0,0.2,0,0.3,0s0.2,0,0.3-0.1
l0.2,0.8c-0.1,0.1-0.3,0.1-0.5,0.2s-0.4,0.1-0.6,0.1c-0.5,0-0.8-0.1-1.1-0.4s-0.4-0.7-0.4-1.3v-3.8h-1v-0.9h1v-1.5H410.8z"/>
<path class="st42" d="M417.3,284.6c0-0.2-0.1-0.3-0.1-0.5s0-0.3,0-0.4c-0.2,0.3-0.5,0.5-0.8,0.7s-0.7,0.3-1.1,0.3
c-0.7,0-1.2-0.2-1.5-0.5s-0.5-0.8-0.5-1.4c0-0.6,0.2-1.1,0.7-1.4s1.2-0.5,2-0.5h1.2v-0.7c0-0.4-0.1-0.7-0.4-0.9s-0.6-0.3-1-0.3
c-0.3,0-0.5,0-0.8,0.1s-0.4,0.2-0.5,0.3l-0.1,0.7h-0.9v-1.2c0.3-0.2,0.6-0.4,1-0.6s0.9-0.2,1.3-0.2c0.7,0,1.3,0.2,1.7,0.6
s0.7,0.9,0.7,1.6v3.1c0,0.1,0,0.2,0,0.2s0,0.2,0,0.2l0.5,0.1v0.7H417.3z M415.5,283.8c0.4,0,0.7-0.1,1-0.3s0.5-0.4,0.7-0.7v-1
h-1.2c-0.5,0-0.8,0.1-1.1,0.3s-0.4,0.5-0.4,0.8c0,0.3,0.1,0.5,0.3,0.6S415.1,283.8,415.5,283.8z"/>
<path class="st42" d="M419.8,283.9l1-0.2v-4.5l-1-0.2v-0.7h2.1v5.4l1,0.2v0.7h-3.1V283.9z M421.9,276.7h-1.2v-1.2h1.2V276.7z"/>
<path class="st42" d="M423.6,283.9l1-0.2v-4.5l-1-0.2v-0.7h2l0.1,0.9c0.2-0.3,0.5-0.6,0.8-0.8s0.7-0.3,1.1-0.3
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.9v3.1l1,0.2v0.7h-3.1v-0.7l1-0.2v-3.1c0-0.6-0.1-1-0.3-1.2s-0.6-0.4-1-0.4
c-0.3,0-0.6,0.1-0.9,0.2s-0.5,0.4-0.6,0.7v3.7l1,0.2v0.7h-3.1V283.9z"/>
<path class="st42" d="M434.3,284.8c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S434.8,284.8,434.3,284.8z M434.1,279.1c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S434.6,279.1,434.1,279.1z"/>
<path class="st42" d="M437.8,279v-0.7h2l0.1,0.9c0.2-0.3,0.4-0.6,0.7-0.8s0.6-0.3,0.9-0.3c0.1,0,0.2,0,0.3,0s0.2,0,0.2,0l-0.2,1.1
l-0.7,0c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.3-0.5,0.6v3.6l1,0.2v0.7h-3.1v-0.7l1-0.2v-4.5L437.8,279z"/>
<path class="st42" d="M442.8,283.9l1-0.2v-4.5l-1-0.2v-0.7h2.1v5.4l1,0.2v0.7h-3.1V283.9z M444.9,276.7h-1.2v-1.2h1.2V276.7z"/>
<path class="st42" d="M448.3,283.7h2.6l0.1-1h1v1.9h-5v-0.8l3.4-4.6H448l-0.1,1h-1v-1.9h4.8v0.8L448.3,283.7z"/>
<path class="st42" d="M455.9,284.8c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S456.4,284.8,455.9,284.8z M455.7,279.1c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S456.2,279.1,455.7,279.1z"/>
<path class="st42" d="M463.7,283.9c-0.2,0.3-0.5,0.5-0.8,0.7s-0.6,0.2-1,0.2c-0.8,0-1.4-0.3-1.8-0.8s-0.7-1.3-0.7-2.2v-0.1
c0-1,0.2-1.8,0.7-2.5s1-0.9,1.8-0.9c0.4,0,0.7,0.1,1,0.2s0.5,0.3,0.7,0.6v-2.6l-1-0.2v-0.7h1h1.2v8.2l1,0.2v0.7h-2L463.7,283.9z
M460.6,281.7c0,0.6,0.1,1.1,0.4,1.5s0.7,0.6,1.2,0.6c0.3,0,0.6-0.1,0.9-0.2s0.4-0.4,0.6-0.7V280c-0.1-0.3-0.3-0.5-0.6-0.6
s-0.5-0.2-0.9-0.2c-0.6,0-1,0.2-1.2,0.7s-0.4,1.1-0.4,1.8V281.7z"/>
<path class="st42" d="M473.8,284.6c0-0.2-0.1-0.3-0.1-0.5s0-0.3,0-0.4c-0.2,0.3-0.5,0.5-0.8,0.7s-0.7,0.3-1.1,0.3
c-0.7,0-1.2-0.2-1.5-0.5s-0.5-0.8-0.5-1.4c0-0.6,0.2-1.1,0.7-1.4s1.2-0.5,2-0.5h1.2v-0.7c0-0.4-0.1-0.7-0.4-0.9s-0.6-0.3-1-0.3
c-0.3,0-0.5,0-0.8,0.1s-0.4,0.2-0.5,0.3l-0.1,0.7H470v-1.2c0.3-0.2,0.6-0.4,1-0.6s0.9-0.2,1.3-0.2c0.7,0,1.3,0.2,1.7,0.6
s0.7,0.9,0.7,1.6v3.1c0,0.1,0,0.2,0,0.2s0,0.2,0,0.2l0.5,0.1v0.7H473.8z M471.9,283.8c0.4,0,0.7-0.1,1-0.3s0.5-0.4,0.7-0.7v-1
h-1.2c-0.5,0-0.8,0.1-1.1,0.3s-0.4,0.5-0.4,0.8c0,0.3,0.1,0.5,0.3,0.6S471.6,283.8,471.9,283.8z"/>
<path class="st42" d="M476.1,286.3l1-0.2v-7l-1-0.2v-0.7h1.9l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2
c0.8,0,1.4,0.3,1.8,0.9s0.7,1.4,0.7,2.5v0.1c0,0.9-0.2,1.7-0.7,2.2s-1,0.8-1.8,0.8c-0.4,0-0.7-0.1-1-0.2s-0.5-0.3-0.8-0.6v2.2
l1,0.2v0.7h-3.1V286.3z M481.3,281.6c0-0.7-0.1-1.3-0.4-1.8s-0.7-0.7-1.3-0.7c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.4-0.6,0.6v3.1
c0.1,0.3,0.3,0.5,0.6,0.6s0.5,0.2,0.9,0.2c0.5,0,1-0.2,1.2-0.6s0.4-0.9,0.4-1.6V281.6z"/>
<path class="st42" d="M483.4,286.3l1-0.2v-7l-1-0.2v-0.7h1.9l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2
c0.8,0,1.4,0.3,1.8,0.9s0.7,1.4,0.7,2.5v0.1c0,0.9-0.2,1.7-0.7,2.2s-1,0.8-1.8,0.8c-0.4,0-0.7-0.1-1-0.2s-0.5-0.3-0.8-0.6v2.2
l1,0.2v0.7h-3.1V286.3z M488.6,281.6c0-0.7-0.1-1.3-0.4-1.8s-0.7-0.7-1.3-0.7c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.4-0.6,0.6v3.1
c0.1,0.3,0.3,0.5,0.6,0.6s0.5,0.2,0.9,0.2c0.5,0,1-0.2,1.2-0.6s0.4-0.9,0.4-1.6V281.6z"/>
</g>
<line class="st62" x1="385.3" y1="282.2" x2="261.9" y2="282.2"/>
<g>
<path class="st42" d="M391.7,178.9c0.9,0,1.6,0.2,2.1,0.7s0.8,1.1,0.8,1.9c0,0.8-0.3,1.4-0.8,1.9s-1.2,0.7-2.1,0.7h-1.8v2.5l1,0.2
v0.7h-3.1v-0.7l1-0.2v-6.7l-1-0.2v-0.7h1H391.7z M389.9,183.1h1.8c0.6,0,1-0.2,1.3-0.5s0.4-0.7,0.4-1.2s-0.1-0.9-0.4-1.2
s-0.7-0.5-1.3-0.5h-1.8V183.1z"/>
<path class="st42" d="M395.4,184.2c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,2.1-0.9c0.9,0,1.6,0.3,2.1,0.9s0.8,1.4,0.8,2.3v0.1
c0,0.9-0.3,1.7-0.8,2.3s-1.2,0.9-2.1,0.9c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3V184.2z M396.6,184.3c0,0.7,0.1,1.2,0.4,1.7
s0.7,0.7,1.3,0.7c0.5,0,1-0.2,1.2-0.7s0.4-1,0.4-1.7v-0.1c0-0.7-0.1-1.2-0.4-1.7s-0.7-0.7-1.3-0.7s-1,0.2-1.3,0.7s-0.4,1-0.4,1.7
V184.3z"/>
<path class="st42" d="M406.4,186.6c-0.2,0.3-0.5,0.5-0.8,0.7s-0.6,0.2-1,0.2c-0.8,0-1.4-0.3-1.8-0.8s-0.7-1.3-0.7-2.2v-0.1
c0-1,0.2-1.8,0.7-2.5s1-0.9,1.8-0.9c0.4,0,0.7,0.1,1,0.2s0.5,0.3,0.7,0.6v-2.6l-1-0.2v-0.7h1h1.2v8.2l1,0.2v0.7h-2L406.4,186.6z
M403.3,184.5c0,0.6,0.1,1.1,0.4,1.5s0.7,0.6,1.2,0.6c0.3,0,0.6-0.1,0.9-0.2s0.4-0.4,0.6-0.7v-2.9c-0.1-0.3-0.3-0.5-0.6-0.6
s-0.5-0.2-0.9-0.2c-0.6,0-1,0.2-1.2,0.7s-0.4,1.1-0.4,1.8V184.5z"/>
</g>
<line class="st62" x1="385.3" y1="185" x2="291" y2="185"/>
<g>
<path class="st42" d="M396.1,59.1v0.7l-1,0.2v7.6H394l-4.1-6.6l0,0v5.7l1,0.2v0.7h-3.1v-0.7l1-0.2V60l-1-0.2v-0.7h1h1.2l4.1,6.6
l0,0V60l-1-0.2v-0.7h2.1H396.1z"/>
<path class="st42" d="M397,64.4c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,2.1-0.9c0.9,0,1.6,0.3,2.1,0.9s0.8,1.4,0.8,2.3v0.1
c0,0.9-0.3,1.7-0.8,2.3s-1.2,0.9-2.1,0.9c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3V64.4z M398.2,64.5c0,0.7,0.1,1.2,0.4,1.7
s0.7,0.7,1.3,0.7c0.5,0,1-0.2,1.2-0.7s0.4-1,0.4-1.7v-0.1c0-0.7-0.1-1.2-0.4-1.7s-0.7-0.7-1.3-0.7s-1,0.2-1.3,0.7s-0.4,1-0.4,1.7
V64.5z"/>
<path class="st42" d="M408,66.9c-0.2,0.3-0.5,0.5-0.8,0.7s-0.6,0.2-1,0.2c-0.8,0-1.4-0.3-1.8-0.8s-0.7-1.3-0.7-2.2v-0.1
c0-1,0.2-1.8,0.7-2.5s1-0.9,1.8-0.9c0.4,0,0.7,0.1,1,0.2s0.5,0.3,0.7,0.6v-2.6l-1-0.2v-0.7h1h1.2v8.2l1,0.2v0.7h-2L408,66.9z
M404.9,64.7c0,0.6,0.1,1.1,0.4,1.5s0.7,0.6,1.2,0.6c0.3,0,0.6-0.1,0.9-0.2s0.4-0.4,0.6-0.7V63c-0.1-0.3-0.3-0.5-0.6-0.6
s-0.5-0.2-0.9-0.2c-0.6,0-1,0.2-1.2,0.7s-0.4,1.1-0.4,1.8V64.7z"/>
<path class="st42" d="M413.8,67.7c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S414.3,67.7,413.8,67.7z M413.6,62.1c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S414.1,62.1,413.6,62.1z"/>
</g>
<line class="st62" x1="385.3" y1="65.2" x2="200.7" y2="65.2"/>
</g>
<g id="Layer_14">
</g>
</svg>

After

Width:  |  Height:  |  Size: 40 KiB

@@ -0,0 +1,484 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 668 277" style="enable-background:new 0 0 668 277;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FFFFFF;stroke:#326DE6;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st1{opacity:0.71;fill:#326CE6;}
.st2{opacity:0.45;fill:#FFFFFF;}
.st3{fill:#FFFFFF;stroke:#006DE9;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st4{fill:#006DE9;}
.st5{fill:#A0CAEA;}
.st6{fill:#FFFFFF;}
.st7{opacity:0.13;}
.st8{fill:url(#SVGID_1_);}
.st9{fill:url(#SVGID_2_);}
.st10{fill:#FFFFFF;stroke:#006DE9;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st11{fill:#FFFFFF;stroke:#006DE9;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st12{fill:#FFFFFF;stroke:#326DE6;stroke-width:3.2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st13{fill:#326DE6;}
.st14{fill:none;stroke:#326DE6;stroke-width:2.4;stroke-miterlimit:10;}
.st15{fill:#A0CAE9;}
.st16{fill:#FFFFFF;stroke:#326DE6;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st17{fill:#FFFFFF;stroke:#326DE6;stroke-width:1.6;stroke-miterlimit:10;}
.st18{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;}
.st19{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3749,1.5832;}
.st20{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4006,1.6004;}
.st21{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st22{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st23{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3975,1.5984;}
.st24{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.395,1.5966;}
.st25{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3963,1.5976;}
.st26{opacity:0.1;fill:#EEF406;}
.st27{opacity:2.000000e-02;fill:#EEF406;}
.st28{opacity:0.1;fill:#06F7C9;}
.st29{fill:none;stroke:#006DE9;stroke-width:0.8;stroke-miterlimit:10;}
.st30{opacity:0.1;fill:url(#SVGID_3_);}
.st31{opacity:0.1;fill:url(#SVGID_4_);}
.st32{opacity:0.1;fill:url(#SVGID_5_);}
.st33{opacity:0.1;fill:url(#SVGID_6_);}
.st34{fill:none;stroke:#326DE6;stroke-width:1.2;stroke-miterlimit:10;}
.st35{opacity:0.1;fill:url(#SVGID_7_);}
.st36{opacity:0.1;fill:url(#SVGID_8_);}
.st37{opacity:0.1;fill:url(#SVGID_9_);}
.st38{opacity:0.1;fill:url(#SVGID_10_);}
.st39{fill:none;stroke:#326DE6;stroke-width:2;stroke-miterlimit:10;}
.st40{opacity:0.4;fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st41{fill:none;stroke:#EEF406;stroke-width:2.4596;stroke-miterlimit:10;}
.st42{fill:#011F38;}
.st43{opacity:0.4;}
.st44{opacity:0.1;}
.st45{fill:#326DE6;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st46{fill:none;stroke:#FFFFFF;stroke-width:1.2;stroke-linecap:round;stroke-linejoin:round;}
.st47{fill:#06F7C9;stroke:#FFFFFF;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st48{fill:none;stroke:#011F38;stroke-width:1.2;stroke-linecap:round;stroke-linejoin:round;}
.st49{fill:#326DE6;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;}
.st50{fill:#06F7C9;stroke:#011F38;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st51{fill:#8115FF;stroke:#011F38;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st52{opacity:0.3;}
.st53{opacity:0.2;fill:#6D6E71;}
.st54{fill:#EEF406;}
.st55{fill:#06F7C9;}
.st56{fill:#FFFFFF;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st57{fill:#FFFFFF;stroke:#EEF406;stroke-width:1.6;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st58{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4938,1.6626;}
.st59{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.0084,1.3389;}
.st60{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.724,1.816;}
.st61{fill:#011F38;stroke:#414042;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st62{fill:none;stroke:#011F38;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st63{fill:none;stroke:#011F38;stroke-width:0.2813;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
</style>
<symbol id="node_high_level" viewBox="-81 -93 162 186.1">
<polygon class="st0" points="-80,-46 -80,46 0,92 80,46 80,-46 0,-92 "/>
<g id="Isolation_Mode_3_">
</g>
</symbol>
<symbol id="node_x5F_empty" viewBox="-87.5 -100.6 175.1 201.1">
<use xlink:href="#node_high_level" width="162" height="186.1" id="XMLID_201_" x="-81" y="-93" transform="matrix(1.0808 0 0 1.0808 -3.292006e-05 -3.749943e-05)" style="overflow:visible;"/>
<g>
<polygon class="st1" points="76.8,-28.1 -14,-80.3 0,-88.3 76.7,-44.4 "/>
<polygon class="st2" points="76.8,-28.1 32.1,-53.8 38.8,-66.1 76.7,-44.4 "/>
</g>
</symbol>
<symbol id="node_x5F_new" viewBox="-87.6 -101 175.2 202">
<polygon class="st3" points="0,-100 -86.6,-50 -86.6,50 0,100 86.6,50 86.6,-50 "/>
<polygon class="st4" points="-86.6,-20.2 -86.6,-50 0,-100 25.8,-85.1 "/>
<polygon class="st5" points="-40.8,-70.7 -32.9,-57 15.7,-85.1 0,-94.3 "/>
<text transform="matrix(0.866 -0.5 -0.5 -0.866 -33.9256 -70.7388)" class="st6" style="font-family:'RobotoSlab-Regular'; font-size:11.3632px;">Docker</text>
<text transform="matrix(0.866 -0.5 -0.5 -0.866 -76.0668 -46.4087)" class="st6" style="font-family:'RobotoSlab-Regular'; font-size:11.3632px;">Kubelt</text>
</symbol>
<g id="CLUSTER">
</g>
<g id="master">
<g id="master_x5F_level1">
</g>
</g>
<g id="Node">
<g id="Node_x5F_level3_x5F_1">
<g id="Isolation_Mode">
</g>
</g>
</g>
<g id="service">
</g>
<g id="pods">
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="122.1878" y1="127.5093" x2="204.1367" y2="127.5093">
<stop offset="0" style="stop-color:#326DE6"/>
<stop offset="1" style="stop-color:#10FFC6"/>
</linearGradient>
<circle style="opacity:0.1;fill:url(#SVGID_1_);" cx="163.2" cy="127.5" r="41"/>
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="238.2856" y1="127.5093" x2="347.5509" y2="127.5093">
<stop offset="0" style="stop-color:#326DE6"/>
<stop offset="1" style="stop-color:#10FFC6"/>
</linearGradient>
<circle style="opacity:0.1;fill:url(#SVGID_2_);" cx="292.9" cy="127.5" r="54.6"/>
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="390.5175" y1="77.3348" x2="517.7111" y2="179.9297">
<stop offset="0" style="stop-color:#326DE6"/>
<stop offset="1" style="stop-color:#10FFC6"/>
</linearGradient>
<circle class="st30" cx="452.7" cy="127.5" r="71"/>
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="16.3336" y1="127.5093" x2="77.7953" y2="127.5093">
<stop offset="0" style="stop-color:#326DE6"/>
<stop offset="1" style="stop-color:#10FFC6"/>
</linearGradient>
<circle class="st31" cx="47.1" cy="127.5" r="30.7"/>
<circle class="st39" cx="163.2" cy="127.5" r="41"/>
<circle class="st39" cx="47.1" cy="127.5" r="30.7"/>
<circle class="st39" cx="292.9" cy="127.5" r="54.6"/>
<circle class="st39" cx="452.7" cy="127.5" r="71"/>
</g>
<g id="IP">
<g>
<path class="st42" d="M121.7,110.7l0.6-1.4l-6.6-3l-0.5,1.6l-0.4-0.2l0.5-2.4l7.3,3.3l0.7-1.4l0.5,0.2l-1.6,3.4L121.7,110.7z"/>
<path class="st42" d="M124.1,100.5c0.9,0.6,1.5,1.2,1.8,1.9c0.3,0.7,0.2,1.4-0.3,2.1c-0.4,0.7-1,1.1-1.8,1.2
c-0.8,0.1-1.6-0.2-2.5-0.7l-1.6-1c-0.9-0.6-1.5-1.2-1.8-1.9c-0.3-0.7-0.2-1.4,0.3-2.1c0.4-0.7,1-1.1,1.8-1.2
c0.8-0.1,1.6,0.2,2.5,0.7L124.1,100.5z M122,100c-0.7-0.5-1.4-0.7-2-0.6c-0.6,0-1,0.3-1.4,0.9c-0.3,0.5-0.4,1.1-0.2,1.6
c0.2,0.5,0.7,1,1.5,1.5l1.8,1.1c0.7,0.5,1.4,0.7,2,0.6c0.6,0,1-0.3,1.4-0.9c0.3-0.5,0.4-1.1,0.2-1.6c-0.2-0.5-0.7-1-1.5-1.5
L122,100z"/>
<path class="st42" d="M128.3,100.4l-0.5,0.6l-0.8-0.6l0.5-0.6L128.3,100.4z"/>
<path class="st42" d="M128.9,98.8l1-1.2l-5.3-4.8l-1,1.4l-0.4-0.3l1.2-2.1l5.9,5.3l1.1-1.1l0.4,0.3l-2.5,2.8L128.9,98.8z"/>
<path class="st42" d="M134.2,89.8c0.7,0.8,1.1,1.6,1.1,2.4c0,0.8-0.3,1.4-0.9,1.9c-0.6,0.5-1.3,0.7-2.1,0.6
c-0.7-0.1-1.5-0.6-2.2-1.5l-1.2-1.4c-0.7-0.8-1.1-1.6-1.1-2.4c0-0.8,0.3-1.4,0.9-1.9c0.6-0.5,1.3-0.7,2.1-0.6
c0.7,0.1,1.5,0.6,2.2,1.5L134.2,89.8z M132.4,88.7c-0.6-0.7-1.1-1.1-1.7-1.2c-0.6-0.1-1.1,0-1.6,0.4c-0.5,0.4-0.7,0.9-0.6,1.5
c0.1,0.6,0.4,1.2,0.9,1.9l1.4,1.6c0.6,0.7,1.1,1.1,1.7,1.2c0.6,0.1,1.1,0,1.6-0.4c0.5-0.4,0.7-0.9,0.6-1.5
c-0.1-0.6-0.4-1.2-0.9-1.9L132.4,88.7z"/>
<path class="st42" d="M138.3,91l-0.7,0.5l-0.5-0.8l0.7-0.5L138.3,91z"/>
<path class="st42" d="M139.3,89.7l1.3-0.8l-3.6-6.2l-1.3,1.1l-0.2-0.4l1.8-1.6l4,6.9l1.4-0.7l0.3,0.4l-3.3,1.9L139.3,89.7z"/>
<path class="st42" d="M147.2,82.7c0.4,1,0.5,1.9,0.3,2.6c-0.2,0.7-0.7,1.3-1.5,1.6c-0.8,0.3-1.5,0.3-2.1-0.1
c-0.7-0.4-1.2-1.1-1.6-2.1l-0.7-1.8c-0.4-1-0.5-1.9-0.3-2.6s0.7-1.3,1.4-1.6c0.8-0.3,1.5-0.3,2.1,0.1c0.7,0.4,1.2,1.1,1.6,2.1
L147.2,82.7z M145.8,81.1c-0.3-0.8-0.8-1.4-1.2-1.7c-0.5-0.3-1-0.3-1.6-0.1c-0.6,0.2-0.9,0.7-1.1,1.2c-0.1,0.6,0,1.2,0.3,2.1
l0.8,2c0.3,0.8,0.8,1.4,1.2,1.7c0.5,0.3,1,0.3,1.6,0.1c0.6-0.2,0.9-0.7,1.1-1.2c0.1-0.6,0-1.3-0.3-2.1L145.8,81.1z"/>
<path class="st42" d="M150.6,85.2l-0.8,0.2l-0.3-0.9l0.8-0.2L150.6,85.2z"/>
<path class="st42" d="M152,84.7l-0.1-0.5l2.1-3.6c0.4-0.7,0.7-1.2,0.8-1.6s0.2-0.8,0.1-1.2c-0.1-0.5-0.3-0.9-0.7-1.2
c-0.4-0.3-0.8-0.3-1.3-0.2c-0.6,0.1-1.1,0.4-1.3,0.8c-0.3,0.4-0.3,0.9-0.2,1.5l-0.6,0.1l0,0c-0.2-0.7,0-1.3,0.3-1.9
c0.4-0.6,1-0.9,1.8-1.1c0.7-0.1,1.3,0,1.8,0.3s0.8,0.8,1,1.5c0.1,0.5,0,1-0.2,1.5s-0.5,1.1-0.9,1.8l-1.8,3.1l0,0l3.7-0.7l-0.2-1.2
l0.6-0.1l0.3,1.8L152,84.7z"/>
</g>
<g>
<path class="st42" d="M15.9,114.8l0.6-1.4l-6.5-3.1l-0.5,1.6L9,111.7l0.6-2.4l7.2,3.4l0.7-1.3l0.5,0.2l-1.6,3.4L15.9,114.8z"/>
<path class="st42" d="M18.6,104.6c0.9,0.6,1.5,1.3,1.7,2c0.2,0.7,0.1,1.4-0.4,2.1c-0.5,0.7-1.1,1-1.8,1.1s-1.6-0.2-2.5-0.9
l-1.6-1.1c-0.9-0.6-1.5-1.3-1.7-2s-0.1-1.4,0.4-2.1c0.5-0.7,1.1-1,1.9-1.1c0.8,0,1.6,0.2,2.5,0.9L18.6,104.6z M16.6,104
c-0.7-0.5-1.4-0.7-1.9-0.7s-1,0.3-1.4,0.8c-0.4,0.5-0.4,1.1-0.2,1.6s0.7,1.1,1.4,1.6l1.7,1.2c0.7,0.5,1.4,0.7,1.9,0.7
s1.1-0.3,1.4-0.8c0.4-0.5,0.4-1.1,0.2-1.6c-0.2-0.5-0.7-1.1-1.4-1.6L16.6,104z"/>
<path class="st42" d="M22.8,104.9l-0.5,0.6l-0.7-0.6l0.5-0.6L22.8,104.9z"/>
<path class="st42" d="M23.5,103.4l1.1-1.1l-4.8-5.4l-1.1,1.3l-0.3-0.4l1.5-2l5.3,6l1.2-1l0.3,0.4l-2.8,2.5L23.5,103.4z"/>
<path class="st42" d="M30.1,95.2c0.6,0.9,0.8,1.8,0.7,2.5c-0.1,0.8-0.5,1.3-1.2,1.8c-0.7,0.4-1.4,0.5-2.1,0.3s-1.4-0.9-1.9-1.8
l-1-1.6c-0.6-0.9-0.8-1.8-0.7-2.5c0.1-0.8,0.5-1.3,1.2-1.8c0.7-0.4,1.4-0.5,2.1-0.3c0.7,0.3,1.4,0.9,1.9,1.8L30.1,95.2z
M28.4,93.8c-0.5-0.7-1-1.2-1.5-1.4c-0.5-0.2-1.1-0.2-1.6,0.2c-0.5,0.3-0.8,0.8-0.9,1.4c0,0.6,0.2,1.2,0.6,2l1.1,1.8
c0.5,0.7,1,1.2,1.5,1.4c0.5,0.2,1.1,0.2,1.6-0.2c0.5-0.3,0.8-0.8,0.9-1.4s-0.2-1.2-0.6-2L28.4,93.8z"/>
<path class="st42" d="M33.8,97.1l-0.7,0.3l-0.4-0.9l0.7-0.3L33.8,97.1z"/>
<path class="st42" d="M35.1,96l1.4-0.5l-2.2-6.8l-1.5,0.7l-0.2-0.5l2.1-1.2l2.4,7.6l1.5-0.4l0.2,0.5l-3.6,1.2L35.1,96z"/>
<path class="st42" d="M44.4,91.1c0.2,1.1,0.1,2-0.3,2.6c-0.4,0.7-1,1-1.8,1.2c-0.8,0.1-1.5-0.1-2.1-0.6s-0.9-1.3-1.1-2.4L38.8,90
c-0.2-1.1,0-2,0.3-2.6c0.4-0.7,1-1,1.8-1.2c0.8-0.1,1.5,0.1,2.1,0.6c0.6,0.5,0.9,1.3,1.1,2.4L44.4,91.1z M43.4,89.2
c-0.1-0.9-0.4-1.5-0.8-1.9s-0.9-0.6-1.5-0.5c-0.6,0.1-1.1,0.4-1.3,0.9c-0.3,0.5-0.3,1.2-0.2,2.1l0.3,2.1c0.1,0.9,0.4,1.5,0.8,1.9
c0.4,0.4,0.9,0.6,1.5,0.5c0.6-0.1,1.1-0.4,1.3-0.9s0.3-1.2,0.2-2.1L43.4,89.2z"/>
<path class="st42" d="M47,94.4l-0.8,0l0-1l0.8,0L47,94.4z"/>
<path class="st42" d="M48.6,93.9l1.5,0.1l0.7-7.2l-1.7,0.1l0-0.5l2.4-0.3L50.8,94l1.5,0.2l-0.1,0.5l-3.7-0.4L48.6,93.9z"/>
</g>
<g>
<path class="st42" d="M246.8,91.7l0.9-1.2l-5.5-4.6l-0.9,1.4l-0.4-0.3l1.1-2.2l6.1,5.1l1-1.1l0.4,0.3l-2.4,2.9L246.8,91.7z"/>
<path class="st42" d="M251.7,82.3c0.8,0.8,1.2,1.5,1.3,2.3c0.1,0.8-0.2,1.4-0.8,2c-0.6,0.6-1.3,0.8-2,0.7
c-0.8-0.1-1.5-0.5-2.3-1.3l-1.3-1.4c-0.8-0.8-1.2-1.5-1.3-2.3c-0.1-0.8,0.2-1.4,0.7-2c0.6-0.6,1.3-0.8,2-0.7
c0.8,0.1,1.5,0.5,2.3,1.3L251.7,82.3z M249.8,81.4c-0.6-0.6-1.2-1-1.8-1.1c-0.6-0.1-1.1,0.1-1.5,0.5c-0.4,0.4-0.6,1-0.5,1.5
c0.1,0.6,0.5,1.2,1.1,1.8l1.5,1.5c0.6,0.6,1.2,1,1.8,1.1c0.6,0.1,1.1-0.1,1.5-0.5c0.4-0.4,0.6-1,0.5-1.5s-0.5-1.2-1.1-1.8
L249.8,81.4z"/>
<path class="st42" d="M255.8,83.2l-0.6,0.5l-0.6-0.7l0.6-0.5L255.8,83.2z"/>
<path class="st42" d="M256.7,81.7l1.2-1l-4.3-5.8l-1.2,1.2l-0.3-0.4l1.6-1.8l4.8,6.4l1.3-0.9l0.3,0.4l-3,2.2L256.7,81.7z"/>
<path class="st42" d="M263.6,73.8c0.6,0.9,0.8,1.8,0.7,2.5c-0.1,0.7-0.5,1.3-1.2,1.8c-0.7,0.4-1.4,0.5-2.1,0.2
c-0.7-0.3-1.3-0.9-1.9-1.8l-1-1.6c-0.6-0.9-0.8-1.8-0.7-2.5c0.1-0.8,0.5-1.3,1.2-1.8c0.7-0.4,1.4-0.5,2.1-0.2
c0.7,0.3,1.4,0.9,1.9,1.8L263.6,73.8z M262,72.4c-0.5-0.7-0.9-1.2-1.5-1.5s-1.1-0.2-1.6,0.1c-0.5,0.3-0.8,0.8-0.9,1.4
c0,0.6,0.2,1.2,0.6,2l1.1,1.8c0.4,0.7,0.9,1.2,1.5,1.5c0.5,0.2,1.1,0.2,1.6-0.1c0.5-0.3,0.8-0.8,0.9-1.4c0-0.6-0.2-1.2-0.6-2
L262,72.4z"/>
<path class="st42" d="M267.4,75.6l-0.7,0.4l-0.4-0.9l0.7-0.4L267.4,75.6z"/>
<path class="st42" d="M268.6,74.4l1.4-0.7l-2.8-6.6l-1.5,0.9l-0.2-0.5l2-1.4l3.1,7.3l1.4-0.5l0.2,0.5l-3.5,1.5L268.6,74.4z"/>
<path class="st42" d="M277.3,68.3c0.3,1.1,0.4,1.9,0.1,2.6c-0.3,0.7-0.8,1.2-1.6,1.4c-0.8,0.2-1.5,0.2-2.1-0.3
c-0.6-0.4-1.1-1.2-1.4-2.2l-0.6-1.8c-0.3-1-0.4-1.9-0.1-2.6c0.3-0.7,0.8-1.2,1.6-1.4c0.8-0.2,1.5-0.2,2.1,0.3
c0.6,0.4,1.1,1.2,1.4,2.2L277.3,68.3z M276,66.6c-0.3-0.8-0.6-1.4-1.1-1.8s-1-0.4-1.6-0.2c-0.6,0.2-1,0.6-1.2,1.1
c-0.2,0.6-0.1,1.2,0.1,2.1l0.6,2c0.3,0.8,0.6,1.4,1.1,1.8c0.5,0.4,1,0.4,1.6,0.3c0.6-0.2,1-0.6,1.2-1.1s0.1-1.2-0.1-2.1L276,66.6z
"/>
<path class="st42" d="M280.5,71l-0.8,0.2l-0.2-0.9l0.8-0.2L280.5,71z"/>
<path class="st42" d="M282.9,65.8l0.8-0.1c0.6-0.1,1.1-0.3,1.3-0.7c0.3-0.4,0.4-0.8,0.3-1.3c-0.1-0.5-0.3-0.9-0.6-1.2
c-0.3-0.3-0.8-0.4-1.4-0.3c-0.5,0.1-1,0.3-1.3,0.7c-0.3,0.4-0.4,0.8-0.3,1.3l-0.6,0.1l0,0c-0.1-0.7,0-1.2,0.5-1.7
c0.4-0.5,1-0.8,1.7-0.9c0.8-0.1,1.4,0,1.9,0.4c0.5,0.3,0.8,0.9,0.9,1.6c0.1,0.4,0,0.8-0.2,1.2c-0.2,0.4-0.5,0.7-0.9,0.9
c0.5,0.1,1,0.3,1.3,0.6c0.3,0.3,0.5,0.7,0.6,1.2c0.1,0.7,0,1.4-0.5,1.9c-0.4,0.5-1,0.8-1.8,0.9c-0.7,0.1-1.4,0-2-0.4
c-0.6-0.3-0.9-0.9-1-1.6l0,0l0.6-0.1c0.1,0.5,0.3,0.9,0.8,1.2c0.4,0.3,0.9,0.4,1.5,0.3c0.6-0.1,1-0.3,1.3-0.7s0.4-0.8,0.3-1.4
c-0.1-0.6-0.3-1-0.7-1.2c-0.4-0.2-0.9-0.3-1.6-0.2l-0.8,0.1L282.9,65.8z"/>
</g>
<g>
<path class="st42" d="M397.1,77.6l1-1.2l-5.2-4.9l-1,1.4l-0.4-0.3l1.3-2.1l5.8,5.5l1.1-1.1l0.4,0.4l-2.6,2.7L397.1,77.6z"/>
<path class="st42" d="M402.5,68.5c0.7,0.8,1.1,1.6,1.2,2.4c0.1,0.8-0.2,1.4-0.8,2c-0.6,0.6-1.3,0.8-2,0.7s-1.5-0.6-2.2-1.4
l-1.3-1.4c-0.7-0.8-1.1-1.6-1.2-2.4s0.2-1.4,0.8-2c0.6-0.6,1.3-0.8,2-0.7c0.8,0.1,1.5,0.6,2.2,1.4L402.5,68.5z M400.6,67.4
c-0.6-0.6-1.2-1-1.7-1.2c-0.6-0.1-1.1,0-1.6,0.5c-0.5,0.4-0.7,0.9-0.6,1.5c0.1,0.6,0.4,1.2,1,1.8l1.4,1.6c0.6,0.6,1.2,1,1.7,1.2
c0.6,0.1,1.1,0,1.6-0.4c0.5-0.4,0.7-0.9,0.6-1.5c-0.1-0.6-0.4-1.2-1-1.8L400.6,67.4z"/>
<path class="st42" d="M406.5,69.5l-0.6,0.5l-0.6-0.7l0.6-0.5L406.5,69.5z"/>
<path class="st42" d="M407.5,68l1.2-1l-4.2-5.8l-1.2,1.2L403,62l1.6-1.8l4.7,6.4l1.3-0.8l0.3,0.4l-3,2.2L407.5,68z"/>
<path class="st42" d="M414.5,60c0.6,0.9,0.8,1.8,0.7,2.5c-0.1,0.8-0.5,1.3-1.2,1.8c-0.7,0.4-1.4,0.5-2.1,0.3
c-0.7-0.3-1.4-0.9-1.9-1.8l-1-1.6c-0.6-0.9-0.8-1.8-0.7-2.5c0.1-0.8,0.5-1.3,1.2-1.8c0.7-0.4,1.4-0.5,2.1-0.3
c0.7,0.3,1.4,0.9,1.9,1.8L414.5,60z M412.8,58.7c-0.5-0.7-1-1.2-1.5-1.5c-0.5-0.2-1.1-0.2-1.6,0.2c-0.5,0.3-0.8,0.8-0.9,1.4
c0,0.6,0.2,1.2,0.6,2l1.1,1.8c0.5,0.7,1,1.2,1.5,1.5c0.5,0.2,1.1,0.2,1.6-0.1c0.5-0.3,0.8-0.8,0.9-1.4s-0.2-1.2-0.6-2L412.8,58.7z
"/>
<path class="st42" d="M418.2,61.8l-0.7,0.4l-0.5-0.8l0.7-0.4L418.2,61.8z"/>
<path class="st42" d="M419.5,60.6l1.4-0.7l-3.1-6.5l-1.4,0.9l-0.2-0.4l1.9-1.5l3.4,7.2l1.4-0.6l0.2,0.5l-3.4,1.6L419.5,60.6z"/>
<path class="st42" d="M427.8,54.1c0.4,1,0.5,1.9,0.2,2.6s-0.7,1.2-1.5,1.5c-0.8,0.3-1.5,0.2-2.1-0.1c-0.7-0.4-1.2-1.1-1.6-2.1
l-0.7-1.8c-0.4-1-0.5-1.9-0.2-2.6c0.2-0.7,0.7-1.2,1.5-1.5c0.8-0.3,1.5-0.2,2.1,0.1c0.7,0.4,1.2,1.1,1.6,2.1L427.8,54.1z
M426.4,52.4c-0.3-0.8-0.7-1.4-1.2-1.7c-0.5-0.3-1-0.4-1.6-0.1c-0.6,0.2-1,0.6-1.1,1.2c-0.1,0.6-0.1,1.2,0.2,2.1l0.8,2
c0.3,0.8,0.7,1.4,1.2,1.7s1,0.4,1.6,0.2c0.6-0.2,1-0.6,1.1-1.2s0.1-1.3-0.3-2.1L426.4,52.4z"/>
<path class="st42" d="M431.2,56.5l-0.8,0.2l-0.3-0.9l0.8-0.2L431.2,56.5z"/>
<path class="st42" d="M436.3,52.3l1.3-0.3l0.1,0.6l-1.3,0.3l0.4,1.5l0.9-0.1l0.1,0.5l-2.5,0.6l-0.1-0.5l0.9-0.3l-0.4-1.5l-3.9,0.9
l-0.1-0.4l2.4-6.7l0.7-0.2L436.3,52.3z M432.6,53.2l3.1-0.7l-1.1-4.7l0,0l-0.1,0.7L432.6,53.2z"/>
</g>
</g>
<g id="deployments">
</g>
<g id="containers_x2F_volumes">
<g>
<g>
<polygon class="st50" points="138.1,120.8 148.6,114.7 159.2,120.8 148.6,126.9 "/>
<polygon class="st50" points="138.1,133 138.1,120.8 148.6,126.9 148.6,139.1 "/>
<polygon class="st50" points="148.6,139.1 148.6,126.9 159.2,120.8 159.2,133 "/>
</g>
<g>
<path class="st51" d="M188.2,132.2C188.2,132.2,188.2,132.2,188.2,132.2C188.2,132.1,188.2,132.1,188.2,132.2v-10.6h-21.1v10.6
c0,0,0,0,0,0c0,0,0,0,0,0v0.2h0c0.2,2.9,4.9,5.2,10.5,5.2c5.7,0,10.3-2.3,10.5-5.2h0V132.2z"/>
<ellipse class="st51" cx="177.7" cy="121.7" rx="10.6" ry="5.4"/>
</g>
</g>
<g>
<g>
<polygon class="st50" points="36.5,121.4 47.1,115.3 57.6,121.4 47.1,127.5 "/>
<polygon class="st50" points="36.5,133.6 36.5,121.4 47.1,127.5 47.1,139.7 "/>
<polygon class="st50" points="47.1,139.7 47.1,127.5 57.6,121.4 57.6,133.6 "/>
</g>
</g>
<g>
<g>
<polygon class="st50" points="282.4,108.7 292.9,102.6 303.5,108.7 292.9,114.8 "/>
<polygon class="st50" points="282.4,120.9 282.4,108.7 292.9,114.8 292.9,127 "/>
<polygon class="st50" points="292.9,127 292.9,114.8 303.5,108.7 303.5,120.9 "/>
</g>
<g>
<polygon class="st50" points="270.5,132 278.4,127.4 286.3,132 278.4,136.5 "/>
<polygon class="st50" points="270.5,141.1 270.5,132 278.4,136.5 278.4,145.7 "/>
<polygon class="st50" points="278.4,145.7 278.4,136.5 286.3,132 286.3,141.1 "/>
</g>
<g>
<path class="st51" d="M318,141.8C318,141.8,318,141.8,318,141.8C318,141.8,318,141.8,318,141.8v-10.6h-21.1v10.6c0,0,0,0,0,0
c0,0,0,0,0,0v0.2h0c0.2,2.9,4.9,5.2,10.5,5.2c5.7,0,10.3-2.3,10.5-5.2h0V141.8z"/>
<ellipse class="st51" cx="307.4" cy="131.3" rx="10.6" ry="5.4"/>
</g>
</g>
<g>
<g>
<path class="st51" d="M435.6,133.6C435.6,133.5,435.6,133.5,435.6,133.6C435.6,133.5,435.6,133.5,435.6,133.6v-10.6h-21.1v10.6
c0,0,0,0,0,0c0,0,0,0,0,0v0.2h0c0.2,2.9,4.9,5.2,10.5,5.2c5.7,0,10.3-2.3,10.5-5.2h0V133.6z"/>
<ellipse class="st51" cx="425.1" cy="123" rx="10.6" ry="5.4"/>
</g>
<g>
<path class="st51" d="M479,111.8C479,111.8,479,111.8,479,111.8C479,111.8,479,111.8,479,111.8v-10.6h-21.1v10.6c0,0,0,0,0,0
c0,0,0,0,0,0v0.2h0c0.2,2.9,4.9,5.2,10.5,5.2s10.3-2.3,10.5-5.2h0V111.8z"/>
<ellipse class="st51" cx="468.5" cy="101.3" rx="10.6" ry="5.4"/>
</g>
<g>
<polygon class="st50" points="443.4,122.2 454,116.1 464.6,122.2 454,128.3 "/>
<polygon class="st50" points="443.4,134.4 443.4,122.2 454,128.3 454,140.5 "/>
<polygon class="st50" points="454,140.5 454,128.3 464.6,122.2 464.6,134.4 "/>
</g>
<g>
<polygon class="st50" points="475.1,123.7 483,119.1 490.9,123.7 483,128.3 "/>
<polygon class="st50" points="475.1,132.8 475.1,123.7 483,128.3 483,137.4 "/>
<polygon class="st50" points="483,137.4 483,128.3 490.9,123.7 490.9,132.8 "/>
</g>
</g>
<g>
<g>
<polygon class="st50" points="442.6,146.8 437.3,143.8 432,146.8 437.3,149.9 "/>
<polygon class="st50" points="442.6,152.9 442.6,146.8 437.3,149.9 437.3,156 "/>
<polygon class="st50" points="437.3,156 437.3,149.9 432,146.8 432,152.9 "/>
</g>
</g>
</g>
<g id="labels_x2F_selectors">
</g>
<g id="description">
<g>
<path class="st42" d="M150.5,220.6c1.1,0,2,0.3,2.6,0.9s1,1.3,1,2.2c0,0.9-0.3,1.7-1,2.2c-0.6,0.6-1.5,0.8-2.6,0.8h-1.6v2.1l1,0.2
v1.2h-4v-1.2l1-0.2V222l-1-0.2v-1.2h1H150.5z M148.9,225.3h1.6c0.5,0,0.9-0.1,1.2-0.4c0.3-0.3,0.4-0.7,0.4-1.1
c0-0.5-0.1-0.8-0.4-1.2c-0.3-0.3-0.7-0.5-1.2-0.5h-1.6V225.3z"/>
<path class="st42" d="M154.7,226.6c0-1.1,0.3-1.9,0.9-2.6c0.6-0.7,1.4-1,2.5-1c1.1,0,1.9,0.3,2.5,1c0.6,0.7,0.9,1.6,0.9,2.6v0.1
c0,1.1-0.3,2-0.9,2.6c-0.6,0.7-1.4,1-2.5,1c-1.1,0-1.9-0.3-2.5-1c-0.6-0.7-0.9-1.6-0.9-2.6V226.6z M156.6,226.8
c0,0.7,0.1,1.2,0.3,1.6c0.2,0.4,0.6,0.6,1.1,0.6c0.5,0,0.9-0.2,1.1-0.6s0.3-0.9,0.3-1.6v-0.1c0-0.6-0.1-1.2-0.4-1.6
c-0.2-0.4-0.6-0.6-1.1-0.6c-0.5,0-0.9,0.2-1.1,0.6c-0.2,0.4-0.3,0.9-0.3,1.6V226.8z"/>
<path class="st42" d="M167,229.4c-0.2,0.3-0.5,0.6-0.8,0.8c-0.3,0.2-0.7,0.3-1.1,0.3c-0.9,0-1.6-0.3-2.1-1s-0.7-1.5-0.7-2.6v-0.1
c0-1.1,0.2-2,0.7-2.7c0.5-0.7,1.2-1,2.1-1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.8,0.7v-2.6l-1-0.2v-1.2h1h1.9v9l0.9,0.2v1.2
h-2.6L167,229.4z M164.3,226.9c0,0.6,0.1,1.1,0.3,1.5s0.6,0.5,1,0.5c0.3,0,0.5-0.1,0.7-0.2s0.4-0.3,0.5-0.5v-3
c-0.1-0.2-0.3-0.4-0.5-0.5c-0.2-0.1-0.4-0.2-0.7-0.2c-0.5,0-0.8,0.2-1,0.6s-0.3,1-0.3,1.6V226.9z"/>
<path class="st42" d="M173.7,230.3V229l3.1-3.4c0.5-0.5,0.8-1,1-1.3c0.2-0.4,0.3-0.7,0.3-1c0-0.4-0.1-0.7-0.3-1
c-0.2-0.3-0.5-0.4-0.9-0.4c-0.4,0-0.8,0.2-1,0.5c-0.2,0.3-0.3,0.7-0.3,1.2h-1.9l0,0c0-0.9,0.3-1.6,0.9-2.2
c0.6-0.6,1.4-0.9,2.4-0.9c1,0,1.8,0.3,2.4,0.8s0.9,1.2,0.9,2.1c0,0.6-0.2,1.1-0.5,1.6c-0.3,0.5-0.9,1.1-1.6,1.9l-1.7,1.9l0,0h2.5
l0.1-1h1.5v2.4H173.7z"/>
</g>
<g>
<path class="st42" d="M35.2,220.6c1.1,0,2,0.3,2.6,0.9s1,1.3,1,2.2c0,0.9-0.3,1.7-1,2.2c-0.6,0.6-1.5,0.8-2.6,0.8h-1.6v2.1l1,0.2
v1.2h-4v-1.2l1-0.2V222l-1-0.2v-1.2h1H35.2z M33.5,225.3h1.6c0.5,0,0.9-0.1,1.2-0.4c0.3-0.3,0.4-0.7,0.4-1.1
c0-0.5-0.1-0.8-0.4-1.2c-0.3-0.3-0.7-0.5-1.2-0.5h-1.6V225.3z"/>
<path class="st42" d="M39.3,226.6c0-1.1,0.3-1.9,0.9-2.6c0.6-0.7,1.4-1,2.5-1c1.1,0,1.9,0.3,2.5,1c0.6,0.7,0.9,1.6,0.9,2.6v0.1
c0,1.1-0.3,2-0.9,2.6c-0.6,0.7-1.4,1-2.5,1c-1.1,0-1.9-0.3-2.5-1c-0.6-0.7-0.9-1.6-0.9-2.6V226.6z M41.3,226.8
c0,0.7,0.1,1.2,0.3,1.6c0.2,0.4,0.6,0.6,1.1,0.6c0.5,0,0.9-0.2,1.1-0.6s0.3-0.9,0.3-1.6v-0.1c0-0.6-0.1-1.2-0.4-1.6
c-0.2-0.4-0.6-0.6-1.1-0.6c-0.5,0-0.9,0.2-1.1,0.6c-0.2,0.4-0.3,0.9-0.3,1.6V226.8z"/>
<path class="st42" d="M51.6,229.4c-0.2,0.3-0.5,0.6-0.8,0.8c-0.3,0.2-0.7,0.3-1.1,0.3c-0.9,0-1.6-0.3-2.1-1s-0.7-1.5-0.7-2.6v-0.1
c0-1.1,0.2-2,0.7-2.7c0.5-0.7,1.2-1,2.1-1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.8,0.7v-2.6l-1-0.2v-1.2h1h1.9v9l0.9,0.2v1.2
h-2.6L51.6,229.4z M48.9,226.9c0,0.6,0.1,1.1,0.3,1.5s0.6,0.5,1,0.5c0.3,0,0.5-0.1,0.7-0.2s0.4-0.3,0.5-0.5v-3
c-0.1-0.2-0.3-0.4-0.5-0.5c-0.2-0.1-0.4-0.2-0.7-0.2c-0.5,0-0.8,0.2-1,0.6s-0.3,1-0.3,1.6V226.9z"/>
<path class="st42" d="M58.4,229.1l1.6-0.2v-6.5h-1.7v-1.1l3.6-0.7v8.3l1.6,0.2v1.2h-5.2V229.1z"/>
</g>
<g>
<path class="st42" d="M280.3,220.6c1.1,0,2,0.3,2.6,0.9s1,1.3,1,2.2c0,0.9-0.3,1.7-1,2.2c-0.6,0.6-1.5,0.8-2.6,0.8h-1.6v2.1l1,0.2
v1.2h-4v-1.2l1-0.2V222l-1-0.2v-1.2h1H280.3z M278.7,225.3h1.6c0.5,0,0.9-0.1,1.2-0.4c0.3-0.3,0.4-0.7,0.4-1.1
c0-0.5-0.1-0.8-0.4-1.2c-0.3-0.3-0.7-0.5-1.2-0.5h-1.6V225.3z"/>
<path class="st42" d="M284.5,226.6c0-1.1,0.3-1.9,0.9-2.6c0.6-0.7,1.4-1,2.5-1c1.1,0,1.9,0.3,2.5,1c0.6,0.7,0.9,1.6,0.9,2.6v0.1
c0,1.1-0.3,2-0.9,2.6c-0.6,0.7-1.4,1-2.5,1c-1.1,0-1.9-0.3-2.5-1c-0.6-0.7-0.9-1.6-0.9-2.6V226.6z M286.4,226.8
c0,0.7,0.1,1.2,0.3,1.6c0.2,0.4,0.6,0.6,1.1,0.6c0.5,0,0.9-0.2,1.1-0.6s0.3-0.9,0.3-1.6v-0.1c0-0.6-0.1-1.2-0.4-1.6
c-0.2-0.4-0.6-0.6-1.1-0.6c-0.5,0-0.9,0.2-1.1,0.6c-0.2,0.4-0.3,0.9-0.3,1.6V226.8z"/>
<path class="st42" d="M296.8,229.4c-0.2,0.3-0.5,0.6-0.8,0.8c-0.3,0.2-0.7,0.3-1.1,0.3c-0.9,0-1.6-0.3-2.1-1s-0.7-1.5-0.7-2.6
v-0.1c0-1.1,0.2-2,0.7-2.7c0.5-0.7,1.2-1,2.1-1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.8,0.7v-2.6l-1-0.2v-1.2h1h1.9v9l0.9,0.2
v1.2h-2.6L296.8,229.4z M294.1,226.9c0,0.6,0.1,1.1,0.3,1.5s0.6,0.5,1,0.5c0.3,0,0.5-0.1,0.7-0.2s0.4-0.3,0.5-0.5v-3
c-0.1-0.2-0.3-0.4-0.5-0.5c-0.2-0.1-0.4-0.2-0.7-0.2c-0.5,0-0.8,0.2-1,0.6s-0.3,1-0.3,1.6V226.9z"/>
<path class="st42" d="M305.6,224.6h1.1c0.5,0,0.8-0.1,1-0.4s0.3-0.6,0.3-1c0-0.4-0.1-0.7-0.3-0.9c-0.2-0.2-0.5-0.4-1-0.4
c-0.4,0-0.7,0.1-0.9,0.3c-0.2,0.2-0.4,0.5-0.4,0.8h-1.9l0,0c0-0.8,0.3-1.4,0.9-1.9c0.6-0.5,1.4-0.7,2.3-0.7c1,0,1.8,0.2,2.4,0.7
c0.6,0.5,0.9,1.2,0.9,2c0,0.4-0.1,0.8-0.4,1.2s-0.6,0.7-1.1,0.9c0.5,0.2,0.9,0.5,1.2,0.9s0.4,0.9,0.4,1.4c0,0.9-0.3,1.6-1,2.1
c-0.6,0.5-1.5,0.8-2.5,0.8c-0.9,0-1.7-0.2-2.3-0.7c-0.6-0.5-1-1.1-0.9-2l0,0h1.9c0,0.4,0.1,0.7,0.4,0.9s0.6,0.4,1,0.4
c0.4,0,0.8-0.1,1.1-0.4c0.3-0.2,0.4-0.6,0.4-1c0-0.5-0.1-0.9-0.4-1.1c-0.3-0.2-0.6-0.4-1.1-0.4h-1.1V224.6z"/>
</g>
<g>
<path class="st42" d="M440.2,220.6c1.1,0,2,0.3,2.6,0.9s1,1.3,1,2.2c0,0.9-0.3,1.7-1,2.2c-0.6,0.6-1.5,0.8-2.6,0.8h-1.6v2.1l1,0.2
v1.2h-4v-1.2l1-0.2V222l-1-0.2v-1.2h1H440.2z M438.6,225.3h1.6c0.5,0,0.9-0.1,1.2-0.4c0.3-0.3,0.4-0.7,0.4-1.1
c0-0.5-0.1-0.8-0.4-1.2c-0.3-0.3-0.7-0.5-1.2-0.5h-1.6V225.3z"/>
<path class="st42" d="M444.4,226.6c0-1.1,0.3-1.9,0.9-2.6c0.6-0.7,1.4-1,2.5-1c1.1,0,1.9,0.3,2.5,1c0.6,0.7,0.9,1.6,0.9,2.6v0.1
c0,1.1-0.3,2-0.9,2.6c-0.6,0.7-1.4,1-2.5,1c-1.1,0-1.9-0.3-2.5-1c-0.6-0.7-0.9-1.6-0.9-2.6V226.6z M446.3,226.8
c0,0.7,0.1,1.2,0.3,1.6c0.2,0.4,0.6,0.6,1.1,0.6c0.5,0,0.9-0.2,1.1-0.6s0.3-0.9,0.3-1.6v-0.1c0-0.6-0.1-1.2-0.4-1.6
c-0.2-0.4-0.6-0.6-1.1-0.6c-0.5,0-0.9,0.2-1.1,0.6c-0.2,0.4-0.3,0.9-0.3,1.6V226.8z"/>
<path class="st42" d="M456.7,229.4c-0.2,0.3-0.5,0.6-0.8,0.8c-0.3,0.2-0.7,0.3-1.1,0.3c-0.9,0-1.6-0.3-2.1-1s-0.7-1.5-0.7-2.6
v-0.1c0-1.1,0.2-2,0.7-2.7c0.5-0.7,1.2-1,2.1-1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.8,0.7v-2.6l-1-0.2v-1.2h1h1.9v9l0.9,0.2
v1.2h-2.6L456.7,229.4z M454,226.9c0,0.6,0.1,1.1,0.3,1.5s0.6,0.5,1,0.5c0.3,0,0.5-0.1,0.7-0.2s0.4-0.3,0.5-0.5v-3
c-0.1-0.2-0.3-0.4-0.5-0.5c-0.2-0.1-0.4-0.2-0.7-0.2c-0.5,0-0.8,0.2-1,0.6s-0.3,1-0.3,1.6V226.9z"/>
<path class="st42" d="M469.2,226.7h1.1v1.3h-1.1v0.9l1,0.2v1.2h-4v-1.2l1-0.2V228h-3.9l-0.1-0.9l4-6.4h2V226.7z M465,226.7h2.2
v-3.5l0,0l-0.2,0.3L465,226.7z"/>
</g>
<g>
<path class="st42" d="M560.2,131.7c0.4,0,0.7-0.1,1-0.4s0.4-0.5,0.4-0.9h1l0,0c0,0.5-0.2,1-0.7,1.5s-1.1,0.6-1.8,0.6
c-0.9,0-1.6-0.3-2.1-0.9s-0.7-1.4-0.7-2.3v-0.2c0-0.9,0.2-1.7,0.7-2.3s1.2-0.9,2.1-0.9c0.5,0,1,0.1,1.4,0.3s0.7,0.4,1,0.7l0.1,1.4
h-0.9l-0.3-1c-0.1-0.1-0.3-0.2-0.5-0.3s-0.5-0.1-0.7-0.1c-0.6,0-1,0.2-1.3,0.7s-0.4,1-0.4,1.6v0.2c0,0.6,0.1,1.2,0.4,1.6
S559.6,131.7,560.2,131.7z"/>
<path class="st42" d="M563.8,129.2c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,2.1-0.9c0.9,0,1.6,0.3,2.1,0.9s0.8,1.4,0.8,2.3v0.1
c0,0.9-0.3,1.7-0.8,2.3s-1.2,0.9-2.1,0.9c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3V129.2z M565,129.3c0,0.7,0.1,1.2,0.4,1.7
s0.7,0.7,1.3,0.7c0.5,0,1-0.2,1.2-0.7s0.4-1,0.4-1.7v-0.1c0-0.7-0.1-1.2-0.4-1.7s-0.7-0.7-1.3-0.7s-1,0.2-1.3,0.7s-0.4,1-0.4,1.7
V129.3z"/>
<path class="st42" d="M570.4,131.7l1-0.2V127l-1-0.2v-0.7h2l0.1,0.9c0.2-0.3,0.5-0.6,0.8-0.8s0.7-0.3,1.1-0.3
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.9v3.1l1,0.2v0.7h-3.1v-0.7l1-0.2v-3.1c0-0.6-0.1-1-0.3-1.2s-0.6-0.4-1-0.4
c-0.3,0-0.6,0.1-0.9,0.2s-0.5,0.4-0.6,0.7v3.7l1,0.2v0.7h-3.1V131.7z"/>
<path class="st42" d="M580.3,124.6v1.5h1.2v0.9h-1.2v3.8c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2c0.1,0,0.2,0,0.3,0s0.2,0,0.3-0.1
l0.2,0.8c-0.1,0.1-0.3,0.1-0.5,0.2s-0.4,0.1-0.6,0.1c-0.5,0-0.8-0.1-1.1-0.4s-0.4-0.7-0.4-1.3v-3.8h-1v-0.9h1v-1.5H580.3z"/>
<path class="st42" d="M586.8,132.4c0-0.2-0.1-0.3-0.1-0.5s0-0.3,0-0.4c-0.2,0.3-0.5,0.5-0.8,0.7s-0.7,0.3-1.1,0.3
c-0.7,0-1.2-0.2-1.5-0.5s-0.5-0.8-0.5-1.4c0-0.6,0.2-1.1,0.7-1.4s1.2-0.5,2-0.5h1.2v-0.7c0-0.4-0.1-0.7-0.4-0.9s-0.6-0.3-1-0.3
c-0.3,0-0.5,0-0.8,0.1s-0.4,0.2-0.5,0.3l-0.1,0.7H583v-1.2c0.3-0.2,0.6-0.4,1-0.6s0.9-0.2,1.3-0.2c0.7,0,1.3,0.2,1.7,0.6
s0.7,0.9,0.7,1.6v3.1c0,0.1,0,0.2,0,0.2s0,0.2,0,0.2l0.5,0.1v0.7H586.8z M585,131.6c0.4,0,0.7-0.1,1-0.3s0.5-0.4,0.7-0.7v-1h-1.2
c-0.5,0-0.8,0.1-1.1,0.3s-0.4,0.5-0.4,0.8c0,0.3,0.1,0.5,0.3,0.6S584.6,131.6,585,131.6z"/>
<path class="st42" d="M589.3,131.7l1-0.2V127l-1-0.2v-0.7h2.1v5.4l1,0.2v0.7h-3.1V131.7z M591.4,124.5h-1.2v-1.2h1.2V124.5z"/>
<path class="st42" d="M593.1,131.7l1-0.2V127l-1-0.2v-0.7h2l0.1,0.9c0.2-0.3,0.5-0.6,0.8-0.8s0.7-0.3,1.1-0.3
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.9v3.1l1,0.2v0.7H597v-0.7l1-0.2v-3.1c0-0.6-0.1-1-0.3-1.2s-0.6-0.4-1-0.4
c-0.3,0-0.6,0.1-0.9,0.2s-0.5,0.4-0.6,0.7v3.7l1,0.2v0.7h-3.1V131.7z"/>
<path class="st42" d="M603.8,132.6c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S604.3,132.6,603.8,132.6z M603.6,126.9c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S604.1,126.9,603.6,126.9z"/>
<path class="st42" d="M607.3,126.8v-0.7h2l0.1,0.9c0.2-0.3,0.4-0.6,0.7-0.8s0.6-0.3,0.9-0.3c0.1,0,0.2,0,0.3,0s0.2,0,0.2,0
l-0.2,1.1l-0.7,0c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.3-0.5,0.6v3.6l1,0.2v0.7h-3.1v-0.7l1-0.2V127L607.3,126.8z"/>
<path class="st42" d="M612.3,131.7l1-0.2V127l-1-0.2v-0.7h2.1v5.4l1,0.2v0.7h-3.1V131.7z M614.4,124.5h-1.2v-1.2h1.2V124.5z"/>
<path class="st42" d="M617.8,131.5h2.6l0.1-1h1v1.9h-5v-0.8l3.4-4.6h-2.3l-0.1,1h-1v-1.9h4.8v0.8L617.8,131.5z"/>
<path class="st42" d="M625.4,132.6c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S625.9,132.6,625.4,132.6z M625.2,126.9c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S625.7,126.9,625.2,126.9z"/>
<path class="st42" d="M633.2,131.7c-0.2,0.3-0.5,0.5-0.8,0.7s-0.6,0.2-1,0.2c-0.8,0-1.4-0.3-1.8-0.8s-0.7-1.3-0.7-2.2v-0.1
c0-1,0.2-1.8,0.7-2.5s1-0.9,1.8-0.9c0.4,0,0.7,0.1,1,0.2s0.5,0.3,0.7,0.6v-2.6l-1-0.2v-0.7h1h1.2v8.2l1,0.2v0.7h-2L633.2,131.7z
M630.1,129.5c0,0.6,0.1,1.1,0.4,1.5s0.7,0.6,1.2,0.6c0.3,0,0.6-0.1,0.9-0.2s0.4-0.4,0.6-0.7v-2.9c-0.1-0.3-0.3-0.5-0.6-0.6
s-0.5-0.2-0.9-0.2c-0.6,0-1,0.2-1.2,0.7s-0.4,1.1-0.4,1.8V129.5z"/>
<path class="st42" d="M643.3,132.4c0-0.2-0.1-0.3-0.1-0.5s0-0.3,0-0.4c-0.2,0.3-0.5,0.5-0.8,0.7s-0.7,0.3-1.1,0.3
c-0.7,0-1.2-0.2-1.5-0.5s-0.5-0.8-0.5-1.4c0-0.6,0.2-1.1,0.7-1.4s1.2-0.5,2-0.5h1.2v-0.7c0-0.4-0.1-0.7-0.4-0.9s-0.6-0.3-1-0.3
c-0.3,0-0.5,0-0.8,0.1s-0.4,0.2-0.5,0.3l-0.1,0.7h-0.9v-1.2c0.3-0.2,0.6-0.4,1-0.6s0.9-0.2,1.3-0.2c0.7,0,1.3,0.2,1.7,0.6
s0.7,0.9,0.7,1.6v3.1c0,0.1,0,0.2,0,0.2s0,0.2,0,0.2l0.5,0.1v0.7H643.3z M641.4,131.6c0.4,0,0.7-0.1,1-0.3s0.5-0.4,0.7-0.7v-1
h-1.2c-0.5,0-0.8,0.1-1.1,0.3s-0.4,0.5-0.4,0.8c0,0.3,0.1,0.5,0.3,0.6S641.1,131.6,641.4,131.6z"/>
<path class="st42" d="M645.6,134.1l1-0.2v-7l-1-0.2v-0.7h1.9l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2
c0.8,0,1.4,0.3,1.8,0.9s0.7,1.4,0.7,2.5v0.1c0,0.9-0.2,1.7-0.7,2.2s-1,0.8-1.8,0.8c-0.4,0-0.7-0.1-1-0.2s-0.5-0.3-0.8-0.6v2.2
l1,0.2v0.7h-3.1V134.1z M650.8,129.4c0-0.7-0.1-1.3-0.4-1.8s-0.7-0.7-1.3-0.7c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.4-0.6,0.6v3.1
c0.1,0.3,0.3,0.5,0.6,0.6s0.5,0.2,0.9,0.2c0.5,0,1-0.2,1.2-0.6s0.4-0.9,0.4-1.6V129.4z"/>
<path class="st42" d="M652.9,134.1l1-0.2v-7l-1-0.2v-0.7h1.9l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2
c0.8,0,1.4,0.3,1.8,0.9s0.7,1.4,0.7,2.5v0.1c0,0.9-0.2,1.7-0.7,2.2s-1,0.8-1.8,0.8c-0.4,0-0.7-0.1-1-0.2s-0.5-0.3-0.8-0.6v2.2
l1,0.2v0.7h-3.1V134.1z M658.1,129.4c0-0.7-0.1-1.3-0.4-1.8s-0.7-0.7-1.3-0.7c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.4-0.6,0.6v3.1
c0.1,0.3,0.3,0.5,0.6,0.6s0.5,0.2,0.9,0.2c0.5,0,1-0.2,1.2-0.6s0.4-0.9,0.4-1.6V129.4z"/>
</g>
<line class="st61" x1="554.8" y1="130" x2="481.7" y2="130"/>
<g>
<path class="st42" d="M559.5,106.8l-0.8,0.1l1.3,3.6l0.1,0.5h0l0.1-0.5l1.3-3.6l-0.8-0.1V106h2.4v0.7l-0.5,0.1l-2.1,5.5h-0.9
l-2.2-5.5l-0.5-0.1V106h2.4V106.8z"/>
<path class="st42" d="M564,109.1c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,2.1-0.9c0.9,0,1.6,0.3,2.1,0.9s0.8,1.4,0.8,2.3v0.1
c0,0.9-0.3,1.7-0.8,2.3s-1.2,0.9-2.1,0.9c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3V109.1z M565.1,109.3c0,0.7,0.1,1.2,0.4,1.7
s0.7,0.7,1.3,0.7c0.5,0,1-0.2,1.2-0.7s0.4-1,0.4-1.7v-0.1c0-0.7-0.1-1.2-0.4-1.7s-0.7-0.7-1.3-0.7s-1,0.2-1.3,0.7s-0.4,1-0.4,1.7
V109.3z"/>
<path class="st42" d="M570.4,104v-0.7h2.1v8.2l1,0.2v0.7h-3.1v-0.7l1-0.2v-7.3L570.4,104z"/>
<path class="st42" d="M578.9,111.4c-0.2,0.3-0.5,0.6-0.8,0.8s-0.7,0.3-1.1,0.3c-0.7,0-1.2-0.2-1.6-0.7s-0.6-1.1-0.6-2.1v-2.8
l-0.7-0.2V106h0.7h1.2v3.8c0,0.7,0.1,1.1,0.3,1.4s0.5,0.4,0.9,0.4c0.4,0,0.7-0.1,1-0.2s0.5-0.4,0.6-0.7v-3.7l-0.8-0.2V106h0.8h1.2
v5.4l0.7,0.2v0.7H579L578.9,111.4z"/>
<path class="st42" d="M581.4,111.6l1-0.2v-4.5l-1-0.2V106h2l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2s0.8,0.1,1.1,0.3
s0.5,0.5,0.7,0.9c0.2-0.4,0.5-0.6,0.8-0.9s0.7-0.3,1.1-0.3c0.6,0,1.2,0.2,1.5,0.7s0.6,1.1,0.6,2v2.9l1,0.2v0.7h-3.1v-0.7l1-0.2
v-2.9c0-0.6-0.1-1.1-0.3-1.3s-0.5-0.4-1-0.4c-0.4,0-0.7,0.1-1,0.4s-0.4,0.6-0.4,1.1v3.1l1,0.2v0.7h-3.1v-0.7l1-0.2v-2.9
c0-0.6-0.1-1-0.3-1.3s-0.5-0.4-1-0.4c-0.4,0-0.6,0.1-0.9,0.2s-0.4,0.3-0.5,0.6v3.8l1,0.2v0.7h-3.1V111.6z"/>
<path class="st42" d="M595.8,112.5c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S596.3,112.5,595.8,112.5z M595.6,106.8c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S596.1,106.8,595.6,106.8z"/>
</g>
<line class="st61" x1="554.8" y1="110" x2="468.4" y2="110"/>
<g>
<path class="st42" d="M557.2,46.7V46h3.1v0.7l-1,0.2v6.7l1,0.2v0.7h-3.1v-0.7l1-0.2v-6.7L557.2,46.7z"/>
<path class="st42" d="M565,46c0.9,0,1.6,0.2,2.1,0.7s0.8,1.1,0.8,1.9c0,0.8-0.3,1.4-0.8,1.9s-1.2,0.7-2.1,0.7h-1.8v2.5l1,0.2v0.7
h-3.1v-0.7l1-0.2v-6.7l-1-0.2V46h1H565z M563.2,50.2h1.8c0.6,0,1-0.2,1.3-0.5s0.4-0.7,0.4-1.2s-0.1-0.9-0.4-1.2s-0.7-0.5-1.3-0.5
h-1.8V50.2z"/>
<path class="st42" d="M576,54.5c0-0.2-0.1-0.3-0.1-0.5s0-0.3,0-0.4c-0.2,0.3-0.5,0.5-0.8,0.7s-0.7,0.3-1.1,0.3
c-0.7,0-1.2-0.2-1.5-0.5s-0.5-0.8-0.5-1.4c0-0.6,0.2-1.1,0.7-1.4s1.2-0.5,2-0.5h1.2v-0.7c0-0.4-0.1-0.7-0.4-0.9s-0.6-0.3-1-0.3
c-0.3,0-0.5,0-0.8,0.1s-0.4,0.2-0.5,0.3l-0.1,0.7h-0.9v-1.2c0.3-0.2,0.6-0.4,1-0.6s0.9-0.2,1.3-0.2c0.7,0,1.3,0.2,1.7,0.6
s0.7,0.9,0.7,1.6v3.1c0,0.1,0,0.2,0,0.2s0,0.2,0,0.2l0.5,0.1v0.7H576z M574.1,53.6c0.4,0,0.7-0.1,1-0.3s0.5-0.4,0.7-0.7v-1h-1.2
c-0.5,0-0.8,0.1-1.1,0.3s-0.4,0.5-0.4,0.8c0,0.3,0.1,0.5,0.3,0.6S573.8,53.6,574.1,53.6z"/>
<path class="st42" d="M582.7,53.7c-0.2,0.3-0.5,0.5-0.8,0.7s-0.6,0.2-1,0.2c-0.8,0-1.4-0.3-1.8-0.8s-0.7-1.3-0.7-2.2v-0.1
c0-1,0.2-1.8,0.7-2.5s1-0.9,1.8-0.9c0.4,0,0.7,0.1,1,0.2s0.5,0.3,0.7,0.6v-2.6l-1-0.2v-0.7h1h1.2v8.2l1,0.2v0.7h-2L582.7,53.7z
M579.6,51.6c0,0.6,0.1,1.1,0.4,1.5s0.7,0.6,1.2,0.6c0.3,0,0.6-0.1,0.9-0.2s0.4-0.4,0.6-0.7v-2.9c-0.1-0.3-0.3-0.5-0.6-0.6
s-0.5-0.2-0.9-0.2c-0.6,0-1,0.2-1.2,0.7s-0.4,1.1-0.4,1.8V51.6z"/>
<path class="st42" d="M589.9,53.7c-0.2,0.3-0.5,0.5-0.8,0.7s-0.6,0.2-1,0.2c-0.8,0-1.4-0.3-1.8-0.8s-0.7-1.3-0.7-2.2v-0.1
c0-1,0.2-1.8,0.7-2.5s1-0.9,1.8-0.9c0.4,0,0.7,0.1,1,0.2s0.5,0.3,0.7,0.6v-2.6l-1-0.2v-0.7h1h1.2v8.2l1,0.2v0.7h-2L589.9,53.7z
M586.8,51.6c0,0.6,0.1,1.1,0.4,1.5s0.7,0.6,1.2,0.6c0.3,0,0.6-0.1,0.9-0.2s0.4-0.4,0.6-0.7v-2.9c-0.1-0.3-0.3-0.5-0.6-0.6
s-0.5-0.2-0.9-0.2c-0.6,0-1,0.2-1.2,0.7s-0.4,1.1-0.4,1.8V51.6z"/>
<path class="st42" d="M592.9,48.9v-0.7h2l0.1,0.9c0.2-0.3,0.4-0.6,0.7-0.8s0.6-0.3,0.9-0.3c0.1,0,0.2,0,0.3,0s0.2,0,0.2,0
l-0.2,1.1l-0.7,0c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.3-0.5,0.6v3.6l1,0.2v0.7h-3.1v-0.7l1-0.2v-4.5L592.9,48.9z"/>
<path class="st42" d="M600.6,54.6c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S601.1,54.6,600.6,54.6z M600.4,48.9c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S600.9,48.9,600.4,48.9z"/>
<path class="st42" d="M609,50.1h-0.9l-0.2-0.8c-0.1-0.1-0.3-0.2-0.5-0.3s-0.5-0.1-0.7-0.1c-0.4,0-0.7,0.1-0.9,0.3
s-0.3,0.4-0.3,0.7c0,0.2,0.1,0.4,0.3,0.6s0.5,0.3,1.1,0.4c0.8,0.2,1.4,0.4,1.8,0.7s0.6,0.7,0.6,1.2c0,0.6-0.2,1-0.7,1.4
s-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.3-1-0.5l0-1.4h0.9l0.2,0.8c0.1,0.1,0.3,0.2,0.5,0.3s0.5,0.1,0.7,0.1
c0.4,0,0.7-0.1,1-0.2s0.3-0.4,0.3-0.7c0-0.3-0.1-0.5-0.3-0.6s-0.6-0.3-1.1-0.4c-0.8-0.2-1.3-0.4-1.7-0.7s-0.6-0.7-0.6-1.2
c0-0.5,0.2-1,0.7-1.3s1-0.5,1.7-0.5c0.5,0,0.9,0.1,1.3,0.2s0.7,0.3,1,0.5L609,50.1z"/>
<path class="st42" d="M615.1,50.1h-0.9l-0.2-0.8c-0.1-0.1-0.3-0.2-0.5-0.3s-0.5-0.1-0.7-0.1c-0.4,0-0.7,0.1-0.9,0.3
s-0.3,0.4-0.3,0.7c0,0.2,0.1,0.4,0.3,0.6s0.5,0.3,1.1,0.4c0.8,0.2,1.4,0.4,1.8,0.7s0.6,0.7,0.6,1.2c0,0.6-0.2,1-0.7,1.4
s-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.3-1-0.5l0-1.4h0.9l0.2,0.8c0.1,0.1,0.3,0.2,0.5,0.3s0.5,0.1,0.7,0.1
c0.4,0,0.7-0.1,1-0.2s0.3-0.4,0.3-0.7c0-0.3-0.1-0.5-0.3-0.6s-0.6-0.3-1.1-0.4c-0.8-0.2-1.3-0.4-1.7-0.7s-0.6-0.7-0.6-1.2
c0-0.5,0.2-1,0.7-1.3s1-0.5,1.7-0.5c0.5,0,0.9,0.1,1.3,0.2s0.7,0.3,1,0.5L615.1,50.1z"/>
</g>
<line class="st61" x1="554.8" y1="52.1" x2="440.6" y2="52.1"/>
</g>
<g id="Layer_14">
</g>
</svg>

After

Width:  |  Height:  |  Size: 37 KiB

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 350 200"><defs><style>.cls-1{fill:#fff}.cls-2,.cls-6{fill:#326de6}.cls-3{fill:#06f7c9;opacity:.1}.cls-4,.cls-5{fill:none;stroke:#06f7c9;stroke-miterlimit:10}.cls-4{stroke-width:2.4px;stroke-dasharray:2.41 1.61}.cls-5{stroke-width:.8px}.cls-6{stroke:#fff;stroke-linecap:round;stroke-linejoin:round;stroke-width:.91px}</style></defs><title>16.07.28_k8s_visual_diagrams</title><g id="Graphics"><path class="cls-1" d="M175 167.08l-58.1-33.54V66.46L175 32.92l58.1 33.54v67.08L175 167.08z"/><path class="cls-2" d="M175 168a.91.91 0 0 1-.46-.12l-58.1-33.54a.91.91 0 0 1-.46-.79V66.46a.91.91 0 0 1 .46-.79l58.1-33.54a.91.91 0 0 1 .91 0l58.1 33.54a.91.91 0 0 1 .46.79v67.08a.91.91 0 0 1-.46.79l-58.1 33.54a.91.91 0 0 1-.45.13zm-57.18-35L175 166l57.18-33V67L175 34l-57.18 33z"/><circle class="cls-3" cx="175" cy="100" r="34.13"/><path class="cls-4" d="M175 146.13A46.13 46.13 0 1 1 221.13 100 46.18 46.18 0 0 1 175 146.13z"/><circle class="cls-5" cx="175" cy="100" r="34.13"/><path class="cls-6" d="M163.14 93.15L175 86.31l11.86 6.84L175 100l-11.86-6.85z"/><path class="cls-6" d="M163.14 106.85v-13.7L175 100v13.69l-11.86-6.84zM175 113.69V100l11.86-6.85v13.7L175 113.69z"/></g></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

@@ -0,0 +1,710 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 394 440.4" style="enable-background:new 0 0 394 440.4;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FFFFFF;stroke:#326DE6;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st1{opacity:0.71;fill:#326CE6;}
.st2{opacity:0.45;fill:#FFFFFF;}
.st3{fill:#FFFFFF;stroke:#006DE9;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st4{fill:#006DE9;}
.st5{fill:#A0CAEA;}
.st6{fill:#FFFFFF;}
.st7{opacity:0.13;}
.st8{fill:url(#SVGID_1_);}
.st9{fill:url(#SVGID_2_);}
.st10{fill:#FFFFFF;stroke:#006DE9;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st11{fill:#FFFFFF;stroke:#006DE9;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st12{fill:#FFFFFF;stroke:#326DE6;stroke-width:3.2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st13{fill:#326DE6;}
.st14{fill:none;stroke:#326DE6;stroke-width:2.4;stroke-miterlimit:10;}
.st15{fill:#A0CAE9;}
.st16{fill:#FFFFFF;stroke:#326DE6;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st17{fill:#FFFFFF;stroke:#326DE6;stroke-width:1.6;stroke-miterlimit:10;}
.st18{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;}
.st19{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3749,1.5832;}
.st20{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4006,1.6004;}
.st21{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st22{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st23{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3975,1.5984;}
.st24{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.395,1.5966;}
.st25{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3963,1.5976;}
.st26{opacity:0.1;fill:#EEF406;}
.st27{opacity:2.000000e-02;fill:#EEF406;}
.st28{opacity:0.1;fill:#06F7C9;}
.st29{fill:none;stroke:#006DE9;stroke-width:0.8;stroke-miterlimit:10;}
.st30{opacity:0.1;fill:url(#SVGID_3_);}
.st31{opacity:0.1;fill:url(#SVGID_4_);}
.st32{opacity:0.1;fill:url(#SVGID_5_);}
.st33{opacity:0.1;fill:url(#SVGID_6_);}
.st34{fill:none;stroke:#326DE6;stroke-width:1.2;stroke-miterlimit:10;}
.st35{opacity:0.1;fill:url(#SVGID_7_);}
.st36{opacity:0.1;fill:url(#SVGID_8_);}
.st37{opacity:0.1;fill:url(#SVGID_9_);}
.st38{opacity:0.1;fill:url(#SVGID_10_);}
.st39{fill:none;stroke:#326DE6;stroke-width:2;stroke-miterlimit:10;}
.st40{opacity:0.4;fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st41{fill:none;stroke:#EEF406;stroke-width:2.4596;stroke-miterlimit:10;}
.st42{fill:#011F38;}
.st43{opacity:0.4;}
.st44{opacity:0.1;}
.st45{fill:#326DE6;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st46{fill:none;stroke:#FFFFFF;stroke-width:1.2;stroke-linecap:round;stroke-linejoin:round;}
.st47{fill:#06F7C9;stroke:#FFFFFF;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st48{fill:none;stroke:#011F38;stroke-width:1.2;stroke-linecap:round;stroke-linejoin:round;}
.st49{fill:#326DE6;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;}
.st50{fill:#06F7C9;stroke:#011F38;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st51{fill:#8115FF;stroke:#011F38;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st52{opacity:0.3;}
.st53{opacity:0.2;fill:#6D6E71;}
.st54{fill:#EEF406;}
.st55{fill:#06F7C9;}
.st56{fill:#FFFFFF;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st57{fill:#FFFFFF;stroke:#EEF406;stroke-width:1.6;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st58{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4938,1.6626;}
.st59{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.0084,1.3389;}
.st60{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.724,1.816;}
.st61{fill:#011F38;stroke:#414042;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st62{fill:none;stroke:#011F38;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st63{fill:none;stroke:#011F38;stroke-width:0.2813;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
</style>
<symbol id="node_high_level" viewBox="-81 -93 162 186.1">
<polygon class="st0" points="-80,-46 -80,46 0,92 80,46 80,-46 0,-92 "/>
<g id="Isolation_Mode_3_">
</g>
</symbol>
<symbol id="node_x5F_empty" viewBox="-87.5 -100.6 175.1 201.1">
<use xlink:href="#node_high_level" width="162" height="186.1" id="XMLID_201_" x="-81" y="-93" transform="matrix(1.0808 0 0 1.0808 -3.292006e-05 -3.749943e-05)" style="overflow:visible;"/>
<g>
<polygon class="st1" points="76.8,-28.1 -14,-80.3 0,-88.3 76.7,-44.4 "/>
<polygon class="st2" points="76.8,-28.1 32.1,-53.8 38.8,-66.1 76.7,-44.4 "/>
</g>
</symbol>
<symbol id="node_x5F_new" viewBox="-87.6 -101 175.2 202">
<polygon class="st3" points="0,-100 -86.6,-50 -86.6,50 0,100 86.6,50 86.6,-50 "/>
<polygon class="st4" points="-86.6,-20.2 -86.6,-50 0,-100 25.8,-85.1 "/>
<polygon class="st5" points="-40.8,-70.7 -32.9,-57 15.7,-85.1 0,-94.3 "/>
<text transform="matrix(0.866 -0.5 -0.5 -0.866 -33.9256 -70.7388)" class="st6" style="font-family:'RobotoSlab-Regular'; font-size:11.3632px;">Docker</text>
<text transform="matrix(0.866 -0.5 -0.5 -0.866 -76.0668 -46.4087)" class="st6" style="font-family:'RobotoSlab-Regular'; font-size:11.3632px;">Kubelt</text>
</symbol>
<g id="CLUSTER">
</g>
<g id="master">
<g id="master_x5F_level1">
</g>
<polygon class="st12" points="130.9,265.9 106.7,235.6 115.3,197.8 150.2,181 185.1,197.8 193.8,235.6 169.6,265.9 "/>
</g>
<g id="Node">
<g id="Node_x5F_level3_x5F_1">
<g id="Isolation_Mode">
</g>
</g>
<g>
<polygon class="st17" points="213.8,179.8 155.7,146.2 155.7,79.1 213.8,45.6 271.9,79.1 271.9,146.2 "/>
</g>
<g>
<polygon class="st17" points="86.6,179.7 28.6,146.1 28.6,79.1 86.6,45.5 144.7,79.1 144.7,146.1 "/>
</g>
<g>
<polygon class="st17" points="86.6,401.4 28.6,367.9 28.6,300.8 86.6,267.2 144.7,300.8 144.7,367.9 "/>
</g>
</g>
<g id="service">
<g>
<g>
<path class="st18" d="M85.4,154.7c0.4,0,0.8,0,1.2,0h1.2"/>
<line class="st19" x1="89.4" y1="154.7" x2="235.1" y2="154.7"/>
<path class="st18" d="M235.9,154.7h1.2c0.4,0,0.8,0,1.2,0"/>
<path class="st20" d="M239.9,154.7c24.1-1.5,43.3-21.5,43.3-46c0-25.4-20.7-46.1-46.1-46.1H86.6c-25.4,0-46.1,20.7-46.1,46.1
c0,24.8,19.6,45,44.1,46.1"/>
</g>
</g>
<path class="st21" d="M86,384.5c-25.4,0-46.1-20.7-46.1-46.1c0-25.4,20.7-46.1,46.1-46.1s46.1,20.7,46.1,46.1
C132.1,363.8,111.4,384.5,86,384.5z"/>
</g>
<g id="pods">
<circle class="st26" cx="86" cy="338.3" r="34.1"/>
<circle class="st22" cx="86" cy="338.3" r="34.1"/>
<circle class="st28" cx="190.6" cy="108.6" r="20.5"/>
<circle class="st28" cx="237.1" cy="108.6" r="20.5"/>
<circle class="st28" cx="86.6" cy="108.6" r="34.1"/>
<circle class="st18" cx="190.6" cy="108.6" r="20.5"/>
<circle class="st18" cx="237.1" cy="108.6" r="20.5"/>
<circle class="st18" cx="86.6" cy="108.6" r="34.1"/>
</g>
<g id="IP">
<g>
<path class="st42" d="M171.6,95.3l0.5-0.8l-3.4-2.6l-0.5,0.9l-0.2-0.2l0.6-1.3l3.8,2.9l0.6-0.7l0.2,0.2l-1.4,1.8L171.6,95.3z"/>
<path class="st42" d="M174.5,89.6c0.5,0.5,0.7,0.9,0.8,1.4s-0.1,0.8-0.5,1.2c-0.4,0.3-0.8,0.5-1.2,0.4s-0.9-0.3-1.4-0.8l-0.8-0.8
c-0.5-0.5-0.7-0.9-0.8-1.4c0-0.5,0.1-0.9,0.5-1.2c0.4-0.3,0.8-0.5,1.2-0.4s0.9,0.3,1.4,0.8L174.5,89.6z M173.3,89
c-0.4-0.4-0.7-0.6-1.1-0.7c-0.3-0.1-0.6,0-0.9,0.3c-0.3,0.3-0.4,0.6-0.3,0.9s0.3,0.7,0.6,1.1l0.9,0.9c0.4,0.4,0.7,0.6,1.1,0.7
c0.3,0.1,0.7,0,0.9-0.3c0.3-0.3,0.4-0.6,0.3-0.9c-0.1-0.3-0.3-0.7-0.6-1.1L173.3,89z"/>
<path class="st42" d="M176.9,90.3l-0.4,0.3l-0.3-0.5l0.4-0.3L176.9,90.3z"/>
<path class="st42" d="M177.5,89.4l0.8-0.5l-2.3-3.7l-0.8,0.7l-0.2-0.3l1.1-1l2.5,4.1l0.8-0.4l0.2,0.3l-1.9,1.2L177.5,89.4z"/>
<path class="st42" d="M182.1,85.2c0.3,0.6,0.3,1.1,0.2,1.6s-0.4,0.8-0.9,1c-0.5,0.2-0.9,0.2-1.3,0s-0.7-0.6-1-1.2l-0.5-1
c-0.3-0.6-0.3-1.1-0.2-1.6c0.1-0.4,0.4-0.8,0.9-1c0.5-0.2,0.9-0.2,1.3,0c0.4,0.2,0.7,0.6,1,1.2L182.1,85.2z M181.3,84.2
c-0.2-0.5-0.5-0.8-0.8-1c-0.3-0.2-0.6-0.2-1,0c-0.3,0.2-0.6,0.4-0.6,0.7c-0.1,0.3,0,0.7,0.2,1.2l0.5,1.2c0.2,0.5,0.5,0.8,0.8,1
c0.3,0.2,0.6,0.2,1,0c0.3-0.2,0.6-0.4,0.6-0.7c0.1-0.3,0-0.8-0.2-1.2L181.3,84.2z"/>
<path class="st42" d="M184.2,86.6l-0.5,0.1l-0.2-0.6l0.5-0.1L184.2,86.6z"/>
<path class="st42" d="M185,86.1l0.9-0.2l-0.8-4.2l-1,0.3l-0.1-0.3l1.3-0.6l0.9,4.7l0.9-0.1l0.1,0.3l-2.2,0.4L185,86.1z"/>
<path class="st42" d="M190.9,83.7c0,0.7-0.1,1.2-0.3,1.5c-0.3,0.4-0.6,0.6-1.1,0.6c-0.5,0-0.9-0.1-1.2-0.5
c-0.3-0.3-0.5-0.8-0.5-1.5l-0.1-1.1c0-0.7,0.1-1.2,0.3-1.5c0.3-0.4,0.6-0.6,1.1-0.6c0.5,0,0.9,0.1,1.2,0.5s0.5,0.8,0.5,1.5
L190.9,83.7z M190.4,82.5c0-0.5-0.1-0.9-0.4-1.2c-0.2-0.3-0.5-0.4-0.9-0.4c-0.4,0-0.7,0.2-0.8,0.5c-0.2,0.3-0.3,0.7-0.2,1.2
l0.1,1.3c0,0.5,0.1,0.9,0.4,1.2s0.5,0.4,0.9,0.4c0.4,0,0.7-0.2,0.8-0.5c0.2-0.3,0.3-0.7,0.2-1.2L190.4,82.5z"/>
<path class="st42" d="M192.3,85.8l-0.5,0l0-0.6l0.5,0L192.3,85.8z"/>
<path class="st42" d="M196.1,84.7l0.8,0.1l-0.1,0.3l-0.8-0.1l-0.2,0.9l0.6,0.2l-0.1,0.3l-1.5-0.3l0.1-0.3l0.6,0.1l0.2-0.9
l-2.4-0.4l0-0.2l3-3.1l0.5,0.1L196.1,84.7z M193.9,84.3l1.9,0.4l0.5-2.9l0,0l-0.2,0.3L193.9,84.3z"/>
</g>
<g>
<path class="st42" d="M218.1,95.3l0.5-0.8l-3.4-2.6l-0.5,0.9l-0.2-0.2l0.6-1.3l3.8,2.9l0.6-0.7l0.2,0.2l-1.4,1.8L218.1,95.3z"/>
<path class="st42" d="M221,89.6c0.5,0.5,0.7,0.9,0.8,1.4s-0.1,0.8-0.5,1.2c-0.4,0.3-0.8,0.5-1.2,0.4s-0.9-0.3-1.4-0.8l-0.8-0.8
c-0.5-0.5-0.7-0.9-0.8-1.4c0-0.5,0.1-0.9,0.5-1.2c0.4-0.3,0.8-0.5,1.2-0.4s0.9,0.3,1.4,0.8L221,89.6z M219.8,89
c-0.4-0.4-0.7-0.6-1.1-0.7c-0.3-0.1-0.6,0-0.9,0.3c-0.3,0.3-0.4,0.6-0.3,0.9s0.3,0.7,0.6,1.1l0.9,0.9c0.4,0.4,0.7,0.6,1.1,0.7
c0.3,0.1,0.7,0,0.9-0.3c0.3-0.3,0.4-0.6,0.3-0.9c-0.1-0.3-0.3-0.7-0.6-1.1L219.8,89z"/>
<path class="st42" d="M223.4,90.3l-0.4,0.3l-0.3-0.5l0.4-0.3L223.4,90.3z"/>
<path class="st42" d="M224,89.4l0.8-0.5l-2.3-3.7l-0.8,0.7l-0.2-0.3l1.1-1l2.5,4.1l0.8-0.4l0.2,0.3l-1.9,1.2L224,89.4z"/>
<path class="st42" d="M228.6,85.2c0.3,0.6,0.3,1.1,0.2,1.6s-0.4,0.8-0.9,1c-0.5,0.2-0.9,0.2-1.3,0s-0.7-0.6-1-1.2l-0.5-1
c-0.3-0.6-0.3-1.1-0.2-1.6c0.1-0.4,0.4-0.8,0.9-1c0.5-0.2,0.9-0.2,1.3,0c0.4,0.2,0.7,0.6,1,1.2L228.6,85.2z M227.8,84.2
c-0.2-0.5-0.5-0.8-0.8-1c-0.3-0.2-0.6-0.2-1,0c-0.3,0.2-0.6,0.4-0.6,0.7c-0.1,0.3,0,0.7,0.2,1.2l0.5,1.2c0.2,0.5,0.5,0.8,0.8,1
c0.3,0.2,0.6,0.2,1,0c0.3-0.2,0.6-0.4,0.6-0.7c0.1-0.3,0-0.8-0.2-1.2L227.8,84.2z"/>
<path class="st42" d="M230.7,86.6l-0.5,0.1l-0.2-0.6l0.5-0.1L230.7,86.6z"/>
<path class="st42" d="M231.6,86.1l0.9-0.2l-0.8-4.2l-1,0.3l-0.1-0.3l1.3-0.6l0.9,4.7l0.9-0.1l0.1,0.3l-2.2,0.4L231.6,86.1z"/>
<path class="st42" d="M237.4,83.7c0,0.7-0.1,1.2-0.3,1.5c-0.3,0.4-0.6,0.6-1.1,0.6c-0.5,0-0.9-0.1-1.2-0.5
c-0.3-0.3-0.5-0.8-0.5-1.5l-0.1-1.1c0-0.7,0.1-1.2,0.3-1.5c0.3-0.4,0.6-0.6,1.1-0.6c0.5,0,0.9,0.1,1.2,0.5s0.5,0.8,0.5,1.5
L237.4,83.7z M236.9,82.5c0-0.5-0.1-0.9-0.4-1.2c-0.2-0.3-0.5-0.4-0.9-0.4c-0.4,0-0.7,0.2-0.8,0.5c-0.2,0.3-0.3,0.7-0.2,1.2
l0.1,1.3c0,0.5,0.1,0.9,0.4,1.2s0.5,0.4,0.9,0.4c0.4,0,0.7-0.2,0.8-0.5c0.2-0.3,0.3-0.7,0.2-1.2L236.9,82.5z"/>
<path class="st42" d="M238.8,85.8l-0.5,0l0-0.6l0.5,0L238.8,85.8z"/>
<path class="st42" d="M241.1,83.2l0.5,0.1c0.4,0.1,0.7,0,0.9-0.1s0.4-0.4,0.4-0.7c0.1-0.3,0-0.6-0.1-0.8c-0.1-0.2-0.4-0.4-0.7-0.4
c-0.3-0.1-0.6,0-0.8,0.1s-0.4,0.4-0.4,0.7l-0.4-0.1l0,0c0.1-0.4,0.3-0.7,0.6-0.9c0.3-0.2,0.7-0.3,1.2-0.2c0.4,0.1,0.8,0.3,1,0.6
c0.2,0.3,0.3,0.7,0.2,1.1c0,0.2-0.2,0.4-0.3,0.6c-0.2,0.2-0.4,0.3-0.7,0.4c0.3,0.1,0.5,0.3,0.6,0.6c0.1,0.2,0.1,0.5,0.1,0.8
c-0.1,0.4-0.3,0.8-0.6,1c-0.3,0.2-0.7,0.3-1.2,0.2c-0.4-0.1-0.8-0.3-1.1-0.6c-0.3-0.3-0.4-0.7-0.3-1.1l0,0l0.4,0.1
c-0.1,0.3,0,0.6,0.2,0.8c0.2,0.2,0.5,0.4,0.8,0.5c0.4,0.1,0.7,0,0.9-0.1c0.2-0.1,0.4-0.4,0.4-0.7c0.1-0.4,0-0.6-0.2-0.8
c-0.2-0.2-0.5-0.3-0.9-0.4l-0.5-0.1L241.1,83.2z"/>
</g>
<g>
<path class="st42" d="M53.2,93.2l0.4-0.8l-3.9-1.9l-0.3,1l-0.3-0.1l0.4-1.4l4.3,2.1l0.5-0.8l0.3,0.1l-1,2L53.2,93.2z"/>
<path class="st42" d="M54.7,87c0.6,0.3,0.9,0.7,1.1,1.2c0.2,0.4,0.1,0.9-0.2,1.3c-0.3,0.4-0.6,0.7-1.1,0.7c-0.5,0.1-1-0.1-1.5-0.4
l-1-0.6c-0.6-0.3-0.9-0.7-1.1-1.2c-0.2-0.4-0.1-0.9,0.2-1.3c0.3-0.4,0.6-0.7,1.1-0.7c0.5-0.1,1,0.1,1.5,0.4L54.7,87z M53.5,86.7
c-0.4-0.3-0.8-0.4-1.2-0.4c-0.3,0-0.6,0.2-0.8,0.5c-0.2,0.3-0.2,0.6-0.1,1c0.1,0.3,0.4,0.6,0.9,0.9l1.1,0.7
c0.4,0.3,0.8,0.4,1.2,0.4c0.4,0,0.6-0.2,0.8-0.5c0.2-0.3,0.2-0.6,0.1-1c-0.1-0.3-0.4-0.6-0.9-0.9L53.5,86.7z"/>
<path class="st42" d="M57.2,87l-0.3,0.4L56.5,87l0.3-0.4L57.2,87z"/>
<path class="st42" d="M57.6,86l0.5-0.7l-3.3-2.7l-0.5,0.9L54,83.2l0.7-1.3l3.7,3l0.6-0.7l0.2,0.2l-1.4,1.7L57.6,86z"/>
<path class="st42" d="M60.5,80.3c0.5,0.5,0.7,0.9,0.8,1.4c0.1,0.4-0.1,0.9-0.4,1.2c-0.3,0.4-0.8,0.5-1.2,0.5
c-0.5-0.1-0.9-0.3-1.4-0.8l-0.8-0.8c-0.5-0.5-0.7-0.9-0.8-1.4c-0.1-0.5,0.1-0.9,0.4-1.2c0.4-0.4,0.8-0.5,1.2-0.5
c0.5,0.1,0.9,0.3,1.4,0.8L60.5,80.3z M59.3,79.8c-0.4-0.4-0.7-0.6-1.1-0.6c-0.3-0.1-0.6,0.1-0.9,0.3C57,79.7,56.9,80,57,80.4
c0.1,0.3,0.3,0.7,0.6,1.1l0.9,0.9c0.4,0.4,0.7,0.6,1.1,0.6c0.3,0.1,0.7,0,0.9-0.3c0.3-0.3,0.4-0.6,0.3-0.9
c-0.1-0.3-0.3-0.7-0.6-1.1L59.3,79.8z"/>
<path class="st42" d="M62.9,80.9l-0.4,0.3l-0.4-0.4l0.4-0.3L62.9,80.9z"/>
<path class="st42" d="M63.5,80l0.7-0.6L61.5,76l-0.7,0.7l-0.2-0.2l0.9-1.1l2.9,3.8l0.8-0.5l0.2,0.2l-1.8,1.4L63.5,80z"/>
<path class="st42" d="M67.5,75.1c0.4,0.6,0.5,1.1,0.5,1.5c0,0.5-0.3,0.8-0.7,1.1C66.9,78,66.4,78,66,77.9
c-0.4-0.2-0.8-0.5-1.2-1.1l-0.6-1c-0.4-0.6-0.5-1.1-0.5-1.5s0.3-0.8,0.7-1.1c0.4-0.3,0.8-0.3,1.3-0.2c0.4,0.2,0.8,0.5,1.2,1.1
L67.5,75.1z M66.5,74.3c-0.3-0.4-0.6-0.7-0.9-0.9c-0.3-0.1-0.6-0.1-1,0.1c-0.3,0.2-0.5,0.5-0.5,0.8c0,0.3,0.1,0.7,0.4,1.2l0.7,1.1
c0.3,0.4,0.6,0.7,0.9,0.9c0.3,0.1,0.6,0.1,1-0.1c0.3-0.2,0.5-0.5,0.5-0.8c0-0.3-0.1-0.7-0.4-1.2L66.5,74.3z"/>
<path class="st42" d="M69.8,76.2l-0.4,0.2l-0.3-0.5l0.4-0.2L69.8,76.2z"/>
<path class="st42" d="M70.6,75.7l-0.1-0.3l0.8-2.4c0.1-0.4,0.2-0.8,0.3-1.1c0-0.3,0-0.5-0.1-0.7c-0.1-0.3-0.3-0.5-0.6-0.6
c-0.2-0.1-0.5-0.1-0.8,0c-0.4,0.2-0.6,0.4-0.7,0.7c-0.1,0.3-0.1,0.6,0.1,0.9l-0.4,0.2l0,0c-0.2-0.4-0.2-0.8-0.1-1.2
c0.1-0.4,0.4-0.7,0.9-0.9c0.4-0.2,0.8-0.2,1.1-0.1s0.6,0.4,0.8,0.8c0.1,0.3,0.1,0.6,0.1,0.9c0,0.3-0.1,0.7-0.3,1.2l-0.7,2l0,0
l2-0.9l-0.3-0.7l0.3-0.1l0.4,1L70.6,75.7z"/>
</g>
<g>
<path class="st42" d="M52.5,322.9l0.4-0.8l-3.9-1.9l-0.3,1l-0.3-0.1l0.4-1.4l4.3,2.1l0.5-0.8l0.3,0.1l-1,2L52.5,322.9z"/>
<path class="st42" d="M54.1,316.7c0.6,0.3,0.9,0.7,1.1,1.2s0.1,0.9-0.2,1.3c-0.3,0.4-0.6,0.7-1.1,0.7c-0.5,0.1-1-0.1-1.5-0.4
l-1-0.6c-0.6-0.3-0.9-0.7-1.1-1.2c-0.2-0.4-0.1-0.9,0.2-1.3c0.3-0.4,0.6-0.7,1.1-0.7c0.5-0.1,1,0.1,1.5,0.4L54.1,316.7z
M52.8,316.5c-0.4-0.3-0.8-0.4-1.2-0.4s-0.6,0.2-0.8,0.5c-0.2,0.3-0.2,0.6-0.1,1c0.1,0.3,0.4,0.6,0.9,0.9l1.1,0.7
c0.4,0.3,0.8,0.4,1.2,0.4c0.4,0,0.6-0.2,0.8-0.5c0.2-0.3,0.2-0.6,0.1-1c-0.1-0.3-0.4-0.6-0.9-0.9L52.8,316.5z"/>
<path class="st42" d="M56.6,316.7l-0.3,0.4l-0.5-0.3l0.3-0.4L56.6,316.7z"/>
<path class="st42" d="M56.9,315.7l0.5-0.7l-3.3-2.7l-0.5,0.9l-0.2-0.2l0.7-1.3l3.7,3l0.6-0.7l0.2,0.2l-1.4,1.7L56.9,315.7z"/>
<path class="st42" d="M59.8,310.1c0.5,0.5,0.7,0.9,0.8,1.4c0.1,0.5-0.1,0.9-0.4,1.2c-0.3,0.4-0.8,0.5-1.2,0.5
c-0.5-0.1-0.9-0.3-1.4-0.8l-0.8-0.8c-0.5-0.5-0.7-0.9-0.8-1.4c-0.1-0.5,0.1-0.9,0.4-1.2c0.4-0.4,0.8-0.5,1.2-0.5
c0.5,0.1,0.9,0.3,1.4,0.8L59.8,310.1z M58.7,309.5c-0.4-0.4-0.7-0.6-1.1-0.6c-0.3-0.1-0.6,0-0.9,0.3c-0.3,0.3-0.4,0.6-0.3,0.9
c0.1,0.3,0.3,0.7,0.6,1.1l0.9,0.9c0.4,0.4,0.7,0.6,1.1,0.6c0.3,0.1,0.7,0,0.9-0.3c0.3-0.3,0.4-0.6,0.3-0.9s-0.3-0.7-0.6-1.1
L58.7,309.5z"/>
<path class="st42" d="M62.3,310.6l-0.4,0.3l-0.4-0.4l0.4-0.3L62.3,310.6z"/>
<path class="st42" d="M62.8,309.7l0.7-0.6l-2.6-3.4l-0.7,0.7l-0.2-0.2l0.9-1.1l2.9,3.8l0.8-0.5l0.2,0.2L63,310L62.8,309.7z"/>
<path class="st42" d="M66.9,304.9c0.4,0.6,0.5,1.1,0.5,1.5c0,0.5-0.3,0.8-0.7,1.1c-0.4,0.3-0.8,0.3-1.3,0.2
c-0.4-0.2-0.8-0.5-1.2-1.1l-0.6-1c-0.4-0.6-0.5-1.1-0.5-1.5c0-0.5,0.3-0.8,0.7-1.1c0.4-0.3,0.8-0.3,1.3-0.2
c0.4,0.2,0.8,0.5,1.2,1.1L66.9,304.9z M65.9,304.1c-0.3-0.4-0.6-0.7-0.9-0.9c-0.3-0.1-0.6-0.1-1,0.1c-0.3,0.2-0.5,0.5-0.5,0.8
c0,0.3,0.1,0.7,0.4,1.2l0.7,1.1c0.3,0.4,0.6,0.7,0.9,0.9s0.6,0.1,1-0.1c0.3-0.2,0.5-0.5,0.5-0.8c0-0.3-0.1-0.7-0.4-1.2L65.9,304.1
z"/>
<path class="st42" d="M69.2,305.9l-0.4,0.2l-0.3-0.5l0.4-0.2L69.2,305.9z"/>
<path class="st42" d="M69.9,305.2l0.8-0.4l-1.8-3.9l-0.9,0.5l-0.1-0.3l1.2-0.9l2,4.4l0.9-0.3l0.1,0.3l-2.1,0.9L69.9,305.2z"/>
</g>
<g>
<path class="st42" d="M38.2,313.2l-0.4,0.9l-0.9-0.2c-0.1,0.1-0.3,0.2-0.4,0.4c-0.1,0.2-0.3,0.4-0.4,0.6c-0.2,0.3-0.2,0.6-0.2,0.9
c0.1,0.3,0.2,0.4,0.4,0.5c0.2,0.1,0.4,0.1,0.7,0s0.5-0.4,0.9-0.8c0.5-0.6,1-1,1.5-1.2s1-0.2,1.5,0c0.5,0.2,0.8,0.7,1,1.2
c0.1,0.6,0,1.2-0.3,1.9c-0.2,0.5-0.5,0.9-0.9,1.2s-0.7,0.5-1.1,0.7l-1.3-0.6l0.5-1l0.9,0.3c0.2-0.1,0.3-0.2,0.5-0.4
s0.3-0.4,0.4-0.7c0.2-0.3,0.2-0.6,0.2-0.9c-0.1-0.2-0.2-0.4-0.4-0.5c-0.2-0.1-0.5-0.1-0.7,0c-0.2,0.1-0.5,0.3-0.8,0.7
c-0.6,0.6-1.1,1.1-1.5,1.3s-1,0.2-1.5,0c-0.5-0.2-0.8-0.6-0.9-1.2c-0.1-0.6,0-1.2,0.3-1.8c0.2-0.5,0.5-0.9,0.8-1.2
c0.3-0.3,0.7-0.6,1-0.7L38.2,313.2z"/>
<path class="st42" d="M44,312.7c-0.4,0.6-0.9,1-1.5,1.1c-0.6,0.1-1.2,0-1.9-0.4l-0.2-0.1c-0.6-0.4-1.1-0.9-1.3-1.5
c-0.2-0.6-0.1-1.2,0.2-1.8c0.4-0.6,0.8-0.9,1.4-1s1.1,0,1.7,0.4l0.6,0.4l-1.6,2.6l0,0c0.3,0.2,0.6,0.2,0.9,0.1s0.5-0.2,0.7-0.5
c0.2-0.3,0.3-0.5,0.3-0.7s0.1-0.4,0.1-0.7l0.9,0.1c0,0.3,0,0.6-0.1,0.9C44.4,312,44.2,312.3,44,312.7z M40.3,310.6
c-0.1,0.2-0.2,0.4-0.1,0.7s0.3,0.4,0.5,0.6l0,0l0.9-1.4l-0.1-0.1c-0.2-0.2-0.5-0.2-0.7-0.2C40.7,310.2,40.5,310.4,40.3,310.6z"/>
<path class="st42" d="M44.7,309.9l0.3-0.6l-2.5-1.9l-0.5,0.5l-0.7-0.5l1.2-1.6l0.6,0.4c-0.1-0.3-0.2-0.5-0.2-0.7s0.1-0.5,0.2-0.7
c0-0.1,0.1-0.1,0.1-0.2c0.1-0.1,0.1-0.1,0.2-0.1l0.9,0.9l-0.3,0.4c-0.1,0.2-0.2,0.3-0.2,0.5c0,0.2,0,0.3,0.1,0.4l2,1.5l0.5-0.4
l0.7,0.5l-1.6,2.2L44.7,309.9z"/>
<path class="st42" d="M45.9,302.8l-0.3,0.4l2.1,1l0.4,0.3l0,0l-0.3-0.4l-1.2-2l-0.4,0.3l-0.6-0.6l1.5-1.7l0.6,0.5l-0.2,0.4
l2.1,3.9l-0.9,1l-4.1-1.7l-0.3,0.3l-0.6-0.6l1.5-1.7L45.9,302.8z"/>
<path class="st42" d="M48.4,297.4l-1,0.9l-0.7-0.7l1-0.9L48.4,297.4z M50.6,302.8l0.4-0.6l-2.2-2.3l-0.6,0.4l-0.6-0.6l1.5-1.4
l2.8,3l0.6-0.3l0.6,0.6l-2,1.8L50.6,302.8z"/>
<path class="st42" d="M54.7,299c0.2-0.2,0.3-0.3,0.3-0.5c0-0.2,0-0.4-0.2-0.6l1-0.8l0,0c0.3,0.4,0.5,0.8,0.4,1.4
c-0.1,0.5-0.4,1-0.8,1.3c-0.6,0.5-1.2,0.7-1.8,0.5c-0.6-0.1-1.2-0.5-1.6-1.1l-0.1-0.1c-0.5-0.6-0.7-1.2-0.7-1.8
c0-0.6,0.3-1.2,0.9-1.7c0.3-0.3,0.6-0.4,1-0.5c0.3-0.1,0.6-0.1,1-0.1l0.9,1l-0.9,0.7l-0.7-0.5c-0.1,0-0.2,0-0.3,0
s-0.2,0.1-0.3,0.2c-0.3,0.2-0.4,0.5-0.4,0.8c0.1,0.3,0.2,0.7,0.5,1l0.1,0.1c0.3,0.4,0.6,0.6,0.9,0.7
C54.1,299.3,54.4,299.3,54.7,299z"/>
<path class="st42" d="M59.3,297c-0.6,0.4-1.2,0.5-1.9,0.4s-1.1-0.5-1.5-1.1l-0.1-0.2c-0.4-0.6-0.6-1.3-0.5-1.9s0.4-1.1,1-1.5
c0.6-0.4,1.1-0.5,1.7-0.4c0.5,0.1,1,0.5,1.4,1.1l0.4,0.6l-2.5,1.7l0,0c0.2,0.3,0.4,0.4,0.7,0.5s0.6,0,0.9-0.2
c0.3-0.2,0.4-0.3,0.6-0.5c0.1-0.2,0.3-0.4,0.4-0.6l0.8,0.5c-0.1,0.3-0.2,0.5-0.5,0.8C59.9,296.5,59.6,296.8,59.3,297z M56.9,293.5
c-0.2,0.1-0.3,0.3-0.3,0.6c0,0.2,0,0.5,0.2,0.8l0,0l1.4-0.9l-0.1-0.1c-0.2-0.2-0.3-0.4-0.6-0.5C57.3,293.4,57.1,293.4,56.9,293.5z
"/>
<path class="st42" d="M62.9,293.7l0.4-0.3l-0.5-6.3l1.3-0.6l4.3,4.6l0.5-0.1l0.3,0.8l-2.1,0.9l-0.3-0.8l0.4-0.3l-0.7-0.7l-2,0.9
l0.1,1l0.5-0.1l0.3,0.8l-2.1,0.9L62.9,293.7z M64.3,290.9l1.4-0.6l-1.7-1.9l0,0L64.3,290.9z"/>
<path class="st42" d="M73.7,289.7l1.1-0.4l-1-4.5l-1.1,0.2l-0.2-0.8l2.4-1l1.2,5.7l1.2-0.1l0.2,0.8l-3.6,0.8L73.7,289.7z"/>
<path class="st42" d="M82.3,286.4c0.1,0.9,0,1.6-0.4,2.1c-0.4,0.5-0.9,0.8-1.6,0.9c-0.7,0.1-1.3-0.1-1.8-0.5
c-0.5-0.4-0.8-1.1-0.9-2l-0.2-1.5c-0.1-0.9,0-1.6,0.4-2.1c0.4-0.5,0.9-0.8,1.6-0.9c0.7-0.1,1.3,0.1,1.8,0.5c0.5,0.4,0.8,1.1,0.9,2
L82.3,286.4z M80.8,284.9c-0.1-0.5-0.2-0.9-0.4-1.2s-0.4-0.3-0.7-0.3c-0.3,0-0.5,0.2-0.7,0.5s-0.2,0.7-0.1,1.2l0.2,1.8
c0.1,0.5,0.2,0.9,0.4,1.2c0.2,0.2,0.4,0.3,0.7,0.3c0.3,0,0.5-0.2,0.7-0.5s0.2-0.7,0.1-1.2L80.8,284.9z"/>
<path class="st42" d="M84.9,289l-1.4,0.1l0-1.2l1.4-0.1L84.9,289z"/>
<path class="st42" d="M85.6,288.2l1.2-0.1l0.1-4.6l-1.2,0l0-0.8l2.5-0.4l-0.2,5.9l1.1,0.2l0,0.8l-3.7-0.1L85.6,288.2z"/>
<path class="st42" d="M94.7,287c-0.1,0.9-0.4,1.6-0.9,2c-0.5,0.4-1.1,0.6-1.8,0.5c-0.7-0.1-1.2-0.4-1.6-0.9s-0.5-1.2-0.4-2.1
l0.2-1.5c0.1-0.9,0.4-1.5,0.9-2c0.5-0.4,1.1-0.6,1.8-0.5c0.7,0.1,1.2,0.4,1.6,0.9c0.4,0.5,0.5,1.2,0.4,2.1L94.7,287z M93.6,285.2
c0.1-0.5,0-0.9-0.1-1.2c-0.1-0.3-0.3-0.4-0.7-0.5c-0.3,0-0.6,0.1-0.7,0.3c-0.2,0.2-0.3,0.6-0.4,1.2l-0.2,1.8c-0.1,0.5,0,1,0.1,1.2
c0.1,0.3,0.3,0.4,0.7,0.5c0.3,0,0.5-0.1,0.7-0.3c0.2-0.2,0.3-0.6,0.4-1.2L93.6,285.2z"/>
<path class="st42" d="M96.6,290.1l-1.3-0.3l0.2-1.2l1.3,0.3L96.6,290.1z"/>
<path class="st42" d="M99.5,289.9c0.4,0.1,0.7,0,1-0.2s0.5-0.6,0.7-1.1l0-0.1c-0.2,0.1-0.4,0.2-0.7,0.3c-0.2,0-0.5,0-0.7,0
c-0.6-0.2-1-0.5-1.3-1c-0.2-0.5-0.2-1.1,0-1.8c0.2-0.7,0.6-1.2,1.1-1.5c0.5-0.3,1.1-0.4,1.8-0.2c0.7,0.2,1.1,0.6,1.4,1.2
c0.3,0.6,0.3,1.3,0.1,2.1l-0.4,1.4c-0.2,0.9-0.7,1.4-1.3,1.8c-0.6,0.3-1.3,0.4-2,0.2c-0.2-0.1-0.5-0.2-0.7-0.3
c-0.2-0.1-0.4-0.2-0.6-0.4l0.4-0.9c0.2,0.1,0.4,0.2,0.5,0.3C99,289.7,99.2,289.8,99.5,289.9z M100.3,287.8c0.2,0.1,0.4,0.1,0.6,0
c0.2,0,0.3-0.1,0.5-0.2l0.2-0.7c0.1-0.5,0.2-0.9,0.1-1.2c-0.1-0.3-0.3-0.5-0.6-0.6c-0.3-0.1-0.5,0-0.8,0.2
c-0.2,0.2-0.4,0.5-0.5,0.9c-0.1,0.4-0.1,0.7,0,1C99.8,287.6,100,287.8,100.3,287.8z"/>
<path class="st42" d="M103.8,292.3l-1.3-0.5l0.4-1.1l1.3,0.5L103.8,292.3z"/>
<path class="st42" d="M104.8,291.8l1.1,0.3l1.9-4.2l-1.1-0.5l0.3-0.7l2.5,0.6l-2.4,5.4l1,0.6l-0.3,0.7l-3.3-1.5L104.8,291.8z"/>
</g>
<g>
<path class="st42" d="M115,54.6h-1l-0.2-0.9c-0.1-0.1-0.3-0.1-0.5-0.2c-0.2-0.1-0.5-0.1-0.7-0.1c-0.4,0-0.7,0.1-0.9,0.2
c-0.2,0.2-0.3,0.4-0.3,0.6c0,0.2,0.1,0.4,0.3,0.6s0.6,0.3,1.1,0.5c0.8,0.2,1.3,0.5,1.7,0.8c0.4,0.3,0.6,0.8,0.6,1.4
c0,0.6-0.2,1-0.7,1.4s-1.1,0.5-1.8,0.5c-0.5,0-1-0.1-1.5-0.3s-0.8-0.4-1.1-0.7V57h1.1l0.1,1c0.1,0.1,0.3,0.2,0.6,0.3
c0.2,0.1,0.5,0.1,0.8,0.1c0.4,0,0.7-0.1,0.9-0.2c0.2-0.2,0.3-0.4,0.3-0.6c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.2-0.5-0.3-1-0.5
c-0.8-0.2-1.4-0.5-1.8-0.8c-0.4-0.3-0.6-0.8-0.6-1.3c0-0.6,0.2-1,0.7-1.4s1.1-0.5,1.8-0.5c0.5,0,1,0.1,1.4,0.2s0.8,0.4,1.1,0.6
V54.6z"/>
<path class="st42" d="M118.1,59.4c-0.7,0-1.3-0.2-1.8-0.7s-0.7-1.1-0.7-1.8v-0.2c0-0.8,0.2-1.4,0.6-1.9c0.4-0.5,1-0.7,1.7-0.7
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.7v0.7h-3l0,0c0,0.3,0.1,0.6,0.3,0.8c0.2,0.2,0.5,0.3,0.8,0.3c0.3,0,0.6,0,0.8-0.1
c0.2-0.1,0.4-0.2,0.7-0.3l0.4,0.8c-0.2,0.2-0.5,0.3-0.8,0.4S118.5,59.4,118.1,59.4z M118,55.2c-0.3,0-0.5,0.1-0.6,0.3
c-0.1,0.2-0.2,0.4-0.3,0.8l0,0h1.7v-0.1c0-0.3-0.1-0.5-0.2-0.7C118.5,55.3,118.3,55.2,118,55.2z"/>
<path class="st42" d="M120.9,58.5l0.7-0.1v-3.1l-0.7-0.1v-0.8h2l0.1,0.7c0.1-0.3,0.3-0.5,0.5-0.6s0.4-0.2,0.7-0.2
c0.1,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0l-0.1,1.2l-0.6,0c-0.2,0-0.4,0-0.5,0.1c-0.1,0.1-0.2,0.2-0.3,0.3v2.5l0.7,0.1v0.8h-2.7V58.5z
"/>
<path class="st42" d="M127.1,55l-0.5,0.1l0.7,2.3l0.1,0.5h0l0.1-0.5l0.7-2.3l-0.5-0.1v-0.8h2.3V55l-0.4,0.1l-1.5,4.2h-1.3
l-1.5-4.2l-0.4-0.1v-0.8h2.3V55z"/>
<path class="st42" d="M130.4,58.5l0.7-0.1v-3.1l-0.7-0.1v-0.8h2.1v4.1l0.7,0.1v0.8h-2.7V58.5z M132.4,53H131v-1h1.4V53z"/>
<path class="st42" d="M135.9,58.3c0.2,0,0.4-0.1,0.6-0.2c0.1-0.1,0.2-0.3,0.2-0.6h1.2l0,0c0,0.5-0.2,0.9-0.6,1.3
c-0.4,0.3-0.9,0.5-1.5,0.5c-0.8,0-1.3-0.2-1.7-0.7c-0.4-0.5-0.6-1.1-0.6-1.8v-0.1c0-0.7,0.2-1.4,0.6-1.8c0.4-0.5,1-0.7,1.8-0.7
c0.4,0,0.8,0.1,1.1,0.2c0.3,0.1,0.6,0.3,0.8,0.5l0,1.4h-1.1l-0.2-0.8c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2-0.1-0.3-0.1
c-0.4,0-0.7,0.1-0.8,0.4s-0.2,0.6-0.2,1.1v0.1c0,0.5,0.1,0.8,0.2,1.1C135.3,58.2,135.5,58.3,135.9,58.3z"/>
<path class="st42" d="M141,59.4c-0.7,0-1.3-0.2-1.8-0.7s-0.7-1.1-0.7-1.8v-0.2c0-0.8,0.2-1.4,0.6-1.9c0.4-0.5,1-0.7,1.7-0.7
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.7v0.7h-3l0,0c0,0.3,0.1,0.6,0.3,0.8c0.2,0.2,0.5,0.3,0.8,0.3c0.3,0,0.6,0,0.8-0.1
c0.2-0.1,0.4-0.2,0.7-0.3l0.4,0.8c-0.2,0.2-0.5,0.3-0.8,0.4S141.4,59.4,141,59.4z M140.9,55.2c-0.3,0-0.5,0.1-0.6,0.3
c-0.1,0.2-0.2,0.4-0.3,0.8l0,0h1.7v-0.1c0-0.3-0.1-0.5-0.2-0.7C141.4,55.3,141.1,55.2,140.9,55.2z"/>
<path class="st42" d="M149,52.5c0.8,0,1.4,0.2,1.9,0.5s0.7,0.8,0.7,1.4c0,0.3-0.1,0.6-0.2,0.8c-0.2,0.2-0.4,0.4-0.7,0.6
c0.4,0.1,0.7,0.3,0.9,0.6c0.2,0.3,0.3,0.6,0.3,1c0,0.7-0.2,1.1-0.6,1.5c-0.4,0.3-1,0.5-1.8,0.5H146v-0.8l0.7-0.1v-4.9l-0.7-0.1
v-0.8h0.7H149z M148.1,55.3h1c0.4,0,0.6-0.1,0.8-0.2c0.2-0.2,0.3-0.4,0.3-0.7c0-0.3-0.1-0.5-0.3-0.7s-0.5-0.2-0.9-0.2h-0.9V55.3z
M148.1,56.3v2h1.3c0.4,0,0.6-0.1,0.8-0.2s0.3-0.4,0.3-0.7c0-0.3-0.1-0.6-0.2-0.8c-0.2-0.2-0.4-0.3-0.8-0.3H148.1z"/>
<path class="st42" d="M154.8,58.5l1.2-0.1v-4.6h-1.2v-0.8l2.5-0.5v5.9l1.2,0.1v0.8h-3.7V58.5z"/>
<path class="st42" d="M163.8,56.6c0,0.9-0.2,1.6-0.6,2.1c-0.4,0.5-1,0.7-1.7,0.7c-0.7,0-1.3-0.2-1.7-0.7c-0.4-0.5-0.6-1.2-0.6-2.1
v-1.5c0-0.9,0.2-1.6,0.6-2.1c0.4-0.5,1-0.7,1.7-0.7c0.7,0,1.3,0.2,1.7,0.7c0.4,0.5,0.6,1.2,0.6,2.1V56.6z M162.4,55
c0-0.5-0.1-0.9-0.2-1.2c-0.2-0.3-0.4-0.4-0.7-0.4c-0.3,0-0.5,0.1-0.7,0.4s-0.2,0.6-0.2,1.2v1.8c0,0.5,0.1,0.9,0.2,1.2
c0.2,0.2,0.4,0.4,0.7,0.4c0.3,0,0.5-0.1,0.7-0.4s0.2-0.6,0.2-1.2V55z"/>
<path class="st42" d="M166.1,59.3h-1.4v-1.2h1.4V59.3z"/>
<path class="st42" d="M166.9,58.5l1.2-0.1v-4.6h-1.2v-0.8l2.5-0.5v5.9l1.2,0.1v0.8h-3.7V58.5z"/>
<path class="st42" d="M175.9,56.6c0,0.9-0.2,1.6-0.6,2.1c-0.4,0.5-1,0.7-1.7,0.7c-0.7,0-1.3-0.2-1.7-0.7c-0.4-0.5-0.6-1.2-0.6-2.1
v-1.5c0-0.9,0.2-1.6,0.6-2.1c0.4-0.5,1-0.7,1.7-0.7c0.7,0,1.3,0.2,1.7,0.7c0.4,0.5,0.6,1.2,0.6,2.1V56.6z M174.6,55
c0-0.5-0.1-0.9-0.2-1.2c-0.2-0.3-0.4-0.4-0.7-0.4c-0.3,0-0.5,0.1-0.7,0.4s-0.2,0.6-0.2,1.2v1.8c0,0.5,0.1,0.9,0.2,1.2
c0.2,0.2,0.4,0.4,0.7,0.4c0.3,0,0.5-0.1,0.7-0.4s0.2-0.6,0.2-1.2V55z"/>
<path class="st42" d="M178.3,59.3H177v-1.2h1.4V59.3z"/>
<path class="st42" d="M181.2,58.3c0.4,0,0.7-0.1,0.9-0.4s0.3-0.7,0.3-1.3v-0.1c-0.2,0.2-0.3,0.3-0.5,0.4s-0.4,0.2-0.7,0.2
c-0.6,0-1.1-0.2-1.5-0.6c-0.4-0.4-0.5-1-0.5-1.7c0-0.7,0.2-1.3,0.6-1.7s1-0.7,1.6-0.7c0.7,0,1.3,0.2,1.7,0.7
c0.4,0.5,0.7,1.2,0.7,2v1.5c0,0.9-0.2,1.6-0.7,2.1c-0.5,0.5-1.1,0.7-1.9,0.7c-0.2,0-0.5,0-0.7-0.1c-0.3,0-0.5-0.1-0.7-0.2l0.2-1
c0.2,0.1,0.4,0.1,0.6,0.2C180.7,58.3,180.9,58.3,181.2,58.3z M181.4,56.2c0.2,0,0.4,0,0.6-0.1c0.2-0.1,0.3-0.2,0.4-0.3V55
c0-0.5-0.1-0.9-0.3-1.1c-0.2-0.3-0.4-0.4-0.7-0.4c-0.3,0-0.5,0.1-0.7,0.4c-0.2,0.3-0.3,0.6-0.3,1c0,0.4,0.1,0.7,0.2,1
C180.9,56,181.1,56.2,181.4,56.2z"/>
<path class="st42" d="M186.1,59.3h-1.4v-1.2h1.4V59.3z"/>
<path class="st42" d="M187,59.3v-0.9l2.2-2.4c0.3-0.4,0.5-0.7,0.7-0.9c0.1-0.3,0.2-0.5,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7
c-0.2-0.2-0.4-0.3-0.7-0.3c-0.3,0-0.6,0.1-0.7,0.3c-0.2,0.2-0.2,0.5-0.2,0.9h-1.3l0,0c0-0.6,0.2-1.1,0.6-1.6
c0.4-0.4,1-0.6,1.7-0.6c0.7,0,1.3,0.2,1.7,0.5s0.6,0.9,0.6,1.5c0,0.4-0.1,0.8-0.3,1.1c-0.2,0.3-0.6,0.8-1.1,1.4l-1.2,1.3l0,0h1.8
l0.1-0.7h1v1.7H187z"/>
</g>
</g>
<g id="deployments">
<g>
<g>
<circle class="st45" cx="140.6" cy="241.8" r="14.1"/>
<g>
<g>
<path class="st46" d="M145,233.5c3,1.6,5,4.7,5,8.3c0,5.2-4.2,9.4-9.4,9.4s-9.4-4.2-9.4-9.4c0-4.1,2.6-7.6,6.3-8.9"/>
<g>
<polygon class="st6" points="146.4,236.4 145.4,233.7 148,232.6 146.5,231.9 143.8,233 144.8,235.6 "/>
</g>
</g>
</g>
<g>
<path class="st6" d="M135.4,245.5l0.8-0.1l3.3-9.5h2.2l3.3,9.5l0.8,0.1v1.3h-3.7v-1.3l0.8-0.1l-0.5-1.5h-3.5l-0.5,1.5l0.8,0.1
v1.3h-3.7V245.5z M139.4,242.3h2.5l-1.2-3.8h0L139.4,242.3z"/>
</g>
</g>
<g>
<circle class="st49" cx="159.9" cy="211.5" r="14.1"/>
<g>
<g>
<path class="st46" d="M164.3,203.2c3,1.6,5,4.7,5,8.3c0,5.2-4.2,9.4-9.4,9.4s-9.4-4.2-9.4-9.4c0-4.1,2.6-7.6,6.3-8.9"/>
<g>
<polygon class="st6" points="165.7,206.1 164.6,203.4 167.3,202.4 165.7,201.7 163,202.7 164.1,205.4 "/>
</g>
</g>
</g>
<g>
<path class="st6" d="M160.1,205.8c1.3,0,2.3,0.2,3,0.7s1.1,1.2,1.1,2.2c0,0.5-0.1,1-0.4,1.3c-0.3,0.4-0.7,0.7-1.2,0.9
c0.7,0.1,1.1,0.4,1.5,0.9s0.5,1,0.5,1.6c0,1-0.3,1.8-1,2.4c-0.7,0.5-1.7,0.8-2.9,0.8h-5.3v-1.3l1.2-0.2v-7.8l-1.2-0.2v-1.3h1.2
H160.1z M158.6,210.3h1.6c0.6,0,1-0.1,1.3-0.4c0.3-0.2,0.5-0.6,0.5-1c0-0.5-0.2-0.9-0.5-1.1c-0.3-0.2-0.8-0.4-1.4-0.4h-1.5
V210.3z M158.6,211.8v3.1h2c0.6,0,1-0.1,1.3-0.4c0.3-0.3,0.5-0.6,0.5-1.1c0-0.5-0.1-0.9-0.4-1.2c-0.3-0.3-0.7-0.4-1.2-0.4H158.6
z"/>
</g>
</g>
</g>
</g>
<g id="containers_x2F_volumes">
<g>
<polygon class="st51" points="74.8,101.8 86.6,94.9 98.5,101.8 86.6,108.6 "/>
<polygon class="st51" points="74.8,115.4 74.8,101.8 86.6,108.6 86.6,122.3 "/>
<polygon class="st51" points="86.6,122.3 86.6,108.6 98.5,101.8 98.5,115.4 "/>
</g>
<g>
<polygon class="st51" points="74.2,331.5 86,324.6 97.9,331.5 86,338.3 "/>
<polygon class="st51" points="74.2,345.2 74.2,331.5 86,338.3 86,352 "/>
<polygon class="st51" points="86,352 86,338.3 97.9,331.5 97.9,345.2 "/>
</g>
<g>
<polygon class="st51" points="178.7,101.8 190.6,94.9 202.4,101.8 190.6,108.6 "/>
<polygon class="st51" points="178.7,115.4 178.7,101.8 190.6,108.6 190.6,122.3 "/>
<polygon class="st51" points="190.6,122.3 190.6,108.6 202.4,101.8 202.4,115.4 "/>
</g>
<g>
<polygon class="st51" points="225.2,101.8 237.1,94.9 248.9,101.8 237.1,108.6 "/>
<polygon class="st51" points="225.2,115.4 225.2,101.8 237.1,108.6 237.1,122.3 "/>
<polygon class="st51" points="237.1,122.3 237.1,108.6 248.9,101.8 248.9,115.4 "/>
</g>
</g>
<g id="labels_x2F_selectors">
<polygon class="st53" points="145.5,335.5 110.8,335.5 105.4,326.6 110.8,317.7 145.5,317.7 "/>
<polygon class="st54" points="144,334 109.3,334 103.9,325.1 109.3,316.2 144,316.2 "/>
<g>
<g>
<path class="st42" d="M114.7,328.5c0-0.1-0.1-0.3-0.1-0.4s0-0.2,0-0.3c-0.2,0.2-0.4,0.4-0.7,0.6c-0.3,0.2-0.6,0.2-0.9,0.2
c-0.5,0-1-0.1-1.3-0.4c-0.3-0.3-0.4-0.6-0.4-1.1c0-0.5,0.2-0.9,0.6-1.2c0.4-0.3,1-0.4,1.7-0.4h1v-0.6c0-0.3-0.1-0.6-0.3-0.7
c-0.2-0.2-0.5-0.3-0.8-0.3c-0.2,0-0.5,0-0.6,0.1c-0.2,0.1-0.3,0.1-0.4,0.3l-0.1,0.6h-0.7v-1c0.2-0.2,0.5-0.3,0.9-0.5
c0.3-0.1,0.7-0.2,1.1-0.2c0.6,0,1.1,0.2,1.5,0.5s0.6,0.7,0.6,1.3v2.5c0,0.1,0,0.1,0,0.2c0,0.1,0,0.1,0,0.2l0.4,0.1v0.6H114.7z
M113.2,327.8c0.3,0,0.6-0.1,0.9-0.2s0.5-0.3,0.6-0.6v-0.9h-1c-0.4,0-0.7,0.1-0.9,0.3c-0.2,0.2-0.3,0.4-0.3,0.7
c0,0.2,0.1,0.4,0.2,0.5C112.7,327.7,112.9,327.8,113.2,327.8z"/>
<path class="st42" d="M116.7,329.9l0.8-0.1V324l-0.8-0.1v-0.6h1.6l0.1,0.6c0.2-0.2,0.4-0.4,0.6-0.6c0.3-0.1,0.5-0.2,0.9-0.2
c0.7,0,1.2,0.3,1.5,0.8c0.4,0.5,0.5,1.2,0.5,2.1v0.1c0,0.8-0.2,1.4-0.5,1.8c-0.4,0.5-0.9,0.7-1.5,0.7c-0.3,0-0.6-0.1-0.9-0.2
c-0.2-0.1-0.5-0.3-0.6-0.5v1.8l0.8,0.1v0.6h-2.6V329.9z M121,325.9c0-0.6-0.1-1.1-0.4-1.5s-0.6-0.6-1-0.6c-0.3,0-0.5,0.1-0.7,0.2
s-0.4,0.3-0.5,0.5v2.6c0.1,0.2,0.3,0.4,0.5,0.5c0.2,0.1,0.4,0.2,0.7,0.2c0.5,0,0.8-0.2,1-0.5s0.4-0.8,0.4-1.3V325.9z"/>
<path class="st42" d="M122.7,329.9l0.8-0.1V324l-0.8-0.1v-0.6h1.6l0.1,0.6c0.2-0.2,0.4-0.4,0.6-0.6c0.3-0.1,0.5-0.2,0.9-0.2
c0.7,0,1.2,0.3,1.5,0.8c0.4,0.5,0.5,1.2,0.5,2.1v0.1c0,0.8-0.2,1.4-0.5,1.8c-0.4,0.5-0.9,0.7-1.5,0.7c-0.3,0-0.6-0.1-0.9-0.2
c-0.2-0.1-0.5-0.3-0.6-0.5v1.8l0.8,0.1v0.6h-2.6V329.9z M127.1,325.9c0-0.6-0.1-1.1-0.4-1.5s-0.6-0.6-1-0.6
c-0.3,0-0.5,0.1-0.7,0.2s-0.4,0.3-0.5,0.5v2.6c0.1,0.2,0.3,0.4,0.5,0.5c0.2,0.1,0.4,0.2,0.7,0.2c0.5,0,0.8-0.2,1-0.5
s0.4-0.8,0.4-1.3V325.9z"/>
<path class="st42" d="M133.3,324.5h-4.1v-0.8h4.1V324.5z M133.3,326.5h-4.1v-0.8h4.1V326.5z"/>
<path class="st42" d="M134.3,327.9l0.5-0.1l2.5-6.4h0.8l2.4,6.4l0.5,0.1v0.6h-2v-0.6l0.5-0.1l-0.5-1.3h-2.8l-0.5,1.3l0.5,0.1v0.6
h-2V327.9z M136.5,325.7h2.3l-1.1-3.1h0L136.5,325.7z"/>
</g>
</g>
<polygon class="st53" points="147,132 112.3,132 106.9,123 112.3,114.1 147,114.1 "/>
<polygon class="st55" points="145.5,130.5 110.8,130.5 105.4,121.5 110.8,112.6 145.5,112.6 "/>
<g>
<g>
<path class="st42" d="M116.2,124.9c0-0.1-0.1-0.3-0.1-0.4c0-0.1,0-0.2,0-0.3c-0.2,0.2-0.4,0.4-0.7,0.6c-0.3,0.2-0.6,0.2-0.9,0.2
c-0.5,0-1-0.1-1.3-0.4s-0.4-0.6-0.4-1.1c0-0.5,0.2-0.9,0.6-1.2c0.4-0.3,1-0.4,1.7-0.4h1v-0.6c0-0.3-0.1-0.6-0.3-0.7
s-0.5-0.3-0.8-0.3c-0.2,0-0.5,0-0.6,0.1c-0.2,0.1-0.3,0.1-0.4,0.3l-0.1,0.6h-0.7v-1c0.2-0.2,0.5-0.3,0.9-0.5
c0.3-0.1,0.7-0.2,1.1-0.2c0.6,0,1.1,0.2,1.5,0.5c0.4,0.3,0.6,0.7,0.6,1.3v2.5c0,0.1,0,0.1,0,0.2c0,0.1,0,0.1,0,0.2l0.4,0.1v0.6
H116.2z M114.7,124.2c0.3,0,0.6-0.1,0.9-0.2c0.3-0.2,0.5-0.3,0.6-0.6v-0.9h-1c-0.4,0-0.7,0.1-0.9,0.3c-0.2,0.2-0.3,0.4-0.3,0.7
c0,0.2,0.1,0.4,0.2,0.5S114.4,124.2,114.7,124.2z"/>
<path class="st42" d="M118.2,126.3l0.8-0.1v-5.8l-0.8-0.1v-0.6h1.6l0.1,0.6c0.2-0.2,0.4-0.4,0.6-0.6c0.3-0.1,0.5-0.2,0.9-0.2
c0.7,0,1.2,0.3,1.5,0.8c0.4,0.5,0.5,1.2,0.5,2.1v0.1c0,0.8-0.2,1.4-0.5,1.8c-0.4,0.5-0.9,0.7-1.5,0.7c-0.3,0-0.6-0.1-0.9-0.2
c-0.2-0.1-0.5-0.3-0.6-0.5v1.8l0.8,0.1v0.6h-2.6V126.3z M122.5,122.4c0-0.6-0.1-1.1-0.4-1.5c-0.2-0.4-0.6-0.6-1-0.6
c-0.3,0-0.5,0.1-0.7,0.2c-0.2,0.1-0.4,0.3-0.5,0.5v2.6c0.1,0.2,0.3,0.4,0.5,0.5c0.2,0.1,0.4,0.2,0.7,0.2c0.5,0,0.8-0.2,1-0.5
s0.4-0.8,0.4-1.3V122.4z"/>
<path class="st42" d="M124.2,126.3l0.8-0.1v-5.8l-0.8-0.1v-0.6h1.6l0.1,0.6c0.2-0.2,0.4-0.4,0.6-0.6c0.3-0.1,0.5-0.2,0.9-0.2
c0.7,0,1.2,0.3,1.5,0.8c0.4,0.5,0.5,1.2,0.5,2.1v0.1c0,0.8-0.2,1.4-0.5,1.8c-0.4,0.5-0.9,0.7-1.5,0.7c-0.3,0-0.6-0.1-0.9-0.2
c-0.2-0.1-0.5-0.3-0.6-0.5v1.8l0.8,0.1v0.6h-2.6V126.3z M128.5,122.4c0-0.6-0.1-1.1-0.4-1.5c-0.2-0.4-0.6-0.6-1-0.6
c-0.3,0-0.5,0.1-0.7,0.2c-0.2,0.1-0.4,0.3-0.5,0.5v2.6c0.1,0.2,0.3,0.4,0.5,0.5c0.2,0.1,0.4,0.2,0.7,0.2c0.5,0,0.8-0.2,1-0.5
s0.4-0.8,0.4-1.3V122.4z"/>
<path class="st42" d="M134.7,120.9h-4.1v-0.8h4.1V120.9z M134.7,122.9h-4.1v-0.8h4.1V122.9z"/>
<path class="st42" d="M138.9,117.8c0.7,0,1.3,0.2,1.7,0.5c0.4,0.3,0.6,0.8,0.6,1.4c0,0.3-0.1,0.6-0.3,0.8
c-0.2,0.2-0.5,0.4-0.8,0.6c0.4,0.1,0.8,0.3,1,0.6c0.2,0.3,0.4,0.7,0.4,1.1c0,0.7-0.2,1.1-0.6,1.5c-0.4,0.3-1,0.5-1.7,0.5h-3.4
v-0.6l0.8-0.1v-5.6l-0.8-0.1v-0.6h0.8H138.9z M137.6,120.8h1.6c0.3,0,0.6-0.1,0.8-0.3c0.2-0.2,0.3-0.5,0.3-0.8
c0-0.4-0.1-0.7-0.4-0.9s-0.6-0.3-1-0.3h-1.4V120.8z M137.6,121.6v2.6h1.7c0.4,0,0.8-0.1,1-0.3c0.2-0.2,0.4-0.5,0.4-0.9
c0-0.4-0.1-0.7-0.3-1c-0.2-0.2-0.5-0.4-0.9-0.4H137.6z"/>
</g>
</g>
<polygon class="st53" points="241.2,132 206.5,132 201.1,123 206.5,114.1 241.2,114.1 "/>
<polygon class="st55" points="239.7,130.5 205,130.5 199.6,121.5 205,112.6 239.7,112.6 "/>
<g>
<g>
<path class="st42" d="M210.4,124.9c0-0.1-0.1-0.3-0.1-0.4c0-0.1,0-0.2,0-0.3c-0.2,0.2-0.4,0.4-0.7,0.6c-0.3,0.2-0.6,0.2-0.9,0.2
c-0.5,0-1-0.1-1.3-0.4s-0.4-0.6-0.4-1.1c0-0.5,0.2-0.9,0.6-1.2c0.4-0.3,1-0.4,1.7-0.4h1v-0.6c0-0.3-0.1-0.6-0.3-0.7
s-0.5-0.3-0.8-0.3c-0.2,0-0.5,0-0.6,0.1c-0.2,0.1-0.3,0.1-0.4,0.3l-0.1,0.6h-0.7v-1c0.2-0.2,0.5-0.3,0.9-0.5
c0.3-0.1,0.7-0.2,1.1-0.2c0.6,0,1.1,0.2,1.5,0.5c0.4,0.3,0.6,0.7,0.6,1.3v2.5c0,0.1,0,0.1,0,0.2c0,0.1,0,0.1,0,0.2l0.4,0.1v0.6
H210.4z M208.9,124.2c0.3,0,0.6-0.1,0.9-0.2c0.3-0.2,0.5-0.3,0.6-0.6v-0.9h-1c-0.4,0-0.7,0.1-0.9,0.3c-0.2,0.2-0.3,0.4-0.3,0.7
c0,0.2,0.1,0.4,0.2,0.5S208.6,124.2,208.9,124.2z"/>
<path class="st42" d="M212.4,126.3l0.8-0.1v-5.8l-0.8-0.1v-0.6h1.6l0.1,0.6c0.2-0.2,0.4-0.4,0.6-0.6c0.3-0.1,0.5-0.2,0.9-0.2
c0.7,0,1.2,0.3,1.5,0.8c0.4,0.5,0.5,1.2,0.5,2.1v0.1c0,0.8-0.2,1.4-0.5,1.8c-0.4,0.5-0.9,0.7-1.5,0.7c-0.3,0-0.6-0.1-0.9-0.2
c-0.2-0.1-0.5-0.3-0.6-0.5v1.8l0.8,0.1v0.6h-2.6V126.3z M216.7,122.4c0-0.6-0.1-1.1-0.4-1.5c-0.2-0.4-0.6-0.6-1-0.6
c-0.3,0-0.5,0.1-0.7,0.2c-0.2,0.1-0.4,0.3-0.5,0.5v2.6c0.1,0.2,0.3,0.4,0.5,0.5c0.2,0.1,0.4,0.2,0.7,0.2c0.5,0,0.8-0.2,1-0.5
s0.4-0.8,0.4-1.3V122.4z"/>
<path class="st42" d="M218.4,126.3l0.8-0.1v-5.8l-0.8-0.1v-0.6h1.6l0.1,0.6c0.2-0.2,0.4-0.4,0.6-0.6c0.3-0.1,0.5-0.2,0.9-0.2
c0.7,0,1.2,0.3,1.5,0.8c0.4,0.5,0.5,1.2,0.5,2.1v0.1c0,0.8-0.2,1.4-0.5,1.8c-0.4,0.5-0.9,0.7-1.5,0.7c-0.3,0-0.6-0.1-0.9-0.2
c-0.2-0.1-0.5-0.3-0.6-0.5v1.8l0.8,0.1v0.6h-2.6V126.3z M222.7,122.4c0-0.6-0.1-1.1-0.4-1.5c-0.2-0.4-0.6-0.6-1-0.6
c-0.3,0-0.5,0.1-0.7,0.2c-0.2,0.1-0.4,0.3-0.5,0.5v2.6c0.1,0.2,0.3,0.4,0.5,0.5c0.2,0.1,0.4,0.2,0.7,0.2c0.5,0,0.8-0.2,1-0.5
s0.4-0.8,0.4-1.3V122.4z"/>
<path class="st42" d="M228.9,120.9h-4.1v-0.8h4.1V120.9z M228.9,122.9h-4.1v-0.8h4.1V122.9z"/>
<path class="st42" d="M233.1,117.8c0.7,0,1.3,0.2,1.7,0.5c0.4,0.3,0.6,0.8,0.6,1.4c0,0.3-0.1,0.6-0.3,0.8
c-0.2,0.2-0.5,0.4-0.8,0.6c0.4,0.1,0.8,0.3,1,0.6c0.2,0.3,0.4,0.7,0.4,1.1c0,0.7-0.2,1.1-0.6,1.5c-0.4,0.3-1,0.5-1.7,0.5H230
v-0.6l0.8-0.1v-5.6l-0.8-0.1v-0.6h0.8H233.1z M231.8,120.8h1.6c0.3,0,0.6-0.1,0.8-0.3c0.2-0.2,0.3-0.5,0.3-0.8
c0-0.4-0.1-0.7-0.4-0.9s-0.6-0.3-1-0.3h-1.4V120.8z M231.8,121.6v2.6h1.7c0.4,0,0.8-0.1,1-0.3c0.2-0.2,0.4-0.5,0.4-0.9
c0-0.4-0.1-0.7-0.3-1c-0.2-0.2-0.5-0.4-0.9-0.4H231.8z"/>
</g>
</g>
<polygon class="st53" points="284.6,107.5 249.9,107.5 244.5,98.5 249.9,89.6 284.6,89.6 "/>
<polygon class="st55" points="283.1,106 248.4,106 243,97 248.4,88.1 283.1,88.1 "/>
<g>
<g>
<path class="st42" d="M253.8,100.4c0-0.1-0.1-0.3-0.1-0.4c0-0.1,0-0.2,0-0.3c-0.2,0.2-0.4,0.4-0.7,0.6c-0.3,0.2-0.6,0.2-0.9,0.2
c-0.5,0-1-0.1-1.3-0.4s-0.4-0.6-0.4-1.1c0-0.5,0.2-0.9,0.6-1.2c0.4-0.3,1-0.4,1.7-0.4h1v-0.6c0-0.3-0.1-0.6-0.3-0.7
s-0.5-0.3-0.8-0.3c-0.2,0-0.5,0-0.6,0.1c-0.2,0.1-0.3,0.1-0.4,0.3l-0.1,0.6h-0.7v-1c0.2-0.2,0.5-0.3,0.9-0.5
c0.3-0.1,0.7-0.2,1.1-0.2c0.6,0,1.1,0.2,1.5,0.5c0.4,0.3,0.6,0.7,0.6,1.3v2.5c0,0.1,0,0.1,0,0.2c0,0.1,0,0.1,0,0.2l0.4,0.1v0.6
H253.8z M252.3,99.7c0.3,0,0.6-0.1,0.9-0.2c0.3-0.2,0.5-0.3,0.6-0.6v-0.9h-1c-0.4,0-0.7,0.1-0.9,0.3c-0.2,0.2-0.3,0.4-0.3,0.7
c0,0.2,0.1,0.4,0.2,0.5S252,99.7,252.3,99.7z"/>
<path class="st42" d="M255.8,101.8l0.8-0.1v-5.8l-0.8-0.1v-0.6h1.6l0.1,0.6c0.2-0.2,0.4-0.4,0.6-0.6c0.3-0.1,0.5-0.2,0.9-0.2
c0.7,0,1.2,0.3,1.5,0.8c0.4,0.5,0.5,1.2,0.5,2.1V98c0,0.8-0.2,1.4-0.5,1.8c-0.4,0.5-0.9,0.7-1.5,0.7c-0.3,0-0.6-0.1-0.9-0.2
c-0.2-0.1-0.5-0.3-0.6-0.5v1.8l0.8,0.1v0.6h-2.6V101.8z M260.1,97.9c0-0.6-0.1-1.1-0.4-1.5c-0.2-0.4-0.6-0.6-1-0.6
c-0.3,0-0.5,0.1-0.7,0.2c-0.2,0.1-0.4,0.3-0.5,0.5v2.6c0.1,0.2,0.3,0.4,0.5,0.5c0.2,0.1,0.4,0.2,0.7,0.2c0.5,0,0.8-0.2,1-0.5
s0.4-0.8,0.4-1.3V97.9z"/>
<path class="st42" d="M261.8,101.8l0.8-0.1v-5.8l-0.8-0.1v-0.6h1.6l0.1,0.6c0.2-0.2,0.4-0.4,0.6-0.6c0.3-0.1,0.5-0.2,0.9-0.2
c0.7,0,1.2,0.3,1.5,0.8c0.4,0.5,0.5,1.2,0.5,2.1V98c0,0.8-0.2,1.4-0.5,1.8c-0.4,0.5-0.9,0.7-1.5,0.7c-0.3,0-0.6-0.1-0.9-0.2
c-0.2-0.1-0.5-0.3-0.6-0.5v1.8l0.8,0.1v0.6h-2.6V101.8z M266.2,97.9c0-0.6-0.1-1.1-0.4-1.5c-0.2-0.4-0.6-0.6-1-0.6
c-0.3,0-0.5,0.1-0.7,0.2c-0.2,0.1-0.4,0.3-0.5,0.5v2.6c0.1,0.2,0.3,0.4,0.5,0.5c0.2,0.1,0.4,0.2,0.7,0.2c0.5,0,0.8-0.2,1-0.5
s0.4-0.8,0.4-1.3V97.9z"/>
<path class="st42" d="M272.4,96.4h-4.1v-0.8h4.1V96.4z M272.4,98.4h-4.1v-0.8h4.1V98.4z"/>
<path class="st42" d="M276.5,93.3c0.7,0,1.3,0.2,1.7,0.5c0.4,0.3,0.6,0.8,0.6,1.4c0,0.3-0.1,0.6-0.3,0.8
c-0.2,0.2-0.5,0.4-0.8,0.6c0.4,0.1,0.8,0.3,1,0.6c0.2,0.3,0.4,0.7,0.4,1.1c0,0.7-0.2,1.1-0.6,1.5c-0.4,0.3-1,0.5-1.7,0.5h-3.4
v-0.6l0.8-0.1v-5.6l-0.8-0.1v-0.6h0.8H276.5z M275.2,96.3h1.6c0.3,0,0.6-0.1,0.8-0.3c0.2-0.2,0.3-0.5,0.3-0.8
c0-0.4-0.1-0.7-0.4-0.9s-0.6-0.3-1-0.3h-1.4V96.3z M275.2,97.1v2.6h1.7c0.4,0,0.8-0.1,1-0.3c0.2-0.2,0.4-0.5,0.4-0.9
c0-0.4-0.1-0.7-0.3-1c-0.2-0.2-0.5-0.4-0.9-0.4H275.2z"/>
</g>
</g>
<polygon class="st53" points="212.9,229.9 171.4,229.9 166,221 171.4,212 212.9,212 "/>
<polygon class="st56" points="211.4,228.4 169.9,228.4 164.5,219.5 169.9,210.5 211.4,210.5 "/>
<g>
<path class="st42" d="M175.6,219.2h-0.7l-0.2-0.6c-0.1-0.1-0.3-0.2-0.4-0.3c-0.2-0.1-0.4-0.1-0.6-0.1c-0.3,0-0.6,0.1-0.8,0.2
s-0.2,0.3-0.2,0.5c0,0.2,0.1,0.4,0.2,0.5s0.4,0.2,0.9,0.3c0.7,0.1,1.2,0.3,1.5,0.6s0.5,0.6,0.5,1c0,0.5-0.2,0.8-0.6,1.1
c-0.4,0.3-0.9,0.4-1.5,0.4c-0.4,0-0.8,0-1.1-0.1s-0.6-0.2-0.9-0.4l0-1.2h0.7l0.2,0.7c0.1,0.1,0.3,0.2,0.5,0.2
c0.2,0,0.4,0.1,0.6,0.1c0.3,0,0.6-0.1,0.8-0.2c0.2-0.1,0.3-0.3,0.3-0.5c0-0.2-0.1-0.4-0.2-0.5c-0.2-0.1-0.5-0.3-0.9-0.4
c-0.6-0.1-1.1-0.3-1.5-0.6s-0.5-0.6-0.5-1c0-0.4,0.2-0.8,0.5-1.1c0.4-0.3,0.8-0.5,1.4-0.5c0.4,0,0.8,0.1,1.1,0.2s0.6,0.2,0.8,0.4
L175.6,219.2z"/>
<path class="st42" d="M177.8,218.5h-1v-1h1V218.5z M177.8,222.8h-1v-1h1V222.8z"/>
<path class="st42" d="M182.1,222.8c0-0.1-0.1-0.3-0.1-0.4s0-0.2,0-0.3c-0.2,0.2-0.4,0.4-0.7,0.6c-0.3,0.2-0.6,0.2-0.9,0.2
c-0.5,0-1-0.1-1.3-0.4s-0.4-0.6-0.4-1.1c0-0.5,0.2-0.9,0.6-1.2c0.4-0.3,1-0.4,1.7-0.4h1v-0.6c0-0.3-0.1-0.6-0.3-0.7
s-0.5-0.3-0.8-0.3c-0.2,0-0.5,0-0.6,0.1c-0.2,0.1-0.3,0.1-0.4,0.3l-0.1,0.6H179v-1c0.2-0.2,0.5-0.3,0.9-0.5s0.7-0.2,1.1-0.2
c0.6,0,1.1,0.2,1.5,0.5s0.6,0.7,0.6,1.3v2.5c0,0.1,0,0.1,0,0.2c0,0.1,0,0.1,0,0.2l0.4,0.1v0.6H182.1z M180.6,222.1
c0.3,0,0.6-0.1,0.9-0.2s0.5-0.3,0.6-0.6v-0.9h-1c-0.4,0-0.7,0.1-0.9,0.3c-0.2,0.2-0.3,0.4-0.3,0.7c0,0.2,0.1,0.4,0.2,0.5
S180.3,222.1,180.6,222.1z"/>
<path class="st42" d="M184,224.2l0.8-0.1v-5.8l-0.8-0.1v-0.6h1.6l0.1,0.6c0.2-0.2,0.4-0.4,0.6-0.6c0.3-0.1,0.5-0.2,0.9-0.2
c0.7,0,1.2,0.3,1.5,0.8c0.4,0.5,0.5,1.2,0.5,2.1v0.1c0,0.8-0.2,1.4-0.5,1.8s-0.9,0.7-1.5,0.7c-0.3,0-0.6-0.1-0.9-0.2
c-0.2-0.1-0.5-0.3-0.6-0.5v1.8l0.8,0.1v0.6H184V224.2z M188.4,220.3c0-0.6-0.1-1.1-0.4-1.5s-0.6-0.6-1-0.6c-0.3,0-0.5,0.1-0.7,0.2
s-0.4,0.3-0.5,0.5v2.6c0.1,0.2,0.3,0.4,0.5,0.5c0.2,0.1,0.4,0.2,0.7,0.2c0.5,0,0.8-0.2,1-0.5s0.4-0.8,0.4-1.3V220.3z"/>
<path class="st42" d="M190.1,224.2l0.8-0.1v-5.8l-0.8-0.1v-0.6h1.6l0.1,0.6c0.2-0.2,0.4-0.4,0.6-0.6c0.3-0.1,0.5-0.2,0.9-0.2
c0.7,0,1.2,0.3,1.5,0.8c0.4,0.5,0.5,1.2,0.5,2.1v0.1c0,0.8-0.2,1.4-0.5,1.8s-0.9,0.7-1.5,0.7c-0.3,0-0.6-0.1-0.9-0.2
c-0.2-0.1-0.5-0.3-0.6-0.5v1.8l0.8,0.1v0.6h-2.6V224.2z M194.4,220.3c0-0.6-0.1-1.1-0.4-1.5s-0.6-0.6-1-0.6
c-0.3,0-0.5,0.1-0.7,0.2s-0.4,0.3-0.5,0.5v2.6c0.1,0.2,0.3,0.4,0.5,0.5c0.2,0.1,0.4,0.2,0.7,0.2c0.5,0,0.8-0.2,1-0.5
s0.4-0.8,0.4-1.3V220.3z"/>
<path class="st42" d="M200.6,218.8h-4.1V218h4.1V218.8z M200.6,220.8h-4.1V220h4.1V220.8z"/>
<path class="st42" d="M204.8,215.7c0.7,0,1.3,0.2,1.7,0.5c0.4,0.3,0.6,0.8,0.6,1.4c0,0.3-0.1,0.6-0.3,0.8
c-0.2,0.2-0.5,0.4-0.8,0.6c0.4,0.1,0.8,0.3,1,0.6s0.4,0.7,0.4,1.1c0,0.7-0.2,1.1-0.6,1.5s-1,0.5-1.7,0.5h-3.4v-0.6l0.8-0.1v-5.6
l-0.8-0.1v-0.6h0.8H204.8z M203.4,218.7h1.6c0.3,0,0.6-0.1,0.8-0.3c0.2-0.2,0.3-0.5,0.3-0.8c0-0.4-0.1-0.7-0.4-0.9s-0.6-0.3-1-0.3
h-1.4V218.7z M203.4,219.5v2.6h1.7c0.4,0,0.8-0.1,1-0.3c0.2-0.2,0.4-0.5,0.4-0.9c0-0.4-0.1-0.7-0.3-1c-0.2-0.2-0.5-0.4-0.9-0.4
H203.4z"/>
</g>
<polygon class="st53" points="194.3,258.7 152.8,258.7 147.4,249.8 152.8,240.8 194.3,240.8 "/>
<polygon class="st57" points="192.8,257.2 151.3,257.2 145.9,248.3 151.3,239.3 192.8,239.3 "/>
<g>
<path class="st42" d="M156.9,248h-0.7l-0.2-0.6c-0.1-0.1-0.3-0.2-0.4-0.3c-0.2-0.1-0.4-0.1-0.6-0.1c-0.3,0-0.6,0.1-0.8,0.2
s-0.2,0.3-0.2,0.5c0,0.2,0.1,0.4,0.2,0.5s0.4,0.2,0.9,0.3c0.7,0.1,1.2,0.3,1.5,0.6s0.5,0.6,0.5,1c0,0.5-0.2,0.8-0.6,1.1
c-0.4,0.3-0.9,0.4-1.5,0.4c-0.4,0-0.8,0-1.1-0.1s-0.6-0.2-0.9-0.4l0-1.2h0.7l0.2,0.7c0.1,0.1,0.3,0.2,0.5,0.2
c0.2,0,0.4,0.1,0.6,0.1c0.3,0,0.6-0.1,0.8-0.2c0.2-0.1,0.3-0.3,0.3-0.5c0-0.2-0.1-0.4-0.2-0.5c-0.2-0.1-0.5-0.3-0.9-0.4
c-0.6-0.1-1.1-0.3-1.5-0.6s-0.5-0.6-0.5-1c0-0.4,0.2-0.8,0.5-1.1c0.4-0.3,0.8-0.5,1.4-0.5c0.4,0,0.8,0.1,1.1,0.2s0.6,0.2,0.8,0.4
L156.9,248z"/>
<path class="st42" d="M159.2,247.3h-1v-1h1V247.3z M159.2,251.6h-1v-1h1V251.6z"/>
<path class="st42" d="M163.5,251.6c0-0.1-0.1-0.3-0.1-0.4s0-0.2,0-0.3c-0.2,0.2-0.4,0.4-0.7,0.6c-0.3,0.2-0.6,0.2-0.9,0.2
c-0.5,0-1-0.1-1.3-0.4s-0.4-0.6-0.4-1.1c0-0.5,0.2-0.9,0.6-1.2c0.4-0.3,1-0.4,1.7-0.4h1V248c0-0.3-0.1-0.6-0.3-0.7
s-0.5-0.3-0.8-0.3c-0.2,0-0.5,0-0.6,0.1c-0.2,0.1-0.3,0.1-0.4,0.3l-0.1,0.6h-0.7v-1c0.2-0.2,0.5-0.3,0.9-0.5s0.7-0.2,1.1-0.2
c0.6,0,1.1,0.2,1.5,0.5s0.6,0.7,0.6,1.3v2.5c0,0.1,0,0.1,0,0.2c0,0.1,0,0.1,0,0.2l0.4,0.1v0.6H163.5z M161.9,250.9
c0.3,0,0.6-0.1,0.9-0.2s0.5-0.3,0.6-0.6v-0.9h-1c-0.4,0-0.7,0.1-0.9,0.3c-0.2,0.2-0.3,0.4-0.3,0.7c0,0.2,0.1,0.4,0.2,0.5
S161.6,250.9,161.9,250.9z"/>
<path class="st42" d="M165.4,253l0.8-0.1v-5.8l-0.8-0.1v-0.6h1.6l0.1,0.6c0.2-0.2,0.4-0.4,0.6-0.6c0.3-0.1,0.5-0.2,0.9-0.2
c0.7,0,1.2,0.3,1.5,0.8c0.4,0.5,0.5,1.2,0.5,2.1v0.1c0,0.8-0.2,1.4-0.5,1.8s-0.9,0.7-1.5,0.7c-0.3,0-0.6-0.1-0.9-0.2
c-0.2-0.1-0.5-0.3-0.6-0.5v1.8l0.8,0.1v0.6h-2.6V253z M169.8,249.1c0-0.6-0.1-1.1-0.4-1.5s-0.6-0.6-1-0.6c-0.3,0-0.5,0.1-0.7,0.2
s-0.4,0.3-0.5,0.5v2.6c0.1,0.2,0.3,0.4,0.5,0.5c0.2,0.1,0.4,0.2,0.7,0.2c0.5,0,0.8-0.2,1-0.5s0.4-0.8,0.4-1.3V249.1z"/>
<path class="st42" d="M171.5,253l0.8-0.1v-5.8l-0.8-0.1v-0.6h1.6l0.1,0.6c0.2-0.2,0.4-0.4,0.6-0.6c0.3-0.1,0.5-0.2,0.9-0.2
c0.7,0,1.2,0.3,1.5,0.8c0.4,0.5,0.5,1.2,0.5,2.1v0.1c0,0.8-0.2,1.4-0.5,1.8s-0.9,0.7-1.5,0.7c-0.3,0-0.6-0.1-0.9-0.2
c-0.2-0.1-0.5-0.3-0.6-0.5v1.8l0.8,0.1v0.6h-2.6V253z M175.8,249.1c0-0.6-0.1-1.1-0.4-1.5s-0.6-0.6-1-0.6c-0.3,0-0.5,0.1-0.7,0.2
s-0.4,0.3-0.5,0.5v2.6c0.1,0.2,0.3,0.4,0.5,0.5c0.2,0.1,0.4,0.2,0.7,0.2c0.5,0,0.8-0.2,1-0.5s0.4-0.8,0.4-1.3V249.1z"/>
<path class="st42" d="M182,247.6h-4.1v-0.8h4.1V247.6z M182,249.6h-4.1v-0.8h4.1V249.6z"/>
<path class="st42" d="M183,251l0.5-0.1l2.5-6.4h0.8l2.4,6.4l0.5,0.1v0.6h-2V251l0.5-0.1l-0.5-1.3H185l-0.5,1.3l0.5,0.1v0.6h-2V251
z M185.3,248.8h2.3l-1.1-3.1h0L185.3,248.8z"/>
</g>
<polygon class="st53" points="162.4,376.4 120.9,376.4 115.5,367.5 120.9,358.6 162.4,358.6 "/>
<polygon class="st57" points="160.9,374.9 119.4,374.9 114,366 119.4,357.1 160.9,357.1 "/>
<g>
<path class="st42" d="M125,365.8h-0.7l-0.2-0.6c-0.1-0.1-0.3-0.2-0.4-0.3c-0.2-0.1-0.4-0.1-0.6-0.1c-0.3,0-0.6,0.1-0.8,0.2
s-0.2,0.3-0.2,0.5c0,0.2,0.1,0.4,0.2,0.5s0.4,0.2,0.9,0.3c0.7,0.1,1.2,0.3,1.5,0.6c0.3,0.2,0.5,0.6,0.5,1c0,0.5-0.2,0.8-0.6,1.1
c-0.4,0.3-0.9,0.4-1.5,0.4c-0.4,0-0.8,0-1.1-0.1c-0.3-0.1-0.6-0.2-0.9-0.4l0-1.2h0.7l0.2,0.7c0.1,0.1,0.3,0.2,0.5,0.2
c0.2,0,0.4,0.1,0.6,0.1c0.3,0,0.6-0.1,0.8-0.2c0.2-0.1,0.3-0.3,0.3-0.5c0-0.2-0.1-0.4-0.2-0.5c-0.2-0.1-0.5-0.3-0.9-0.4
c-0.6-0.1-1.1-0.3-1.5-0.6s-0.5-0.6-0.5-1c0-0.4,0.2-0.8,0.5-1.1c0.4-0.3,0.8-0.5,1.4-0.5c0.4,0,0.8,0.1,1.1,0.2s0.6,0.2,0.8,0.4
L125,365.8z"/>
<path class="st42" d="M127.3,365.1h-1v-1h1V365.1z M127.3,369.4h-1v-1h1V369.4z"/>
<path class="st42" d="M131.5,369.4c0-0.1-0.1-0.3-0.1-0.4s0-0.2,0-0.3c-0.2,0.2-0.4,0.4-0.7,0.6c-0.3,0.2-0.6,0.2-0.9,0.2
c-0.5,0-1-0.1-1.3-0.4c-0.3-0.3-0.4-0.6-0.4-1.1c0-0.5,0.2-0.9,0.6-1.2c0.4-0.3,1-0.4,1.7-0.4h1v-0.6c0-0.3-0.1-0.6-0.3-0.7
c-0.2-0.2-0.5-0.3-0.8-0.3c-0.2,0-0.5,0-0.6,0.1c-0.2,0.1-0.3,0.1-0.4,0.3l-0.1,0.6h-0.7v-1c0.2-0.2,0.5-0.3,0.9-0.5
c0.3-0.1,0.7-0.2,1.1-0.2c0.6,0,1.1,0.2,1.5,0.5s0.6,0.7,0.6,1.3v2.5c0,0.1,0,0.1,0,0.2c0,0.1,0,0.1,0,0.2l0.4,0.1v0.6H131.5z
M130,368.7c0.3,0,0.6-0.1,0.9-0.2s0.5-0.3,0.6-0.6V367h-1c-0.4,0-0.7,0.1-0.9,0.3c-0.2,0.2-0.3,0.4-0.3,0.7
c0,0.2,0.1,0.4,0.2,0.5C129.5,368.6,129.7,368.7,130,368.7z"/>
<path class="st42" d="M133.5,370.8l0.8-0.1v-5.8l-0.8-0.1v-0.6h1.6l0.1,0.6c0.2-0.2,0.4-0.4,0.6-0.6c0.3-0.1,0.5-0.2,0.9-0.2
c0.7,0,1.2,0.3,1.5,0.8c0.4,0.5,0.5,1.2,0.5,2.1v0.1c0,0.8-0.2,1.4-0.5,1.8c-0.4,0.5-0.9,0.7-1.5,0.7c-0.3,0-0.6-0.1-0.9-0.2
c-0.2-0.1-0.5-0.3-0.6-0.5v1.8l0.8,0.1v0.6h-2.6V370.8z M137.8,366.9c0-0.6-0.1-1.1-0.4-1.5s-0.6-0.6-1-0.6
c-0.3,0-0.5,0.1-0.7,0.2s-0.4,0.3-0.5,0.5v2.6c0.1,0.2,0.3,0.4,0.5,0.5c0.2,0.1,0.4,0.2,0.7,0.2c0.5,0,0.8-0.2,1-0.5
s0.4-0.8,0.4-1.3V366.9z"/>
<path class="st42" d="M139.5,370.8l0.8-0.1v-5.8l-0.8-0.1v-0.6h1.6l0.1,0.6c0.2-0.2,0.4-0.4,0.6-0.6c0.3-0.1,0.5-0.2,0.9-0.2
c0.7,0,1.2,0.3,1.5,0.8c0.4,0.5,0.5,1.2,0.5,2.1v0.1c0,0.8-0.2,1.4-0.5,1.8c-0.4,0.5-0.9,0.7-1.5,0.7c-0.3,0-0.6-0.1-0.9-0.2
c-0.2-0.1-0.5-0.3-0.6-0.5v1.8l0.8,0.1v0.6h-2.6V370.8z M143.9,366.9c0-0.6-0.1-1.1-0.4-1.5s-0.6-0.6-1-0.6
c-0.3,0-0.5,0.1-0.7,0.2s-0.4,0.3-0.5,0.5v2.6c0.1,0.2,0.3,0.4,0.5,0.5c0.2,0.1,0.4,0.2,0.7,0.2c0.5,0,0.8-0.2,1-0.5
s0.4-0.8,0.4-1.3V366.9z"/>
<path class="st42" d="M150.1,365.4H146v-0.8h4.1V365.4z M150.1,367.4H146v-0.8h4.1V367.4z"/>
<path class="st42" d="M151,368.8l0.5-0.1l2.5-6.4h0.8l2.4,6.4l0.5,0.1v0.6h-2v-0.6l0.5-0.1l-0.5-1.3H153l-0.5,1.3l0.5,0.1v0.6h-2
V368.8z M153.3,366.6h2.3l-1.1-3.1h0L153.3,366.6z"/>
</g>
<polygon class="st53" points="304.3,157.7 262.8,157.7 257.4,148.7 262.8,139.8 304.3,139.8 "/>
<g>
<polygon class="st6" points="302.8,156.2 261.3,156.2 255.9,147.2 261.3,138.3 302.8,138.3 "/>
<g>
<polyline class="st18" points="302.8,155 302.8,156.2 301.6,156.2 "/>
<line class="st58" x1="299.9" y1="156.2" x2="263.3" y2="156.2"/>
<polyline class="st18" points="262.5,156.2 261.3,156.2 260.7,155.1 "/>
<line class="st59" x1="260" y1="154" x2="256.9" y2="148.8"/>
<polyline class="st18" points="256.5,148.3 255.9,147.2 256.5,146.2 "/>
<line class="st59" x1="257.2" y1="145.1" x2="260.3" y2="139.9"/>
<polyline class="st18" points="260.7,139.3 261.3,138.3 262.5,138.3 "/>
<line class="st58" x1="264.2" y1="138.3" x2="300.7" y2="138.3"/>
<polyline class="st18" points="301.6,138.3 302.8,138.3 302.8,139.5 "/>
<line class="st60" x1="302.8" y1="141.3" x2="302.8" y2="154"/>
</g>
</g>
<g>
<path class="st42" d="M266.9,147h-0.7l-0.2-0.6c-0.1-0.1-0.3-0.2-0.4-0.3c-0.2-0.1-0.4-0.1-0.6-0.1c-0.3,0-0.6,0.1-0.8,0.2
s-0.2,0.3-0.2,0.5c0,0.2,0.1,0.4,0.2,0.5s0.4,0.2,0.9,0.3c0.7,0.1,1.2,0.3,1.5,0.6s0.5,0.6,0.5,1c0,0.5-0.2,0.8-0.6,1.1
c-0.4,0.3-0.9,0.4-1.5,0.4c-0.4,0-0.8,0-1.1-0.1s-0.6-0.2-0.9-0.4l0-1.2h0.7l0.2,0.7c0.1,0.1,0.3,0.2,0.5,0.2
c0.2,0,0.4,0.1,0.6,0.1c0.3,0,0.6-0.1,0.8-0.2c0.2-0.1,0.3-0.3,0.3-0.5c0-0.2-0.1-0.4-0.2-0.5c-0.2-0.1-0.5-0.3-0.9-0.4
c-0.6-0.1-1.1-0.3-1.5-0.6s-0.5-0.6-0.5-1c0-0.4,0.2-0.8,0.5-1.1c0.4-0.3,0.8-0.5,1.4-0.5c0.4,0,0.8,0.1,1.1,0.2s0.6,0.2,0.8,0.4
L266.9,147z"/>
<path class="st42" d="M269.2,146.3h-1v-1h1V146.3z M269.2,150.6h-1v-1h1V150.6z"/>
<path class="st42" d="M273.5,150.6c0-0.1-0.1-0.3-0.1-0.4s0-0.2,0-0.3c-0.2,0.2-0.4,0.4-0.7,0.6c-0.3,0.2-0.6,0.2-0.9,0.2
c-0.5,0-1-0.1-1.3-0.4s-0.4-0.6-0.4-1.1c0-0.5,0.2-0.9,0.6-1.2c0.4-0.3,1-0.4,1.7-0.4h1V147c0-0.3-0.1-0.6-0.3-0.7
s-0.5-0.3-0.8-0.3c-0.2,0-0.5,0-0.6,0.1c-0.2,0.1-0.3,0.1-0.4,0.3l-0.1,0.6h-0.7v-1c0.2-0.2,0.5-0.3,0.9-0.5s0.7-0.2,1.1-0.2
c0.6,0,1.1,0.2,1.5,0.5s0.6,0.7,0.6,1.3v2.5c0,0.1,0,0.1,0,0.2c0,0.1,0,0.1,0,0.2l0.4,0.1v0.6H273.5z M271.9,149.9
c0.3,0,0.6-0.1,0.9-0.2s0.5-0.3,0.6-0.6v-0.9h-1c-0.4,0-0.7,0.1-0.9,0.3c-0.2,0.2-0.3,0.4-0.3,0.7c0,0.2,0.1,0.4,0.2,0.5
S271.6,149.9,271.9,149.9z"/>
<path class="st42" d="M275.4,152l0.8-0.1v-5.8l-0.8-0.1v-0.6h1.6l0.1,0.6c0.2-0.2,0.4-0.4,0.6-0.6c0.3-0.1,0.5-0.2,0.9-0.2
c0.7,0,1.2,0.3,1.5,0.8c0.4,0.5,0.5,1.2,0.5,2.1v0.1c0,0.8-0.2,1.4-0.5,1.8s-0.9,0.7-1.5,0.7c-0.3,0-0.6-0.1-0.9-0.2
c-0.2-0.1-0.5-0.3-0.6-0.5v1.8l0.8,0.1v0.6h-2.6V152z M279.7,148.1c0-0.6-0.1-1.1-0.4-1.5s-0.6-0.6-1-0.6c-0.3,0-0.5,0.1-0.7,0.2
s-0.4,0.3-0.5,0.5v2.6c0.1,0.2,0.3,0.4,0.5,0.5c0.2,0.1,0.4,0.2,0.7,0.2c0.5,0,0.8-0.2,1-0.5s0.4-0.8,0.4-1.3V148.1z"/>
<path class="st42" d="M281.5,152l0.8-0.1v-5.8l-0.8-0.1v-0.6h1.6l0.1,0.6c0.2-0.2,0.4-0.4,0.6-0.6c0.3-0.1,0.5-0.2,0.9-0.2
c0.7,0,1.2,0.3,1.5,0.8c0.4,0.5,0.5,1.2,0.5,2.1v0.1c0,0.8-0.2,1.4-0.5,1.8s-0.9,0.7-1.5,0.7c-0.3,0-0.6-0.1-0.9-0.2
c-0.2-0.1-0.5-0.3-0.6-0.5v1.8l0.8,0.1v0.6h-2.6V152z M285.8,148.1c0-0.6-0.1-1.1-0.4-1.5s-0.6-0.6-1-0.6c-0.3,0-0.5,0.1-0.7,0.2
s-0.4,0.3-0.5,0.5v2.6c0.1,0.2,0.3,0.4,0.5,0.5c0.2,0.1,0.4,0.2,0.7,0.2c0.5,0,0.8-0.2,1-0.5s0.4-0.8,0.4-1.3V148.1z"/>
<path class="st42" d="M292,146.6h-4.1v-0.8h4.1V146.6z M292,148.6h-4.1v-0.8h4.1V148.6z"/>
<path class="st42" d="M296.2,143.5c0.7,0,1.3,0.2,1.7,0.5c0.4,0.3,0.6,0.8,0.6,1.4c0,0.3-0.1,0.6-0.3,0.8
c-0.2,0.2-0.5,0.4-0.8,0.6c0.4,0.1,0.8,0.3,1,0.6s0.4,0.7,0.4,1.1c0,0.7-0.2,1.1-0.6,1.5s-1,0.5-1.7,0.5H293V150l0.8-0.1v-5.6
l-0.8-0.1v-0.6h0.8H296.2z M294.8,146.5h1.6c0.3,0,0.6-0.1,0.8-0.3c0.2-0.2,0.3-0.5,0.3-0.8c0-0.4-0.1-0.7-0.4-0.9s-0.6-0.3-1-0.3
h-1.4V146.5z M294.8,147.3v2.6h1.7c0.4,0,0.8-0.1,1-0.3c0.2-0.2,0.4-0.5,0.4-0.9c0-0.4-0.1-0.7-0.3-1c-0.2-0.2-0.5-0.4-0.9-0.4
H294.8z"/>
</g>
</g>
<g id="description">
<g>
<path class="st42" d="M260.8,256.6v-0.7l1-0.2V249l-1-0.2v-0.7h1h1.2h1v0.7l-1,0.2v6.7h3l0.1-1h1v1.9H260.8z"/>
<path class="st42" d="M272.1,256.6c0-0.2-0.1-0.3-0.1-0.5s0-0.3,0-0.4c-0.2,0.3-0.5,0.5-0.8,0.7s-0.7,0.3-1.1,0.3
c-0.7,0-1.2-0.2-1.5-0.5s-0.5-0.8-0.5-1.4c0-0.6,0.2-1.1,0.7-1.4s1.2-0.5,2-0.5h1.2v-0.7c0-0.4-0.1-0.7-0.4-0.9s-0.6-0.3-1-0.3
c-0.3,0-0.5,0-0.8,0.1s-0.4,0.2-0.5,0.3l-0.1,0.7h-0.9v-1.2c0.3-0.2,0.6-0.4,1-0.6s0.9-0.2,1.3-0.2c0.7,0,1.3,0.2,1.7,0.6
s0.7,0.9,0.7,1.6v3.1c0,0.1,0,0.2,0,0.2s0,0.2,0,0.2l0.5,0.1v0.7H272.1z M270.3,255.8c0.4,0,0.7-0.1,1-0.3s0.5-0.4,0.7-0.7v-1
h-1.2c-0.5,0-0.8,0.1-1.1,0.3s-0.4,0.5-0.4,0.8c0,0.3,0.1,0.5,0.3,0.6S269.9,255.8,270.3,255.8z"/>
<path class="st42" d="M280.4,253.7c0,0.9-0.2,1.7-0.7,2.2s-1,0.8-1.8,0.8c-0.4,0-0.8-0.1-1.1-0.2s-0.6-0.4-0.8-0.7l-0.1,0.8h-1
v-8.2l-1-0.2v-0.7h2.1v3.6c0.2-0.3,0.4-0.5,0.7-0.6s0.6-0.2,1-0.2c0.8,0,1.4,0.3,1.8,0.9s0.7,1.4,0.7,2.5V253.7z M279.2,253.6
c0-0.7-0.1-1.3-0.4-1.8s-0.7-0.7-1.2-0.7c-0.4,0-0.7,0.1-0.9,0.3s-0.4,0.4-0.6,0.7v2.8c0.1,0.3,0.3,0.5,0.6,0.7s0.5,0.3,0.9,0.3
c0.5,0,0.9-0.2,1.2-0.6s0.4-0.9,0.4-1.5V253.6z"/>
<path class="st42" d="M284.4,256.7c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S285,256.7,284.4,256.7z M284.3,251.1c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S284.7,251.1,284.3,251.1z"/>
<path class="st42" d="M287.8,248.2v-0.7h2.1v8.2l1,0.2v0.7h-3.1v-0.7l1-0.2v-7.3L287.8,248.2z"/>
<path class="st42" d="M300.8,250.6h-0.9l-0.2-1.2c-0.2-0.1-0.4-0.3-0.7-0.4s-0.6-0.1-1-0.1c-0.6,0-1.1,0.1-1.4,0.4s-0.5,0.6-0.5,1
c0,0.4,0.2,0.7,0.5,0.9s0.9,0.5,1.6,0.7c0.9,0.2,1.6,0.6,2,1s0.7,1,0.7,1.6c0,0.7-0.3,1.2-0.8,1.7s-1.3,0.6-2.2,0.6
c-0.7,0-1.2-0.1-1.7-0.3s-0.9-0.5-1.2-0.8V254h0.9l0.2,1.2c0.2,0.2,0.5,0.3,0.8,0.5s0.7,0.2,1.1,0.2c0.6,0,1-0.1,1.4-0.4
s0.5-0.6,0.5-1c0-0.4-0.1-0.7-0.4-1s-0.8-0.5-1.6-0.7c-0.9-0.2-1.6-0.5-2.1-0.9s-0.8-0.9-0.8-1.6c0-0.7,0.3-1.2,0.8-1.7
s1.3-0.7,2.2-0.7c0.6,0,1.1,0.1,1.6,0.3s0.9,0.5,1.2,0.7V250.6z"/>
<path class="st42" d="M305,256.7c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S305.5,256.7,305,256.7z M304.8,251.1c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S305.3,251.1,304.8,251.1z"/>
<path class="st42" d="M308.4,248.2v-0.7h2.1v8.2l1,0.2v0.7h-3.1v-0.7l1-0.2v-7.3L308.4,248.2z"/>
<path class="st42" d="M315.2,256.7c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S315.7,256.7,315.2,256.7z M315,251.1c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S315.5,251.1,315,251.1z"/>
<path class="st42" d="M321.6,255.8c0.4,0,0.7-0.1,1-0.4s0.4-0.5,0.4-0.9h1l0,0c0,0.5-0.2,1-0.7,1.5s-1.1,0.6-1.8,0.6
c-0.9,0-1.6-0.3-2.1-0.9s-0.7-1.4-0.7-2.3v-0.2c0-0.9,0.2-1.7,0.7-2.3s1.2-0.9,2.1-0.9c0.5,0,1,0.1,1.4,0.3s0.7,0.4,1,0.7l0.1,1.4
h-0.9l-0.3-1c-0.1-0.1-0.3-0.2-0.5-0.3s-0.5-0.1-0.7-0.1c-0.6,0-1,0.2-1.3,0.7s-0.4,1-0.4,1.6v0.2c0,0.6,0.1,1.2,0.4,1.6
S321,255.8,321.6,255.8z"/>
<path class="st42" d="M327.2,248.7v1.5h1.2v0.9h-1.2v3.8c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2c0.1,0,0.2,0,0.3,0s0.2,0,0.3-0.1
l0.2,0.8c-0.1,0.1-0.3,0.1-0.5,0.2s-0.4,0.1-0.6,0.1c-0.5,0-0.8-0.1-1.1-0.4s-0.4-0.7-0.4-1.3v-3.8h-1v-0.9h1v-1.5H327.2z"/>
<path class="st42" d="M329.5,253.4c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,2.1-0.9c0.9,0,1.6,0.3,2.1,0.9s0.8,1.4,0.8,2.3v0.1
c0,0.9-0.3,1.7-0.8,2.3s-1.2,0.9-2.1,0.9c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3V253.4z M330.6,253.5c0,0.7,0.1,1.2,0.4,1.7
s0.7,0.7,1.3,0.7c0.5,0,1-0.2,1.2-0.7s0.4-1,0.4-1.7v-0.1c0-0.7-0.1-1.2-0.4-1.7s-0.7-0.7-1.3-0.7s-1,0.2-1.3,0.7s-0.4,1-0.4,1.7
V253.5z"/>
<path class="st42" d="M336.2,251v-0.7h2l0.1,0.9c0.2-0.3,0.4-0.6,0.7-0.8s0.6-0.3,0.9-0.3c0.1,0,0.2,0,0.3,0s0.2,0,0.2,0l-0.2,1.1
l-0.7,0c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.3-0.5,0.6v3.6l1,0.2v0.7h-3.1v-0.7l1-0.2v-4.5L336.2,251z"/>
</g>
<line class="st63" x1="258.9" y1="254.2" x2="189.5" y2="254.2"/>
<g>
<path class="st42" d="M309.7,105.4v-0.7l1-0.2v-6.7l-1-0.2v-0.7h1h1.2h1v0.7l-1,0.2v6.7h3l0.1-1h1v1.9H309.7z"/>
<path class="st42" d="M321,105.4c0-0.2-0.1-0.3-0.1-0.5s0-0.3,0-0.4c-0.2,0.3-0.5,0.5-0.8,0.7s-0.7,0.3-1.1,0.3
c-0.7,0-1.2-0.2-1.5-0.5s-0.5-0.8-0.5-1.4c0-0.6,0.2-1.1,0.7-1.4s1.2-0.5,2-0.5h1.2V101c0-0.4-0.1-0.7-0.4-0.9s-0.6-0.3-1-0.3
c-0.3,0-0.5,0-0.8,0.1s-0.4,0.2-0.5,0.3l-0.1,0.7h-0.9v-1.2c0.3-0.2,0.6-0.4,1-0.6s0.9-0.2,1.3-0.2c0.7,0,1.3,0.2,1.7,0.6
s0.7,0.9,0.7,1.6v3.1c0,0.1,0,0.2,0,0.2s0,0.2,0,0.2l0.5,0.1v0.7H321z M319.2,104.5c0.4,0,0.7-0.1,1-0.3s0.5-0.4,0.7-0.7v-1h-1.2
c-0.5,0-0.8,0.1-1.1,0.3s-0.4,0.5-0.4,0.8c0,0.3,0.1,0.5,0.3,0.6S318.8,104.5,319.2,104.5z"/>
<path class="st42" d="M329.3,102.4c0,0.9-0.2,1.7-0.7,2.2s-1,0.8-1.8,0.8c-0.4,0-0.8-0.1-1.1-0.2s-0.6-0.4-0.8-0.7l-0.1,0.8h-1
v-8.2l-1-0.2v-0.7h2.1v3.6c0.2-0.3,0.4-0.5,0.7-0.6s0.6-0.2,1-0.2c0.8,0,1.4,0.3,1.8,0.9s0.7,1.4,0.7,2.5V102.4z M328.1,102.3
c0-0.7-0.1-1.3-0.4-1.8s-0.7-0.7-1.2-0.7c-0.4,0-0.7,0.1-0.9,0.3s-0.4,0.4-0.6,0.7v2.8c0.1,0.3,0.3,0.5,0.6,0.7s0.5,0.3,0.9,0.3
c0.5,0,0.9-0.2,1.2-0.6s0.4-0.9,0.4-1.5V102.3z"/>
<path class="st42" d="M333.3,105.5c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3V102c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S333.9,105.5,333.3,105.5z M333.2,99.8c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S333.6,99.8,333.2,99.8z"/>
<path class="st42" d="M336.7,97v-0.7h2.1v8.2l1,0.2v0.7h-3.1v-0.7l1-0.2v-7.3L336.7,97z"/>
</g>
<line class="st62" x1="307.3" y1="103" x2="278" y2="103"/>
</g>
<g id="Layer_14">
</g>
</svg>

After

Width:  |  Height:  |  Size: 57 KiB

@@ -0,0 +1,304 @@
<?xml version="1.0"?>
<svg width="394" height="440.3999999999999" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<style type="text/css">.st0{fill:#FFFFFF;stroke:#326DE6;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st1{opacity:0.71;fill:#326CE6;}
.st2{opacity:0.45;fill:#FFFFFF;}
.st3{fill:#FFFFFF;stroke:#006DE9;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st4{fill:#006DE9;}
.st5{fill:#A0CAEA;}
.st6{fill:#FFFFFF;}
.st7{opacity:0.13;}
.st8{fill:url(#SVGID_1_);}
.st9{fill:url(#SVGID_2_);}
.st10{fill:#FFFFFF;stroke:#006DE9;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st11{fill:#FFFFFF;stroke:#006DE9;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st12{fill:#FFFFFF;stroke:#326DE6;stroke-width:3.2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st13{fill:#326DE6;}
.st14{fill:none;stroke:#326DE6;stroke-width:2.4;stroke-miterlimit:10;}
.st15{fill:#A0CAE9;}
.st16{fill:#FFFFFF;stroke:#326DE6;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st17{fill:#FFFFFF;stroke:#326DE6;stroke-width:1.6;stroke-miterlimit:10;}
.st18{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;}
.st19{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3749,1.5832;}
.st20{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4006,1.6004;}
.st21{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st22{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st23{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3975,1.5984;}
.st24{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.395,1.5966;}
.st25{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3963,1.5976;}
.st26{opacity:0.1;fill:#EEF406;}
.st27{opacity:2.000000e-02;fill:#EEF406;}
.st28{opacity:0.1;fill:#06F7C9;}
.st29{fill:none;stroke:#006DE9;stroke-width:0.8;stroke-miterlimit:10;}
.st30{opacity:0.1;fill:url(#SVGID_3_);}
.st31{opacity:0.1;fill:url(#SVGID_4_);}
.st32{opacity:0.1;fill:url(#SVGID_5_);}
.st33{opacity:0.1;fill:url(#SVGID_6_);}
.st34{fill:none;stroke:#326DE6;stroke-width:1.2;stroke-miterlimit:10;}
.st35{opacity:0.1;fill:url(#SVGID_7_);}
.st36{opacity:0.1;fill:url(#SVGID_8_);}
.st37{opacity:0.1;fill:url(#SVGID_9_);}
.st38{opacity:0.1;fill:url(#SVGID_10_);}
.st39{fill:none;stroke:#326DE6;stroke-width:2;stroke-miterlimit:10;}
.st40{opacity:0.4;fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st41{fill:none;stroke:#EEF406;stroke-width:2.4596;stroke-miterlimit:10;}
.st42{fill:#011F38;}
.st43{opacity:0.4;}
.st44{opacity:0.1;}
.st45{fill:#326DE6;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st46{fill:none;stroke:#FFFFFF;stroke-width:1.2;stroke-linecap:round;stroke-linejoin:round;}
.st47{fill:#06F7C9;stroke:#FFFFFF;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st48{fill:none;stroke:#011F38;stroke-width:1.2;stroke-linecap:round;stroke-linejoin:round;}
.st49{fill:#326DE6;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;}
.st50{fill:#06F7C9;stroke:#011F38;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st51{fill:#8115FF;stroke:#011F38;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st52{opacity:0.3;}
.st53{opacity:0.2;fill:#6D6E71;}
.st54{fill:#EEF406;}
.st55{fill:#06F7C9;}
.st56{fill:#FFFFFF;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st57{fill:#FFFFFF;stroke:#EEF406;stroke-width:1.6;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st58{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4938,1.6626;}
.st59{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.0084,1.3389;}
.st60{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.724,1.816;}
.st61{fill:#011F38;stroke:#414042;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st62{fill:none;stroke:#011F38;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st63{fill:none;stroke:#011F38;stroke-width:0.2813;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}</style>
<symbol id="node_high_level" viewBox="-81 -93 162 186.1">
<polygon class="st0" points="-80,-46 -80,46 0,92 80,46 80,-46 0,-92 " id="svg_1"/>
<g id="Isolation_Mode_3_"/>
</symbol>
<symbol id="node_x5F_empty" viewBox="-87.5 -100.6 175.1 201.1">
<use xlink:href="#node_high_level" width="162" height="186.1" id="XMLID_201_" x="-81" y="-93" transform="matrix(1.0808,0,0,1.0808,-0.00003292006,-0.00003749943) "/>
<g id="svg_2">
<polygon class="st1" points="76.8,-28.1 -14,-80.3 0,-88.3 76.7,-44.4 " id="svg_3"/>
<polygon class="st2" points="76.8,-28.1 32.1,-53.8 38.8,-66.1 76.7,-44.4 " id="svg_4"/>
</g>
</symbol>
<symbol id="node_x5F_new" viewBox="-87.6 -101 175.2 202">
<polygon class="st3" points="0,-100 -86.6,-50 -86.6,50 0,100 86.6,50 86.6,-50 " id="svg_5"/>
<polygon class="st4" points="-86.6,-20.2 -86.6,-50 0,-100 25.8,-85.1 " id="svg_6"/>
<polygon class="st5" points="-40.8,-70.7 -32.9,-57 15.7,-85.1 0,-94.3 " id="svg_7"/>
<text transform="matrix(0.866,-0.5,-0.5,-0.866,-33.9256,-70.7388) " class="st6" font-size="11.3632px" font-family="&#x27;RobotoSlab-Regular'" id="svg_8">Docker</text>
<text transform="matrix(0.866,-0.5,-0.5,-0.866,-76.0668,-46.4087) " class="st6" font-size="11.3632px" font-family="&#x27;RobotoSlab-Regular'" id="svg_9">Kubelt</text>
</symbol>
<g>
<title>Layer 1</title>
<g id="CLUSTER"/>
<g id="master">
<g id="master_x5F_level1"/>
<polygon class="st12" points="130.9,265.9 106.7,235.6 115.3,197.8 150.2,181 185.1,197.8 193.8,235.6 169.6,265.9 " id="svg_10"/>
</g>
<g id="Node">
<g id="Node_x5F_level3_x5F_1">
<g id="Isolation_Mode"/>
</g>
<g id="svg_11">
<polygon class="st17" points="214.87819382548332,179.8000030517578 156.7781877219677,146.1999969482422 156.7781877219677,79.0999984741211 214.87819382548332,45.599998474121094 272.9781083762646,79.0999984741211 272.9781083762646,146.1999969482422 " id="svg_12"/>
</g>
<g id="svg_13">
<polygon class="st17" points="87.67815110087395,179.6999969482422 29.67817398905754,146.10000610351562 29.67817398905754,79.0999984741211 87.67815110087395,45.5 145.7781877219677,79.0999984741211 145.7781877219677,146.10000610351562 " id="svg_14"/>
</g>
<g id="svg_15">
<polygon class="st17" points="87.67815110087395,401.3999938964844 29.67817398905754,367.8999938964844 29.67817398905754,300.79998779296875 87.67815110087395,267.20001220703125 145.7781877219677,300.79998779296875 145.7781877219677,367.8999938964844 " id="svg_16"/>
</g>
</g>
<g id="service">
<g id="svg_17">
<g id="svg_18">
<path class="st18" d="m86.47817,154.7c0.4,0 0.8,0 1.2,0l0,0l1.2,0" id="svg_19"/>
<line class="st19" x1="90.47817" y1="154.7" x2="236.17817" y2="154.7" id="svg_20"/>
<path class="st18" d="m236.97817,154.7l1.2,0l0,0c0.4,0 0.8,0 1.2,0" id="svg_21"/>
<path class="st20" d="m240.97817,154.7c24.1,-1.5 43.3,-21.5 43.3,-46c0,-25.4 -20.7,-46.1 -46.1,-46.1l-150.5,0c-25.4,0 -46.1,20.7 -46.1,46.1c0,24.8 19.6,45 44.1,46.1" id="svg_22"/>
</g>
</g>
<path class="st21" d="m87.07817,384.5c-25.4,0 -46.1,-20.7 -46.1,-46.1c0,-25.4 20.7,-46.1 46.1,-46.1s46.1,20.7 46.1,46.1c0,25.4 -20.7,46.1 -46.1,46.1z" id="svg_23"/>
</g>
<g id="pods">
<circle class="st26" cx="87.07817" cy="338.3" r="34.1" id="svg_24"/>
<circle class="st22" cx="87.07817" cy="338.3" r="34.1" id="svg_25"/>
<circle class="st28" cx="191.67817" cy="108.6" r="20.5" id="svg_26"/>
<circle class="st28" cx="238.17817" cy="108.6" r="20.5" id="svg_27"/>
<circle class="st28" cx="87.67817" cy="108.6" r="34.1" id="svg_28"/>
<circle class="st18" cx="191.67817" cy="108.6" r="20.5" id="svg_29"/>
<circle class="st18" cx="238.17817" cy="108.6" r="20.5" id="svg_30"/>
<circle class="st18" cx="87.67817" cy="108.6" r="34.1" id="svg_31"/>
</g>
<g id="IP">
<g id="svg_32">
<path class="st42" d="m39.27817,313.2l-0.4,0.9l-0.9,-0.2c-0.1,0.1 -0.3,0.2 -0.4,0.4c-0.1,0.2 -0.3,0.4 -0.4,0.6c-0.2,0.3 -0.2,0.6 -0.2,0.9s0.2,0.4 0.4,0.5c0.2,0.1 0.4,0.1 0.7,0c0.2,-0.1 0.5,-0.4 0.9,-0.8c0.5,-0.6 1,-1 1.5,-1.2s1,-0.2 1.5,0c0.5,0.2 0.8,0.7 1,1.2c0.1,0.6 0,1.2 -0.3,1.9c-0.2,0.5 -0.5,0.9 -0.9,1.2s-0.7,0.5 -1.1,0.7l-1.3,-0.6l0.5,-1l0.9,0.3c0.2,-0.1 0.3,-0.2 0.5,-0.4c0.2,-0.2 0.3,-0.4 0.4,-0.7c0.2,-0.3 0.2,-0.6 0.2,-0.9c-0.1,-0.2 -0.2,-0.4 -0.4,-0.5c-0.2,-0.1 -0.5,-0.1 -0.7,0c-0.2,0.1 -0.5,0.3 -0.8,0.7c-0.6,0.6 -1.1,1.1 -1.5,1.3c-0.5,0.2 -1,0.2 -1.5,0c-0.5,-0.2 -0.8,-0.6 -0.9,-1.2c-0.1,-0.6 0,-1.2 0.3,-1.8c0.2,-0.5 0.5,-0.9 0.8,-1.2c0.3,-0.3 0.7,-0.6 1,-0.7l1.1,0.6z" id="svg_33"/>
<path class="st42" d="m45.07817,312.7c-0.4,0.6 -0.9,1 -1.5,1.1c-0.6,0.1 -1.2,0 -1.9,-0.4l-0.2,-0.1c-0.6,-0.4 -1.1,-0.9 -1.3,-1.5c-0.2,-0.6 -0.1,-1.2 0.2,-1.8c0.4,-0.6 0.8,-0.9 1.4,-1c0.5,-0.1 1.1,0 1.7,0.4l0.6,0.4l-1.6,2.6l0,0c0.3,0.2 0.6,0.2 0.9,0.1c0.3,-0.1 0.5,-0.2 0.7,-0.5c0.2,-0.3 0.3,-0.5 0.3,-0.7s0.1,-0.4 0.1,-0.7l0.9,0.1c0,0.3 0,0.6 -0.1,0.9c0.2,0.4 0,0.7 -0.2,1.1zm-3.7,-2.1c-0.1,0.2 -0.2,0.4 -0.1,0.7s0.3,0.4 0.5,0.6l0,0l0.9,-1.4l-0.1,-0.1c-0.2,-0.2 -0.5,-0.2 -0.7,-0.2s-0.3,0.2 -0.5,0.4z" id="svg_34"/>
<path class="st42" d="m45.77817,309.9l0.3,-0.6l-2.5,-1.9l-0.5,0.5l-0.7,-0.5l1.2,-1.6l0.6,0.4c-0.1,-0.3 -0.2,-0.5 -0.2,-0.7s0.1,-0.5 0.2,-0.7c0,-0.1 0.1,-0.1 0.1,-0.2c0.1,-0.1 0.1,-0.1 0.2,-0.1l0.9,0.9l-0.3,0.4c-0.1,0.2 -0.2,0.3 -0.2,0.5c0,0.2 0,0.3 0.1,0.4l2,1.5l0.5,-0.4l0.7,0.5l-1.6,2.2l-0.8,-0.6z" id="svg_35"/>
<path class="st42" d="m46.97817,302.8l-0.3,0.4l2.1,1l0.4,0.3l0,0l-0.3,-0.4l-1.2,-2l-0.4,0.3l-0.6,-0.6l1.5,-1.7l0.6,0.6l-0.2,0.4l2.1,3.9l-0.9,1l-4.1,-1.7l-0.3,0.3l-0.6,-0.6l1.5,-1.7l0.7,0.5z" id="svg_36"/>
<path class="st42" d="m49.47817,297.4l-1,0.9l-0.7,-0.7l1,-0.9l0.7,0.7zm2.2,5.4l0.4,-0.6l-2.2,-2.3l-0.6,0.4l-0.6,-0.6l1.5,-1.4l2.8,3l0.6,-0.3l0.6,0.6l-2,1.8l-0.5,-0.6z" id="svg_37"/>
<path class="st42" d="m55.77817,299c0.2,-0.2 0.3,-0.3 0.3,-0.5c0,-0.2 0,-0.4 -0.2,-0.6l1,-0.8l0,0c0.3,0.4 0.5,0.8 0.4,1.4c-0.1,0.5 -0.4,1 -0.8,1.3c-0.6,0.5 -1.2,0.7 -1.8,0.5c-0.6,-0.1 -1.2,-0.5 -1.6,-1.1l-0.1,-0.1c-0.5,-0.6 -0.7,-1.2 -0.7,-1.8c0,-0.6 0.3,-1.2 0.9,-1.7c0.3,-0.3 0.6,-0.4 1,-0.5c0.3,-0.1 0.6,-0.1 1,-0.1l0.9,1l-0.9,0.7l-0.7,-0.5c-0.1,0 -0.2,0 -0.3,0s-0.2,0.1 -0.3,0.2c-0.3,0.2 -0.4,0.5 -0.4,0.8c0.1,0.3 0.2,0.7 0.5,1l0.1,0.1c0.3,0.4 0.6,0.6 0.9,0.7c0.2,0.3 0.5,0.3 0.8,0z" id="svg_38"/>
<path class="st42" d="m60.37817,297c-0.6,0.4 -1.2,0.5 -1.9,0.4c-0.6,-0.2 -1.1,-0.5 -1.5,-1.1l-0.1,-0.2c-0.4,-0.6 -0.6,-1.3 -0.5,-1.9s0.4,-1.1 1,-1.5c0.6,-0.4 1.1,-0.5 1.7,-0.4c0.5,0.1 1,0.5 1.4,1.1l0.4,0.6l-2.5,1.7l0,0c0.2,0.3 0.4,0.4 0.7,0.5c0.3,0.1 0.6,0 0.9,-0.2c0.3,-0.2 0.4,-0.3 0.6,-0.5c0.1,-0.2 0.3,-0.4 0.4,-0.6l0.8,0.5c-0.1,0.3 -0.2,0.5 -0.5,0.8c-0.3,0.3 -0.6,0.6 -0.9,0.8zm-2.4,-3.5c-0.2,0.1 -0.3,0.3 -0.3,0.6c0,0.2 0,0.5 0.2,0.8l0,0l1.4,-0.9l-0.1,-0.1c-0.2,-0.2 -0.3,-0.4 -0.6,-0.5c-0.2,-0.1 -0.4,0 -0.6,0.1z" id="svg_39"/>
<path class="st42" d="m63.97817,293.7l0.4,-0.3l-0.5,-6.3l1.3,-0.6l4.3,4.6l0.5,-0.1l0.3,0.8l-2.1,0.9l-0.3,-0.8l0.4,-0.3l-0.7,-0.7l-2,0.9l0.1,1l0.5,-0.1l0.3,0.8l-2.1,0.9l-0.4,-0.7zm1.4,-2.8l1.4,-0.6l-1.7,-1.9l0,0l0.3,2.5z" id="svg_40"/>
<path class="st42" d="m74.77817,289.7l1.1,-0.4l-1,-4.5l-1.1,0.2l-0.2,-0.8l2.4,-1l1.2,5.7l1.2,-0.1l0.2,0.8l-3.6,0.8l-0.2,-0.7z" id="svg_41"/>
<path class="st42" d="m83.37817,286.4c0.1,0.9 0,1.6 -0.4,2.1c-0.4,0.5 -0.9,0.8 -1.6,0.9c-0.7,0.1 -1.3,-0.1 -1.8,-0.5c-0.5,-0.4 -0.8,-1.1 -0.9,-2l-0.2,-1.5c-0.1,-0.9 0,-1.6 0.4,-2.1s0.9,-0.8 1.6,-0.9c0.7,-0.1 1.3,0.1 1.8,0.5c0.5,0.4 0.8,1.1 0.9,2l0.2,1.5zm-1.5,-1.5c-0.1,-0.5 -0.2,-0.9 -0.4,-1.2c-0.2,-0.2 -0.4,-0.3 -0.7,-0.3c-0.3,0 -0.5,0.2 -0.7,0.5s-0.2,0.7 -0.1,1.2l0.2,1.8c0.1,0.5 0.2,0.9 0.4,1.2s0.4,0.3 0.7,0.3c0.3,0 0.5,-0.2 0.7,-0.5c0.1,-0.3 0.2,-0.7 0.1,-1.2l-0.2,-1.8z" id="svg_42"/>
<path class="st42" d="m85.97817,289l-1.4,0.1l0,-1.2l1.4,-0.1l0,1.2z" id="svg_43"/>
<path class="st42" d="m86.67817,288.1l1.2,-0.1l0.1,-4.6l-1.2,0l0,-0.8l2.5,-0.4l-0.2,5.9l1.1,0.2l0,0.8l-3.7,-0.1l0.2,-0.9z" id="svg_44"/>
<path class="st42" d="m95.77817,287c-0.1,0.9 -0.4,1.6 -0.9,2c-0.5,0.4 -1.1,0.6 -1.8,0.5c-0.7,-0.1 -1.2,-0.4 -1.6,-0.9s-0.5,-1.2 -0.4,-2.1l0.2,-1.5c0.1,-0.9 0.4,-1.5 0.9,-2c0.5,-0.4 1.1,-0.6 1.8,-0.5c0.7,0.1 1.2,0.4 1.6,0.9c0.4,0.5 0.5,1.2 0.4,2.1l-0.2,1.5zm-1.1,-1.8c0.1,-0.5 0,-0.9 -0.1,-1.2c-0.1,-0.3 -0.3,-0.4 -0.7,-0.5c-0.3,0 -0.6,0.1 -0.7,0.3c-0.2,0.2 -0.3,0.6 -0.4,1.2l-0.2,1.8c-0.1,0.5 0,1 0.1,1.2c0.1,0.3 0.3,0.4 0.7,0.5c0.3,0 0.5,-0.1 0.7,-0.3c0.2,-0.2 0.3,-0.6 0.4,-1.2l0.2,-1.8z" id="svg_45"/>
<path class="st42" d="m97.67817,290.1l-1.3,-0.3l0.2,-1.2l1.3,0.3l-0.2,1.2z" id="svg_46"/>
<path class="st42" d="m100.57817,289.9c0.4,0.1 0.7,0 1,-0.2c0.3,-0.2 0.5,-0.6 0.7,-1.1l0,-0.1c-0.2,0.1 -0.4,0.2 -0.7,0.3c-0.2,0 -0.5,0 -0.7,0c-0.6,-0.2 -1,-0.5 -1.3,-1c-0.2,-0.5 -0.3,-1.1 0,-1.8c0.2,-0.7 0.6,-1.2 1.1,-1.5c0.5,-0.3 1.1,-0.4 1.8,-0.2c0.7,0.2 1.1,0.6 1.4,1.2c0.3,0.6 0.3,1.3 0.1,2.1l-0.4,1.4c-0.2,0.9 -0.7,1.4 -1.3,1.8c-0.6,0.3 -1.3,0.4 -2,0.2c-0.2,-0.1 -0.5,-0.2 -0.7,-0.3c-0.2,-0.1 -0.4,-0.2 -0.6,-0.4l0.4,-0.9c0.2,0.1 0.4,0.2 0.5,0.3c0.2,0 0.4,0.1 0.7,0.2zm0.8,-2.1c0.2,0.1 0.4,0.1 0.6,0c0.2,0 0.3,-0.1 0.5,-0.2l0.2,-0.7c0.1,-0.5 0.2,-0.9 0.1,-1.2c-0.1,-0.3 -0.3,-0.5 -0.6,-0.6c-0.3,-0.1 -0.5,0 -0.8,0.2c-0.2,0.2 -0.4,0.5 -0.5,0.9c-0.1,0.4 -0.1,0.7 0,1c0,0.4 0.2,0.6 0.5,0.6z" id="svg_47"/>
<path class="st42" d="m104.87817,292.3l-1.3,-0.5l0.4,-1.1l1.3,0.5l-0.4,1.1z" id="svg_48"/>
<path class="st42" d="m105.87817,291.8l1.1,0.3l1.9,-4.2l-1.1,-0.5l0.3,-0.7l2.5,0.6l-2.4,5.4l1,0.6l-0.3,0.7l-3.3,-1.5l0.3,-0.7z" id="svg_49"/>
</g>
<g id="svg_50">
<path class="st42" d="m116.07817,54.6l-1,0l-0.2,-0.9c-0.1,-0.1 -0.3,-0.1 -0.5,-0.2c-0.2,-0.1 -0.5,-0.1 -0.7,-0.1c-0.4,0 -0.7,0.1 -0.9,0.2c-0.2,0.2 -0.3,0.4 -0.3,0.6c0,0.2 0.1,0.4 0.3,0.6s0.6,0.3 1.1,0.5c0.8,0.2 1.3,0.5 1.7,0.8c0.4,0.3 0.6,0.8 0.6,1.4c0,0.6 -0.2,1 -0.7,1.4s-1.1,0.5 -1.8,0.5c-0.5,0 -1,-0.1 -1.5,-0.3s-0.8,-0.4 -1.1,-0.7l0,-1.4l1.1,0l0.1,1c0.1,0.1 0.3,0.2 0.6,0.3c0.2,0.1 0.5,0.1 0.8,0.1c0.4,0 0.7,-0.1 0.9,-0.2c0.2,-0.2 0.3,-0.4 0.3,-0.6c0,-0.3 -0.1,-0.5 -0.3,-0.6c-0.2,-0.2 -0.5,-0.3 -1,-0.5c-0.8,-0.2 -1.4,-0.5 -1.8,-0.8c-0.4,-0.3 -0.6,-0.8 -0.6,-1.3c0,-0.6 0.2,-1 0.7,-1.4s1.1,-0.5 1.8,-0.5c0.5,0 1,0.1 1.4,0.2s0.8,0.4 1.1,0.6l0,1.3l-0.1,0z" id="svg_51"/>
<path class="st42" d="m119.17817,59.4c-0.7,0 -1.3,-0.2 -1.8,-0.7s-0.7,-1.1 -0.7,-1.8l0,-0.2c0,-0.8 0.2,-1.4 0.6,-1.9c0.4,-0.5 1,-0.7 1.7,-0.7c0.7,0 1.2,0.2 1.6,0.6s0.6,1 0.6,1.7l0,0.7l-3,0l0,0c0,0.3 0.1,0.6 0.3,0.8c0.2,0.2 0.5,0.3 0.8,0.3c0.3,0 0.6,0 0.8,-0.1c0.2,-0.1 0.4,-0.2 0.7,-0.3l0.4,0.8c-0.2,0.2 -0.5,0.3 -0.8,0.4s-0.8,0.4 -1.2,0.4zm-0.1,-4.2c-0.3,0 -0.5,0.1 -0.6,0.3c-0.1,0.2 -0.2,0.4 -0.3,0.8l0,0l1.7,0l0,-0.1c0,-0.3 -0.1,-0.5 -0.2,-0.7c-0.1,-0.2 -0.3,-0.3 -0.6,-0.3z" id="svg_52"/>
<path class="st42" d="m121.97817,58.5l0.7,-0.1l0,-3.1l-0.7,-0.1l0,-0.8l2,0l0.1,0.7c0.1,-0.3 0.3,-0.5 0.5,-0.6s0.4,-0.2 0.7,-0.2c0.1,0 0.1,0 0.2,0c0.1,0 0.1,0 0.2,0l-0.1,1.2l-0.6,0c-0.2,0 -0.4,0 -0.5,0.1c-0.1,0.1 -0.2,0.2 -0.3,0.3l0,2.5l0.7,0.1l0,0.8l-2.7,0l0,-0.8l-0.2,0z" id="svg_53"/>
<path class="st42" d="m128.17817,55l-0.5,0.1l0.7,2.3l0.1,0.5l0,0l0.1,-0.5l0.7,-2.3l-0.5,-0.1l0,-0.8l2.3,0l0,0.8l-0.4,0.1l-1.5,4.2l-1.3,0l-1.5,-4.2l-0.4,-0.1l0,-0.8l2.3,0l0,0.8l-0.1,0z" id="svg_54"/>
<path class="st42" d="m131.47817,58.5l0.7,-0.1l0,-3.1l-0.7,-0.1l0,-0.8l2.1,0l0,4.1l0.7,0.1l0,0.8l-2.7,0l0,-0.9l-0.1,0zm2,-5.5l-1.4,0l0,-1l1.4,0l0,1z" id="svg_55"/>
<path class="st42" d="m136.97817,58.3c0.2,0 0.4,-0.1 0.6,-0.2c0.1,-0.1 0.2,-0.3 0.2,-0.6l1.2,0l0,0c0,0.5 -0.2,0.9 -0.6,1.3c-0.4,0.3 -0.9,0.5 -1.5,0.5c-0.8,0 -1.3,-0.2 -1.7,-0.7c-0.4,-0.5 -0.6,-1.1 -0.6,-1.8l0,-0.1c0,-0.7 0.2,-1.4 0.6,-1.8c0.4,-0.5 1,-0.7 1.8,-0.7c0.4,0 0.8,0.1 1.1,0.2c0.3,0.1 0.6,0.3 0.8,0.5l0,1.4l-1.1,0l-0.2,-0.8c-0.1,-0.1 -0.2,-0.1 -0.3,-0.1c-0.1,0 -0.2,-0.1 -0.3,-0.1c-0.4,0 -0.7,0.1 -0.8,0.4s-0.2,0.6 -0.2,1.1l0,0.1c0,0.5 0.1,0.8 0.2,1.1c0.2,0.2 0.4,0.3 0.8,0.3z" id="svg_56"/>
<path class="st42" d="m142.07817,59.4c-0.7,0 -1.3,-0.2 -1.8,-0.7s-0.7,-1.1 -0.7,-1.8l0,-0.2c0,-0.8 0.2,-1.4 0.6,-1.9c0.4,-0.5 1,-0.7 1.7,-0.7c0.7,0 1.2,0.2 1.6,0.6s0.6,1 0.6,1.7l0,0.7l-3,0l0,0c0,0.3 0.1,0.6 0.3,0.8c0.2,0.2 0.5,0.3 0.8,0.3c0.3,0 0.6,0 0.8,-0.1c0.2,-0.1 0.4,-0.2 0.7,-0.3l0.4,0.8c-0.2,0.2 -0.5,0.3 -0.8,0.4s-0.8,0.4 -1.2,0.4zm-0.1,-4.2c-0.3,0 -0.5,0.1 -0.6,0.3c-0.1,0.2 -0.2,0.4 -0.3,0.8l0,0l1.7,0l0,-0.1c0,-0.3 -0.1,-0.5 -0.2,-0.7c-0.1,-0.2 -0.4,-0.3 -0.6,-0.3z" id="svg_57"/>
<path class="st42" d="m150.07817,52.5c0.8,0 1.4,0.2 1.9,0.5s0.7,0.8 0.7,1.4c0,0.3 -0.1,0.6 -0.2,0.8c-0.2,0.2 -0.4,0.4 -0.7,0.6c0.4,0.1 0.7,0.3 0.9,0.6c0.2,0.3 0.3,0.6 0.3,1c0,0.7 -0.2,1.1 -0.6,1.5c-0.4,0.3 -1,0.5 -1.8,0.5l-3.5,0l0,-0.8l0.7,-0.1l0,-4.9l-0.7,-0.1l0,-0.8l0.7,0l2.3,0l0,-0.2zm-0.9,2.8l1,0c0.4,0 0.6,-0.1 0.8,-0.2c0.2,-0.2 0.3,-0.4 0.3,-0.7c0,-0.3 -0.1,-0.5 -0.3,-0.7s-0.5,-0.2 -0.9,-0.2l-0.9,0l0,1.8zm0,1l0,2l1.3,0c0.4,0 0.6,-0.1 0.8,-0.2s0.3,-0.4 0.3,-0.7c0,-0.3 -0.1,-0.6 -0.2,-0.8c-0.2,-0.2 -0.4,-0.3 -0.8,-0.3l-1.4,0z" id="svg_58"/>
<path class="st42" d="m155.87817,58.5l1.2,-0.1l0,-4.6l-1.2,0l0,-0.8l2.5,-0.5l0,5.9l1.2,0.1l0,0.8l-3.7,0l0,-0.8z" id="svg_59"/>
<path class="st42" d="m164.87817,56.6c0,0.9 -0.2,1.6 -0.6,2.1c-0.4,0.5 -1,0.7 -1.7,0.7c-0.7,0 -1.3,-0.2 -1.7,-0.7c-0.4,-0.5 -0.6,-1.2 -0.6,-2.1l0,-1.5c0,-0.9 0.2,-1.6 0.6,-2.1c0.4,-0.5 1,-0.7 1.7,-0.7c0.7,0 1.3,0.2 1.7,0.7c0.4,0.5 0.6,1.2 0.6,2.1l0,1.5zm-1.4,-1.6c0,-0.5 -0.1,-0.9 -0.2,-1.2c-0.2,-0.3 -0.4,-0.4 -0.7,-0.4c-0.3,0 -0.5,0.1 -0.7,0.4s-0.2,0.6 -0.2,1.2l0,1.8c0,0.5 0.1,0.9 0.2,1.2c0.2,0.2 0.4,0.4 0.7,0.4c0.3,0 0.5,-0.1 0.7,-0.4s0.2,-0.6 0.2,-1.2l0,-1.8z" id="svg_60"/>
<path class="st42" d="m167.17817,59.3l-1.4,0l0,-1.2l1.4,0l0,1.2z" id="svg_61"/>
<path class="st42" d="m167.97817,58.5l1.2,-0.1l0,-4.6l-1.2,0l0,-0.8l2.5,-0.5l0,5.9l1.2,0.1l0,0.8l-3.7,0l0,-0.8z" id="svg_62"/>
<path class="st42" d="m176.97817,56.6c0,0.9 -0.2,1.6 -0.6,2.1c-0.4,0.5 -1,0.7 -1.7,0.7c-0.7,0 -1.3,-0.2 -1.7,-0.7c-0.4,-0.5 -0.6,-1.2 -0.6,-2.1l0,-1.5c0,-0.9 0.2,-1.6 0.6,-2.1c0.4,-0.5 1,-0.7 1.7,-0.7c0.7,0 1.3,0.2 1.7,0.7c0.4,0.5 0.6,1.2 0.6,2.1l0,1.5zm-1.3,-1.6c0,-0.5 -0.1,-0.9 -0.2,-1.2c-0.2,-0.3 -0.4,-0.4 -0.7,-0.4c-0.3,0 -0.5,0.1 -0.7,0.4s-0.2,0.6 -0.2,1.2l0,1.8c0,0.5 0.1,0.9 0.2,1.2c0.2,0.2 0.4,0.4 0.7,0.4c0.3,0 0.5,-0.1 0.7,-0.4s0.2,-0.6 0.2,-1.2l0,-1.8z" id="svg_63"/>
<path class="st42" d="m179.37817,59.3l-1.3,0l0,-1.2l1.4,0l0,1.2l-0.1,0z" id="svg_64"/>
<path class="st42" d="m182.27817,58.3c0.4,0 0.7,-0.1 0.9,-0.4s0.3,-0.7 0.3,-1.3l0,-0.1c-0.2,0.2 -0.3,0.3 -0.5,0.4s-0.4,0.2 -0.7,0.2c-0.6,0 -1.1,-0.2 -1.5,-0.6c-0.4,-0.4 -0.5,-1 -0.5,-1.7c0,-0.7 0.2,-1.3 0.6,-1.7s1,-0.7 1.6,-0.7c0.7,0 1.3,0.2 1.7,0.7c0.4,0.5 0.7,1.2 0.7,2l0,1.5c0,0.9 -0.2,1.6 -0.7,2.1c-0.5,0.5 -1.1,0.7 -1.9,0.7c-0.2,0 -0.5,0 -0.7,-0.1c-0.3,0 -0.5,-0.1 -0.7,-0.2l0.2,-1c0.2,0.1 0.4,0.1 0.6,0.2c0.1,0 0.3,0 0.6,0zm0.2,-2.1c0.2,0 0.4,0 0.6,-0.1c0.2,-0.1 0.3,-0.2 0.4,-0.3l0,-0.8c0,-0.5 -0.1,-0.9 -0.3,-1.1c-0.2,-0.3 -0.4,-0.4 -0.7,-0.4c-0.3,0 -0.5,0.1 -0.7,0.4c-0.2,0.3 -0.3,0.6 -0.3,1c0,0.4 0.1,0.7 0.2,1c0.3,0.1 0.5,0.3 0.8,0.3z" id="svg_65"/>
<path class="st42" d="m187.17817,59.3l-1.4,0l0,-1.2l1.4,0l0,1.2z" id="svg_66"/>
<path class="st42" d="m187.97817,59.3l0,-0.9l2.2,-2.4c0.3,-0.4 0.5,-0.7 0.7,-0.9c0.1,-0.3 0.2,-0.5 0.2,-0.7c0,-0.3 -0.1,-0.5 -0.2,-0.7c-0.2,-0.2 -0.4,-0.3 -0.7,-0.3c-0.3,0 -0.6,0.1 -0.7,0.3c-0.2,0.2 -0.2,0.5 -0.2,0.9l-1.3,0l0,0c0,-0.6 0.2,-1.1 0.6,-1.6c0.4,-0.4 1,-0.6 1.7,-0.6c0.7,0 1.3,0.2 1.7,0.5s0.6,0.9 0.6,1.5c0,0.4 -0.1,0.8 -0.3,1.1c-0.2,0.3 -0.6,0.8 -1.1,1.4l-1.2,1.3l0,0l1.8,0l0.1,-0.7l1,0l0,1.7l-4.9,0l0,0.1z" id="svg_67"/>
</g>
<g id="svg_68">
<path class="st42" d="m172.67817,95.3l0.5,-0.8l-3.4,-2.6l-0.5,0.9l-0.2,-0.2l0.6,-1.3l3.8,2.9l0.6,-0.7l0.2,0.2l-1.4,1.8l-0.2,-0.2z" id="svg_69"/>
<path class="st42" d="m175.57817,89.6c0.5,0.5 0.7,0.9 0.8,1.4c0,0.5 -0.1,0.8 -0.5,1.2c-0.4,0.3 -0.8,0.5 -1.2,0.4s-0.9,-0.3 -1.4,-0.8l-0.8,-0.8c-0.5,-0.5 -0.7,-0.9 -0.8,-1.4c0,-0.5 0.1,-0.9 0.5,-1.2c0.4,-0.3 0.8,-0.5 1.2,-0.4s0.9,0.3 1.4,0.8l0.8,0.8zm-1.2,-0.6c-0.4,-0.4 -0.7,-0.6 -1.1,-0.7c-0.3,-0.1 -0.6,0 -0.9,0.3c-0.3,0.3 -0.4,0.6 -0.3,0.9s0.3,0.7 0.6,1.1l0.9,0.9c0.4,0.4 0.7,0.6 1.1,0.7c0.3,0.1 0.7,0 0.9,-0.3c0.3,-0.3 0.4,-0.6 0.3,-0.9c-0.1,-0.3 -0.3,-0.7 -0.6,-1.1l-0.9,-0.9z" id="svg_70"/>
<path class="st42" d="m177.97817,90.3l-0.4,0.3l-0.3,-0.5l0.4,-0.3l0.3,0.5z" id="svg_71"/>
<path class="st42" d="m178.57817,89.4l0.8,-0.5l-2.3,-3.7l-0.8,0.7l-0.2,-0.3l1.1,-1l2.5,4.1l0.8,-0.4l0.2,0.3l-1.9,1.2l-0.2,-0.4z" id="svg_72"/>
<path class="st42" d="m183.17817,85.2c0.3,0.6 0.3,1.1 0.2,1.6s-0.4,0.8 -0.9,1c-0.5,0.2 -0.9,0.2 -1.3,0s-0.7,-0.6 -1,-1.2l-0.5,-1c-0.3,-0.6 -0.3,-1.1 -0.2,-1.6c0.1,-0.4 0.4,-0.8 0.9,-1c0.5,-0.2 0.9,-0.2 1.3,0c0.4,0.2 0.7,0.6 1,1.2l0.5,1zm-0.8,-1c-0.2,-0.5 -0.5,-0.8 -0.8,-1c-0.3,-0.2 -0.6,-0.2 -1,0c-0.3,0.2 -0.6,0.4 -0.6,0.7c-0.1,0.3 0,0.7 0.2,1.2l0.5,1.2c0.2,0.5 0.5,0.8 0.8,1c0.3,0.2 0.6,0.2 1,0c0.3,-0.2 0.6,-0.4 0.6,-0.7c0.1,-0.3 0,-0.8 -0.2,-1.2l-0.5,-1.2z" id="svg_73"/>
<path class="st42" d="m185.27817,86.6l-0.5,0.1l-0.2,-0.6l0.5,-0.1l0.2,0.6z" id="svg_74"/>
<path class="st42" d="m186.07817,86.1l0.9,-0.2l-0.8,-4.2l-1,0.3l-0.1,-0.3l1.3,-0.6l0.9,4.7l0.9,-0.1l0.1,0.3l-2.2,0.4l0,-0.3z" id="svg_75"/>
<path class="st42" d="m191.97817,83.7c0,0.7 -0.1,1.2 -0.3,1.5c-0.3,0.4 -0.6,0.6 -1.1,0.6c-0.5,0 -0.9,-0.1 -1.2,-0.5c-0.3,-0.3 -0.5,-0.8 -0.5,-1.5l-0.1,-1.1c0,-0.7 0.1,-1.2 0.3,-1.5c0.3,-0.4 0.6,-0.6 1.1,-0.6c0.5,0 0.9,0.1 1.2,0.5s0.5,0.8 0.5,1.5l0.1,1.1zm-0.5,-1.2c0,-0.5 -0.1,-0.9 -0.4,-1.2c-0.2,-0.3 -0.5,-0.4 -0.9,-0.4c-0.4,0 -0.7,0.2 -0.8,0.5c-0.2,0.3 -0.3,0.7 -0.2,1.2l0.1,1.3c0,0.5 0.1,0.9 0.4,1.2s0.5,0.4 0.9,0.4c0.4,0 0.7,-0.2 0.8,-0.5c0.2,-0.3 0.3,-0.7 0.2,-1.2l-0.1,-1.3z" id="svg_76"/>
<path class="st42" d="m193.37817,85.8l-0.5,0l0,-0.6l0.5,0l0,0.6z" id="svg_77"/>
<path class="st42" d="m197.17817,84.7l0.8,0.1l-0.1,0.3l-0.8,-0.1l-0.2,0.9l0.6,0.2l-0.1,0.3l-1.5,-0.3l0.1,-0.3l0.6,0.1l0.2,-0.9l-2.4,-0.4l0,-0.2l3,-3.1l0.5,0.1l-0.7,3.3zm-2.2,-0.4l1.9,0.4l0.5,-2.9l0,0l-0.2,0.3l-2.2,2.2z" id="svg_78"/>
</g>
<g id="svg_79">
<path class="st42" d="m219.17817,95.3l0.5,-0.8l-3.4,-2.6l-0.5,0.9l-0.2,-0.2l0.6,-1.3l3.8,2.9l0.6,-0.7l0.2,0.2l-1.4,1.8l-0.2,-0.2z" id="svg_80"/>
<path class="st42" d="m222.07817,89.6c0.5,0.5 0.7,0.9 0.8,1.4c0,0.5 -0.1,0.8 -0.5,1.2c-0.4,0.3 -0.8,0.5 -1.2,0.4s-0.9,-0.3 -1.4,-0.8l-0.8,-0.8c-0.5,-0.5 -0.7,-0.9 -0.8,-1.4c0,-0.5 0.1,-0.9 0.5,-1.2c0.4,-0.3 0.8,-0.5 1.2,-0.4s0.9,0.3 1.4,0.8l0.8,0.8zm-1.2,-0.6c-0.4,-0.4 -0.7,-0.6 -1.1,-0.7c-0.3,-0.1 -0.6,0 -0.9,0.3c-0.3,0.3 -0.4,0.6 -0.3,0.9s0.3,0.7 0.6,1.1l0.9,0.9c0.4,0.4 0.7,0.6 1.1,0.7c0.3,0.1 0.7,0 0.9,-0.3c0.3,-0.3 0.4,-0.6 0.3,-0.9c-0.1,-0.3 -0.3,-0.7 -0.6,-1.1l-0.9,-0.9z" id="svg_81"/>
<path class="st42" d="m224.47817,90.3l-0.4,0.3l-0.3,-0.5l0.4,-0.3l0.3,0.5z" id="svg_82"/>
<path class="st42" d="m225.07817,89.4l0.8,-0.5l-2.3,-3.7l-0.8,0.7l-0.2,-0.3l1.1,-1l2.5,4.1l0.8,-0.4l0.2,0.3l-1.9,1.2l-0.2,-0.4z" id="svg_83"/>
<path class="st42" d="m229.67817,85.2c0.3,0.6 0.3,1.1 0.2,1.6s-0.4,0.8 -0.9,1c-0.5,0.2 -0.9,0.2 -1.3,0s-0.7,-0.6 -1,-1.2l-0.5,-1c-0.3,-0.6 -0.3,-1.1 -0.2,-1.6c0.1,-0.4 0.4,-0.8 0.9,-1c0.5,-0.2 0.9,-0.2 1.3,0c0.4,0.2 0.7,0.6 1,1.2l0.5,1zm-0.8,-1c-0.2,-0.5 -0.5,-0.8 -0.8,-1c-0.3,-0.2 -0.6,-0.2 -1,0c-0.3,0.2 -0.6,0.4 -0.6,0.7c-0.1,0.3 0,0.7 0.2,1.2l0.5,1.2c0.2,0.5 0.5,0.8 0.8,1c0.3,0.2 0.6,0.2 1,0c0.3,-0.2 0.6,-0.4 0.6,-0.7c0.1,-0.3 0,-0.8 -0.2,-1.2l-0.5,-1.2z" id="svg_84"/>
<path class="st42" d="m231.77817,86.6l-0.5,0.1l-0.2,-0.6l0.5,-0.1l0.2,0.6z" id="svg_85"/>
<path class="st42" d="m232.67817,86.1l0.9,-0.2l-0.8,-4.2l-1,0.3l-0.1,-0.3l1.3,-0.6l0.9,4.7l0.9,-0.1l0.1,0.3l-2.2,0.4l0,-0.3z" id="svg_86"/>
<path class="st42" d="m238.47817,83.7c0,0.7 -0.1,1.2 -0.3,1.5c-0.3,0.4 -0.6,0.6 -1.1,0.6c-0.5,0 -0.9,-0.1 -1.2,-0.5c-0.3,-0.3 -0.5,-0.8 -0.5,-1.5l-0.1,-1.1c0,-0.7 0.1,-1.2 0.3,-1.5c0.3,-0.4 0.6,-0.6 1.1,-0.6c0.5,0 0.9,0.1 1.2,0.5s0.5,0.8 0.5,1.5l0.1,1.1zm-0.5,-1.2c0,-0.5 -0.1,-0.9 -0.4,-1.2c-0.2,-0.3 -0.5,-0.4 -0.9,-0.4c-0.4,0 -0.7,0.2 -0.8,0.5c-0.2,0.3 -0.3,0.7 -0.2,1.2l0.1,1.3c0,0.5 0.1,0.9 0.4,1.2s0.5,0.4 0.9,0.4c0.4,0 0.7,-0.2 0.8,-0.5c0.2,-0.3 0.3,-0.7 0.2,-1.2l-0.1,-1.3z" id="svg_87"/>
<path class="st42" d="m239.87817,85.8l-0.5,0l0,-0.6l0.5,0l0,0.6z" id="svg_88"/>
<path class="st42" d="m242.17817,83.2l0.5,0.1c0.4,0.1 0.7,0 0.9,-0.1s0.4,-0.4 0.4,-0.7c0.1,-0.3 0,-0.6 -0.1,-0.8c-0.1,-0.2 -0.4,-0.4 -0.7,-0.4c-0.3,-0.1 -0.6,0 -0.8,0.1s-0.4,0.4 -0.4,0.7l-0.4,-0.1l0,0c0.1,-0.4 0.3,-0.7 0.6,-0.9c0.3,-0.2 0.7,-0.3 1.2,-0.2c0.4,0.1 0.8,0.3 1,0.6c0.2,0.3 0.3,0.7 0.2,1.1c0,0.2 -0.2,0.4 -0.3,0.6c-0.2,0.2 -0.4,0.3 -0.7,0.4c0.3,0.1 0.5,0.3 0.6,0.6c0.1,0.2 0.1,0.5 0.1,0.8c-0.1,0.4 -0.3,0.8 -0.6,1c-0.3,0.2 -0.7,0.3 -1.2,0.2c-0.4,-0.1 -0.8,-0.3 -1.1,-0.6c-0.3,-0.3 -0.4,-0.7 -0.3,-1.1l0,0l0.4,0.1c-0.1,0.3 0,0.6 0.2,0.8c0.2,0.2 0.5,0.4 0.8,0.5c0.4,0.1 0.7,0 0.9,-0.1c0.2,-0.1 0.4,-0.4 0.4,-0.7c0.1,-0.4 0,-0.6 -0.2,-0.8c-0.2,-0.2 -0.5,-0.3 -0.9,-0.4l-0.5,-0.1l0,-0.6z" id="svg_89"/>
</g>
<g id="svg_90">
<path class="st42" d="m54.27817,93.2l0.4,-0.8l-3.9,-1.9l-0.3,1l-0.3,-0.1l0.4,-1.4l4.3,2.1l0.5,-0.8l0.3,0.1l-1,2l-0.4,-0.2z" id="svg_91"/>
<path class="st42" d="m55.77817,87c0.6,0.3 0.9,0.7 1.1,1.2c0.2,0.4 0.1,0.9 -0.2,1.3c-0.3,0.4 -0.6,0.7 -1.1,0.7c-0.5,0.1 -1,-0.1 -1.5,-0.4l-1,-0.6c-0.6,-0.3 -0.9,-0.7 -1.1,-1.2c-0.2,-0.4 -0.1,-0.9 0.2,-1.3c0.3,-0.4 0.6,-0.7 1.1,-0.7c0.5,-0.1 1,0.1 1.5,0.4l1,0.6zm-1.2,-0.3c-0.4,-0.3 -0.8,-0.4 -1.2,-0.4c-0.3,0 -0.6,0.2 -0.8,0.5c-0.2,0.3 -0.2,0.6 -0.1,1c0.1,0.3 0.4,0.6 0.9,0.9l1.1,0.7c0.4,0.3 0.8,0.4 1.2,0.4c0.4,0 0.6,-0.2 0.8,-0.5c0.2,-0.3 0.2,-0.6 0.1,-1c-0.1,-0.3 -0.4,-0.6 -0.9,-0.9l-1.1,-0.7z" id="svg_92"/>
<path class="st42" d="m58.27817,87l-0.3,0.4l-0.4,-0.4l0.3,-0.4l0.4,0.4z" id="svg_93"/>
<path class="st42" d="m58.67817,86l0.5,-0.7l-3.3,-2.7l-0.5,0.9l-0.3,-0.3l0.7,-1.3l3.7,3l0.6,-0.7l0.2,0.2l-1.4,1.7l-0.2,-0.1z" id="svg_94"/>
<path class="st42" d="m61.57817,80.3c0.5,0.5 0.7,0.9 0.8,1.4c0.1,0.4 -0.1,0.9 -0.4,1.2c-0.3,0.4 -0.8,0.5 -1.2,0.5c-0.5,-0.1 -0.9,-0.3 -1.4,-0.8l-0.8,-0.8c-0.5,-0.5 -0.7,-0.9 -0.8,-1.4c-0.1,-0.5 0.1,-0.9 0.4,-1.2c0.4,-0.4 0.8,-0.5 1.2,-0.5c0.5,0.1 0.9,0.3 1.4,0.8l0.8,0.8zm-1.2,-0.5c-0.4,-0.4 -0.7,-0.6 -1.1,-0.6c-0.3,-0.1 -0.6,0.1 -0.9,0.3c-0.3,0.2 -0.4,0.5 -0.3,0.9c0.1,0.3 0.3,0.7 0.6,1.1l0.9,0.9c0.4,0.4 0.7,0.6 1.1,0.6c0.3,0.1 0.7,0 0.9,-0.3c0.3,-0.3 0.4,-0.6 0.3,-0.9c-0.1,-0.3 -0.3,-0.7 -0.6,-1.1l-0.9,-0.9z" id="svg_95"/>
<path class="st42" d="m63.97817,80.9l-0.4,0.3l-0.4,-0.4l0.4,-0.3l0.4,0.4z" id="svg_96"/>
<path class="st42" d="m64.57817,80l0.7,-0.6l-2.7,-3.4l-0.7,0.7l-0.2,-0.2l0.9,-1.1l2.9,3.8l0.8,-0.5l0.2,0.2l-1.8,1.4l-0.1,-0.3z" id="svg_97"/>
<path class="st42" d="m68.57817,75.1c0.4,0.6 0.5,1.1 0.5,1.5c0,0.5 -0.3,0.8 -0.7,1.1c-0.4,0.3 -0.8,0.3 -1.3,0.2c-0.4,-0.2 -0.8,-0.5 -1.2,-1.1l-0.6,-1c-0.4,-0.6 -0.5,-1.1 -0.5,-1.5s0.3,-0.8 0.7,-1.1c0.4,-0.3 0.8,-0.3 1.3,-0.2c0.4,0.2 0.8,0.5 1.2,1.1l0.6,1zm-1,-0.8c-0.3,-0.4 -0.6,-0.7 -0.9,-0.9c-0.3,-0.1 -0.6,-0.1 -1,0.1c-0.3,0.2 -0.5,0.5 -0.5,0.8c0,0.3 0.1,0.7 0.4,1.2l0.7,1.1c0.3,0.4 0.6,0.7 0.9,0.9c0.3,0.1 0.6,0.1 1,-0.1c0.3,-0.2 0.5,-0.5 0.5,-0.8c0,-0.3 -0.1,-0.7 -0.4,-1.2l-0.7,-1.1z" id="svg_98"/>
<path class="st42" d="m70.87817,76.2l-0.4,0.2l-0.3,-0.5l0.4,-0.2l0.3,0.5z" id="svg_99"/>
<path class="st42" d="m71.67817,75.7l-0.1,-0.3l0.8,-2.4c0.1,-0.4 0.2,-0.8 0.3,-1.1c0,-0.3 0,-0.5 -0.1,-0.7c-0.1,-0.3 -0.3,-0.5 -0.6,-0.6c-0.2,-0.1 -0.5,-0.1 -0.8,0c-0.4,0.2 -0.6,0.4 -0.7,0.7c-0.1,0.3 -0.1,0.6 0.1,0.9l-0.4,0.2l0,0c-0.2,-0.4 -0.2,-0.8 -0.1,-1.2c0.1,-0.4 0.4,-0.7 0.9,-0.9c0.4,-0.2 0.8,-0.2 1.1,-0.1s0.6,0.4 0.8,0.8c0.1,0.3 0.1,0.6 0.1,0.9c0,0.3 -0.1,0.7 -0.3,1.2l-0.7,2l0,0l2,-0.9l-0.3,-0.7l0.3,-0.1l0.4,1l-2.7,1.3z" id="svg_100"/>
</g>
<g id="svg_101">
<path class="st42" d="m53.57817,322.9l0.4,-0.8l-3.9,-1.9l-0.3,1l-0.3,-0.1l0.4,-1.4l4.3,2.1l0.5,-0.8l0.3,0.1l-1,2l-0.4,-0.2z" id="svg_102"/>
<path class="st42" d="m55.17817,316.7c0.6,0.3 0.9,0.7 1.1,1.2s0.1,0.9 -0.2,1.3c-0.3,0.4 -0.6,0.7 -1.1,0.7c-0.5,0.1 -1,-0.1 -1.5,-0.4l-1,-0.6c-0.6,-0.3 -0.9,-0.7 -1.1,-1.2c-0.2,-0.4 -0.1,-0.9 0.2,-1.3c0.3,-0.4 0.6,-0.7 1.1,-0.7c0.5,-0.1 1,0.1 1.5,0.4l1,0.6zm-1.3,-0.2c-0.4,-0.3 -0.8,-0.4 -1.2,-0.4c-0.3,0 -0.6,0.2 -0.8,0.5c-0.2,0.3 -0.2,0.6 -0.1,1c0.1,0.3 0.4,0.6 0.9,0.9l1.1,0.7c0.4,0.3 0.8,0.4 1.2,0.4c0.4,0 0.6,-0.2 0.8,-0.5c0.2,-0.3 0.2,-0.6 0.1,-1s-0.4,-0.6 -0.9,-0.9l-1.1,-0.7z" id="svg_103"/>
<path class="st42" d="m57.67817,316.7l-0.3,0.4l-0.5,-0.3l0.3,-0.4l0.5,0.3z" id="svg_104"/>
<path class="st42" d="m57.97817,315.7l0.5,-0.7l-3.3,-2.7l-0.5,0.9l-0.2,-0.2l0.7,-1.3l3.7,3l0.6,-0.7l0.2,0.2l-1.4,1.7l-0.3,-0.2z" id="svg_105"/>
<path class="st42" d="m60.87817,310.1c0.5,0.5 0.7,0.9 0.8,1.4c0.1,0.4 -0.1,0.9 -0.4,1.2c-0.3,0.4 -0.8,0.5 -1.2,0.5c-0.5,-0.1 -0.9,-0.3 -1.4,-0.8l-0.8,-0.8c-0.5,-0.5 -0.7,-0.9 -0.8,-1.4c-0.1,-0.5 0.1,-0.9 0.4,-1.2c0.4,-0.4 0.8,-0.5 1.2,-0.5c0.5,0.1 0.9,0.3 1.4,0.8l0.8,0.8zm-1.1,-0.6c-0.4,-0.4 -0.7,-0.6 -1.1,-0.6c-0.3,-0.1 -0.6,0 -0.9,0.3c-0.3,0.3 -0.4,0.6 -0.3,0.9c0.1,0.3 0.3,0.7 0.6,1.1l0.9,0.9c0.4,0.4 0.7,0.6 1.1,0.6c0.3,0.1 0.7,0 0.9,-0.3c0.3,-0.3 0.4,-0.6 0.3,-0.9s-0.3,-0.7 -0.6,-1.1l-0.9,-0.9z" id="svg_106"/>
<path class="st42" d="m63.37817,310.6l-0.4,0.3l-0.4,-0.4l0.4,-0.3l0.4,0.4z" id="svg_107"/>
<path class="st42" d="m63.87817,309.7l0.7,-0.6l-2.6,-3.4l-0.7,0.7l-0.2,-0.2l0.9,-1.1l2.9,3.8l0.8,-0.5l0.2,0.2l-1.8,1.4l-0.2,-0.3z" id="svg_108"/>
<path class="st42" d="m67.97817,304.9c0.4,0.6 0.5,1.1 0.5,1.5c0,0.5 -0.3,0.8 -0.7,1.1c-0.4,0.3 -0.8,0.3 -1.3,0.2s-0.8,-0.5 -1.2,-1.1l-0.6,-1c-0.4,-0.6 -0.5,-1.1 -0.5,-1.5c0,-0.5 0.3,-0.8 0.7,-1.1c0.4,-0.3 0.8,-0.3 1.3,-0.2c0.4,0.2 0.8,0.5 1.2,1.1l0.6,1zm-1,-0.8c-0.3,-0.4 -0.6,-0.7 -0.9,-0.9c-0.3,-0.1 -0.6,-0.1 -1,0.1c-0.3,0.2 -0.5,0.5 -0.5,0.8c0,0.3 0.1,0.7 0.4,1.2l0.7,1.1c0.3,0.4 0.6,0.7 0.9,0.9s0.6,0.1 1,-0.1c0.3,-0.2 0.5,-0.5 0.5,-0.8c0,-0.3 -0.1,-0.7 -0.4,-1.2l-0.7,-1.1z" id="svg_109"/>
<path class="st42" d="m70.27817,305.9l-0.4,0.2l-0.3,-0.5l0.4,-0.2l0.3,0.5z" id="svg_110"/>
<path class="st42" d="m70.97817,305.2l0.8,-0.4l-1.8,-3.9l-0.9,0.5l-0.1,-0.3l1.2,-0.9l2,4.4l0.9,-0.3l0.1,0.3l-2.1,0.9l-0.1,-0.3z" id="svg_111"/>
</g>
</g>
<g id="deployments">
<g id="svg_112">
<g id="svg_113">
<circle class="st45" cx="140.6" cy="241.8" r="14.1" id="svg_114"/>
<g id="svg_115">
<g id="svg_116">
<path class="st46" d="m145,233.5c3,1.6 5,4.7 5,8.3c0,5.2 -4.2,9.4 -9.4,9.4s-9.4,-4.2 -9.4,-9.4c0,-4.1 2.6,-7.6 6.3,-8.9" id="svg_117"/>
<g id="svg_118">
<polygon class="st6" points="146.4,236.4 145.4,233.7 148,232.6 146.5,231.9 143.8,233 144.8,235.6 " id="svg_119"/>
</g>
</g>
</g>
<g id="svg_120">
<path class="st6" d="m135.4,245.5l0.8,-0.1l3.3,-9.5l2.2,0l3.3,9.5l0.8,0.1l0,1.3l-3.7,0l0,-1.3l0.8,-0.1l-0.5,-1.5l-3.5,0l-0.5,1.5l0.8,0.1l0,1.3l-3.7,0l0,-1.3l-0.1,0zm4,-3.2l2.5,0l-1.2,-3.8l0,0l-1.3,3.8z" id="svg_121"/>
</g>
</g>
<g id="svg_122">
<circle class="st49" cx="159.9" cy="211.5" r="14.1" id="svg_123"/>
<g id="svg_124">
<g id="svg_125">
<path class="st46" d="m164.3,203.2c3,1.6 5,4.7 5,8.3c0,5.2 -4.2,9.4 -9.4,9.4s-9.4,-4.2 -9.4,-9.4c0,-4.1 2.6,-7.6 6.3,-8.9" id="svg_126"/>
<g id="svg_127">
<polygon class="st6" points="165.7,206.1 164.6,203.4 167.3,202.4 165.7,201.7 163,202.7 164.1,205.4 " id="svg_128"/>
</g>
</g>
</g>
<g id="svg_129">
<path class="st6" d="m160.1,205.8c1.3,0 2.3,0.2 3,0.7s1.1,1.2 1.1,2.2c0,0.5 -0.1,1 -0.4,1.3c-0.3,0.4 -0.7,0.7 -1.2,0.9c0.7,0.1 1.1,0.4 1.5,0.9c0.3,0.5 0.5,1 0.5,1.6c0,1 -0.3,1.8 -1,2.4c-0.7,0.5 -1.7,0.8 -2.9,0.8l-5.3,0l0,-1.3l1.2,-0.2l0,-7.8l-1.2,-0.2l0,-1.3l1.2,0l3.5,0zm-1.5,4.5l1.6,0c0.6,0 1,-0.1 1.3,-0.4c0.3,-0.2 0.5,-0.6 0.5,-1c0,-0.5 -0.2,-0.9 -0.5,-1.1c-0.3,-0.2 -0.8,-0.4 -1.4,-0.4l-1.5,0l0,2.9zm0,1.5l0,3.1l2,0c0.6,0 1,-0.1 1.3,-0.4c0.3,-0.3 0.5,-0.6 0.5,-1.1c0,-0.5 -0.1,-0.9 -0.4,-1.2c-0.3,-0.3 -0.7,-0.4 -1.2,-0.4l-2.2,0z" id="svg_130"/>
</g>
</g>
</g>
</g>
<g id="containers_x2F_volumes">
<g id="svg_131">
<polygon class="st51" points="75.87815567851067,101.80000305175781 87.67815110087395,94.9000015258789 99.57815262675285,101.80000305175781 87.67815110087395,108.5999984741211 " id="svg_132"/>
<polygon class="st51" points="75.87815567851067,115.4000015258789 75.87815567851067,101.80000305175781 87.67815110087395,108.5999984741211 87.67815110087395,122.30000305175781 " id="svg_133"/>
<polygon class="st51" points="87.67815110087395,122.30000305175781 87.67815110087395,108.5999984741211 99.57815262675285,101.80000305175781 99.57815262675285,115.4000015258789 " id="svg_134"/>
</g>
<g id="svg_135">
<polygon class="st51" points="75.27814957499504,331.5 87.07815262675285,324.6000061035156 98.97815415263176,331.5 87.07815262675285,338.29998779296875 " id="svg_136"/>
<polygon class="st51" points="75.27814957499504,345.20001220703125 75.27814957499504,331.5 87.07815262675285,338.29998779296875 87.07815262675285,352 " id="svg_137"/>
<polygon class="st51" points="87.07815262675285,352 87.07815262675285,338.29998779296875 98.97815415263176,331.5 98.97815415263176,345.20001220703125 " id="svg_138"/>
</g>
<g id="svg_139">
<polygon class="st51" points="179.7781877219677,101.69999694824219 191.67819687724113,94.9000015258789 203.47818467020988,101.69999694824219 191.67819687724113,108.5999984741211 " id="svg_140"/>
<polygon class="st51" points="179.7781877219677,115.4000015258789 179.7781877219677,101.69999694824219 191.67819687724113,108.5999984741211 191.67819687724113,122.30000305175781 " id="svg_141"/>
<polygon class="st51" points="191.67819687724113,122.30000305175781 191.67819687724113,108.5999984741211 203.47818467020988,101.69999694824219 203.47818467020988,115.4000015258789 " id="svg_142"/>
</g>
<g id="svg_143">
<polygon class="st51" points="226.2781877219677,101.69999694824219 238.17819687724113,94.9000015258789 249.97818467020988,101.69999694824219 238.17819687724113,108.5999984741211 " id="svg_144"/>
<polygon class="st51" points="226.2781877219677,115.4000015258789 226.2781877219677,101.69999694824219 238.17819687724113,108.5999984741211 238.17819687724113,122.30000305175781 " id="svg_145"/>
<polygon class="st51" points="238.17819687724113,122.30000305175781 238.17819687724113,108.5999984741211 249.97818467020988,101.69999694824219 249.97818467020988,115.4000015258789 " id="svg_146"/>
</g>
</g>
<g id="labels_x2F_selectors"/>
<g id="description">
<g id="svg_147">
<path class="st42" d="m315.9,138.6l-0.9,0l-0.2,-1.2c-0.2,-0.1 -0.4,-0.3 -0.7,-0.4s-0.6,-0.1 -1,-0.1c-0.6,0 -1.1,0.1 -1.4,0.4s-0.5,0.6 -0.5,1c0,0.4 0.2,0.7 0.5,0.9s0.9,0.5 1.6,0.7c0.9,0.2 1.6,0.6 2,1s0.7,1 0.7,1.6c0,0.7 -0.3,1.2 -0.8,1.7s-1.3,0.6 -2.2,0.6c-0.7,0 -1.2,-0.1 -1.7,-0.3s-0.9,-0.5 -1.2,-0.8l0,-1.7l0.9,0l0.2,1.2c0.2,0.2 0.5,0.3 0.8,0.5s0.7,0.2 1.1,0.2c0.6,0 1,-0.1 1.4,-0.4s0.5,-0.6 0.5,-1c0,-0.4 -0.1,-0.7 -0.4,-1s-0.8,-0.5 -1.6,-0.7c-0.9,-0.2 -1.6,-0.5 -2.1,-0.9s-0.8,-0.9 -0.8,-1.6c0,-0.7 0.3,-1.2 0.8,-1.7s1.3,-0.7 2.2,-0.7c0.6,0 1.1,0.1 1.6,0.3s0.9,0.5 1.2,0.7l0,1.7z" id="svg_148"/>
<path class="st42" d="m320.1,144.7c-0.9,0 -1.6,-0.3 -2.1,-0.9s-0.8,-1.4 -0.8,-2.3l0,-0.3c0,-0.9 0.3,-1.7 0.8,-2.3s1.2,-0.9 1.9,-0.9c0.9,0 1.5,0.3 1.9,0.8s0.7,1.2 0.7,2.1l0,0.7l-4.1,0l0,0c0,0.6 0.2,1.1 0.5,1.5s0.7,0.6 1.2,0.6c0.4,0 0.7,-0.1 1,-0.2s0.5,-0.3 0.8,-0.5l0.5,0.8c-0.2,0.2 -0.5,0.4 -0.9,0.6s-0.9,0.3 -1.4,0.3zm-0.2,-5.7c-0.4,0 -0.7,0.2 -1,0.5s-0.4,0.7 -0.5,1.2l0,0l2.9,0l0,-0.2c0,-0.5 -0.1,-0.8 -0.4,-1.1s-0.5,-0.4 -1,-0.4z" id="svg_149"/>
<path class="st42" d="m323.6,139l0,-0.7l2,0l0.1,0.9c0.2,-0.3 0.4,-0.6 0.7,-0.8s0.6,-0.3 0.9,-0.3c0.1,0 0.2,0 0.3,0s0.2,0 0.2,0l-0.2,1.1l-0.7,0c-0.3,0 -0.6,0.1 -0.8,0.2s-0.4,0.3 -0.5,0.6l0,3.6l1,0.2l0,0.7l-3.1,0l0,-0.7l1,-0.2l0,-4.5l-0.9,-0.1z" id="svg_150"/>
<path class="st42" d="m330.9,139l-0.8,0.1l1.3,3.6l0.1,0.5l0,0l0.1,-0.5l1.3,-3.6l-0.8,-0.1l0,-0.7l2.4,0l0,0.7l-0.5,0.1l-2.1,5.5l-0.9,0l-2.2,-5.5l-0.5,-0.1l0,-0.7l2.4,0l0,0.7l0.2,0z" id="svg_151"/>
<path class="st42" d="m335.4,143.8l1,-0.2l0,-4.5l-1,-0.2l0,-0.7l2.1,0l0,5.4l1,0.2l0,0.7l-3.1,0l0,-0.7zm2.1,-7.2l-1.2,0l0,-1.2l1.2,0l0,1.2z" id="svg_152"/>
<path class="st42" d="m342.2,143.8c0.4,0 0.7,-0.1 1,-0.4s0.4,-0.5 0.4,-0.9l1,0l0,0c0,0.5 -0.2,1 -0.7,1.5s-1.1,0.6 -1.8,0.6c-0.9,0 -1.6,-0.3 -2.1,-0.9s-0.7,-1.4 -0.7,-2.3l0,-0.2c0,-0.9 0.2,-1.7 0.7,-2.3s1.2,-0.9 2.1,-0.9c0.5,0 1,0.1 1.4,0.3s0.7,0.4 1,0.7l0.1,1.4l-0.9,0l-0.3,-1c-0.1,-0.1 -0.3,-0.2 -0.5,-0.3s-0.5,-0.1 -0.7,-0.1c-0.6,0 -1,0.2 -1.3,0.7s-0.4,1 -0.4,1.6l0,0.2c0,0.6 0.1,1.2 0.4,1.6s0.7,0.7 1.3,0.7z" id="svg_153"/>
<path class="st42" d="m348.7,144.7c-0.9,0 -1.6,-0.3 -2.1,-0.9s-0.8,-1.4 -0.8,-2.3l0,-0.3c0,-0.9 0.3,-1.7 0.8,-2.3s1.2,-0.9 1.9,-0.9c0.9,0 1.5,0.3 1.9,0.8s0.7,1.2 0.7,2.1l0,0.7l-4.1,0l0,0c0,0.6 0.2,1.1 0.5,1.5s0.7,0.6 1.2,0.6c0.4,0 0.7,-0.1 1,-0.2s0.5,-0.3 0.8,-0.5l0.5,0.8c-0.2,0.2 -0.5,0.4 -0.9,0.6s-0.9,0.3 -1.4,0.3zm-0.2,-5.7c-0.4,0 -0.7,0.2 -1,0.5s-0.4,0.7 -0.5,1.2l0,0l2.9,0l0,-0.2c0,-0.5 -0.1,-0.8 -0.4,-1.1s-0.5,-0.4 -1,-0.4z" id="svg_154"/>
</g>
<line class="st62" x1="307.3" y1="142.2" x2="249.9" y2="142.2" id="svg_155"/>
<g id="svg_156">
<path class="st42" d="m313.3,235c1.1,0 2,0.3 2.7,1s1,1.6 1,2.7l0,1.2c0,1.1 -0.3,2 -1,2.7s-1.6,1 -2.7,1l-3.6,0l0,-0.7l1,-0.2l0,-6.7l-1,-0.2l0,-0.8l1,0l2.6,0zm-1.4,0.9l0,6.7l1.5,0c0.8,0 1.4,-0.3 1.9,-0.8s0.7,-1.2 0.7,-2l0,-1.2c0,-0.8 -0.2,-1.5 -0.7,-2s-1.1,-0.8 -1.9,-0.8l-1.5,0l0,0.1z" id="svg_157"/>
<path class="st42" d="m321.1,243.6c-0.9,0 -1.6,-0.3 -2.1,-0.9s-0.8,-1.4 -0.8,-2.3l0,-0.3c0,-0.9 0.3,-1.7 0.8,-2.3s1.2,-0.9 1.9,-0.9c0.9,0 1.5,0.3 1.9,0.8s0.7,1.2 0.7,2.1l0,0.7l-4.1,0l0,0c0,0.6 0.2,1.1 0.5,1.5s0.7,0.6 1.2,0.6c0.4,0 0.7,-0.1 1,-0.2s0.5,-0.3 0.8,-0.5l0.5,0.8c-0.2,0.2 -0.5,0.4 -0.9,0.6s-0.9,0.3 -1.4,0.3zm-0.2,-5.7c-0.4,0 -0.7,0.2 -1,0.5s-0.4,0.7 -0.5,1.2l0,0l2.9,0l0,-0.2c0,-0.5 -0.1,-0.8 -0.4,-1.1s-0.5,-0.4 -1,-0.4z" id="svg_158"/>
<path class="st42" d="m324.5,245.2l1,-0.2l0,-7l-1,-0.2l0,-0.7l1.9,0l0.1,0.8c0.2,-0.3 0.5,-0.5 0.8,-0.7s0.7,-0.2 1.1,-0.2c0.8,0 1.4,0.3 1.8,0.9s0.7,1.4 0.7,2.5l0,0.1c0,0.9 -0.2,1.7 -0.7,2.2s-1,0.8 -1.8,0.8c-0.4,0 -0.7,-0.1 -1,-0.2s-0.5,-0.3 -0.8,-0.6l0,2.2l1,0.2l0,0.7l-3.1,0l0,-0.6zm5.2,-4.8c0,-0.7 -0.1,-1.3 -0.4,-1.8s-0.7,-0.7 -1.3,-0.7c-0.3,0 -0.6,0.1 -0.8,0.2s-0.4,0.4 -0.6,0.6l0,3.1c0.1,0.3 0.3,0.5 0.6,0.6s0.5,0.2 0.9,0.2c0.5,0 1,-0.2 1.2,-0.6s0.4,-0.9 0.4,-1.6l0,0z" id="svg_159"/>
<path class="st42" d="m331.7,235.1l0,-0.7l2.1,0l0,8.2l1,0.2l0,0.7l-3.1,0l0,-0.7l1,-0.2l0,-7.3l-1,-0.2z" id="svg_160"/>
<path class="st42" d="m335.5,240.3c0,-0.9 0.3,-1.7 0.8,-2.3s1.2,-0.9 2.1,-0.9c0.9,0 1.6,0.3 2.1,0.9s0.8,1.4 0.8,2.3l0,0.1c0,0.9 -0.3,1.7 -0.8,2.3s-1.2,0.9 -2.1,0.9c-0.9,0 -1.6,-0.3 -2.1,-0.9s-0.8,-1.4 -0.8,-2.3l0,-0.1zm1.1,0.1c0,0.7 0.1,1.2 0.4,1.7s0.7,0.7 1.3,0.7c0.5,0 1,-0.2 1.2,-0.7s0.4,-1 0.4,-1.7l0,-0.1c0,-0.7 -0.1,-1.2 -0.4,-1.7s-0.7,-0.7 -1.3,-0.7s-1,0.2 -1.3,0.7s-0.4,1 -0.4,1.7l0,0.1l0.1,0z" id="svg_161"/>
<path class="st42" d="m348.2,237.9l-0.6,0.1l-2.4,6.5c-0.2,0.4 -0.4,0.8 -0.7,1.1s-0.7,0.5 -1.2,0.5c-0.1,0 -0.2,0 -0.4,0s-0.3,0 -0.3,-0.1l0.1,-0.9c0,0 0,0 0.2,0s0.3,0 0.3,0c0.2,0 0.4,-0.1 0.6,-0.3s0.3,-0.5 0.4,-0.7l0.3,-0.7l-2.1,-5.4l-0.6,-0.1l0,-0.7l2.6,0l0,0.7l-0.7,0.1l1.1,3.1l0.2,0.8l0,0l1.3,-3.9l-0.7,-0.1l0,-0.7l2.6,0l0,0.7z" id="svg_162"/>
<path class="st42" d="m348.7,242.8l1,-0.2l0,-4.5l-1,-0.2l0,-0.7l2,0l0.1,0.8c0.2,-0.3 0.5,-0.5 0.8,-0.7s0.7,-0.2 1.1,-0.2s0.8,0.1 1.1,0.3s0.5,0.5 0.7,0.9c0.2,-0.4 0.5,-0.6 0.8,-0.9s0.7,-0.3 1.1,-0.3c0.6,0 1.2,0.2 1.5,0.7s0.6,1.1 0.6,2l0,2.9l1,0.2l0,0.7l-3.1,0l0,-0.7l1,-0.2l0,-2.9c0,-0.6 -0.1,-1.1 -0.3,-1.3s-0.5,-0.4 -1,-0.4c-0.4,0 -0.7,0.1 -1,0.4s-0.4,0.6 -0.4,1.1l0,3.1l1,0.2l0,0.7l-3.1,0l0,-0.7l1,-0.2l0,-2.9c0,-0.6 -0.1,-1 -0.3,-1.3s-0.5,-0.4 -1,-0.4c-0.4,0 -0.6,0.1 -0.9,0.2s-0.4,0.3 -0.5,0.6l0,3.8l1,0.2l0,0.7l-3.1,0l0,-0.8l-0.1,0z" id="svg_163"/>
<path class="st42" d="m363.1,243.6c-0.9,0 -1.6,-0.3 -2.1,-0.9s-0.8,-1.4 -0.8,-2.3l0,-0.3c0,-0.9 0.3,-1.7 0.8,-2.3s1.2,-0.9 1.9,-0.9c0.9,0 1.5,0.3 1.9,0.8s0.7,1.2 0.7,2.1l0,0.7l-4.1,0l0,0c0,0.6 0.2,1.1 0.5,1.5s0.7,0.6 1.2,0.6c0.4,0 0.7,-0.1 1,-0.2s0.5,-0.3 0.8,-0.5l0.5,0.8c-0.2,0.2 -0.5,0.4 -0.9,0.6s-0.9,0.3 -1.4,0.3zm-0.2,-5.7c-0.4,0 -0.7,0.2 -1,0.5s-0.4,0.7 -0.5,1.2l0,0l2.9,0l0,-0.2c0,-0.5 -0.1,-0.8 -0.4,-1.1s-0.5,-0.4 -1,-0.4z" id="svg_164"/>
<path class="st42" d="m366.5,242.8l1,-0.2l0,-4.5l-1,-0.2l0,-0.7l2,0l0.1,0.9c0.2,-0.3 0.5,-0.6 0.8,-0.8s0.7,-0.3 1.1,-0.3c0.7,0 1.2,0.2 1.6,0.6s0.6,1 0.6,1.9l0,3.1l1,0.2l0,0.7l-3.1,0l0,-0.7l1,-0.2l0,-3.1c0,-0.6 -0.1,-1 -0.3,-1.2s-0.6,-0.4 -1,-0.4c-0.3,0 -0.6,0.1 -0.9,0.2s-0.5,0.4 -0.6,0.7l0,3.7l1,0.2l0,0.7l-3.1,0l0,-0.6l-0.2,0z" id="svg_165"/>
<path class="st42" d="m376.4,235.6l0,1.5l1.2,0l0,0.9l-1.2,0l0,3.8c0,0.3 0.1,0.5 0.2,0.6s0.3,0.2 0.5,0.2c0.1,0 0.2,0 0.3,0s0.2,0 0.3,-0.1l0.2,0.8c-0.1,0.1 -0.3,0.1 -0.5,0.2s-0.4,0.1 -0.6,0.1c-0.5,0 -0.8,-0.1 -1.1,-0.4s-0.4,-0.7 -0.4,-1.3l0,-3.9l-1,0l0,-0.9l1,0l0,-1.5l1.1,0z" id="svg_166"/>
</g>
<line class="st62" x1="307.3" y1="241.1" x2="145" y2="241.1" id="svg_167"/>
</g>
<g id="Layer_14"/>
<text stroke="#000000" transform="matrix(0.6019026637077332,0,0,0.5714285969734192,103.95938721019775,129.68302798457444) " xml:space="preserve" text-anchor="middle" font-family="Sans-serif" font-size="24" id="svg_172" y="319.35001" x="344.41771" stroke-linecap="null" stroke-linejoin="null" stroke-dasharray="null" stroke-width="0" fill="#000000">Pod</text>
<path stroke="#000000" fill="#7f00ff" d="m267.48872,307.31483l4.9558,-10.19507l13.21547,0l4.9558,10.19507l-4.9558,10.19507l-13.21547,0l-4.9558,-10.19507z" id="svg_168" transform="rotate(90 279.0518798828125,307.31481933593756) "/>
<path id="svg_175" stroke="#007fff" fill="#ffffff" d="m267.49716,339.46163l4.9558,-10.19507l13.21547,0l4.9558,10.19507l-4.9558,10.19507l-13.21547,0l-4.9558,-10.19507z" transform="rotate(90 279.0607604980469,339.4615783691407) "/>
<text id="svg_176" stroke="#000000" transform="matrix(0.6019026637077332,0,0,0.5714285969734192,103.95938721019775,129.68302798457444) " xml:space="preserve" text-anchor="middle" font-family="Sans-serif" font-size="24" y="377.46771" x="351.56023" stroke-linecap="null" stroke-linejoin="null" stroke-dasharray="null" stroke-width="0" fill="#000000">Node</text>
<line id="svg_169" y2="305.88526" x2="279.00771" y1="301.20473" x1="269.05229" stroke-linecap="null" stroke-linejoin="null" stroke-dasharray="null" stroke="#000000" fill="none"/>
<line id="svg_171" y2="305.8914" x2="278.78483" y1="300.61651" x1="289.03743" stroke-linecap="null" stroke-linejoin="null" stroke-dasharray="null" stroke="#000000" fill="none"/>
<line id="svg_170" y2="306.03385" x2="278.92224" y1="318.66387" x1="279.07083" stroke-linecap="null" stroke-linejoin="null" stroke-dasharray="null" stroke="#000000" fill="none"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 42 KiB

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 350 200"><defs><style>.cls-1{fill:#fff}.cls-2{fill:#326de6}.cls-3,.cls-6{opacity:.1}.cls-3{fill:url(#linear-gradient)}.cls-4,.cls-5{fill:none;stroke-miterlimit:10}.cls-4{stroke:#326de6;stroke-width:1.2px}.cls-5{stroke:#06f7c9;stroke-width:2.48px;stroke-dasharray:2.42 1.62}.cls-6{fill:url(#linear-gradient-2)}</style><linearGradient id="linear-gradient" x1="211.39" y1="99.89" x2="265.46" y2="99.89" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#326de6"/><stop offset="1" stop-color="#10ffc6"/></linearGradient><linearGradient id="linear-gradient-2" x1="84.54" y1="100.11" x2="138.61" y2="100.11" xlink:href="#linear-gradient"/></defs><title>16.07.28_k8s_visual_diagrams</title><g id="nav_bar_closed"><path class="cls-1" d="M238.42 166.97l-58.09-33.54V66.34l58.09-33.54 58.1 33.54v67.09l-58.1 33.54z"/><path class="cls-2" d="M238.42 167.88a.91.91 0 0 1-.46-.12l-58.1-33.54a.91.91 0 0 1-.46-.79V66.34a.91.91 0 0 1 .46-.79L238 32a.91.91 0 0 1 .91 0L297 65.55a.91.91 0 0 1 .46.79v67.08a.91.91 0 0 1-.46.79l-58.1 33.54a.91.91 0 0 1-.48.13zm-57.18-35l57.18 33 57.18-33v-66l-57.18-33-57.18 33z"/><circle class="cls-3" cx="238.42" cy="99.89" r="27.03"/><circle class="cls-4" cx="238.42" cy="99.89" r="27.1"/><path class="cls-1" d="M111.58 167.2l-58.1-33.54V66.57l58.1-33.54 58.09 33.54v67.09l-58.09 33.54z"/><path class="cls-2" d="M111.58 168.11a.91.91 0 0 1-.46-.12L53 134.45a.91.91 0 0 1-.46-.79V66.57a.91.91 0 0 1 .46-.79l58.1-33.54a.91.91 0 0 1 .91 0l58.1 33.54a.91.91 0 0 1 .46.79v67.08a.91.91 0 0 1-.46.79L112 168a.91.91 0 0 1-.42.11zm-57.18-35l57.18 33 57.18-33v-66l-57.18-33L54.4 67.1z"/><rect class="cls-5" x="71.33" y="61.02" width="205.79" height="78.99" rx="39.5" ry="39.5"/><circle class="cls-6" cx="111.58" cy="100.11" r="27.03"/><circle class="cls-4" cx="111.58" cy="100.11" r="27.1"/></g></svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

@@ -0,0 +1,313 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 484 440.4" style="enable-background:new 0 0 484 440.4;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FFFFFF;stroke:#326DE6;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st1{opacity:0.71;fill:#326CE6;}
.st2{opacity:0.45;fill:#FFFFFF;}
.st3{fill:#FFFFFF;stroke:#006DE9;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st4{fill:#006DE9;}
.st5{fill:#A0CAEA;}
.st6{fill:#FFFFFF;}
.st7{opacity:0.13;}
.st8{fill:url(#SVGID_1_);}
.st9{fill:url(#SVGID_2_);}
.st10{fill:#FFFFFF;stroke:#006DE9;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st11{fill:#FFFFFF;stroke:#006DE9;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st12{fill:#FFFFFF;stroke:#326DE6;stroke-width:3.2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st13{fill:#326DE6;}
.st14{fill:none;stroke:#326DE6;stroke-width:2.4;stroke-miterlimit:10;}
.st15{fill:#A0CAE9;}
.st16{fill:#FFFFFF;stroke:#326DE6;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st17{fill:#FFFFFF;stroke:#326DE6;stroke-width:1.6;stroke-miterlimit:10;}
.st18{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;}
.st19{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3749,1.5832;}
.st20{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4006,1.6004;}
.st21{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st22{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st23{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3975,1.5984;}
.st24{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.395,1.5966;}
.st25{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3963,1.5976;}
.st26{opacity:0.1;fill:#EEF406;}
.st27{opacity:2.000000e-02;fill:#EEF406;}
.st28{opacity:0.1;fill:#06F7C9;}
.st29{fill:none;stroke:#006DE9;stroke-width:0.8;stroke-miterlimit:10;}
.st30{opacity:0.1;fill:url(#SVGID_3_);}
.st31{opacity:0.1;fill:url(#SVGID_4_);}
.st32{opacity:0.1;fill:url(#SVGID_5_);}
.st33{opacity:0.1;fill:url(#SVGID_6_);}
.st34{fill:none;stroke:#326DE6;stroke-width:1.2;stroke-miterlimit:10;}
.st35{opacity:0.1;fill:url(#SVGID_7_);}
.st36{opacity:0.1;fill:url(#SVGID_8_);}
.st37{opacity:0.1;fill:url(#SVGID_9_);}
.st38{opacity:0.1;fill:url(#SVGID_10_);}
.st39{fill:none;stroke:#326DE6;stroke-width:2;stroke-miterlimit:10;}
.st40{opacity:0.4;fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st41{fill:none;stroke:#EEF406;stroke-width:2.4596;stroke-miterlimit:10;}
.st42{fill:#011F38;}
.st43{opacity:0.4;}
.st44{opacity:0.1;}
.st45{fill:#326DE6;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st46{fill:none;stroke:#FFFFFF;stroke-width:1.2;stroke-linecap:round;stroke-linejoin:round;}
.st47{fill:#06F7C9;stroke:#FFFFFF;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st48{fill:none;stroke:#011F38;stroke-width:1.2;stroke-linecap:round;stroke-linejoin:round;}
.st49{fill:#326DE6;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;}
.st50{fill:#06F7C9;stroke:#011F38;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st51{fill:#8115FF;stroke:#011F38;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st52{opacity:0.3;}
.st53{opacity:0.2;fill:#6D6E71;}
.st54{fill:#EEF406;}
.st55{fill:#06F7C9;}
.st56{fill:#FFFFFF;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st57{fill:#FFFFFF;stroke:#EEF406;stroke-width:1.6;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st58{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4938,1.6626;}
.st59{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.0084,1.3389;}
.st60{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.724,1.816;}
.st61{fill:#011F38;stroke:#414042;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st62{fill:none;stroke:#011F38;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st63{fill:none;stroke:#011F38;stroke-width:0.2813;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
</style>
<symbol id="node_high_level" viewBox="-81 -93 162 186.1">
<polygon class="st0" points="-80,-46 -80,46 0,92 80,46 80,-46 0,-92 "/>
<g id="Isolation_Mode_3_">
</g>
</symbol>
<symbol id="node_x5F_empty" viewBox="-87.5 -100.6 175.1 201.1">
<use xlink:href="#node_high_level" width="162" height="186.1" id="XMLID_201_" x="-81" y="-93" transform="matrix(1.0808 0 0 1.0808 -3.292006e-05 -3.749943e-05)" style="overflow:visible;"/>
<g>
<polygon class="st1" points="76.8,-28.1 -14,-80.3 0,-88.3 76.7,-44.4 "/>
<polygon class="st2" points="76.8,-28.1 32.1,-53.8 38.8,-66.1 76.7,-44.4 "/>
</g>
</symbol>
<symbol id="node_x5F_new" viewBox="-87.6 -101 175.2 202">
<polygon class="st3" points="0,-100 -86.6,-50 -86.6,50 0,100 86.6,50 86.6,-50 "/>
<polygon class="st4" points="-86.6,-20.2 -86.6,-50 0,-100 25.8,-85.1 "/>
<polygon class="st5" points="-40.8,-70.7 -32.9,-57 15.7,-85.1 0,-94.3 "/>
<text transform="matrix(0.866 -0.5 -0.5 -0.866 -33.9256 -70.7388)" class="st6" style="font-family:'RobotoSlab-Regular'; font-size:11.3632px;">Docker</text>
<text transform="matrix(0.866 -0.5 -0.5 -0.866 -76.0668 -46.4087)" class="st6" style="font-family:'RobotoSlab-Regular'; font-size:11.3632px;">Kubelt</text>
</symbol>
<g id="CLUSTER">
</g>
<g id="master">
<g id="master_x5F_level1">
</g>
<polygon class="st12" points="220.9,265.9 196.7,235.6 205.3,197.8 240.2,181 275.1,197.8 283.8,235.6 259.6,265.9 "/>
</g>
<g id="Node">
<g id="Node_x5F_level3_x5F_1">
<g id="Isolation_Mode">
</g>
</g>
<g>
<polygon class="st17" points="303.8,179.8 245.7,146.2 245.7,79.1 303.8,45.6 361.9,79.1 361.9,146.2 "/>
</g>
<g>
<polygon class="st17" points="176.6,179.7 118.6,146.1 118.6,79.1 176.6,45.5 234.7,79.1 234.7,146.1 "/>
</g>
<g>
<polygon class="st17" points="176.6,401.4 118.6,367.9 118.6,300.8 176.6,267.2 234.7,300.8 234.7,367.9 "/>
</g>
</g>
<g id="service">
<g>
<g>
<path d="M167,70.2l-1-0.3l0.1-1c-0.1-0.1-0.2-0.2-0.4-0.3c-0.2-0.1-0.4-0.2-0.7-0.3c-0.4-0.1-0.7-0.1-0.9,0
c-0.2,0.1-0.4,0.3-0.5,0.5c-0.1,0.2,0,0.4,0.2,0.6c0.2,0.2,0.5,0.5,0.9,0.8c0.7,0.4,1.1,0.8,1.4,1.3s0.3,0.9,0.2,1.5
c-0.2,0.6-0.5,0.9-1,1.1s-1.2,0.2-1.9,0c-0.5-0.1-1-0.4-1.3-0.7c-0.4-0.3-0.7-0.6-0.9-1l0.4-1.4l1,0.3l-0.1,1
c0.1,0.1,0.3,0.3,0.5,0.4c0.2,0.1,0.5,0.2,0.7,0.3c0.4,0.1,0.7,0.1,0.9,0c0.2-0.1,0.4-0.3,0.5-0.5c0.1-0.3,0-0.5-0.1-0.7
s-0.4-0.4-0.8-0.7c-0.7-0.4-1.2-0.9-1.5-1.3c-0.3-0.4-0.4-0.9-0.2-1.4c0.2-0.5,0.5-0.9,1-1.1c0.5-0.2,1.2-0.2,1.8,0
c0.5,0.1,0.9,0.4,1.3,0.6c0.4,0.3,0.7,0.6,0.9,0.9L167,70.2z"/>
<path d="M168.3,76c-0.7-0.3-1.1-0.8-1.3-1.4c-0.2-0.6-0.2-1.2,0.1-1.9l0.1-0.2c0.3-0.7,0.8-1.2,1.3-1.4c0.6-0.3,1.2-0.3,1.8,0
c0.6,0.3,1,0.7,1.2,1.2c0.2,0.5,0.1,1.1-0.2,1.8l-0.3,0.7l-2.8-1.2l0,0c-0.1,0.3-0.1,0.6,0,0.9s0.3,0.5,0.6,0.6
c0.3,0.1,0.5,0.2,0.7,0.2c0.2,0,0.4,0,0.7,0l0,0.9c-0.3,0.1-0.6,0.1-0.9,0S168.7,76.1,168.3,76z M169.9,72.1
c-0.2-0.1-0.5-0.1-0.7,0s-0.4,0.3-0.6,0.6l0,0l1.5,0.7l0.1-0.1c0.1-0.3,0.2-0.5,0.1-0.7C170.3,72.4,170.2,72.2,169.9,72.1z"/>
<path d="M171.1,76.3l0.6,0.2l1.6-2.7l-0.5-0.5l0.4-0.7l1.7,1l-0.3,0.7c0.2-0.2,0.5-0.3,0.7-0.3c0.2,0,0.5,0,0.7,0.2
c0.1,0,0.1,0.1,0.2,0.1c0.1,0.1,0.1,0.1,0.1,0.1l-0.8,1l-0.5-0.3c-0.2-0.1-0.3-0.2-0.5-0.2c-0.2,0-0.3,0-0.4,0.1l-1.3,2.1
l0.5,0.5l-0.4,0.7l-2.3-1.4L171.1,76.3z"/>
<path d="M178.3,77l-0.4-0.2l-0.9,2.2l-0.2,0.4l0,0l0.4-0.3l1.9-1.4l-0.3-0.4l0.5-0.6l1.8,1.4l-0.5,0.6l-0.4-0.2l-3.8,2.3l-1-0.8
l1.4-4.2l-0.3-0.3l0.5-0.6l1.8,1.4L178.3,77z"/>
<path d="M178.6,81.7l0.6,0.4l2.2-2.2l-0.4-0.6l0.6-0.6l1.5,1.5l-2.9,2.9l0.4,0.6l-0.6,0.6l-1.9-1.9L178.6,81.7z M183.9,79.3l-1-1
l0.7-0.7l1,1L183.9,79.3z"/>
<path d="M182.3,85.7c0.2,0.2,0.3,0.3,0.5,0.3c0.2,0,0.4,0,0.6-0.2l0.8,1l0,0c-0.4,0.3-0.8,0.4-1.4,0.4s-1-0.4-1.3-0.8
c-0.5-0.6-0.6-1.2-0.5-1.8c0.1-0.6,0.5-1.2,1.1-1.6l0.1-0.1c0.6-0.5,1.2-0.7,1.8-0.7c0.6,0,1.2,0.3,1.7,1c0.3,0.3,0.4,0.6,0.5,1
c0.1,0.3,0.1,0.6,0.1,1l-1,0.9l-0.7-0.9l0.5-0.7c0-0.1,0-0.2,0-0.3c0-0.1-0.1-0.2-0.2-0.3c-0.2-0.3-0.5-0.4-0.8-0.4
c-0.3,0.1-0.7,0.2-1,0.5l-0.1,0.1c-0.4,0.3-0.6,0.6-0.7,0.9C182,85.1,182.1,85.4,182.3,85.7z"/>
<path d="M184.3,90.4c-0.4-0.6-0.5-1.2-0.3-1.9c0.2-0.6,0.6-1.1,1.2-1.5l0.2-0.1c0.6-0.4,1.3-0.5,1.9-0.4c0.6,0.1,1.1,0.5,1.5,1.1
c0.4,0.6,0.4,1.1,0.3,1.7c-0.2,0.5-0.5,1-1.1,1.3l-0.6,0.4l-1.6-2.6l0,0c-0.3,0.2-0.5,0.4-0.5,0.7s0,0.6,0.1,0.9
c0.2,0.3,0.3,0.5,0.5,0.6c0.2,0.1,0.3,0.3,0.6,0.4l-0.5,0.8c-0.2-0.1-0.5-0.3-0.8-0.5S184.5,90.7,184.3,90.4z M187.8,88.1
c-0.1-0.2-0.3-0.3-0.6-0.4c-0.2,0-0.5,0-0.8,0.2l0,0l0.9,1.4l0.1-0.1c0.2-0.1,0.4-0.3,0.5-0.5C188,88.5,188,88.3,187.8,88.1z"/>
<path d="M187.4,94.1l0.2,0.4l6.3,0.1l0.4,1.3l-5,3.8l0.1,0.5l-0.8,0.3l-0.7-2.2l0.8-0.3l0.2,0.4l0.8-0.6l-0.7-2.1l-1,0l0.1,0.5
l-0.8,0.3l-0.7-2.2L187.4,94.1z M190.1,95.8l0.5,1.5l2-1.5l0,0L190.1,95.8z"/>
<path d="M190.1,105.2l0.2,1.1l4.6-0.2l0-1.2l0.8,0l0.6,2.5l-5.9,0.2l-0.1,1.2l-0.8,0l-0.2-3.7L190.1,105.2z"/>
<path d="M191.7,114.3c-0.9-0.1-1.6-0.3-2-0.8s-0.6-1-0.6-1.7c0.1-0.7,0.3-1.3,0.8-1.6s1.2-0.5,2.1-0.4l1.5,0.1
c0.9,0.1,1.6,0.3,2,0.8s0.6,1,0.6,1.7c-0.1,0.7-0.3,1.2-0.8,1.6s-1.2,0.5-2.1,0.4L191.7,114.3z M193.4,113.1c0.5,0,0.9,0,1.2-0.1
c0.3-0.1,0.4-0.4,0.4-0.7c0-0.3-0.1-0.6-0.3-0.7s-0.6-0.3-1.2-0.3l-1.8-0.2c-0.5,0-1,0-1.2,0.1s-0.4,0.4-0.4,0.7
c0,0.3,0.1,0.5,0.3,0.7c0.2,0.2,0.6,0.3,1.2,0.3L193.4,113.1z"/>
<path d="M188.6,116.2l0.3-1.3l1.2,0.2l-0.3,1.3L188.6,116.2z"/>
<path d="M191.9,119.4l-0.2,0.7c-0.1,0.3-0.1,0.6,0,0.8s0.3,0.3,0.6,0.4c0.3,0.1,0.5,0.1,0.7,0c0.2-0.1,0.3-0.3,0.4-0.6
c0.1-0.2,0.1-0.5,0-0.7c-0.1-0.2-0.3-0.4-0.5-0.4l0.4-1.3l0,0c0.5,0.1,0.9,0.5,1.1,1c0.2,0.5,0.2,1.1,0,1.7
c-0.2,0.7-0.5,1.2-1,1.5c-0.4,0.3-1,0.4-1.6,0.2c-0.3-0.1-0.5-0.3-0.7-0.5c-0.2-0.3-0.3-0.6-0.4-0.9c-0.2,0.3-0.5,0.5-0.8,0.6
c-0.3,0.1-0.7,0.1-1,0c-0.6-0.2-1-0.5-1.2-1.1s-0.2-1.1,0-1.8c0.2-0.6,0.5-1.1,1-1.4c0.5-0.3,1-0.4,1.6-0.2l0,0l-0.4,1.3
c-0.3-0.1-0.5,0-0.7,0.1s-0.4,0.3-0.5,0.6c-0.1,0.3-0.1,0.6,0,0.8c0.1,0.2,0.3,0.4,0.6,0.5c0.3,0.1,0.6,0.1,0.8,0
c0.2-0.1,0.4-0.4,0.5-0.7l0.2-0.7L191.9,119.4z"/>
<path d="M186.3,123.2l0.5-1.3l1.1,0.5l-0.5,1.3L186.3,123.2z"/>
<path d="M186.1,123.8l0.8,0.4l1,3.1c0.2,0.5,0.3,0.8,0.5,1s0.3,0.4,0.5,0.5c0.3,0.1,0.5,0.2,0.7,0.1s0.4-0.2,0.6-0.4
c0.2-0.3,0.2-0.5,0.1-0.8c-0.1-0.2-0.3-0.5-0.6-0.6l0.6-1.2l0,0c0.5,0.3,0.9,0.7,1.1,1.3c0.2,0.6,0.1,1.2-0.3,1.8
c-0.3,0.6-0.8,1-1.3,1.2c-0.5,0.2-1,0.1-1.6-0.2c-0.4-0.2-0.6-0.5-0.8-0.8s-0.4-0.9-0.7-1.6l-0.6-1.7l0,0l-0.9,1.6l0.6,0.4
l-0.5,0.9l-1.5-0.8L186.1,123.8z"/>
<path d="M185.7,134.2l0.4,0.2l1.1-1.5l-1.1-1.1c0,0.2,0,0.3-0.1,0.5c-0.1,0.2-0.1,0.4-0.3,0.5c-0.4,0.5-0.8,0.8-1.4,0.9
c-0.5,0-1.1-0.1-1.7-0.6c-0.5-0.4-0.8-0.9-1-1.5c-0.1-0.6,0.1-1.2,0.5-1.8c0.4-0.5,0.8-0.8,1.4-1c0.5-0.2,1,0,1.5,0.3l0,0
l-0.7,1.1c-0.2-0.2-0.5-0.3-0.7-0.2c-0.2,0-0.4,0.2-0.6,0.4c-0.2,0.3-0.2,0.5-0.1,0.8s0.3,0.5,0.6,0.7c0.3,0.2,0.6,0.4,0.9,0.4
c0.3,0,0.5-0.1,0.7-0.4c0.2-0.2,0.2-0.4,0.2-0.6c0-0.2,0-0.3-0.1-0.5l0.8-0.9l2.8,2.6l-2.3,3.2l-1.2-0.9L185.7,134.2z"/>
<path d="M179.2,137.4c-0.6-0.6-1-1.3-1-1.9s0.2-1.2,0.7-1.7c0.5-0.5,1.1-0.7,1.7-0.7c0.6,0,1.3,0.4,1.9,1l1.1,1.1
c0.6,0.6,1,1.3,1,1.9c0,0.6-0.2,1.2-0.7,1.7c-0.5,0.5-1.1,0.7-1.7,0.7c-0.6,0-1.3-0.4-1.9-1L179.2,137.4z M181.3,137.6
c0.4,0.4,0.7,0.6,1,0.7c0.3,0.1,0.5,0,0.8-0.2c0.2-0.2,0.3-0.5,0.2-0.8c-0.1-0.3-0.3-0.6-0.7-1l-1.3-1.2c-0.4-0.4-0.7-0.6-1-0.7
c-0.3-0.1-0.5,0-0.8,0.2c-0.2,0.2-0.3,0.5-0.2,0.8c0.1,0.3,0.3,0.6,0.7,1L181.3,137.6z"/>
<path d="M175.6,136.9l1.1-0.9l0.8,0.9l-1.1,0.9L175.6,136.9z"/>
<path d="M175.1,137.4l0.5,0.7l-0.5,3.2c-0.1,0.5-0.1,0.9-0.1,1.1c0,0.3,0.1,0.5,0.2,0.7c0.2,0.2,0.4,0.4,0.6,0.5
c0.2,0.1,0.5,0,0.7-0.1c0.3-0.2,0.4-0.4,0.4-0.7c0-0.3-0.1-0.6-0.3-0.8l1.1-0.7l0,0c0.4,0.5,0.5,1.1,0.4,1.6s-0.5,1.1-1.1,1.5
c-0.6,0.4-1.1,0.5-1.7,0.5c-0.5-0.1-1-0.4-1.3-0.9c-0.2-0.3-0.3-0.7-0.3-1.1c0-0.4,0.1-1,0.2-1.8l0.3-1.8l0,0l-1.5,1l0.3,0.6
l-0.9,0.6l-1-1.4L175.1,137.4z"/>
<path d="M171.3,144.4l-0.7,0.3c-0.3,0.1-0.5,0.3-0.5,0.5c-0.1,0.2,0,0.5,0.1,0.7c0.1,0.2,0.3,0.4,0.5,0.5
c0.2,0.1,0.5,0.1,0.7-0.1c0.2-0.1,0.4-0.3,0.5-0.5c0.1-0.2,0.1-0.4,0-0.6l1.2-0.6l0,0c0.2,0.5,0.3,1,0,1.5s-0.6,0.9-1.2,1.2
c-0.6,0.3-1.2,0.4-1.7,0.3s-0.9-0.5-1.2-1c-0.1-0.3-0.2-0.6-0.1-0.9c0.1-0.3,0.2-0.6,0.4-0.9c-0.4,0-0.7,0-1-0.2
c-0.3-0.2-0.5-0.4-0.7-0.7c-0.3-0.6-0.3-1.1,0-1.6s0.7-0.9,1.3-1.2c0.6-0.3,1.1-0.4,1.7-0.2c0.6,0.1,1,0.4,1.2,1l0,0l-1.2,0.6
c-0.1-0.2-0.3-0.4-0.5-0.5s-0.5,0-0.8,0.1c-0.3,0.1-0.5,0.3-0.6,0.6c-0.1,0.2-0.1,0.5,0.1,0.8c0.2,0.3,0.3,0.5,0.6,0.6
c0.2,0.1,0.5,0,0.8-0.1l0.7-0.3L171.3,144.4z"/>
<path d="M165.7,149.7c-0.2,0.1-0.5,0.1-0.7,0.1s-0.5,0-0.7,0l-0.1-1c0.2,0,0.4,0,0.6,0c0.2,0,0.4-0.1,0.6-0.1
c0.4-0.1,0.7-0.4,0.8-0.7s0.1-0.8,0-1.4l0,0c-0.1,0.2-0.2,0.4-0.4,0.5c-0.2,0.2-0.4,0.3-0.7,0.4c-0.6,0.2-1.1,0.1-1.6-0.2
s-0.8-0.8-1-1.4c-0.2-0.7-0.2-1.3,0.1-1.8c0.3-0.6,0.7-0.9,1.4-1.1c0.7-0.2,1.3-0.2,1.9,0.2s1,0.9,1.3,1.7l0.4,1.1
c0.3,0.9,0.3,1.7-0.1,2.4C167,149,166.4,149.5,165.7,149.7z M165,146.4c0.2-0.1,0.4-0.2,0.6-0.3c0.1-0.1,0.2-0.3,0.3-0.4
l-0.1-0.4c-0.2-0.5-0.4-0.9-0.7-1.1c-0.3-0.2-0.6-0.3-0.9-0.2c-0.3,0.1-0.4,0.3-0.5,0.6c-0.1,0.3-0.1,0.6,0,1
c0.1,0.4,0.3,0.6,0.5,0.8S164.7,146.5,165,146.4z"/>
</g>
</g>
<path class="st21" d="M153.4,141.2c-18,0-32.6-14.6-32.6-32.6S135.4,76,153.4,76S186,90.6,186,108.6S171.4,141.2,153.4,141.2z"/>
</g>
<g id="pods">
<circle class="st26" cx="153.4" cy="108.6" r="20.5"/>
<circle class="st22" cx="153.4" cy="108.6" r="20.5"/>
</g>
<g id="IP">
<g>
<path class="st42" d="M134.4,95.3l0.5-0.8l-3.4-2.6l-0.5,0.9l-0.2-0.2l0.6-1.3l3.8,2.9l0.6-0.7l0.2,0.2l-1.4,1.8L134.4,95.3z"/>
<path class="st42" d="M137.3,89.6c0.5,0.5,0.7,0.9,0.8,1.4c0,0.5-0.1,0.8-0.5,1.2c-0.4,0.3-0.8,0.5-1.2,0.4
c-0.5-0.1-0.9-0.3-1.4-0.8l-0.8-0.8c-0.5-0.5-0.7-0.9-0.8-1.4c0-0.5,0.1-0.9,0.5-1.2c0.4-0.3,0.8-0.5,1.2-0.4
c0.5,0.1,0.9,0.3,1.4,0.8L137.3,89.6z M136.1,89c-0.4-0.4-0.7-0.6-1.1-0.7c-0.3-0.1-0.6,0-0.9,0.3c-0.3,0.3-0.4,0.6-0.3,0.9
s0.3,0.7,0.6,1.1l0.9,0.9c0.4,0.4,0.7,0.6,1.1,0.7c0.3,0.1,0.7,0,0.9-0.3c0.3-0.3,0.4-0.6,0.3-0.9c-0.1-0.3-0.3-0.7-0.6-1.1
L136.1,89z"/>
<path class="st42" d="M139.7,90.3l-0.4,0.3l-0.3-0.5l0.4-0.3L139.7,90.3z"/>
<path class="st42" d="M142.2,86.4c0.3,0.6,0.5,1.1,0.4,1.5c-0.1,0.4-0.3,0.8-0.7,1.1c-0.4,0.3-0.9,0.3-1.3,0.1
c-0.4-0.2-0.8-0.5-1.1-1.1l-0.6-1c-0.3-0.6-0.5-1.1-0.4-1.5s0.3-0.8,0.7-1.1c0.4-0.3,0.9-0.3,1.3-0.1s0.8,0.5,1.1,1.1L142.2,86.4z
M141.2,85.5c-0.3-0.5-0.6-0.8-0.9-0.9c-0.3-0.1-0.6-0.1-1,0.1c-0.3,0.2-0.5,0.5-0.5,0.8c0,0.3,0.1,0.7,0.4,1.2l0.6,1.1
c0.3,0.4,0.6,0.7,0.9,0.9s0.6,0.1,1-0.1c0.3-0.2,0.5-0.5,0.5-0.8c0-0.3-0.1-0.7-0.4-1.2L141.2,85.5z"/>
<path class="st42" d="M144.4,87.6l-0.4,0.2l-0.2-0.5l0.4-0.2L144.4,87.6z"/>
<path class="st42" d="M147.7,84.3c0.2,0.6,0.2,1.2,0,1.6c-0.2,0.4-0.5,0.7-1,0.8c-0.5,0.1-0.9,0.1-1.3-0.2
c-0.4-0.3-0.7-0.7-0.8-1.3l-0.3-1.1c-0.2-0.6-0.2-1.2,0-1.6c0.2-0.4,0.5-0.7,1-0.9c0.5-0.1,0.9-0.1,1.3,0.2
c0.4,0.3,0.7,0.7,0.8,1.3L147.7,84.3z M147,83.3c-0.2-0.5-0.4-0.9-0.6-1.1c-0.3-0.2-0.6-0.3-1-0.2c-0.4,0.1-0.6,0.3-0.7,0.7
c-0.1,0.3-0.1,0.7,0.1,1.2l0.4,1.2c0.2,0.5,0.4,0.9,0.6,1.1c0.3,0.2,0.6,0.3,1,0.2c0.4-0.1,0.6-0.3,0.7-0.7
c0.1-0.3,0.1-0.7-0.1-1.2L147,83.3z"/>
<path class="st42" d="M149.6,86l-0.5,0.1l-0.1-0.6l0.5-0.1L149.6,86z"/>
<path class="st42" d="M152.7,81.4l-0.1-0.4l-1.8,0.1l-0.1,1.8c0.1-0.1,0.3-0.2,0.4-0.3c0.2-0.1,0.4-0.1,0.6-0.1
c0.4,0,0.8,0.1,1.1,0.4c0.3,0.3,0.4,0.7,0.5,1.2c0,0.5-0.1,0.9-0.3,1.3s-0.6,0.5-1.1,0.5c-0.4,0-0.8-0.1-1.1-0.3s-0.4-0.6-0.5-1
l0,0l0.4,0c0,0.3,0.1,0.6,0.3,0.8c0.2,0.2,0.5,0.2,0.8,0.2c0.4,0,0.7-0.2,0.8-0.4c0.2-0.2,0.2-0.6,0.2-1c0-0.4-0.1-0.7-0.3-0.9
c-0.2-0.2-0.5-0.3-0.8-0.3c-0.3,0-0.6,0.1-0.7,0.2c-0.2,0.1-0.3,0.3-0.3,0.5l-0.3,0l0.1-2.8l2.6-0.2l0.1,0.8L152.7,81.4z"/>
</g>
</g>
<g id="deployments">
<g>
<g>
<circle class="st45" cx="249.9" cy="211.2" r="14.1"/>
<g>
<g>
<path class="st46" d="M254.3,202.9c3,1.6,5,4.7,5,8.3c0,5.2-4.2,9.4-9.4,9.4c-5.2,0-9.4-4.2-9.4-9.4c0-4.1,2.6-7.6,6.3-8.9"/>
<g>
<polygon class="st6" points="255.7,205.7 254.6,203.1 257.3,202 255.7,201.3 253,202.4 254.1,205 "/>
</g>
</g>
</g>
<g>
<path class="st6" d="M244.7,214.9l0.8-0.1l3.3-9.5h2.2l3.3,9.5l0.8,0.1v1.3h-3.7v-1.3l0.8-0.1l-0.5-1.5h-3.5l-0.5,1.5l0.8,0.1
v1.3h-3.7V214.9z M248.6,211.7h2.5l-1.2-3.8h0L248.6,211.7z"/>
</g>
</g>
</g>
</g>
<g id="containers_x2F_volumes">
<g>
<polygon class="st50" points="141.5,101.7 153.4,94.9 165.3,101.7 153.4,108.6 "/>
<polygon class="st50" points="141.5,115.4 141.5,101.7 153.4,108.6 153.4,122.3 "/>
<polygon class="st50" points="153.4,122.3 153.4,108.6 165.3,101.7 165.3,115.4 "/>
</g>
</g>
<g id="labels_x2F_selectors">
</g>
<g id="description">
<g>
<path class="st42" d="M58.8,130.4h-0.9l-0.2-1.2c-0.2-0.1-0.4-0.3-0.7-0.4s-0.6-0.1-1-0.1c-0.6,0-1.1,0.1-1.4,0.4s-0.5,0.6-0.5,1
c0,0.4,0.2,0.7,0.5,0.9s0.9,0.5,1.6,0.7c0.9,0.2,1.6,0.6,2,1s0.7,1,0.7,1.6c0,0.7-0.3,1.2-0.8,1.7s-1.3,0.6-2.2,0.6
c-0.7,0-1.2-0.1-1.7-0.3s-0.9-0.5-1.2-0.8v-1.6h0.9L54,135c0.2,0.2,0.5,0.3,0.8,0.5s0.7,0.2,1.1,0.2c0.6,0,1-0.1,1.4-0.4
s0.5-0.6,0.5-1c0-0.4-0.1-0.7-0.4-1s-0.8-0.5-1.6-0.7c-0.9-0.2-1.6-0.5-2.1-0.9s-0.8-0.9-0.8-1.6c0-0.7,0.3-1.2,0.8-1.7
s1.3-0.7,2.2-0.7c0.6,0,1.1,0.1,1.6,0.3s0.9,0.5,1.2,0.7V130.4z"/>
<path class="st42" d="M62.9,136.5c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S63.4,136.5,62.9,136.5z M62.7,130.8c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S63.2,130.8,62.7,130.8z"/>
<path class="st42" d="M66.4,130.8V130h2l0.1,0.9c0.2-0.3,0.4-0.6,0.7-0.8s0.6-0.3,0.9-0.3c0.1,0,0.2,0,0.3,0s0.2,0,0.2,0l-0.2,1.1
l-0.7,0c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.3-0.5,0.6v3.6l1,0.2v0.7h-3.1v-0.7l1-0.2v-4.5L66.4,130.8z"/>
<path class="st42" d="M73.7,130.8l-0.8,0.1l1.3,3.6l0.1,0.5h0l0.1-0.5l1.3-3.6l-0.8-0.1V130h2.4v0.7l-0.5,0.1l-2.1,5.5h-0.9
l-2.2-5.5l-0.5-0.1V130h2.4V130.8z"/>
<path class="st42" d="M78.2,135.6l1-0.2v-4.5l-1-0.2V130h2.1v5.4l1,0.2v0.7h-3.1V135.6z M80.3,128.4h-1.2v-1.2h1.2V128.4z"/>
<path class="st42" d="M85,135.6c0.4,0,0.7-0.1,1-0.4s0.4-0.5,0.4-0.9h1l0,0c0,0.5-0.2,1-0.7,1.5s-1.1,0.6-1.8,0.6
c-0.9,0-1.6-0.3-2.1-0.9s-0.7-1.4-0.7-2.3v-0.2c0-0.9,0.2-1.7,0.7-2.3s1.2-0.9,2.1-0.9c0.5,0,1,0.1,1.4,0.3s0.7,0.4,1,0.7l0.1,1.4
h-0.9l-0.3-1c-0.1-0.1-0.3-0.2-0.5-0.3s-0.5-0.1-0.7-0.1c-0.6,0-1,0.2-1.3,0.7s-0.4,1-0.4,1.6v0.2c0,0.6,0.1,1.2,0.4,1.6
S84.4,135.6,85,135.6z"/>
<path class="st42" d="M91.5,136.5c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S92,136.5,91.5,136.5z M91.3,130.8c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S91.8,130.8,91.3,130.8z"/>
</g>
<line class="st62" x1="153.8" y1="134" x2="97.8" y2="134"/>
<g>
<path class="st42" d="M316.4,196.8c1.1,0,2,0.3,2.7,1s1,1.6,1,2.7v1.2c0,1.1-0.3,2-1,2.7s-1.6,1-2.7,1h-3.6v-0.7l1-0.2v-6.7
l-1-0.2v-0.7h1H316.4z M315,197.7v6.7h1.5c0.8,0,1.4-0.3,1.9-0.8s0.7-1.2,0.7-2v-1.2c0-0.8-0.2-1.5-0.7-2s-1.1-0.8-1.9-0.8H315z"
/>
<path class="st42" d="M324.2,205.5c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S324.7,205.5,324.2,205.5z M324,199.8c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S324.5,199.8,324,199.8z"/>
<path class="st42" d="M327.6,207.1l1-0.2v-7l-1-0.2V199h1.9l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2
c0.8,0,1.4,0.3,1.8,0.9s0.7,1.4,0.7,2.5v0.1c0,0.9-0.2,1.7-0.7,2.2s-1,0.8-1.8,0.8c-0.4,0-0.7-0.1-1-0.2s-0.5-0.3-0.8-0.6v2.2
l1,0.2v0.7h-3.1V207.1z M332.8,202.3c0-0.7-0.1-1.3-0.4-1.8s-0.7-0.7-1.3-0.7c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.4-0.6,0.6v3.1
c0.1,0.3,0.3,0.5,0.6,0.6s0.5,0.2,0.9,0.2c0.5,0,1-0.2,1.2-0.6s0.4-0.9,0.4-1.6V202.3z"/>
<path class="st42" d="M334.8,197v-0.7h2.1v8.2l1,0.2v0.7h-3.1v-0.7l1-0.2v-7.3L334.8,197z"/>
<path class="st42" d="M338.6,202.1c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,2.1-0.9c0.9,0,1.6,0.3,2.1,0.9s0.8,1.4,0.8,2.3v0.1
c0,0.9-0.3,1.7-0.8,2.3s-1.2,0.9-2.1,0.9c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3V202.1z M339.8,202.3c0,0.7,0.1,1.2,0.4,1.7
s0.7,0.7,1.3,0.7c0.5,0,1-0.2,1.2-0.7s0.4-1,0.4-1.7v-0.1c0-0.7-0.1-1.2-0.4-1.7s-0.7-0.7-1.3-0.7s-1,0.2-1.3,0.7s-0.4,1-0.4,1.7
V202.3z"/>
<path class="st42" d="M351.3,199.8l-0.6,0.1l-2.4,6.5c-0.2,0.4-0.4,0.8-0.7,1.1s-0.7,0.5-1.2,0.5c-0.1,0-0.2,0-0.4,0
s-0.3,0-0.3-0.1l0.1-0.9c0,0,0,0,0.2,0s0.3,0,0.3,0c0.2,0,0.4-0.1,0.6-0.3s0.3-0.5,0.4-0.7l0.3-0.7l-2.1-5.4l-0.6-0.1V199h2.6v0.7
l-0.7,0.1l1.1,3.1l0.2,0.8h0l1.3-3.9l-0.7-0.1V199h2.6V199.8z"/>
<path class="st42" d="M351.8,204.6l1-0.2v-4.5l-1-0.2V199h2l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2s0.8,0.1,1.1,0.3
s0.5,0.5,0.7,0.9c0.2-0.4,0.5-0.6,0.8-0.9s0.7-0.3,1.1-0.3c0.6,0,1.2,0.2,1.5,0.7s0.6,1.1,0.6,2v2.9l1,0.2v0.7h-3.1v-0.7l1-0.2
v-2.9c0-0.6-0.1-1.1-0.3-1.3s-0.5-0.4-1-0.4c-0.4,0-0.7,0.1-1,0.4s-0.4,0.6-0.4,1.1v3.1l1,0.2v0.7h-3.1v-0.7l1-0.2v-2.9
c0-0.6-0.1-1-0.3-1.3s-0.5-0.4-1-0.4c-0.4,0-0.6,0.1-0.9,0.2s-0.4,0.3-0.5,0.6v3.8l1,0.2v0.7h-3.1V204.6z"/>
<path class="st42" d="M366.2,205.5c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S366.7,205.5,366.2,205.5z M366,199.8c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S366.5,199.8,366,199.8z"/>
<path class="st42" d="M369.6,204.6l1-0.2v-4.5l-1-0.2V199h2l0.1,0.9c0.2-0.3,0.5-0.6,0.8-0.8s0.7-0.3,1.1-0.3
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.9v3.1l1,0.2v0.7h-3.1v-0.7l1-0.2v-3.1c0-0.6-0.1-1-0.3-1.2s-0.6-0.4-1-0.4
c-0.3,0-0.6,0.1-0.9,0.2s-0.5,0.4-0.6,0.7v3.7l1,0.2v0.7h-3.1V204.6z"/>
<path class="st42" d="M379.5,197.5v1.5h1.2v0.9h-1.2v3.8c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2c0.1,0,0.2,0,0.3,0s0.2,0,0.3-0.1
l0.2,0.8c-0.1,0.1-0.3,0.1-0.5,0.2s-0.4,0.1-0.6,0.1c-0.5,0-0.8-0.1-1.1-0.4s-0.4-0.7-0.4-1.3v-3.8h-1V199h1v-1.5H379.5z"/>
</g>
<line class="st62" x1="310.4" y1="203" x2="249.9" y2="203"/>
</g>
<g id="Layer_14">
</g>
</svg>

After

Width:  |  Height:  |  Size: 23 KiB

@@ -0,0 +1,395 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 484 440.4" style="enable-background:new 0 0 484 440.4;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FFFFFF;stroke:#326DE6;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st1{opacity:0.71;fill:#326CE6;}
.st2{opacity:0.45;fill:#FFFFFF;}
.st3{fill:#FFFFFF;stroke:#006DE9;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st4{fill:#006DE9;}
.st5{fill:#A0CAEA;}
.st6{fill:#FFFFFF;}
.st7{opacity:0.13;}
.st8{fill:url(#SVGID_1_);}
.st9{fill:url(#SVGID_2_);}
.st10{fill:#FFFFFF;stroke:#006DE9;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st11{fill:#FFFFFF;stroke:#006DE9;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st12{fill:#FFFFFF;stroke:#326DE6;stroke-width:3.2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st13{fill:#326DE6;}
.st14{fill:none;stroke:#326DE6;stroke-width:2.4;stroke-miterlimit:10;}
.st15{fill:#A0CAE9;}
.st16{fill:#FFFFFF;stroke:#326DE6;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st17{fill:#FFFFFF;stroke:#326DE6;stroke-width:1.6;stroke-miterlimit:10;}
.st18{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;}
.st19{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3749,1.5832;}
.st20{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4006,1.6004;}
.st21{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st22{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st23{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3975,1.5984;}
.st24{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.395,1.5966;}
.st25{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3963,1.5976;}
.st26{opacity:0.1;fill:#EEF406;}
.st27{opacity:2.000000e-02;fill:#EEF406;}
.st28{opacity:0.1;fill:#06F7C9;}
.st29{fill:none;stroke:#006DE9;stroke-width:0.8;stroke-miterlimit:10;}
.st30{opacity:0.1;fill:url(#SVGID_3_);}
.st31{opacity:0.1;fill:url(#SVGID_4_);}
.st32{opacity:0.1;fill:url(#SVGID_5_);}
.st33{opacity:0.1;fill:url(#SVGID_6_);}
.st34{fill:none;stroke:#326DE6;stroke-width:1.2;stroke-miterlimit:10;}
.st35{opacity:0.1;fill:url(#SVGID_7_);}
.st36{opacity:0.1;fill:url(#SVGID_8_);}
.st37{opacity:0.1;fill:url(#SVGID_9_);}
.st38{opacity:0.1;fill:url(#SVGID_10_);}
.st39{fill:none;stroke:#326DE6;stroke-width:2;stroke-miterlimit:10;}
.st40{opacity:0.4;fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st41{fill:none;stroke:#EEF406;stroke-width:2.4596;stroke-miterlimit:10;}
.st42{fill:#011F38;}
.st43{opacity:0.4;}
.st44{opacity:0.1;}
.st45{fill:#326DE6;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st46{fill:none;stroke:#FFFFFF;stroke-width:1.2;stroke-linecap:round;stroke-linejoin:round;}
.st47{fill:#06F7C9;stroke:#FFFFFF;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st48{fill:none;stroke:#011F38;stroke-width:1.2;stroke-linecap:round;stroke-linejoin:round;}
.st49{fill:#326DE6;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;}
.st50{fill:#06F7C9;stroke:#011F38;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st51{fill:#8115FF;stroke:#011F38;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st52{opacity:0.3;}
.st53{opacity:0.2;fill:#6D6E71;}
.st54{fill:#EEF406;}
.st55{fill:#06F7C9;}
.st56{fill:#FFFFFF;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st57{fill:#FFFFFF;stroke:#EEF406;stroke-width:1.6;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st58{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4938,1.6626;}
.st59{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.0084,1.3389;}
.st60{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.724,1.816;}
.st61{fill:#011F38;stroke:#414042;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st62{fill:none;stroke:#011F38;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st63{fill:none;stroke:#011F38;stroke-width:0.2813;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
</style>
<symbol id="node_high_level" viewBox="-81 -93 162 186.1">
<polygon class="st0" points="-80,-46 -80,46 0,92 80,46 80,-46 0,-92 "/>
<g id="Isolation_Mode_3_">
</g>
</symbol>
<symbol id="node_x5F_empty" viewBox="-87.5 -100.6 175.1 201.1">
<use xlink:href="#node_high_level" width="162" height="186.1" id="XMLID_201_" x="-81" y="-93" transform="matrix(1.0808 0 0 1.0808 -3.292006e-05 -3.749943e-05)" style="overflow:visible;"/>
<g>
<polygon class="st1" points="76.8,-28.1 -14,-80.3 0,-88.3 76.7,-44.4 "/>
<polygon class="st2" points="76.8,-28.1 32.1,-53.8 38.8,-66.1 76.7,-44.4 "/>
</g>
</symbol>
<symbol id="node_x5F_new" viewBox="-87.6 -101 175.2 202">
<polygon class="st3" points="0,-100 -86.6,-50 -86.6,50 0,100 86.6,50 86.6,-50 "/>
<polygon class="st4" points="-86.6,-20.2 -86.6,-50 0,-100 25.8,-85.1 "/>
<polygon class="st5" points="-40.8,-70.7 -32.9,-57 15.7,-85.1 0,-94.3 "/>
<text transform="matrix(0.866 -0.5 -0.5 -0.866 -33.9256 -70.7388)" class="st6" style="font-family:'RobotoSlab-Regular'; font-size:11.3632px;">Docker</text>
<text transform="matrix(0.866 -0.5 -0.5 -0.866 -76.0668 -46.4087)" class="st6" style="font-family:'RobotoSlab-Regular'; font-size:11.3632px;">Kubelt</text>
</symbol>
<g id="CLUSTER">
</g>
<g id="master">
<g id="master_x5F_level1">
</g>
<polygon class="st12" points="220.9,265.9 196.7,235.6 205.3,197.8 240.2,181 275.1,197.8 283.8,235.6 259.6,265.9 "/>
</g>
<g id="Node">
<g id="Node_x5F_level3_x5F_1">
<g id="Isolation_Mode">
</g>
</g>
<g>
<polygon class="st17" points="303.8,179.8 245.7,146.2 245.7,79.1 303.8,45.6 361.9,79.1 361.9,146.2 "/>
</g>
<g>
<polygon class="st17" points="176.6,179.7 118.6,146.1 118.6,79.1 176.6,45.5 234.7,79.1 234.7,146.1 "/>
</g>
<g>
<polygon class="st17" points="176.6,401.4 118.6,367.9 118.6,300.8 176.6,267.2 234.7,300.8 234.7,367.9 "/>
</g>
</g>
<g id="service">
<g>
<g>
<path class="st22" d="M120.9,329.1v1.2h0v0c0,0.4,0,0.8,0,1.2"/>
<path class="st23" d="M121,333.1c1.4,16.7,15.6,29.8,32.7,29.7c17.9-0.2,32.2-15,32.2-32.9V143.4c0-11.7,9.5-21.2,21.2-21.2
h115.4c15.6,0,28.4-12.7,28.4-28.4c0-15.6-12.7-28.4-28.4-28.4h-169c-17.9,0-32.5,14.5-32.5,32.5v0v230.4"/>
</g>
</g>
<g>
<path d="M220.4,56.8h-1l-0.2-0.9c-0.1-0.1-0.3-0.1-0.5-0.2c-0.2-0.1-0.5-0.1-0.7-0.1c-0.4,0-0.7,0.1-0.9,0.2
c-0.2,0.2-0.3,0.4-0.3,0.6c0,0.2,0.1,0.4,0.3,0.6s0.6,0.3,1.1,0.5c0.8,0.2,1.3,0.5,1.7,0.8c0.4,0.3,0.6,0.8,0.6,1.4
c0,0.6-0.2,1-0.7,1.4c-0.5,0.3-1.1,0.5-1.8,0.5c-0.5,0-1-0.1-1.5-0.3s-0.8-0.4-1.1-0.7v-1.4h1.1l0.1,1c0.1,0.1,0.3,0.2,0.6,0.3
c0.2,0.1,0.5,0.1,0.8,0.1c0.4,0,0.7-0.1,0.9-0.2s0.3-0.4,0.3-0.6c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.2-0.5-0.3-1-0.5
c-0.8-0.2-1.4-0.5-1.8-0.8c-0.4-0.3-0.6-0.8-0.6-1.3c0-0.6,0.2-1,0.7-1.4s1.1-0.5,1.8-0.5c0.5,0,1,0.1,1.4,0.2s0.8,0.4,1.1,0.6
V56.8z"/>
<path d="M223.5,61.5c-0.7,0-1.3-0.2-1.8-0.7s-0.7-1.1-0.7-1.8v-0.2c0-0.8,0.2-1.4,0.6-1.9c0.4-0.5,1-0.7,1.7-0.7
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.7v0.7h-3l0,0c0,0.3,0.1,0.6,0.3,0.8c0.2,0.2,0.5,0.3,0.8,0.3c0.3,0,0.6,0,0.8-0.1
c0.2-0.1,0.4-0.2,0.7-0.3l0.4,0.8c-0.2,0.2-0.5,0.3-0.8,0.4S223.9,61.5,223.5,61.5z M223.3,57.3c-0.3,0-0.5,0.1-0.6,0.3
c-0.1,0.2-0.2,0.4-0.3,0.8l0,0h1.7v-0.1c0-0.3-0.1-0.5-0.2-0.7C223.8,57.4,223.6,57.3,223.3,57.3z"/>
<path d="M226.3,60.6l0.7-0.1v-3.1l-0.7-0.1v-0.8h2l0.1,0.7c0.1-0.3,0.3-0.5,0.5-0.6s0.4-0.2,0.7-0.2c0.1,0,0.1,0,0.2,0
c0.1,0,0.1,0,0.2,0l-0.1,1.2l-0.6,0c-0.2,0-0.4,0-0.5,0.1c-0.1,0.1-0.2,0.2-0.3,0.3v2.5l0.7,0.1v0.8h-2.7V60.6z"/>
<path d="M232.4,57.2l-0.5,0.1l0.7,2.3l0.1,0.5h0l0.1-0.5l0.7-2.3l-0.5-0.1v-0.8h2.3v0.8l-0.4,0.1l-1.5,4.2h-1.3l-1.5-4.2l-0.4-0.1
v-0.8h2.3V57.2z"/>
<path d="M235.7,60.6l0.7-0.1v-3.1l-0.7-0.1v-0.8h2.1v4.1l0.7,0.1v0.8h-2.7V60.6z M237.7,55.2h-1.4v-1h1.4V55.2z"/>
<path d="M241.2,60.5c0.2,0,0.4-0.1,0.6-0.2c0.1-0.1,0.2-0.3,0.2-0.6h1.2l0,0c0,0.5-0.2,0.9-0.6,1.3c-0.4,0.3-0.9,0.5-1.5,0.5
c-0.8,0-1.3-0.2-1.7-0.7c-0.4-0.5-0.6-1.1-0.6-1.8v-0.1c0-0.7,0.2-1.4,0.6-1.8c0.4-0.5,1-0.7,1.8-0.7c0.4,0,0.8,0.1,1.1,0.2
c0.3,0.1,0.6,0.3,0.8,0.5l0,1.4h-1.1l-0.2-0.8c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2-0.1-0.3-0.1c-0.4,0-0.7,0.1-0.8,0.4
s-0.2,0.6-0.2,1.1V59c0,0.5,0.1,0.8,0.2,1.1C240.6,60.4,240.9,60.5,241.2,60.5z"/>
<path d="M246.3,61.5c-0.7,0-1.3-0.2-1.8-0.7s-0.7-1.1-0.7-1.8v-0.2c0-0.8,0.2-1.4,0.6-1.9c0.4-0.5,1-0.7,1.7-0.7
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.7v0.7h-3l0,0c0,0.3,0.1,0.6,0.3,0.8c0.2,0.2,0.5,0.3,0.8,0.3c0.3,0,0.6,0,0.8-0.1
c0.2-0.1,0.4-0.2,0.7-0.3l0.4,0.8c-0.2,0.2-0.5,0.3-0.8,0.4S246.7,61.5,246.3,61.5z M246.2,57.3c-0.3,0-0.5,0.1-0.6,0.3
c-0.1,0.2-0.2,0.4-0.3,0.8l0,0h1.7v-0.1c0-0.3-0.1-0.5-0.2-0.7C246.7,57.4,246.5,57.3,246.2,57.3z"/>
<path d="M251.3,60.6l0.5-0.1l2.1-5.9h1.4l2.1,5.9l0.5,0.1v0.8h-2.3v-0.8l0.5-0.1l-0.3-0.9h-2.2l-0.3,0.9l0.5,0.1v0.8h-2.3V60.6z
M253.7,58.6h1.6l-0.8-2.4h0L253.7,58.6z"/>
<path d="M260.6,60.6l1.2-0.1v-4.6h-1.2v-0.8l2.5-0.5v5.9l1.2,0.1v0.8h-3.7V60.6z"/>
<path d="M269.6,58.8c0,0.9-0.2,1.6-0.6,2.1c-0.4,0.5-1,0.7-1.7,0.7c-0.7,0-1.3-0.2-1.7-0.7c-0.4-0.5-0.6-1.2-0.6-2.1v-1.5
c0-0.9,0.2-1.6,0.6-2.1c0.4-0.5,1-0.7,1.7-0.7c0.7,0,1.3,0.2,1.7,0.7c0.4,0.5,0.6,1.2,0.6,2.1V58.8z M268.3,57.1
c0-0.5-0.1-0.9-0.2-1.2c-0.2-0.3-0.4-0.4-0.7-0.4c-0.3,0-0.5,0.1-0.7,0.4s-0.2,0.6-0.2,1.2v1.8c0,0.5,0.1,1,0.2,1.2
c0.2,0.2,0.4,0.4,0.7,0.4c0.3,0,0.5-0.1,0.7-0.4s0.2-0.7,0.2-1.2V57.1z"/>
<path d="M272,61.4h-1.4v-1.2h1.4V61.4z"/>
<path d="M274.3,57.5h0.8c0.3,0,0.6-0.1,0.7-0.3c0.2-0.2,0.2-0.4,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7c-0.2-0.2-0.4-0.2-0.7-0.2
c-0.3,0-0.5,0.1-0.6,0.2c-0.2,0.1-0.3,0.3-0.3,0.6h-1.3l0,0c0-0.5,0.2-1,0.6-1.3c0.4-0.3,1-0.5,1.6-0.5c0.7,0,1.3,0.2,1.7,0.5
c0.4,0.3,0.6,0.8,0.6,1.4c0,0.3-0.1,0.6-0.3,0.8c-0.2,0.3-0.4,0.5-0.8,0.6c0.4,0.1,0.7,0.3,0.9,0.6c0.2,0.3,0.3,0.6,0.3,1
c0,0.6-0.2,1.1-0.7,1.5c-0.5,0.4-1,0.5-1.7,0.5c-0.6,0-1.2-0.2-1.6-0.5s-0.7-0.8-0.7-1.4l0,0h1.3c0,0.3,0.1,0.5,0.3,0.6
s0.4,0.3,0.7,0.3c0.3,0,0.6-0.1,0.7-0.3s0.3-0.4,0.3-0.7c0-0.4-0.1-0.6-0.3-0.8c-0.2-0.2-0.4-0.2-0.8-0.2h-0.8V57.5z"/>
<path d="M279.7,61.4h-1.4v-1.2h1.4V61.4z"/>
<path d="M280.5,61.4v-0.9l2.2-2.4c0.3-0.4,0.5-0.7,0.7-0.9c0.1-0.3,0.2-0.5,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7s-0.4-0.3-0.7-0.3
c-0.3,0-0.6,0.1-0.7,0.3s-0.2,0.5-0.2,0.9h-1.3l0,0c0-0.6,0.2-1.1,0.6-1.6c0.4-0.4,1-0.6,1.7-0.6c0.7,0,1.3,0.2,1.7,0.5
s0.6,0.9,0.6,1.5c0,0.4-0.1,0.8-0.3,1.1c-0.2,0.3-0.6,0.8-1.1,1.4l-1.2,1.3l0,0h1.8l0.1-0.7h1v1.7H280.5z"/>
<path d="M289.4,56.2l-0.1-0.5h-1.8l-0.2,1.6c0.1-0.1,0.3-0.2,0.5-0.2c0.2-0.1,0.4-0.1,0.6-0.1c0.7,0,1.2,0.2,1.5,0.6
s0.5,1,0.5,1.7c0,0.7-0.2,1.2-0.6,1.6c-0.4,0.4-1,0.7-1.7,0.7c-0.6,0-1.2-0.2-1.6-0.5c-0.4-0.3-0.7-0.8-0.6-1.4l0,0l1.3-0.1
c0,0.3,0.1,0.5,0.3,0.7s0.4,0.3,0.7,0.3c0.3,0,0.6-0.1,0.7-0.3c0.2-0.2,0.2-0.5,0.2-0.9c0-0.4-0.1-0.7-0.2-0.9
c-0.2-0.2-0.4-0.4-0.7-0.4c-0.3,0-0.5,0-0.6,0.1c-0.1,0.1-0.2,0.2-0.3,0.4l-1.2-0.1l0.4-3.8h3.9v1.6H289.4z"/>
<path d="M295.7,58.8c0,0.9-0.2,1.6-0.6,2.1c-0.4,0.5-1,0.7-1.7,0.7c-0.7,0-1.3-0.2-1.7-0.7c-0.4-0.5-0.6-1.2-0.6-2.1v-1.5
c0-0.9,0.2-1.6,0.6-2.1c0.4-0.5,1-0.7,1.7-0.7c0.7,0,1.3,0.2,1.7,0.7c0.4,0.5,0.6,1.2,0.6,2.1V58.8z M294.3,57.1
c0-0.5-0.1-0.9-0.2-1.2c-0.2-0.3-0.4-0.4-0.7-0.4c-0.3,0-0.5,0.1-0.7,0.4s-0.2,0.6-0.2,1.2v1.8c0,0.5,0.1,1,0.2,1.2
c0.2,0.2,0.4,0.4,0.7,0.4c0.3,0,0.5-0.1,0.7-0.4s0.2-0.7,0.2-1.2V57.1z"/>
<path d="M298,61.4h-1.4v-1.2h1.4V61.4z"/>
<path d="M298.9,61.4v-0.9l2.2-2.4c0.3-0.4,0.5-0.7,0.7-0.9c0.1-0.3,0.2-0.5,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7s-0.4-0.3-0.7-0.3
c-0.3,0-0.6,0.1-0.7,0.3s-0.2,0.5-0.2,0.9h-1.3l0,0c0-0.6,0.2-1.1,0.6-1.6c0.4-0.4,1-0.6,1.7-0.6c0.7,0,1.3,0.2,1.7,0.5
s0.6,0.9,0.6,1.5c0,0.4-0.1,0.8-0.3,1.1c-0.2,0.3-0.6,0.8-1.1,1.4l-1.2,1.3l0,0h1.8l0.1-0.7h1v1.7H298.9z"/>
<path d="M305.6,57.5h0.8c0.3,0,0.6-0.1,0.7-0.3c0.2-0.2,0.2-0.4,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7c-0.2-0.2-0.4-0.2-0.7-0.2
c-0.3,0-0.5,0.1-0.6,0.2c-0.2,0.1-0.3,0.3-0.3,0.6h-1.3l0,0c0-0.5,0.2-1,0.6-1.3c0.4-0.3,1-0.5,1.6-0.5c0.7,0,1.3,0.2,1.7,0.5
c0.4,0.3,0.6,0.8,0.6,1.4c0,0.3-0.1,0.6-0.3,0.8c-0.2,0.3-0.4,0.5-0.8,0.6c0.4,0.1,0.7,0.3,0.9,0.6c0.2,0.3,0.3,0.6,0.3,1
c0,0.6-0.2,1.1-0.7,1.5c-0.5,0.4-1,0.5-1.7,0.5c-0.6,0-1.2-0.2-1.6-0.5s-0.7-0.8-0.7-1.4l0,0h1.3c0,0.3,0.1,0.5,0.3,0.6
s0.4,0.3,0.7,0.3c0.3,0,0.6-0.1,0.7-0.3s0.3-0.4,0.3-0.7c0-0.4-0.1-0.6-0.3-0.8c-0.2-0.2-0.4-0.2-0.8-0.2h-0.8V57.5z"/>
<path d="M312.2,54.5c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0.1,0.7,0.2l-0.2,1c-0.2-0.1-0.4-0.1-0.5-0.2c-0.2,0-0.4-0.1-0.6-0.1
c-0.4,0-0.7,0.1-1,0.4s-0.4,0.7-0.4,1.3l0,0c0.2-0.2,0.3-0.3,0.6-0.4c0.2-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.2,1.4,0.6
s0.5,1,0.5,1.7c0,0.7-0.2,1.3-0.6,1.7c-0.4,0.4-1,0.7-1.7,0.7c-0.7,0-1.3-0.2-1.8-0.7c-0.5-0.5-0.7-1.2-0.7-2v-1.2
c0-1,0.3-1.7,0.8-2.3C310.7,54.8,311.4,54.5,312.2,54.5z M311.9,57.9c-0.3,0-0.5,0-0.6,0.1s-0.3,0.2-0.4,0.3v0.5
c0,0.5,0.1,1,0.3,1.2c0.2,0.3,0.5,0.4,0.8,0.4c0.3,0,0.5-0.1,0.7-0.4c0.2-0.3,0.3-0.6,0.3-0.9c0-0.4-0.1-0.7-0.3-0.9
S312.2,57.9,311.9,57.9z"/>
</g>
</g>
<g id="pods">
<circle class="st26" cx="153.8" cy="108.6" r="20.5"/>
<circle class="st26" cx="152.8" cy="330.3" r="20.5"/>
<circle class="st26" cx="285.2" cy="93.8" r="16.4"/>
<circle class="st26" cx="322.4" cy="93.8" r="16.4"/>
<circle class="st22" cx="153.4" cy="108.6" r="20.5"/>
<circle class="st22" cx="152.8" cy="330.3" r="20.5"/>
<circle class="st22" cx="285.2" cy="93.8" r="16.4"/>
<circle class="st22" cx="322.4" cy="93.8" r="16.4"/>
</g>
<g id="IP">
<g>
<path class="st42" d="M268.1,86.5l0.4-0.8l-3.9-1.9l-0.3,1l-0.3-0.1l0.4-1.4l4.3,2.1l0.5-0.8l0.3,0.1l-1,2L268.1,86.5z"/>
<path class="st42" d="M269.9,80.4c0.5,0.4,0.9,0.8,1,1.3s0,0.9-0.3,1.3c-0.3,0.4-0.7,0.6-1.1,0.6c-0.5,0-0.9-0.2-1.5-0.6l-0.9-0.7
c-0.5-0.4-0.9-0.8-1-1.3c-0.1-0.4,0-0.9,0.3-1.3c0.3-0.4,0.7-0.6,1.1-0.6c0.5,0,0.9,0.2,1.5,0.6L269.9,80.4z M268.7,80.1
c-0.4-0.3-0.8-0.5-1.1-0.5c-0.3,0-0.6,0.1-0.9,0.4c-0.2,0.3-0.3,0.6-0.2,1c0.1,0.3,0.4,0.7,0.8,1l1,0.8c0.4,0.3,0.8,0.5,1.2,0.5
c0.4,0,0.6-0.1,0.9-0.4c0.2-0.3,0.3-0.6,0.2-1c-0.1-0.3-0.4-0.7-0.8-1L268.7,80.1z"/>
<path class="st42" d="M272.5,80.7l-0.3,0.3l-0.4-0.4l0.3-0.3L272.5,80.7z"/>
<path class="st42" d="M274.4,76.6c0.4,0.5,0.6,1,0.6,1.5s-0.2,0.8-0.6,1.1c-0.4,0.3-0.8,0.4-1.3,0.3c-0.4-0.1-0.9-0.4-1.2-1
l-0.7-0.9c-0.4-0.5-0.6-1-0.6-1.5c0-0.5,0.2-0.8,0.6-1.1c0.4-0.3,0.8-0.4,1.3-0.3c0.4,0.1,0.9,0.4,1.2,1L274.4,76.6z M273.4,75.9
c-0.3-0.4-0.6-0.7-1-0.8s-0.6,0-1,0.2c-0.3,0.2-0.5,0.5-0.4,0.9s0.2,0.7,0.5,1.1l0.8,1c0.3,0.4,0.6,0.7,1,0.8
c0.3,0.1,0.7,0.1,1-0.2c0.3-0.2,0.5-0.5,0.4-0.9c0-0.3-0.2-0.7-0.5-1.2L273.4,75.9z"/>
<path class="st42" d="M276.8,77.6l-0.4,0.2l-0.3-0.5l0.4-0.2L276.8,77.6z"/>
<path class="st42" d="M277.5,77.2l-0.1-0.3l0.9-2.4c0.2-0.4,0.3-0.8,0.3-1.1s0-0.5,0-0.7c-0.1-0.3-0.3-0.5-0.5-0.6
c-0.2-0.1-0.5-0.1-0.8,0c-0.4,0.1-0.6,0.3-0.7,0.6s-0.1,0.6,0,0.9l-0.4,0.1l0,0c-0.2-0.4-0.2-0.8,0-1.2s0.5-0.6,1-0.8
c0.4-0.2,0.8-0.2,1.1,0c0.3,0.1,0.6,0.4,0.7,0.8c0.1,0.3,0.1,0.6,0,0.9c-0.1,0.3-0.2,0.7-0.4,1.2l-0.8,2l0,0l2.1-0.8l-0.2-0.7
l0.4-0.1l0.4,1L277.5,77.2z"/>
<path class="st42" d="M281.7,75.9l-0.5,0.1l-0.1-0.6l0.5-0.1L281.7,75.9z"/>
<path class="st42" d="M285.1,73.9l0.8,0l0,0.4l-0.8,0l0.1,0.9l0.6,0l0,0.3l-1.6,0.1l0-0.3l0.6-0.1l-0.1-0.9l-2.4,0.1l0-0.2
l2.2-3.7l0.5,0L285.1,73.9z M282.8,74l1.9-0.1l-0.2-2.9l0,0l-0.2,0.4L282.8,74z"/>
</g>
<g>
<path class="st42" d="M307.2,83.1l0.5-0.7l-3.4-2.7l-0.5,0.9l-0.2-0.2l0.7-1.3l3.7,3l0.6-0.7l0.2,0.2l-1.4,1.8L307.2,83.1z"/>
<path class="st42" d="M310.3,77.5c0.4,0.5,0.7,1,0.7,1.4c0,0.5-0.2,0.8-0.5,1.2c-0.4,0.3-0.8,0.5-1.2,0.4
c-0.4-0.1-0.9-0.4-1.3-0.9l-0.8-0.9c-0.4-0.5-0.7-1-0.7-1.4c0-0.5,0.1-0.8,0.5-1.2c0.4-0.3,0.8-0.5,1.2-0.4
c0.4,0.1,0.9,0.4,1.3,0.9L310.3,77.5z M309.1,76.9c-0.3-0.4-0.7-0.6-1-0.7s-0.6,0-0.9,0.3c-0.3,0.2-0.4,0.5-0.4,0.9
c0,0.3,0.2,0.7,0.6,1.1l0.8,1c0.3,0.4,0.7,0.6,1,0.7s0.7,0,0.9-0.2c0.3-0.2,0.4-0.5,0.4-0.9c0-0.3-0.2-0.7-0.6-1.1L309.1,76.9z"/>
<path class="st42" d="M312.7,78.4l-0.4,0.3l-0.3-0.5l0.4-0.3L312.7,78.4z"/>
<path class="st42" d="M315.5,74.7c0.3,0.6,0.4,1.1,0.3,1.6c-0.1,0.4-0.4,0.8-0.8,1c-0.5,0.2-0.9,0.2-1.3,0c-0.4-0.2-0.7-0.6-1-1.2
l-0.5-1c-0.3-0.6-0.4-1.1-0.3-1.6c0.1-0.4,0.4-0.8,0.8-1c0.5-0.2,0.9-0.2,1.3,0c0.4,0.2,0.7,0.6,1,1.2L315.5,74.7z M314.6,73.8
c-0.2-0.5-0.5-0.8-0.8-1c-0.3-0.2-0.6-0.2-1,0c-0.3,0.2-0.5,0.4-0.6,0.7c-0.1,0.3,0,0.7,0.2,1.2l0.5,1.2c0.2,0.5,0.5,0.8,0.8,1
c0.3,0.2,0.6,0.2,1,0c0.3-0.2,0.5-0.4,0.6-0.8s0-0.8-0.2-1.2L314.6,73.8z"/>
<path class="st42" d="M317.5,76.2l-0.5,0.1l-0.2-0.6l0.5-0.1L317.5,76.2z"/>
<path class="st42" d="M318.3,75.9l0-0.3l1.4-2.1c0.3-0.4,0.4-0.7,0.5-1c0.1-0.2,0.1-0.5,0.1-0.7c0-0.3-0.2-0.6-0.4-0.7
s-0.5-0.2-0.8-0.2c-0.4,0.1-0.7,0.2-0.8,0.4c-0.2,0.2-0.2,0.5-0.2,0.9l-0.4,0.1l0,0c-0.1-0.4,0-0.8,0.3-1.1
c0.2-0.3,0.6-0.5,1.1-0.6c0.4-0.1,0.8,0,1.1,0.2c0.3,0.2,0.5,0.5,0.5,1c0,0.3,0,0.6-0.1,0.9c-0.1,0.3-0.3,0.7-0.6,1.1l-1.2,1.8
l0,0l2.2-0.3l-0.1-0.7l0.4-0.1l0.1,1.1L318.3,75.9z"/>
<path class="st42" d="M322.7,75.5l-0.5,0l0-0.6l0.5,0L322.7,75.5z"/>
<path class="st42" d="M326.7,71.6l0-0.4l-1.8-0.3l-0.4,1.8c0.1-0.1,0.3-0.2,0.5-0.2c0.2,0,0.4,0,0.6,0c0.4,0.1,0.8,0.2,1,0.6
s0.3,0.8,0.2,1.3c-0.1,0.5-0.3,0.9-0.6,1.2c-0.3,0.3-0.7,0.4-1.2,0.3c-0.4-0.1-0.7-0.2-1-0.5c-0.2-0.3-0.3-0.6-0.2-1.1l0,0
l0.4,0.1c0,0.3,0,0.6,0.2,0.8c0.2,0.2,0.4,0.3,0.7,0.4c0.4,0.1,0.7,0,0.9-0.2c0.2-0.2,0.4-0.5,0.4-0.9c0.1-0.4,0-0.7-0.1-1
c-0.2-0.3-0.4-0.4-0.7-0.5c-0.3,0-0.6,0-0.8,0s-0.3,0.2-0.4,0.4l-0.3-0.1l0.7-2.7l2.5,0.4l-0.1,0.8L326.7,71.6z"/>
</g>
<g>
<path class="st42" d="M134.4,95.3l0.5-0.8l-3.4-2.6l-0.5,0.9l-0.2-0.2l0.6-1.3l3.8,2.9l0.6-0.7l0.2,0.2l-1.4,1.8L134.4,95.3z"/>
<path class="st42" d="M137.3,89.6c0.5,0.5,0.7,0.9,0.8,1.4c0,0.5-0.1,0.8-0.5,1.2c-0.4,0.3-0.8,0.5-1.2,0.4
c-0.5-0.1-0.9-0.3-1.4-0.8l-0.8-0.8c-0.5-0.5-0.7-0.9-0.8-1.4c0-0.5,0.1-0.9,0.5-1.2c0.4-0.3,0.8-0.5,1.2-0.4
c0.5,0.1,0.9,0.3,1.4,0.8L137.3,89.6z M136.1,89.1c-0.4-0.4-0.7-0.6-1.1-0.7c-0.3-0.1-0.6,0-0.9,0.3c-0.3,0.3-0.4,0.6-0.3,0.9
s0.3,0.7,0.6,1.1l0.9,0.9c0.4,0.4,0.7,0.6,1.1,0.7c0.3,0.1,0.7,0,0.9-0.3c0.3-0.3,0.4-0.6,0.3-0.9c-0.1-0.3-0.3-0.7-0.6-1.1
L136.1,89.1z"/>
<path class="st42" d="M139.7,90.3l-0.4,0.3l-0.3-0.5l0.4-0.3L139.7,90.3z"/>
<path class="st42" d="M142.2,86.4c0.3,0.6,0.5,1.1,0.4,1.5c-0.1,0.4-0.3,0.8-0.7,1.1c-0.4,0.3-0.9,0.3-1.3,0.1
c-0.4-0.2-0.8-0.5-1.1-1.1l-0.6-1c-0.3-0.6-0.5-1.1-0.4-1.5s0.3-0.8,0.7-1.1c0.4-0.3,0.9-0.3,1.3-0.1s0.8,0.5,1.1,1.1L142.2,86.4z
M141.2,85.5c-0.3-0.5-0.6-0.8-0.9-0.9c-0.3-0.1-0.6-0.1-1,0.1c-0.3,0.2-0.5,0.5-0.5,0.8c0,0.3,0.1,0.7,0.4,1.2l0.6,1.1
c0.3,0.4,0.6,0.7,0.9,0.9s0.6,0.1,1-0.1c0.3-0.2,0.5-0.5,0.5-0.8c0-0.3-0.1-0.7-0.4-1.2L141.2,85.5z"/>
<path class="st42" d="M144.4,87.6l-0.4,0.2l-0.2-0.5l0.4-0.2L144.4,87.6z"/>
<path class="st42" d="M147.7,84.4c0.2,0.6,0.2,1.2,0,1.6c-0.2,0.4-0.5,0.7-1,0.8c-0.5,0.1-0.9,0.1-1.3-0.2
c-0.4-0.3-0.7-0.7-0.8-1.3l-0.3-1.1c-0.2-0.6-0.2-1.2,0-1.6c0.2-0.4,0.5-0.7,1-0.9c0.5-0.1,0.9-0.1,1.3,0.2
c0.4,0.3,0.7,0.7,0.8,1.3L147.7,84.4z M147,83.3c-0.2-0.5-0.4-0.9-0.6-1.1c-0.3-0.2-0.6-0.3-1-0.2c-0.4,0.1-0.6,0.3-0.7,0.7
c-0.1,0.3-0.1,0.7,0.1,1.2l0.4,1.2c0.2,0.5,0.4,0.9,0.6,1.1c0.3,0.2,0.6,0.3,1,0.2c0.4-0.1,0.6-0.3,0.7-0.7
c0.1-0.3,0.1-0.7-0.1-1.2L147,83.3z"/>
<path class="st42" d="M149.6,86.1l-0.5,0.1l-0.1-0.6l0.5-0.1L149.6,86.1z"/>
<path class="st42" d="M152.7,81.4l-0.1-0.4l-1.8,0.1l-0.1,1.8c0.1-0.1,0.3-0.2,0.4-0.3c0.2-0.1,0.4-0.1,0.6-0.1
c0.4,0,0.8,0.1,1.1,0.4c0.3,0.3,0.4,0.7,0.5,1.2c0,0.5-0.1,0.9-0.3,1.3s-0.6,0.5-1.1,0.5c-0.4,0-0.8-0.1-1.1-0.3s-0.4-0.6-0.5-1
l0,0l0.4,0c0,0.3,0.1,0.6,0.3,0.8c0.2,0.2,0.5,0.2,0.8,0.2c0.4,0,0.7-0.2,0.8-0.4c0.2-0.2,0.2-0.6,0.2-1c0-0.4-0.1-0.7-0.3-0.9
c-0.2-0.2-0.5-0.3-0.8-0.3c-0.3,0-0.6,0.1-0.7,0.2c-0.2,0.1-0.3,0.3-0.3,0.5l-0.3,0l0.1-2.8l2.6-0.2l0.1,0.8L152.7,81.4z"/>
</g>
<g>
<path class="st42" d="M133.8,317l0.5-0.8l-3.4-2.6l-0.5,0.9l-0.2-0.2l0.6-1.3l3.8,2.9l0.6-0.7l0.2,0.2l-1.4,1.8L133.8,317z"/>
<path class="st42" d="M136.6,311.4c0.5,0.5,0.7,0.9,0.8,1.4c0,0.5-0.1,0.8-0.5,1.2c-0.4,0.3-0.8,0.5-1.2,0.4
c-0.5-0.1-0.9-0.3-1.4-0.8l-0.8-0.8c-0.5-0.5-0.7-0.9-0.8-1.4c0-0.5,0.1-0.9,0.5-1.2c0.4-0.3,0.8-0.5,1.2-0.4
c0.5,0.1,0.9,0.3,1.4,0.8L136.6,311.4z M135.5,310.8c-0.4-0.4-0.7-0.6-1.1-0.7c-0.3-0.1-0.6,0-0.9,0.3c-0.3,0.3-0.4,0.6-0.3,0.9
s0.3,0.7,0.6,1.1l0.9,0.9c0.4,0.4,0.7,0.6,1.1,0.7c0.3,0.1,0.7,0,0.9-0.3c0.3-0.3,0.4-0.6,0.3-0.9c-0.1-0.3-0.3-0.7-0.6-1.1
L135.5,310.8z"/>
<path class="st42" d="M139.1,312l-0.4,0.3l-0.3-0.5l0.4-0.3L139.1,312z"/>
<path class="st42" d="M141.5,308.1c0.3,0.6,0.5,1.1,0.4,1.5c-0.1,0.4-0.3,0.8-0.7,1.1c-0.4,0.3-0.9,0.3-1.3,0.1
c-0.4-0.2-0.8-0.5-1.1-1.1l-0.6-1c-0.3-0.6-0.5-1.1-0.4-1.5s0.3-0.8,0.7-1.1c0.4-0.3,0.9-0.3,1.3-0.1s0.8,0.5,1.1,1.1L141.5,308.1
z M140.6,307.3c-0.3-0.5-0.6-0.8-0.9-0.9c-0.3-0.1-0.6-0.1-1,0.1c-0.3,0.2-0.5,0.5-0.5,0.8c0,0.3,0.1,0.7,0.4,1.2l0.6,1.1
c0.3,0.4,0.6,0.7,0.9,0.9s0.6,0.1,1-0.1c0.3-0.2,0.5-0.5,0.5-0.8c0-0.3-0.1-0.7-0.4-1.2L140.6,307.3z"/>
<path class="st42" d="M143.8,309.3l-0.4,0.2l-0.2-0.5l0.4-0.2L143.8,309.3z"/>
<path class="st42" d="M144.5,308.6l0.9-0.3l-1.3-4.1l-0.9,0.5l-0.1-0.3l1.3-0.7l1.5,4.5l0.9-0.2l0.1,0.3l-2.1,0.7L144.5,308.6z"/>
<path class="st42" d="M147.9,308l-0.5,0.1l-0.1-0.6l0.5-0.1L147.9,308z"/>
<path class="st42" d="M150.8,303.2l-0.1-0.4l-1.8,0.2l0,1.8c0.1-0.1,0.2-0.2,0.4-0.3c0.1-0.1,0.4-0.1,0.6-0.2
c0.4-0.1,0.8,0.1,1.1,0.3c0.3,0.3,0.5,0.7,0.5,1.2c0.1,0.5,0,0.9-0.3,1.3c-0.2,0.3-0.6,0.5-1.1,0.6c-0.4,0-0.8,0-1.1-0.2
c-0.3-0.2-0.5-0.5-0.5-1l0,0l0.4,0c0,0.3,0.2,0.6,0.4,0.8c0.2,0.2,0.5,0.2,0.8,0.2c0.4,0,0.7-0.2,0.8-0.4c0.2-0.2,0.2-0.6,0.2-1
c0-0.4-0.2-0.7-0.4-0.9c-0.2-0.2-0.5-0.3-0.8-0.3c-0.3,0-0.6,0.1-0.7,0.2c-0.2,0.1-0.3,0.3-0.3,0.5l-0.3,0l0-2.8l2.6-0.3l0.1,0.8
L150.8,303.2z"/>
</g>
</g>
<g id="deployments">
<g>
<g>
<circle class="st45" cx="249.9" cy="211.2" r="14.1"/>
<g>
<g>
<path class="st46" d="M254.3,202.9c3,1.6,5,4.7,5,8.3c0,5.2-4.2,9.4-9.4,9.4c-5.2,0-9.4-4.2-9.4-9.4c0-4.1,2.6-7.6,6.3-8.9"/>
<g>
<polygon class="st6" points="255.7,205.7 254.6,203.1 257.3,202 255.7,201.3 253,202.4 254.1,205 "/>
</g>
</g>
</g>
<g>
<path class="st6" d="M244.7,214.9l0.8-0.1l3.3-9.5h2.2l3.3,9.5l0.8,0.1v1.3h-3.7v-1.3l0.8-0.1l-0.5-1.5h-3.5l-0.5,1.5l0.8,0.1
v1.3h-3.7V214.9z M248.6,211.7h2.5l-1.2-3.8h0L248.6,211.7z"/>
</g>
</g>
</g>
</g>
<g id="containers_x2F_volumes">
<g>
<polygon class="st50" points="275.7,88.4 285.2,82.9 294.7,88.4 285.2,93.8 "/>
<polygon class="st50" points="275.7,99.3 275.7,88.4 285.2,93.8 285.2,104.8 "/>
<polygon class="st50" points="285.2,104.8 285.2,93.8 294.7,88.4 294.7,99.3 "/>
</g>
<g>
<polygon class="st50" points="312.9,88.4 322.4,82.9 331.9,88.4 322.4,93.8 "/>
<polygon class="st50" points="312.9,99.3 312.9,88.4 322.4,93.8 322.4,104.8 "/>
<polygon class="st50" points="322.4,104.8 322.4,93.8 331.9,88.4 331.9,99.3 "/>
</g>
<g>
<polygon class="st50" points="141.5,101.8 153.4,94.9 165.3,101.8 153.4,108.6 "/>
<polygon class="st50" points="141.5,115.5 141.5,101.8 153.4,108.6 153.4,122.3 "/>
<polygon class="st50" points="153.4,122.3 153.4,108.6 165.3,101.8 165.3,115.5 "/>
</g>
<g>
<polygon class="st50" points="140.9,323.5 152.8,316.6 164.6,323.5 152.8,330.3 "/>
<polygon class="st50" points="140.9,337.2 140.9,323.5 152.8,330.3 152.8,344 "/>
<polygon class="st50" points="152.8,344 152.8,330.3 164.6,323.5 164.6,337.2 "/>
</g>
</g>
<g id="labels_x2F_selectors">
</g>
<g id="description">
<g>
<path class="st42" d="M58.8,130.4h-0.9l-0.2-1.2c-0.2-0.1-0.4-0.3-0.7-0.4s-0.6-0.1-1-0.1c-0.6,0-1.1,0.1-1.4,0.4s-0.5,0.6-0.5,1
c0,0.4,0.2,0.7,0.5,0.9s0.9,0.5,1.6,0.7c0.9,0.2,1.6,0.6,2,1s0.7,1,0.7,1.6c0,0.7-0.3,1.2-0.8,1.7s-1.3,0.6-2.2,0.6
c-0.7,0-1.2-0.1-1.7-0.3s-0.9-0.5-1.2-0.8v-1.6h0.9L54,135c0.2,0.2,0.5,0.3,0.8,0.5s0.7,0.2,1.1,0.2c0.6,0,1-0.1,1.4-0.4
s0.5-0.6,0.5-1c0-0.4-0.1-0.7-0.4-1s-0.8-0.5-1.6-0.7c-0.9-0.2-1.6-0.5-2.1-0.9s-0.8-0.9-0.8-1.6c0-0.7,0.3-1.2,0.8-1.7
s1.3-0.7,2.2-0.7c0.6,0,1.1,0.1,1.6,0.3s0.9,0.5,1.2,0.7V130.4z"/>
<path class="st42" d="M62.9,136.5c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S63.4,136.5,62.9,136.5z M62.7,130.8c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S63.2,130.8,62.7,130.8z"/>
<path class="st42" d="M66.4,130.8V130h2l0.1,0.9c0.2-0.3,0.4-0.6,0.7-0.8s0.6-0.3,0.9-0.3c0.1,0,0.2,0,0.3,0s0.2,0,0.2,0l-0.2,1.1
l-0.7,0c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.3-0.5,0.6v3.6l1,0.2v0.7h-3.1v-0.7l1-0.2v-4.5L66.4,130.8z"/>
<path class="st42" d="M73.7,130.8l-0.8,0.1l1.3,3.6l0.1,0.5h0l0.1-0.5l1.3-3.6l-0.8-0.1V130h2.4v0.7l-0.5,0.1l-2.1,5.5h-0.9
l-2.2-5.5l-0.5-0.1V130h2.4V130.8z"/>
<path class="st42" d="M78.2,135.6l1-0.2v-4.5l-1-0.2V130h2.1v5.4l1,0.2v0.7h-3.1V135.6z M80.3,128.4h-1.2v-1.2h1.2V128.4z"/>
<path class="st42" d="M85,135.6c0.4,0,0.7-0.1,1-0.4s0.4-0.5,0.4-0.9h1l0,0c0,0.5-0.2,1-0.7,1.5s-1.1,0.6-1.8,0.6
c-0.9,0-1.6-0.3-2.1-0.9s-0.7-1.4-0.7-2.3v-0.2c0-0.9,0.2-1.7,0.7-2.3s1.2-0.9,2.1-0.9c0.5,0,1,0.1,1.4,0.3s0.7,0.4,1,0.7l0.1,1.4
h-0.9l-0.3-1c-0.1-0.1-0.3-0.2-0.5-0.3s-0.5-0.1-0.7-0.1c-0.6,0-1,0.2-1.3,0.7s-0.4,1-0.4,1.6v0.2c0,0.6,0.1,1.2,0.4,1.6
S84.4,135.6,85,135.6z"/>
<path class="st42" d="M91.5,136.5c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S92,136.5,91.5,136.5z M91.3,130.8c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S91.8,130.8,91.3,130.8z"/>
</g>
<line class="st62" x1="153.8" y1="134" x2="97.8" y2="134"/>
<g>
<path class="st42" d="M316.4,196.8c1.1,0,2,0.3,2.7,1s1,1.6,1,2.7v1.2c0,1.1-0.3,2-1,2.7s-1.6,1-2.7,1h-3.6v-0.7l1-0.2v-6.7
l-1-0.2v-0.7h1H316.4z M315,197.7v6.7h1.5c0.8,0,1.4-0.3,1.9-0.8s0.7-1.2,0.7-2v-1.2c0-0.8-0.2-1.5-0.7-2s-1.1-0.8-1.9-0.8H315z"
/>
<path class="st42" d="M324.2,205.5c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S324.7,205.5,324.2,205.5z M324,199.8c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S324.5,199.8,324,199.8z"/>
<path class="st42" d="M327.6,207.1l1-0.2v-7l-1-0.2V199h1.9l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2
c0.8,0,1.4,0.3,1.8,0.9s0.7,1.4,0.7,2.5v0.1c0,0.9-0.2,1.7-0.7,2.2s-1,0.8-1.8,0.8c-0.4,0-0.7-0.1-1-0.2s-0.5-0.3-0.8-0.6v2.2
l1,0.2v0.7h-3.1V207.1z M332.8,202.3c0-0.7-0.1-1.3-0.4-1.8s-0.7-0.7-1.3-0.7c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.4-0.6,0.6v3.1
c0.1,0.3,0.3,0.5,0.6,0.6s0.5,0.2,0.9,0.2c0.5,0,1-0.2,1.2-0.6s0.4-0.9,0.4-1.6V202.3z"/>
<path class="st42" d="M334.8,197v-0.7h2.1v8.2l1,0.2v0.7h-3.1v-0.7l1-0.2v-7.3L334.8,197z"/>
<path class="st42" d="M338.6,202.1c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,2.1-0.9c0.9,0,1.6,0.3,2.1,0.9s0.8,1.4,0.8,2.3v0.1
c0,0.9-0.3,1.7-0.8,2.3s-1.2,0.9-2.1,0.9c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3V202.1z M339.8,202.3c0,0.7,0.1,1.2,0.4,1.7
s0.7,0.7,1.3,0.7c0.5,0,1-0.2,1.2-0.7s0.4-1,0.4-1.7v-0.1c0-0.7-0.1-1.2-0.4-1.7s-0.7-0.7-1.3-0.7s-1,0.2-1.3,0.7s-0.4,1-0.4,1.7
V202.3z"/>
<path class="st42" d="M351.3,199.8l-0.6,0.1l-2.4,6.5c-0.2,0.4-0.4,0.8-0.7,1.1s-0.7,0.5-1.2,0.5c-0.1,0-0.2,0-0.4,0
s-0.3,0-0.3-0.1l0.1-0.9c0,0,0,0,0.2,0s0.3,0,0.3,0c0.2,0,0.4-0.1,0.6-0.3s0.3-0.5,0.4-0.7l0.3-0.7l-2.1-5.4l-0.6-0.1V199h2.6v0.7
l-0.7,0.1l1.1,3.1l0.2,0.8h0l1.3-3.9l-0.7-0.1V199h2.6V199.8z"/>
<path class="st42" d="M351.8,204.6l1-0.2v-4.5l-1-0.2V199h2l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2s0.8,0.1,1.1,0.3
s0.5,0.5,0.7,0.9c0.2-0.4,0.5-0.6,0.8-0.9c0.3-0.2,0.7-0.3,1.1-0.3c0.6,0,1.2,0.2,1.5,0.7s0.6,1.1,0.6,2v2.9l1,0.2v0.7h-3.1v-0.7
l1-0.2v-2.9c0-0.6-0.1-1.1-0.3-1.3s-0.5-0.4-1-0.4c-0.4,0-0.7,0.1-1,0.4s-0.4,0.6-0.4,1.1v3.1l1,0.2v0.7h-3.1v-0.7l1-0.2v-2.9
c0-0.6-0.1-1-0.3-1.3s-0.5-0.4-1-0.4c-0.4,0-0.6,0.1-0.9,0.2s-0.4,0.3-0.5,0.6v3.8l1,0.2v0.7h-3.1V204.6z"/>
<path class="st42" d="M366.2,205.5c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S366.7,205.5,366.2,205.5z M366,199.8c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S366.5,199.8,366,199.8z"/>
<path class="st42" d="M369.6,204.6l1-0.2v-4.5l-1-0.2V199h2l0.1,0.9c0.2-0.3,0.5-0.6,0.8-0.8s0.7-0.3,1.1-0.3
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.9v3.1l1,0.2v0.7h-3.1v-0.7l1-0.2v-3.1c0-0.6-0.1-1-0.3-1.2s-0.6-0.4-1-0.4
c-0.3,0-0.6,0.1-0.9,0.2s-0.5,0.4-0.6,0.7v3.7l1,0.2v0.7h-3.1V204.6z"/>
<path class="st42" d="M379.5,197.5v1.5h1.2v0.9h-1.2v3.8c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2c0.1,0,0.2,0,0.3,0s0.2,0,0.3-0.1
l0.2,0.8c-0.1,0.1-0.3,0.1-0.5,0.2s-0.4,0.1-0.6,0.1c-0.5,0-0.8-0.1-1.1-0.4s-0.4-0.7-0.4-1.3v-3.8h-1V199h1v-1.5H379.5z"/>
</g>
<line class="st62" x1="310.4" y1="203" x2="249.9" y2="203"/>
</g>
<g id="Layer_14">
</g>
</svg>

After

Width:  |  Height:  |  Size: 29 KiB

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 350 200"><defs><style>.cls-1,.cls-5,.cls-8{fill:none;stroke-miterlimit:10}.cls-1,.cls-5{stroke:#06f7c9;stroke-width:2.77px}.cls-2{fill:#8115ff}.cls-2,.cls-7,.cls-8{stroke:#011f38}.cls-2,.cls-7{stroke-linecap:round;stroke-linejoin:round}.cls-2,.cls-8{stroke-width:.8px}.cls-3{fill:#fff}.cls-4{fill:#326de6}.cls-5,.cls-6{opacity:.3}.cls-7{fill:#06f7c9;stroke-width:.83px}.cls-9{fill:#011f38}</style></defs><title>16.07.28_k8s_visual_diagrams</title><g id="Graphics"><circle class="cls-1" cx="89.9" cy="118.5" r="28.95"/><path class="cls-2" d="M76.49 110.76l13.41-7.74 13.41 7.74-13.41 7.75-13.41-7.75z"/><path class="cls-2" d="M76.49 126.25v-15.49l13.41 7.75v15.48l-13.41-7.74zM89.9 133.99v-15.48l13.41-7.75v15.49l-13.41 7.74z"/><path class="cls-3" d="M229.63 167.54l-58.49-33.77V66.23l58.49-33.77 58.5 33.77v67.54l-58.5 33.77z"/><path class="cls-4" d="M229.63 168.46a.92.92 0 0 1-.46-.12l-58.49-33.77a.92.92 0 0 1-.46-.8V66.23a.92.92 0 0 1 .46-.8l58.49-33.77a.92.92 0 0 1 .92 0l58.49 33.77a.92.92 0 0 1 .46.8v67.54a.92.92 0 0 1-.46.8l-58.49 33.77a.92.92 0 0 1-.46.12zm-57.58-35.22l57.58 33.24 57.58-33.24V66.76l-57.58-33.24-57.57 33.24z"/><circle class="cls-5" cx="208.95" cy="79.69" r="19.42"/><circle class="cls-1" cx="253.81" cy="118.45" r="19.42"/><path class="cls-2" d="M245.18 113.47l8.63-4.99 8.64 4.99-8.64 4.98-8.63-4.98z"/><path class="cls-2" d="M245.18 123.44v-9.97l8.63 4.98v9.97l-8.63-4.98zM253.81 128.42v-9.97l8.64-4.98v9.97l-8.64 4.98z"/><g class="cls-6"><path class="cls-7" d="M200.32 74.7l8.63-4.98 8.64 4.98-8.64 4.99-8.63-4.99z"/><path class="cls-7" d="M200.32 84.67V74.7l8.63 4.99v9.97l-8.63-4.99zM208.95 89.66v-9.97l8.64-4.99v9.97l-8.64 4.99z"/></g><path class="cls-8" d="M138.29 119.46h78.43"/><path class="cls-9" d="M214.07 122.73l-.55-.59 2.89-2.68-2.89-2.69.55-.58 3.52 3.27-3.52 3.27z"/></g></svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

@@ -0,0 +1,395 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 484 440.4" style="enable-background:new 0 0 484 440.4;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FFFFFF;stroke:#326DE6;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st1{opacity:0.71;fill:#326CE6;}
.st2{opacity:0.45;fill:#FFFFFF;}
.st3{fill:#FFFFFF;stroke:#006DE9;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st4{fill:#006DE9;}
.st5{fill:#A0CAEA;}
.st6{fill:#FFFFFF;}
.st7{opacity:0.13;}
.st8{fill:url(#SVGID_1_);}
.st9{fill:url(#SVGID_2_);}
.st10{fill:#FFFFFF;stroke:#006DE9;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st11{fill:#FFFFFF;stroke:#006DE9;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st12{fill:#FFFFFF;stroke:#326DE6;stroke-width:3.2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st13{fill:#326DE6;}
.st14{fill:none;stroke:#326DE6;stroke-width:2.4;stroke-miterlimit:10;}
.st15{fill:#A0CAE9;}
.st16{fill:#FFFFFF;stroke:#326DE6;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st17{fill:#FFFFFF;stroke:#326DE6;stroke-width:1.6;stroke-miterlimit:10;}
.st18{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;}
.st19{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3749,1.5832;}
.st20{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4006,1.6004;}
.st21{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st22{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st23{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3975,1.5984;}
.st24{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.395,1.5966;}
.st25{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3963,1.5976;}
.st26{opacity:0.1;fill:#EEF406;}
.st27{opacity:2.000000e-02;fill:#EEF406;}
.st28{opacity:0.1;fill:#06F7C9;}
.st29{fill:none;stroke:#006DE9;stroke-width:0.8;stroke-miterlimit:10;}
.st30{opacity:0.1;fill:url(#SVGID_3_);}
.st31{opacity:0.1;fill:url(#SVGID_4_);}
.st32{opacity:0.1;fill:url(#SVGID_5_);}
.st33{opacity:0.1;fill:url(#SVGID_6_);}
.st34{fill:none;stroke:#326DE6;stroke-width:1.2;stroke-miterlimit:10;}
.st35{opacity:0.1;fill:url(#SVGID_7_);}
.st36{opacity:0.1;fill:url(#SVGID_8_);}
.st37{opacity:0.1;fill:url(#SVGID_9_);}
.st38{opacity:0.1;fill:url(#SVGID_10_);}
.st39{fill:none;stroke:#326DE6;stroke-width:2;stroke-miterlimit:10;}
.st40{opacity:0.4;fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st41{fill:none;stroke:#EEF406;stroke-width:2.4596;stroke-miterlimit:10;}
.st42{fill:#011F38;}
.st43{opacity:0.4;}
.st44{opacity:0.1;}
.st45{fill:#326DE6;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st46{fill:none;stroke:#FFFFFF;stroke-width:1.2;stroke-linecap:round;stroke-linejoin:round;}
.st47{fill:#06F7C9;stroke:#FFFFFF;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st48{fill:none;stroke:#011F38;stroke-width:1.2;stroke-linecap:round;stroke-linejoin:round;}
.st49{fill:#326DE6;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;}
.st50{fill:#06F7C9;stroke:#011F38;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st51{fill:#8115FF;stroke:#011F38;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st52{opacity:0.3;}
.st53{opacity:0.2;fill:#6D6E71;}
.st54{fill:#EEF406;}
.st55{fill:#06F7C9;}
.st56{fill:#FFFFFF;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st57{fill:#FFFFFF;stroke:#EEF406;stroke-width:1.6;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st58{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4938,1.6626;}
.st59{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.0084,1.3389;}
.st60{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.724,1.816;}
.st61{fill:#011F38;stroke:#414042;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st62{fill:none;stroke:#011F38;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st63{fill:none;stroke:#011F38;stroke-width:0.2813;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
</style>
<symbol id="node_high_level" viewBox="-81 -93 162 186.1">
<polygon class="st0" points="-80,-46 -80,46 0,92 80,46 80,-46 0,-92 "/>
<g id="Isolation_Mode_3_">
</g>
</symbol>
<symbol id="node_x5F_empty" viewBox="-87.5 -100.6 175.1 201.1">
<use xlink:href="#node_high_level" width="162" height="186.1" id="XMLID_201_" x="-81" y="-93" transform="matrix(1.0808 0 0 1.0808 -3.292006e-05 -3.749943e-05)" style="overflow:visible;"/>
<g>
<polygon class="st1" points="76.8,-28.1 -14,-80.3 0,-88.3 76.7,-44.4 "/>
<polygon class="st2" points="76.8,-28.1 32.1,-53.8 38.8,-66.1 76.7,-44.4 "/>
</g>
</symbol>
<symbol id="node_x5F_new" viewBox="-87.6 -101 175.2 202">
<polygon class="st3" points="0,-100 -86.6,-50 -86.6,50 0,100 86.6,50 86.6,-50 "/>
<polygon class="st4" points="-86.6,-20.2 -86.6,-50 0,-100 25.8,-85.1 "/>
<polygon class="st5" points="-40.8,-70.7 -32.9,-57 15.7,-85.1 0,-94.3 "/>
<text transform="matrix(0.866 -0.5 -0.5 -0.866 -33.9256 -70.7388)" class="st6" style="font-family:'RobotoSlab-Regular'; font-size:11.3632px;">Docker</text>
<text transform="matrix(0.866 -0.5 -0.5 -0.866 -76.0668 -46.4087)" class="st6" style="font-family:'RobotoSlab-Regular'; font-size:11.3632px;">Kubelt</text>
</symbol>
<g id="CLUSTER">
</g>
<g id="master">
<g id="master_x5F_level1">
</g>
<polygon class="st12" points="220.9,265.9 196.7,235.6 205.3,197.8 240.2,181 275.1,197.8 283.8,235.6 259.6,265.9 "/>
</g>
<g id="Node">
<g id="Node_x5F_level3_x5F_1">
<g id="Isolation_Mode">
</g>
</g>
<g>
<polygon class="st17" points="303.8,179.8 245.7,146.2 245.7,79.1 303.8,45.6 361.9,79.1 361.9,146.2 "/>
</g>
<g>
<polygon class="st17" points="176.6,179.7 118.6,146.1 118.6,79.1 176.6,45.5 234.7,79.1 234.7,146.1 "/>
</g>
<g>
<polygon class="st17" points="176.6,401.4 118.6,367.9 118.6,300.8 176.6,267.2 234.7,300.8 234.7,367.9 "/>
</g>
</g>
<g id="service">
<g>
<g>
<path class="st22" d="M120.9,329.1v1.2h0v0c0,0.4,0,0.8,0,1.2"/>
<path class="st23" d="M121,333.1c1.4,16.7,15.6,29.8,32.7,29.7c17.9-0.2,32.2-15,32.2-32.9V143.4c0-11.7,9.5-21.2,21.2-21.2
h115.4c15.6,0,28.4-12.7,28.4-28.4c0-15.6-12.7-28.4-28.4-28.4h-169c-17.9,0-32.5,14.5-32.5,32.5v0v230.4"/>
</g>
</g>
<g>
<path d="M220.4,56.8h-1l-0.2-0.9c-0.1-0.1-0.3-0.1-0.5-0.2c-0.2-0.1-0.5-0.1-0.7-0.1c-0.4,0-0.7,0.1-0.9,0.2
c-0.2,0.2-0.3,0.4-0.3,0.6c0,0.2,0.1,0.4,0.3,0.6s0.6,0.3,1.1,0.5c0.8,0.2,1.3,0.5,1.7,0.8c0.4,0.3,0.6,0.8,0.6,1.4
c0,0.6-0.2,1-0.7,1.4c-0.5,0.3-1.1,0.5-1.8,0.5c-0.5,0-1-0.1-1.5-0.3s-0.8-0.4-1.1-0.7v-1.4h1.1l0.1,1c0.1,0.1,0.3,0.2,0.6,0.3
c0.2,0.1,0.5,0.1,0.8,0.1c0.4,0,0.7-0.1,0.9-0.2s0.3-0.4,0.3-0.6c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.2-0.5-0.3-1-0.5
c-0.8-0.2-1.4-0.5-1.8-0.8c-0.4-0.3-0.6-0.8-0.6-1.3c0-0.6,0.2-1,0.7-1.4s1.1-0.5,1.8-0.5c0.5,0,1,0.1,1.4,0.2s0.8,0.4,1.1,0.6
V56.8z"/>
<path d="M223.5,61.5c-0.7,0-1.3-0.2-1.8-0.7s-0.7-1.1-0.7-1.8v-0.2c0-0.8,0.2-1.4,0.6-1.9c0.4-0.5,1-0.7,1.7-0.7
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.7v0.7h-3l0,0c0,0.3,0.1,0.6,0.3,0.8c0.2,0.2,0.5,0.3,0.8,0.3c0.3,0,0.6,0,0.8-0.1
c0.2-0.1,0.4-0.2,0.7-0.3l0.4,0.8c-0.2,0.2-0.5,0.3-0.8,0.4S223.9,61.5,223.5,61.5z M223.3,57.3c-0.3,0-0.5,0.1-0.6,0.3
c-0.1,0.2-0.2,0.4-0.3,0.8l0,0h1.7v-0.1c0-0.3-0.1-0.5-0.2-0.7C223.8,57.4,223.6,57.3,223.3,57.3z"/>
<path d="M226.3,60.6l0.7-0.1v-3.1l-0.7-0.1v-0.8h2l0.1,0.7c0.1-0.3,0.3-0.5,0.5-0.6s0.4-0.2,0.7-0.2c0.1,0,0.1,0,0.2,0
c0.1,0,0.1,0,0.2,0l-0.1,1.2l-0.6,0c-0.2,0-0.4,0-0.5,0.1c-0.1,0.1-0.2,0.2-0.3,0.3v2.5l0.7,0.1v0.8h-2.7V60.6z"/>
<path d="M232.4,57.2l-0.5,0.1l0.7,2.3l0.1,0.5h0l0.1-0.5l0.7-2.3l-0.5-0.1v-0.8h2.3v0.8l-0.4,0.1l-1.5,4.2h-1.3l-1.5-4.2l-0.4-0.1
v-0.8h2.3V57.2z"/>
<path d="M235.7,60.6l0.7-0.1v-3.1l-0.7-0.1v-0.8h2.1v4.1l0.7,0.1v0.8h-2.7V60.6z M237.7,55.2h-1.4v-1h1.4V55.2z"/>
<path d="M241.2,60.5c0.2,0,0.4-0.1,0.6-0.2c0.1-0.1,0.2-0.3,0.2-0.6h1.2l0,0c0,0.5-0.2,0.9-0.6,1.3c-0.4,0.3-0.9,0.5-1.5,0.5
c-0.8,0-1.3-0.2-1.7-0.7c-0.4-0.5-0.6-1.1-0.6-1.8v-0.1c0-0.7,0.2-1.4,0.6-1.8c0.4-0.5,1-0.7,1.8-0.7c0.4,0,0.8,0.1,1.1,0.2
c0.3,0.1,0.6,0.3,0.8,0.5l0,1.4h-1.1l-0.2-0.8c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2-0.1-0.3-0.1c-0.4,0-0.7,0.1-0.8,0.4
s-0.2,0.6-0.2,1.1V59c0,0.5,0.1,0.8,0.2,1.1C240.6,60.4,240.9,60.5,241.2,60.5z"/>
<path d="M246.3,61.5c-0.7,0-1.3-0.2-1.8-0.7s-0.7-1.1-0.7-1.8v-0.2c0-0.8,0.2-1.4,0.6-1.9c0.4-0.5,1-0.7,1.7-0.7
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.7v0.7h-3l0,0c0,0.3,0.1,0.6,0.3,0.8c0.2,0.2,0.5,0.3,0.8,0.3c0.3,0,0.6,0,0.8-0.1
c0.2-0.1,0.4-0.2,0.7-0.3l0.4,0.8c-0.2,0.2-0.5,0.3-0.8,0.4S246.7,61.5,246.3,61.5z M246.2,57.3c-0.3,0-0.5,0.1-0.6,0.3
c-0.1,0.2-0.2,0.4-0.3,0.8l0,0h1.7v-0.1c0-0.3-0.1-0.5-0.2-0.7C246.7,57.4,246.5,57.3,246.2,57.3z"/>
<path d="M251.3,60.6l0.5-0.1l2.1-5.9h1.4l2.1,5.9l0.5,0.1v0.8h-2.3v-0.8l0.5-0.1l-0.3-0.9h-2.2l-0.3,0.9l0.5,0.1v0.8h-2.3V60.6z
M253.7,58.6h1.6l-0.8-2.4h0L253.7,58.6z"/>
<path d="M260.6,60.6l1.2-0.1v-4.6h-1.2v-0.8l2.5-0.5v5.9l1.2,0.1v0.8h-3.7V60.6z"/>
<path d="M269.6,58.8c0,0.9-0.2,1.6-0.6,2.1c-0.4,0.5-1,0.7-1.7,0.7c-0.7,0-1.3-0.2-1.7-0.7c-0.4-0.5-0.6-1.2-0.6-2.1v-1.5
c0-0.9,0.2-1.6,0.6-2.1c0.4-0.5,1-0.7,1.7-0.7c0.7,0,1.3,0.2,1.7,0.7c0.4,0.5,0.6,1.2,0.6,2.1V58.8z M268.3,57.1
c0-0.5-0.1-0.9-0.2-1.2c-0.2-0.3-0.4-0.4-0.7-0.4c-0.3,0-0.5,0.1-0.7,0.4s-0.2,0.6-0.2,1.2v1.8c0,0.5,0.1,1,0.2,1.2
c0.2,0.2,0.4,0.4,0.7,0.4c0.3,0,0.5-0.1,0.7-0.4s0.2-0.7,0.2-1.2V57.1z"/>
<path d="M272,61.4h-1.4v-1.2h1.4V61.4z"/>
<path d="M274.3,57.5h0.8c0.3,0,0.6-0.1,0.7-0.3c0.2-0.2,0.2-0.4,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7c-0.2-0.2-0.4-0.2-0.7-0.2
c-0.3,0-0.5,0.1-0.6,0.2c-0.2,0.1-0.3,0.3-0.3,0.6h-1.3l0,0c0-0.5,0.2-1,0.6-1.3c0.4-0.3,1-0.5,1.6-0.5c0.7,0,1.3,0.2,1.7,0.5
c0.4,0.3,0.6,0.8,0.6,1.4c0,0.3-0.1,0.6-0.3,0.8c-0.2,0.3-0.4,0.5-0.8,0.6c0.4,0.1,0.7,0.3,0.9,0.6c0.2,0.3,0.3,0.6,0.3,1
c0,0.6-0.2,1.1-0.7,1.5c-0.5,0.4-1,0.5-1.7,0.5c-0.6,0-1.2-0.2-1.6-0.5s-0.7-0.8-0.7-1.4l0,0h1.3c0,0.3,0.1,0.5,0.3,0.6
s0.4,0.3,0.7,0.3c0.3,0,0.6-0.1,0.7-0.3s0.3-0.4,0.3-0.7c0-0.4-0.1-0.6-0.3-0.8c-0.2-0.2-0.4-0.2-0.8-0.2h-0.8V57.5z"/>
<path d="M279.7,61.4h-1.4v-1.2h1.4V61.4z"/>
<path d="M280.5,61.4v-0.9l2.2-2.4c0.3-0.4,0.5-0.7,0.7-0.9c0.1-0.3,0.2-0.5,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7s-0.4-0.3-0.7-0.3
c-0.3,0-0.6,0.1-0.7,0.3s-0.2,0.5-0.2,0.9h-1.3l0,0c0-0.6,0.2-1.1,0.6-1.6c0.4-0.4,1-0.6,1.7-0.6c0.7,0,1.3,0.2,1.7,0.5
s0.6,0.9,0.6,1.5c0,0.4-0.1,0.8-0.3,1.1c-0.2,0.3-0.6,0.8-1.1,1.4l-1.2,1.3l0,0h1.8l0.1-0.7h1v1.7H280.5z"/>
<path d="M289.4,56.2l-0.1-0.5h-1.8l-0.2,1.6c0.1-0.1,0.3-0.2,0.5-0.2c0.2-0.1,0.4-0.1,0.6-0.1c0.7,0,1.2,0.2,1.5,0.6
s0.5,1,0.5,1.7c0,0.7-0.2,1.2-0.6,1.6c-0.4,0.4-1,0.7-1.7,0.7c-0.6,0-1.2-0.2-1.6-0.5c-0.4-0.3-0.7-0.8-0.6-1.4l0,0l1.3-0.1
c0,0.3,0.1,0.5,0.3,0.7s0.4,0.3,0.7,0.3c0.3,0,0.6-0.1,0.7-0.3c0.2-0.2,0.2-0.5,0.2-0.9c0-0.4-0.1-0.7-0.2-0.9
c-0.2-0.2-0.4-0.4-0.7-0.4c-0.3,0-0.5,0-0.6,0.1c-0.1,0.1-0.2,0.2-0.3,0.4l-1.2-0.1l0.4-3.8h3.9v1.6H289.4z"/>
<path d="M295.7,58.8c0,0.9-0.2,1.6-0.6,2.1c-0.4,0.5-1,0.7-1.7,0.7c-0.7,0-1.3-0.2-1.7-0.7c-0.4-0.5-0.6-1.2-0.6-2.1v-1.5
c0-0.9,0.2-1.6,0.6-2.1c0.4-0.5,1-0.7,1.7-0.7c0.7,0,1.3,0.2,1.7,0.7c0.4,0.5,0.6,1.2,0.6,2.1V58.8z M294.3,57.1
c0-0.5-0.1-0.9-0.2-1.2c-0.2-0.3-0.4-0.4-0.7-0.4c-0.3,0-0.5,0.1-0.7,0.4s-0.2,0.6-0.2,1.2v1.8c0,0.5,0.1,1,0.2,1.2
c0.2,0.2,0.4,0.4,0.7,0.4c0.3,0,0.5-0.1,0.7-0.4s0.2-0.7,0.2-1.2V57.1z"/>
<path d="M298,61.4h-1.4v-1.2h1.4V61.4z"/>
<path d="M298.9,61.4v-0.9l2.2-2.4c0.3-0.4,0.5-0.7,0.7-0.9c0.1-0.3,0.2-0.5,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7s-0.4-0.3-0.7-0.3
c-0.3,0-0.6,0.1-0.7,0.3s-0.2,0.5-0.2,0.9h-1.3l0,0c0-0.6,0.2-1.1,0.6-1.6c0.4-0.4,1-0.6,1.7-0.6c0.7,0,1.3,0.2,1.7,0.5
s0.6,0.9,0.6,1.5c0,0.4-0.1,0.8-0.3,1.1c-0.2,0.3-0.6,0.8-1.1,1.4l-1.2,1.3l0,0h1.8l0.1-0.7h1v1.7H298.9z"/>
<path d="M305.6,57.5h0.8c0.3,0,0.6-0.1,0.7-0.3c0.2-0.2,0.2-0.4,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7c-0.2-0.2-0.4-0.2-0.7-0.2
c-0.3,0-0.5,0.1-0.6,0.2c-0.2,0.1-0.3,0.3-0.3,0.6h-1.3l0,0c0-0.5,0.2-1,0.6-1.3c0.4-0.3,1-0.5,1.6-0.5c0.7,0,1.3,0.2,1.7,0.5
c0.4,0.3,0.6,0.8,0.6,1.4c0,0.3-0.1,0.6-0.3,0.8c-0.2,0.3-0.4,0.5-0.8,0.6c0.4,0.1,0.7,0.3,0.9,0.6c0.2,0.3,0.3,0.6,0.3,1
c0,0.6-0.2,1.1-0.7,1.5c-0.5,0.4-1,0.5-1.7,0.5c-0.6,0-1.2-0.2-1.6-0.5s-0.7-0.8-0.7-1.4l0,0h1.3c0,0.3,0.1,0.5,0.3,0.6
s0.4,0.3,0.7,0.3c0.3,0,0.6-0.1,0.7-0.3s0.3-0.4,0.3-0.7c0-0.4-0.1-0.6-0.3-0.8c-0.2-0.2-0.4-0.2-0.8-0.2h-0.8V57.5z"/>
<path d="M312.2,54.5c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0.1,0.7,0.2l-0.2,1c-0.2-0.1-0.4-0.1-0.5-0.2c-0.2,0-0.4-0.1-0.6-0.1
c-0.4,0-0.7,0.1-1,0.4s-0.4,0.7-0.4,1.3l0,0c0.2-0.2,0.3-0.3,0.6-0.4c0.2-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.2,1.4,0.6
s0.5,1,0.5,1.7c0,0.7-0.2,1.3-0.6,1.7c-0.4,0.4-1,0.7-1.7,0.7c-0.7,0-1.3-0.2-1.8-0.7c-0.5-0.5-0.7-1.2-0.7-2v-1.2
c0-1,0.3-1.7,0.8-2.3C310.7,54.8,311.4,54.5,312.2,54.5z M311.9,57.9c-0.3,0-0.5,0-0.6,0.1s-0.3,0.2-0.4,0.3v0.5
c0,0.5,0.1,1,0.3,1.2c0.2,0.3,0.5,0.4,0.8,0.4c0.3,0,0.5-0.1,0.7-0.4c0.2-0.3,0.3-0.6,0.3-0.9c0-0.4-0.1-0.7-0.3-0.9
S312.2,57.9,311.9,57.9z"/>
</g>
</g>
<g id="pods">
<circle class="st26" cx="153.8" cy="108.6" r="20.5"/>
<circle class="st26" cx="152.8" cy="330.3" r="20.5"/>
<circle class="st26" cx="285.2" cy="93.8" r="16.4"/>
<circle class="st26" cx="322.4" cy="93.8" r="16.4"/>
<circle class="st22" cx="153.4" cy="108.6" r="20.5"/>
<circle class="st22" cx="152.8" cy="330.3" r="20.5"/>
<circle class="st22" cx="285.2" cy="93.8" r="16.4"/>
<circle class="st22" cx="322.4" cy="93.8" r="16.4"/>
</g>
<g id="IP">
<g>
<path class="st42" d="M268.1,86.5l0.4-0.8l-3.9-1.9l-0.3,1l-0.3-0.1l0.4-1.4l4.3,2.1l0.5-0.8l0.3,0.1l-1,2L268.1,86.5z"/>
<path class="st42" d="M269.9,80.4c0.5,0.4,0.9,0.8,1,1.3s0,0.9-0.3,1.3c-0.3,0.4-0.7,0.6-1.1,0.6c-0.5,0-0.9-0.2-1.5-0.6l-0.9-0.7
c-0.5-0.4-0.9-0.8-1-1.3c-0.1-0.4,0-0.9,0.3-1.3c0.3-0.4,0.7-0.6,1.1-0.6c0.5,0,0.9,0.2,1.5,0.6L269.9,80.4z M268.7,80.1
c-0.4-0.3-0.8-0.5-1.1-0.5c-0.3,0-0.6,0.1-0.9,0.4c-0.2,0.3-0.3,0.6-0.2,1c0.1,0.3,0.4,0.7,0.8,1l1,0.8c0.4,0.3,0.8,0.5,1.2,0.5
c0.4,0,0.6-0.1,0.9-0.4c0.2-0.3,0.3-0.6,0.2-1c-0.1-0.3-0.4-0.7-0.8-1L268.7,80.1z"/>
<path class="st42" d="M272.5,80.7l-0.3,0.3l-0.4-0.4l0.3-0.3L272.5,80.7z"/>
<path class="st42" d="M274.4,76.6c0.4,0.5,0.6,1,0.6,1.5s-0.2,0.8-0.6,1.1c-0.4,0.3-0.8,0.4-1.3,0.3c-0.4-0.1-0.9-0.4-1.2-1
l-0.7-0.9c-0.4-0.5-0.6-1-0.6-1.5c0-0.5,0.2-0.8,0.6-1.1c0.4-0.3,0.8-0.4,1.3-0.3c0.4,0.1,0.9,0.4,1.2,1L274.4,76.6z M273.4,75.9
c-0.3-0.4-0.6-0.7-1-0.8s-0.6,0-1,0.2c-0.3,0.2-0.5,0.5-0.4,0.9s0.2,0.7,0.5,1.1l0.8,1c0.3,0.4,0.6,0.7,1,0.8
c0.3,0.1,0.7,0.1,1-0.2c0.3-0.2,0.5-0.5,0.4-0.9c0-0.3-0.2-0.7-0.5-1.2L273.4,75.9z"/>
<path class="st42" d="M276.8,77.6l-0.4,0.2l-0.3-0.5l0.4-0.2L276.8,77.6z"/>
<path class="st42" d="M277.5,77.2l-0.1-0.3l0.9-2.4c0.2-0.4,0.3-0.8,0.3-1.1s0-0.5,0-0.7c-0.1-0.3-0.3-0.5-0.5-0.6
c-0.2-0.1-0.5-0.1-0.8,0c-0.4,0.1-0.6,0.3-0.7,0.6s-0.1,0.6,0,0.9l-0.4,0.1l0,0c-0.2-0.4-0.2-0.8,0-1.2s0.5-0.6,1-0.8
c0.4-0.2,0.8-0.2,1.1,0c0.3,0.1,0.6,0.4,0.7,0.8c0.1,0.3,0.1,0.6,0,0.9c-0.1,0.3-0.2,0.7-0.4,1.2l-0.8,2l0,0l2.1-0.8l-0.2-0.7
l0.4-0.1l0.4,1L277.5,77.2z"/>
<path class="st42" d="M281.7,75.9l-0.5,0.1l-0.1-0.6l0.5-0.1L281.7,75.9z"/>
<path class="st42" d="M285.1,73.9l0.8,0l0,0.4l-0.8,0l0.1,0.9l0.6,0l0,0.3l-1.6,0.1l0-0.3l0.6-0.1l-0.1-0.9l-2.4,0.1l0-0.2
l2.2-3.7l0.5,0L285.1,73.9z M282.8,74l1.9-0.1l-0.2-2.9l0,0l-0.2,0.4L282.8,74z"/>
</g>
<g>
<path class="st42" d="M307.2,83.1l0.5-0.7l-3.4-2.7l-0.5,0.9l-0.2-0.2l0.7-1.3l3.7,3l0.6-0.7l0.2,0.2l-1.4,1.8L307.2,83.1z"/>
<path class="st42" d="M310.3,77.5c0.4,0.5,0.7,1,0.7,1.4c0,0.5-0.2,0.8-0.5,1.2c-0.4,0.3-0.8,0.5-1.2,0.4
c-0.4-0.1-0.9-0.4-1.3-0.9l-0.8-0.9c-0.4-0.5-0.7-1-0.7-1.4c0-0.5,0.1-0.8,0.5-1.2c0.4-0.3,0.8-0.5,1.2-0.4
c0.4,0.1,0.9,0.4,1.3,0.9L310.3,77.5z M309.1,76.9c-0.3-0.4-0.7-0.6-1-0.7s-0.6,0-0.9,0.3c-0.3,0.2-0.4,0.5-0.4,0.9
c0,0.3,0.2,0.7,0.6,1.1l0.8,1c0.3,0.4,0.7,0.6,1,0.7s0.7,0,0.9-0.2c0.3-0.2,0.4-0.5,0.4-0.9c0-0.3-0.2-0.7-0.6-1.1L309.1,76.9z"/>
<path class="st42" d="M312.7,78.4l-0.4,0.3l-0.3-0.5l0.4-0.3L312.7,78.4z"/>
<path class="st42" d="M315.5,74.7c0.3,0.6,0.4,1.1,0.3,1.6c-0.1,0.4-0.4,0.8-0.8,1c-0.5,0.2-0.9,0.2-1.3,0c-0.4-0.2-0.7-0.6-1-1.2
l-0.5-1c-0.3-0.6-0.4-1.1-0.3-1.6c0.1-0.4,0.4-0.8,0.8-1c0.5-0.2,0.9-0.2,1.3,0c0.4,0.2,0.7,0.6,1,1.2L315.5,74.7z M314.6,73.8
c-0.2-0.5-0.5-0.8-0.8-1c-0.3-0.2-0.6-0.2-1,0c-0.3,0.2-0.5,0.4-0.6,0.7c-0.1,0.3,0,0.7,0.2,1.2l0.5,1.2c0.2,0.5,0.5,0.8,0.8,1
c0.3,0.2,0.6,0.2,1,0c0.3-0.2,0.5-0.4,0.6-0.8s0-0.8-0.2-1.2L314.6,73.8z"/>
<path class="st42" d="M317.5,76.2l-0.5,0.1l-0.2-0.6l0.5-0.1L317.5,76.2z"/>
<path class="st42" d="M318.3,75.9l0-0.3l1.4-2.1c0.3-0.4,0.4-0.7,0.5-1c0.1-0.2,0.1-0.5,0.1-0.7c0-0.3-0.2-0.6-0.4-0.7
s-0.5-0.2-0.8-0.2c-0.4,0.1-0.7,0.2-0.8,0.4c-0.2,0.2-0.2,0.5-0.2,0.9l-0.4,0.1l0,0c-0.1-0.4,0-0.8,0.3-1.1
c0.2-0.3,0.6-0.5,1.1-0.6c0.4-0.1,0.8,0,1.1,0.2c0.3,0.2,0.5,0.5,0.5,1c0,0.3,0,0.6-0.1,0.9c-0.1,0.3-0.3,0.7-0.6,1.1l-1.2,1.8
l0,0l2.2-0.3l-0.1-0.7l0.4-0.1l0.1,1.1L318.3,75.9z"/>
<path class="st42" d="M322.7,75.5l-0.5,0l0-0.6l0.5,0L322.7,75.5z"/>
<path class="st42" d="M326.7,71.6l0-0.4l-1.8-0.3l-0.4,1.8c0.1-0.1,0.3-0.2,0.5-0.2c0.2,0,0.4,0,0.6,0c0.4,0.1,0.8,0.2,1,0.6
s0.3,0.8,0.2,1.3c-0.1,0.5-0.3,0.9-0.6,1.2c-0.3,0.3-0.7,0.4-1.2,0.3c-0.4-0.1-0.7-0.2-1-0.5c-0.2-0.3-0.3-0.6-0.2-1.1l0,0
l0.4,0.1c0,0.3,0,0.6,0.2,0.8c0.2,0.2,0.4,0.3,0.7,0.4c0.4,0.1,0.7,0,0.9-0.2c0.2-0.2,0.4-0.5,0.4-0.9c0.1-0.4,0-0.7-0.1-1
c-0.2-0.3-0.4-0.4-0.7-0.5c-0.3,0-0.6,0-0.8,0s-0.3,0.2-0.4,0.4l-0.3-0.1l0.7-2.7l2.5,0.4l-0.1,0.8L326.7,71.6z"/>
</g>
<g>
<path class="st42" d="M134.4,95.3l0.5-0.8l-3.4-2.6l-0.5,0.9l-0.2-0.2l0.6-1.3l3.8,2.9l0.6-0.7l0.2,0.2l-1.4,1.8L134.4,95.3z"/>
<path class="st42" d="M137.3,89.6c0.5,0.5,0.7,0.9,0.8,1.4c0,0.5-0.1,0.8-0.5,1.2c-0.4,0.3-0.8,0.5-1.2,0.4
c-0.5-0.1-0.9-0.3-1.4-0.8l-0.8-0.8c-0.5-0.5-0.7-0.9-0.8-1.4c0-0.5,0.1-0.9,0.5-1.2c0.4-0.3,0.8-0.5,1.2-0.4
c0.5,0.1,0.9,0.3,1.4,0.8L137.3,89.6z M136.1,89.1c-0.4-0.4-0.7-0.6-1.1-0.7c-0.3-0.1-0.6,0-0.9,0.3c-0.3,0.3-0.4,0.6-0.3,0.9
s0.3,0.7,0.6,1.1l0.9,0.9c0.4,0.4,0.7,0.6,1.1,0.7c0.3,0.1,0.7,0,0.9-0.3c0.3-0.3,0.4-0.6,0.3-0.9c-0.1-0.3-0.3-0.7-0.6-1.1
L136.1,89.1z"/>
<path class="st42" d="M139.7,90.3l-0.4,0.3l-0.3-0.5l0.4-0.3L139.7,90.3z"/>
<path class="st42" d="M142.2,86.4c0.3,0.6,0.5,1.1,0.4,1.5c-0.1,0.4-0.3,0.8-0.7,1.1c-0.4,0.3-0.9,0.3-1.3,0.1
c-0.4-0.2-0.8-0.5-1.1-1.1l-0.6-1c-0.3-0.6-0.5-1.1-0.4-1.5s0.3-0.8,0.7-1.1c0.4-0.3,0.9-0.3,1.3-0.1s0.8,0.5,1.1,1.1L142.2,86.4z
M141.2,85.5c-0.3-0.5-0.6-0.8-0.9-0.9c-0.3-0.1-0.6-0.1-1,0.1c-0.3,0.2-0.5,0.5-0.5,0.8c0,0.3,0.1,0.7,0.4,1.2l0.6,1.1
c0.3,0.4,0.6,0.7,0.9,0.9s0.6,0.1,1-0.1c0.3-0.2,0.5-0.5,0.5-0.8c0-0.3-0.1-0.7-0.4-1.2L141.2,85.5z"/>
<path class="st42" d="M144.4,87.6l-0.4,0.2l-0.2-0.5l0.4-0.2L144.4,87.6z"/>
<path class="st42" d="M147.7,84.4c0.2,0.6,0.2,1.2,0,1.6c-0.2,0.4-0.5,0.7-1,0.8c-0.5,0.1-0.9,0.1-1.3-0.2
c-0.4-0.3-0.7-0.7-0.8-1.3l-0.3-1.1c-0.2-0.6-0.2-1.2,0-1.6c0.2-0.4,0.5-0.7,1-0.9c0.5-0.1,0.9-0.1,1.3,0.2
c0.4,0.3,0.7,0.7,0.8,1.3L147.7,84.4z M147,83.3c-0.2-0.5-0.4-0.9-0.6-1.1c-0.3-0.2-0.6-0.3-1-0.2c-0.4,0.1-0.6,0.3-0.7,0.7
c-0.1,0.3-0.1,0.7,0.1,1.2l0.4,1.2c0.2,0.5,0.4,0.9,0.6,1.1c0.3,0.2,0.6,0.3,1,0.2c0.4-0.1,0.6-0.3,0.7-0.7
c0.1-0.3,0.1-0.7-0.1-1.2L147,83.3z"/>
<path class="st42" d="M149.6,86.1l-0.5,0.1l-0.1-0.6l0.5-0.1L149.6,86.1z"/>
<path class="st42" d="M152.7,81.4l-0.1-0.4l-1.8,0.1l-0.1,1.8c0.1-0.1,0.3-0.2,0.4-0.3c0.2-0.1,0.4-0.1,0.6-0.1
c0.4,0,0.8,0.1,1.1,0.4c0.3,0.3,0.4,0.7,0.5,1.2c0,0.5-0.1,0.9-0.3,1.3s-0.6,0.5-1.1,0.5c-0.4,0-0.8-0.1-1.1-0.3s-0.4-0.6-0.5-1
l0,0l0.4,0c0,0.3,0.1,0.6,0.3,0.8c0.2,0.2,0.5,0.2,0.8,0.2c0.4,0,0.7-0.2,0.8-0.4c0.2-0.2,0.2-0.6,0.2-1c0-0.4-0.1-0.7-0.3-0.9
c-0.2-0.2-0.5-0.3-0.8-0.3c-0.3,0-0.6,0.1-0.7,0.2c-0.2,0.1-0.3,0.3-0.3,0.5l-0.3,0l0.1-2.8l2.6-0.2l0.1,0.8L152.7,81.4z"/>
</g>
<g>
<path class="st42" d="M133.8,317l0.5-0.8l-3.4-2.6l-0.5,0.9l-0.2-0.2l0.6-1.3l3.8,2.9l0.6-0.7l0.2,0.2l-1.4,1.8L133.8,317z"/>
<path class="st42" d="M136.6,311.4c0.5,0.5,0.7,0.9,0.8,1.4c0,0.5-0.1,0.8-0.5,1.2c-0.4,0.3-0.8,0.5-1.2,0.4
c-0.5-0.1-0.9-0.3-1.4-0.8l-0.8-0.8c-0.5-0.5-0.7-0.9-0.8-1.4c0-0.5,0.1-0.9,0.5-1.2c0.4-0.3,0.8-0.5,1.2-0.4
c0.5,0.1,0.9,0.3,1.4,0.8L136.6,311.4z M135.5,310.8c-0.4-0.4-0.7-0.6-1.1-0.7c-0.3-0.1-0.6,0-0.9,0.3c-0.3,0.3-0.4,0.6-0.3,0.9
s0.3,0.7,0.6,1.1l0.9,0.9c0.4,0.4,0.7,0.6,1.1,0.7c0.3,0.1,0.7,0,0.9-0.3c0.3-0.3,0.4-0.6,0.3-0.9c-0.1-0.3-0.3-0.7-0.6-1.1
L135.5,310.8z"/>
<path class="st42" d="M139.1,312l-0.4,0.3l-0.3-0.5l0.4-0.3L139.1,312z"/>
<path class="st42" d="M141.5,308.1c0.3,0.6,0.5,1.1,0.4,1.5c-0.1,0.4-0.3,0.8-0.7,1.1c-0.4,0.3-0.9,0.3-1.3,0.1
c-0.4-0.2-0.8-0.5-1.1-1.1l-0.6-1c-0.3-0.6-0.5-1.1-0.4-1.5s0.3-0.8,0.7-1.1c0.4-0.3,0.9-0.3,1.3-0.1s0.8,0.5,1.1,1.1L141.5,308.1
z M140.6,307.3c-0.3-0.5-0.6-0.8-0.9-0.9c-0.3-0.1-0.6-0.1-1,0.1c-0.3,0.2-0.5,0.5-0.5,0.8c0,0.3,0.1,0.7,0.4,1.2l0.6,1.1
c0.3,0.4,0.6,0.7,0.9,0.9s0.6,0.1,1-0.1c0.3-0.2,0.5-0.5,0.5-0.8c0-0.3-0.1-0.7-0.4-1.2L140.6,307.3z"/>
<path class="st42" d="M143.8,309.3l-0.4,0.2l-0.2-0.5l0.4-0.2L143.8,309.3z"/>
<path class="st42" d="M144.5,308.6l0.9-0.3l-1.3-4.1l-0.9,0.5l-0.1-0.3l1.3-0.7l1.5,4.5l0.9-0.2l0.1,0.3l-2.1,0.7L144.5,308.6z"/>
<path class="st42" d="M147.9,308l-0.5,0.1l-0.1-0.6l0.5-0.1L147.9,308z"/>
<path class="st42" d="M150.8,303.2l-0.1-0.4l-1.8,0.2l0,1.8c0.1-0.1,0.2-0.2,0.4-0.3c0.1-0.1,0.4-0.1,0.6-0.2
c0.4-0.1,0.8,0.1,1.1,0.3c0.3,0.3,0.5,0.7,0.5,1.2c0.1,0.5,0,0.9-0.3,1.3c-0.2,0.3-0.6,0.5-1.1,0.6c-0.4,0-0.8,0-1.1-0.2
c-0.3-0.2-0.5-0.5-0.5-1l0,0l0.4,0c0,0.3,0.2,0.6,0.4,0.8c0.2,0.2,0.5,0.2,0.8,0.2c0.4,0,0.7-0.2,0.8-0.4c0.2-0.2,0.2-0.6,0.2-1
c0-0.4-0.2-0.7-0.4-0.9c-0.2-0.2-0.5-0.3-0.8-0.3c-0.3,0-0.6,0.1-0.7,0.2c-0.2,0.1-0.3,0.3-0.3,0.5l-0.3,0l0-2.8l2.6-0.3l0.1,0.8
L150.8,303.2z"/>
</g>
</g>
<g id="deployments">
<g>
<g>
<circle class="st45" cx="249.9" cy="211.2" r="14.1"/>
<g>
<g>
<path class="st46" d="M254.3,202.9c3,1.6,5,4.7,5,8.3c0,5.2-4.2,9.4-9.4,9.4c-5.2,0-9.4-4.2-9.4-9.4c0-4.1,2.6-7.6,6.3-8.9"/>
<g>
<polygon class="st6" points="255.7,205.7 254.6,203.1 257.3,202 255.7,201.3 253,202.4 254.1,205 "/>
</g>
</g>
</g>
<g>
<path class="st6" d="M244.7,214.9l0.8-0.1l3.3-9.5h2.2l3.3,9.5l0.8,0.1v1.3h-3.7v-1.3l0.8-0.1l-0.5-1.5h-3.5l-0.5,1.5l0.8,0.1
v1.3h-3.7V214.9z M248.6,211.7h2.5l-1.2-3.8h0L248.6,211.7z"/>
</g>
</g>
</g>
</g>
<g id="containers_x2F_volumes">
<g>
<polygon class="st50" points="275.7,88.4 285.2,82.9 294.7,88.4 285.2,93.8 "/>
<polygon class="st50" points="275.7,99.3 275.7,88.4 285.2,93.8 285.2,104.8 "/>
<polygon class="st50" points="285.2,104.8 285.2,93.8 294.7,88.4 294.7,99.3 "/>
</g>
<g>
<polygon class="st50" points="312.9,88.4 322.4,82.9 331.9,88.4 322.4,93.8 "/>
<polygon class="st50" points="312.9,99.3 312.9,88.4 322.4,93.8 322.4,104.8 "/>
<polygon class="st50" points="322.4,104.8 322.4,93.8 331.9,88.4 331.9,99.3 "/>
</g>
<g>
<polygon class="st50" points="141.5,101.8 153.4,94.9 165.3,101.8 153.4,108.6 "/>
<polygon class="st50" points="141.5,115.5 141.5,101.8 153.4,108.6 153.4,122.3 "/>
<polygon class="st50" points="153.4,122.3 153.4,108.6 165.3,101.8 165.3,115.5 "/>
</g>
<g>
<polygon class="st50" points="140.9,323.5 152.8,316.6 164.6,323.5 152.8,330.3 "/>
<polygon class="st50" points="140.9,337.2 140.9,323.5 152.8,330.3 152.8,344 "/>
<polygon class="st50" points="152.8,344 152.8,330.3 164.6,323.5 164.6,337.2 "/>
</g>
</g>
<g id="labels_x2F_selectors">
</g>
<g id="description">
<g>
<path class="st42" d="M58.8,130.4h-0.9l-0.2-1.2c-0.2-0.1-0.4-0.3-0.7-0.4s-0.6-0.1-1-0.1c-0.6,0-1.1,0.1-1.4,0.4s-0.5,0.6-0.5,1
c0,0.4,0.2,0.7,0.5,0.9s0.9,0.5,1.6,0.7c0.9,0.2,1.6,0.6,2,1s0.7,1,0.7,1.6c0,0.7-0.3,1.2-0.8,1.7s-1.3,0.6-2.2,0.6
c-0.7,0-1.2-0.1-1.7-0.3s-0.9-0.5-1.2-0.8v-1.6h0.9L54,135c0.2,0.2,0.5,0.3,0.8,0.5s0.7,0.2,1.1,0.2c0.6,0,1-0.1,1.4-0.4
s0.5-0.6,0.5-1c0-0.4-0.1-0.7-0.4-1s-0.8-0.5-1.6-0.7c-0.9-0.2-1.6-0.5-2.1-0.9s-0.8-0.9-0.8-1.6c0-0.7,0.3-1.2,0.8-1.7
s1.3-0.7,2.2-0.7c0.6,0,1.1,0.1,1.6,0.3s0.9,0.5,1.2,0.7V130.4z"/>
<path class="st42" d="M62.9,136.5c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S63.4,136.5,62.9,136.5z M62.7,130.8c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S63.2,130.8,62.7,130.8z"/>
<path class="st42" d="M66.4,130.8V130h2l0.1,0.9c0.2-0.3,0.4-0.6,0.7-0.8s0.6-0.3,0.9-0.3c0.1,0,0.2,0,0.3,0s0.2,0,0.2,0l-0.2,1.1
l-0.7,0c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.3-0.5,0.6v3.6l1,0.2v0.7h-3.1v-0.7l1-0.2v-4.5L66.4,130.8z"/>
<path class="st42" d="M73.7,130.8l-0.8,0.1l1.3,3.6l0.1,0.5h0l0.1-0.5l1.3-3.6l-0.8-0.1V130h2.4v0.7l-0.5,0.1l-2.1,5.5h-0.9
l-2.2-5.5l-0.5-0.1V130h2.4V130.8z"/>
<path class="st42" d="M78.2,135.6l1-0.2v-4.5l-1-0.2V130h2.1v5.4l1,0.2v0.7h-3.1V135.6z M80.3,128.4h-1.2v-1.2h1.2V128.4z"/>
<path class="st42" d="M85,135.6c0.4,0,0.7-0.1,1-0.4s0.4-0.5,0.4-0.9h1l0,0c0,0.5-0.2,1-0.7,1.5s-1.1,0.6-1.8,0.6
c-0.9,0-1.6-0.3-2.1-0.9s-0.7-1.4-0.7-2.3v-0.2c0-0.9,0.2-1.7,0.7-2.3s1.2-0.9,2.1-0.9c0.5,0,1,0.1,1.4,0.3s0.7,0.4,1,0.7l0.1,1.4
h-0.9l-0.3-1c-0.1-0.1-0.3-0.2-0.5-0.3s-0.5-0.1-0.7-0.1c-0.6,0-1,0.2-1.3,0.7s-0.4,1-0.4,1.6v0.2c0,0.6,0.1,1.2,0.4,1.6
S84.4,135.6,85,135.6z"/>
<path class="st42" d="M91.5,136.5c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S92,136.5,91.5,136.5z M91.3,130.8c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S91.8,130.8,91.3,130.8z"/>
</g>
<line class="st62" x1="153.8" y1="134" x2="97.8" y2="134"/>
<g>
<path class="st42" d="M316.4,196.8c1.1,0,2,0.3,2.7,1s1,1.6,1,2.7v1.2c0,1.1-0.3,2-1,2.7s-1.6,1-2.7,1h-3.6v-0.7l1-0.2v-6.7
l-1-0.2v-0.7h1H316.4z M315,197.7v6.7h1.5c0.8,0,1.4-0.3,1.9-0.8s0.7-1.2,0.7-2v-1.2c0-0.8-0.2-1.5-0.7-2s-1.1-0.8-1.9-0.8H315z"
/>
<path class="st42" d="M324.2,205.5c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S324.7,205.5,324.2,205.5z M324,199.8c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S324.5,199.8,324,199.8z"/>
<path class="st42" d="M327.6,207.1l1-0.2v-7l-1-0.2V199h1.9l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2
c0.8,0,1.4,0.3,1.8,0.9s0.7,1.4,0.7,2.5v0.1c0,0.9-0.2,1.7-0.7,2.2s-1,0.8-1.8,0.8c-0.4,0-0.7-0.1-1-0.2s-0.5-0.3-0.8-0.6v2.2
l1,0.2v0.7h-3.1V207.1z M332.8,202.3c0-0.7-0.1-1.3-0.4-1.8s-0.7-0.7-1.3-0.7c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.4-0.6,0.6v3.1
c0.1,0.3,0.3,0.5,0.6,0.6s0.5,0.2,0.9,0.2c0.5,0,1-0.2,1.2-0.6s0.4-0.9,0.4-1.6V202.3z"/>
<path class="st42" d="M334.8,197v-0.7h2.1v8.2l1,0.2v0.7h-3.1v-0.7l1-0.2v-7.3L334.8,197z"/>
<path class="st42" d="M338.6,202.1c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,2.1-0.9c0.9,0,1.6,0.3,2.1,0.9s0.8,1.4,0.8,2.3v0.1
c0,0.9-0.3,1.7-0.8,2.3s-1.2,0.9-2.1,0.9c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3V202.1z M339.8,202.3c0,0.7,0.1,1.2,0.4,1.7
s0.7,0.7,1.3,0.7c0.5,0,1-0.2,1.2-0.7s0.4-1,0.4-1.7v-0.1c0-0.7-0.1-1.2-0.4-1.7s-0.7-0.7-1.3-0.7s-1,0.2-1.3,0.7s-0.4,1-0.4,1.7
V202.3z"/>
<path class="st42" d="M351.3,199.8l-0.6,0.1l-2.4,6.5c-0.2,0.4-0.4,0.8-0.7,1.1s-0.7,0.5-1.2,0.5c-0.1,0-0.2,0-0.4,0
s-0.3,0-0.3-0.1l0.1-0.9c0,0,0,0,0.2,0s0.3,0,0.3,0c0.2,0,0.4-0.1,0.6-0.3s0.3-0.5,0.4-0.7l0.3-0.7l-2.1-5.4l-0.6-0.1V199h2.6v0.7
l-0.7,0.1l1.1,3.1l0.2,0.8h0l1.3-3.9l-0.7-0.1V199h2.6V199.8z"/>
<path class="st42" d="M351.8,204.6l1-0.2v-4.5l-1-0.2V199h2l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2s0.8,0.1,1.1,0.3
s0.5,0.5,0.7,0.9c0.2-0.4,0.5-0.6,0.8-0.9c0.3-0.2,0.7-0.3,1.1-0.3c0.6,0,1.2,0.2,1.5,0.7s0.6,1.1,0.6,2v2.9l1,0.2v0.7h-3.1v-0.7
l1-0.2v-2.9c0-0.6-0.1-1.1-0.3-1.3s-0.5-0.4-1-0.4c-0.4,0-0.7,0.1-1,0.4s-0.4,0.6-0.4,1.1v3.1l1,0.2v0.7h-3.1v-0.7l1-0.2v-2.9
c0-0.6-0.1-1-0.3-1.3s-0.5-0.4-1-0.4c-0.4,0-0.6,0.1-0.9,0.2s-0.4,0.3-0.5,0.6v3.8l1,0.2v0.7h-3.1V204.6z"/>
<path class="st42" d="M366.2,205.5c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S366.7,205.5,366.2,205.5z M366,199.8c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S366.5,199.8,366,199.8z"/>
<path class="st42" d="M369.6,204.6l1-0.2v-4.5l-1-0.2V199h2l0.1,0.9c0.2-0.3,0.5-0.6,0.8-0.8s0.7-0.3,1.1-0.3
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.9v3.1l1,0.2v0.7h-3.1v-0.7l1-0.2v-3.1c0-0.6-0.1-1-0.3-1.2s-0.6-0.4-1-0.4
c-0.3,0-0.6,0.1-0.9,0.2s-0.5,0.4-0.6,0.7v3.7l1,0.2v0.7h-3.1V204.6z"/>
<path class="st42" d="M379.5,197.5v1.5h1.2v0.9h-1.2v3.8c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2c0.1,0,0.2,0,0.3,0s0.2,0,0.3-0.1
l0.2,0.8c-0.1,0.1-0.3,0.1-0.5,0.2s-0.4,0.1-0.6,0.1c-0.5,0-0.8-0.1-1.1-0.4s-0.4-0.7-0.4-1.3v-3.8h-1V199h1v-1.5H379.5z"/>
</g>
<line class="st62" x1="310.4" y1="203" x2="249.9" y2="203"/>
</g>
<g id="Layer_14">
</g>
</svg>

After

Width:  |  Height:  |  Size: 29 KiB

@@ -0,0 +1,543 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 484 440.4" style="enable-background:new 0 0 484 440.4;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FFFFFF;stroke:#326DE6;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st1{opacity:0.71;fill:#326CE6;}
.st2{opacity:0.45;fill:#FFFFFF;}
.st3{fill:#FFFFFF;stroke:#006DE9;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st4{fill:#006DE9;}
.st5{fill:#A0CAEA;}
.st6{fill:#FFFFFF;}
.st7{opacity:0.13;}
.st8{fill:url(#SVGID_1_);}
.st9{fill:url(#SVGID_2_);}
.st10{fill:#FFFFFF;stroke:#006DE9;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st11{fill:#FFFFFF;stroke:#006DE9;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st12{fill:#FFFFFF;stroke:#326DE6;stroke-width:3.2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st13{fill:#326DE6;}
.st14{fill:none;stroke:#326DE6;stroke-width:2.4;stroke-miterlimit:10;}
.st15{fill:#A0CAE9;}
.st16{fill:#FFFFFF;stroke:#326DE6;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st17{fill:#FFFFFF;stroke:#326DE6;stroke-width:1.6;stroke-miterlimit:10;}
.st18{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;}
.st19{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3749,1.5832;}
.st20{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4006,1.6004;}
.st21{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st22{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st23{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3975,1.5984;}
.st24{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.395,1.5966;}
.st25{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3963,1.5976;}
.st26{opacity:0.1;fill:#EEF406;}
.st27{opacity:2.000000e-02;fill:#EEF406;}
.st28{opacity:0.1;fill:#06F7C9;}
.st29{fill:none;stroke:#006DE9;stroke-width:0.8;stroke-miterlimit:10;}
.st30{opacity:0.1;fill:url(#SVGID_3_);}
.st31{opacity:0.1;fill:url(#SVGID_4_);}
.st32{opacity:0.1;fill:url(#SVGID_5_);}
.st33{opacity:0.1;fill:url(#SVGID_6_);}
.st34{fill:none;stroke:#326DE6;stroke-width:1.2;stroke-miterlimit:10;}
.st35{opacity:0.1;fill:url(#SVGID_7_);}
.st36{opacity:0.1;fill:url(#SVGID_8_);}
.st37{opacity:0.1;fill:url(#SVGID_9_);}
.st38{opacity:0.1;fill:url(#SVGID_10_);}
.st39{fill:none;stroke:#326DE6;stroke-width:2;stroke-miterlimit:10;}
.st40{opacity:0.4;fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st41{fill:none;stroke:#EEF406;stroke-width:2.4596;stroke-miterlimit:10;}
.st42{fill:#011F38;}
.st43{opacity:0.4;}
.st44{opacity:0.1;}
.st45{fill:#326DE6;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st46{fill:none;stroke:#FFFFFF;stroke-width:1.2;stroke-linecap:round;stroke-linejoin:round;}
.st47{fill:#06F7C9;stroke:#FFFFFF;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st48{fill:none;stroke:#011F38;stroke-width:1.2;stroke-linecap:round;stroke-linejoin:round;}
.st49{fill:#326DE6;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;}
.st50{fill:#06F7C9;stroke:#011F38;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st51{fill:#8115FF;stroke:#011F38;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st52{opacity:0.3;}
.st53{opacity:0.2;fill:#6D6E71;}
.st54{fill:#EEF406;}
.st55{fill:#06F7C9;}
.st56{fill:#FFFFFF;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st57{fill:#FFFFFF;stroke:#EEF406;stroke-width:1.6;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st58{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4938,1.6626;}
.st59{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.0084,1.3389;}
.st60{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.724,1.816;}
.st61{fill:#011F38;stroke:#414042;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st62{fill:none;stroke:#011F38;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st63{fill:none;stroke:#011F38;stroke-width:0.2813;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
</style>
<symbol id="node_high_level" viewBox="-81 -93 162 186.1">
<polygon class="st0" points="-80,-46 -80,46 0,92 80,46 80,-46 0,-92 "/>
<g id="Isolation_Mode_3_">
</g>
</symbol>
<symbol id="node_x5F_empty" viewBox="-87.5 -100.6 175.1 201.1">
<use xlink:href="#node_high_level" width="162" height="186.1" id="XMLID_201_" x="-81" y="-93" transform="matrix(1.0808 0 0 1.0808 -3.292006e-05 -3.749943e-05)" style="overflow:visible;"/>
<g>
<polygon class="st1" points="76.8,-28.1 -14,-80.3 0,-88.3 76.7,-44.4 "/>
<polygon class="st2" points="76.8,-28.1 32.1,-53.8 38.8,-66.1 76.7,-44.4 "/>
</g>
</symbol>
<symbol id="node_x5F_new" viewBox="-87.6 -101 175.2 202">
<polygon class="st3" points="0,-100 -86.6,-50 -86.6,50 0,100 86.6,50 86.6,-50 "/>
<polygon class="st4" points="-86.6,-20.2 -86.6,-50 0,-100 25.8,-85.1 "/>
<polygon class="st5" points="-40.8,-70.7 -32.9,-57 15.7,-85.1 0,-94.3 "/>
<text transform="matrix(0.866 -0.5 -0.5 -0.866 -33.9256 -70.7388)" class="st6" style="font-family:'RobotoSlab-Regular'; font-size:11.3632px;">Docker</text>
<text transform="matrix(0.866 -0.5 -0.5 -0.866 -76.0668 -46.4087)" class="st6" style="font-family:'RobotoSlab-Regular'; font-size:11.3632px;">Kubelt</text>
</symbol>
<g id="CLUSTER">
</g>
<g id="master">
<g id="master_x5F_level1">
</g>
<polygon class="st12" points="220.9,265.9 196.7,235.6 205.3,197.8 240.2,181 275.1,197.8 283.8,235.6 259.6,265.9 "/>
</g>
<g id="Node">
<g id="Node_x5F_level3_x5F_1">
<g id="Isolation_Mode">
</g>
</g>
<g>
<polygon class="st17" points="303.8,179.8 245.7,146.2 245.7,79.1 303.8,45.6 361.9,79.1 361.9,146.2 "/>
</g>
<g>
<polygon class="st17" points="176.6,179.7 118.6,146.1 118.6,79.1 176.6,45.5 234.7,79.1 234.7,146.1 "/>
</g>
<g>
<polygon class="st17" points="176.6,401.4 118.6,367.9 118.6,300.8 176.6,267.2 234.7,300.8 234.7,367.9 "/>
</g>
</g>
<g id="service">
<g>
<g>
<g>
<path class="st22" d="M120.9,329.1v1.2h0v0c0,0.4,0,0.8,0,1.2"/>
<path class="st25" d="M121,333.1c1.4,16.7,15.6,29.8,32.7,29.7c17.9-0.2,32.2-15,32.2-32.9V181.8c0-12.4,10-22.4,22.4-22.4
h114.2c15.7,0,28.4-12.7,28.4-28.4V93.8c0,0,0,0,0,0c0-15.6-12.7-28.4-28.4-28.4h-169c-17.9,0-32.5,14.5-32.5,32.5v0v230.4"/>
</g>
</g>
</g>
<g>
<path d="M220.4,56.8h-1l-0.2-0.9c-0.1-0.1-0.3-0.1-0.5-0.2c-0.2-0.1-0.5-0.1-0.7-0.1c-0.4,0-0.7,0.1-0.9,0.2
c-0.2,0.2-0.3,0.4-0.3,0.6c0,0.2,0.1,0.4,0.3,0.6s0.6,0.3,1.1,0.5c0.8,0.2,1.3,0.5,1.7,0.8c0.4,0.3,0.6,0.8,0.6,1.4
c0,0.6-0.2,1-0.7,1.4c-0.5,0.3-1.1,0.5-1.8,0.5c-0.5,0-1-0.1-1.5-0.3s-0.8-0.4-1.1-0.7v-1.4h1.1l0.1,1c0.1,0.1,0.3,0.2,0.6,0.3
c0.2,0.1,0.5,0.1,0.8,0.1c0.4,0,0.7-0.1,0.9-0.2s0.3-0.4,0.3-0.6c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.2-0.5-0.3-1-0.5
c-0.8-0.2-1.4-0.5-1.8-0.8c-0.4-0.3-0.6-0.8-0.6-1.3c0-0.6,0.2-1,0.7-1.4s1.1-0.5,1.8-0.5c0.5,0,1,0.1,1.4,0.2s0.8,0.4,1.1,0.6
V56.8z"/>
<path d="M223.5,61.5c-0.7,0-1.3-0.2-1.8-0.7s-0.7-1.1-0.7-1.8v-0.2c0-0.8,0.2-1.4,0.6-1.9c0.4-0.5,1-0.7,1.7-0.7
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.7v0.7h-3l0,0c0,0.3,0.1,0.6,0.3,0.8c0.2,0.2,0.5,0.3,0.8,0.3c0.3,0,0.6,0,0.8-0.1
c0.2-0.1,0.4-0.2,0.7-0.3l0.4,0.8c-0.2,0.2-0.5,0.3-0.8,0.4S223.9,61.5,223.5,61.5z M223.3,57.3c-0.3,0-0.5,0.1-0.6,0.3
c-0.1,0.2-0.2,0.4-0.3,0.8l0,0h1.7v-0.1c0-0.3-0.1-0.5-0.2-0.7C223.8,57.4,223.6,57.3,223.3,57.3z"/>
<path d="M226.3,60.6l0.7-0.1v-3.1l-0.7-0.1v-0.8h2l0.1,0.7c0.1-0.3,0.3-0.5,0.5-0.6s0.4-0.2,0.7-0.2c0.1,0,0.1,0,0.2,0
c0.1,0,0.1,0,0.2,0l-0.1,1.2l-0.6,0c-0.2,0-0.4,0-0.5,0.1c-0.1,0.1-0.2,0.2-0.3,0.3v2.5l0.7,0.1v0.8h-2.7V60.6z"/>
<path d="M232.4,57.2l-0.5,0.1l0.7,2.3l0.1,0.5h0l0.1-0.5l0.7-2.3l-0.5-0.1v-0.8h2.3v0.8l-0.4,0.1l-1.5,4.2h-1.3l-1.5-4.2l-0.4-0.1
v-0.8h2.3V57.2z"/>
<path d="M235.7,60.6l0.7-0.1v-3.1l-0.7-0.1v-0.8h2.1v4.1l0.7,0.1v0.8h-2.7V60.6z M237.7,55.2h-1.4v-1h1.4V55.2z"/>
<path d="M241.2,60.5c0.2,0,0.4-0.1,0.6-0.2c0.1-0.1,0.2-0.3,0.2-0.6h1.2l0,0c0,0.5-0.2,0.9-0.6,1.3c-0.4,0.3-0.9,0.5-1.5,0.5
c-0.8,0-1.3-0.2-1.7-0.7c-0.4-0.5-0.6-1.1-0.6-1.8v-0.1c0-0.7,0.2-1.4,0.6-1.8c0.4-0.5,1-0.7,1.8-0.7c0.4,0,0.8,0.1,1.1,0.2
c0.3,0.1,0.6,0.3,0.8,0.5l0,1.4h-1.1l-0.2-0.8c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2-0.1-0.3-0.1c-0.4,0-0.7,0.1-0.8,0.4
s-0.2,0.6-0.2,1.1V59c0,0.5,0.1,0.8,0.2,1.1C240.6,60.4,240.9,60.5,241.2,60.5z"/>
<path d="M246.3,61.5c-0.7,0-1.3-0.2-1.8-0.7s-0.7-1.1-0.7-1.8v-0.2c0-0.8,0.2-1.4,0.6-1.9c0.4-0.5,1-0.7,1.7-0.7
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.7v0.7h-3l0,0c0,0.3,0.1,0.6,0.3,0.8c0.2,0.2,0.5,0.3,0.8,0.3c0.3,0,0.6,0,0.8-0.1
c0.2-0.1,0.4-0.2,0.7-0.3l0.4,0.8c-0.2,0.2-0.5,0.3-0.8,0.4S246.7,61.5,246.3,61.5z M246.2,57.3c-0.3,0-0.5,0.1-0.6,0.3
c-0.1,0.2-0.2,0.4-0.3,0.8l0,0h1.7v-0.1c0-0.3-0.1-0.5-0.2-0.7C246.7,57.4,246.5,57.3,246.2,57.3z"/>
<path d="M251.3,60.6l0.5-0.1l2.1-5.9h1.4l2.1,5.9l0.5,0.1v0.8h-2.3v-0.8l0.5-0.1l-0.3-0.9h-2.2l-0.3,0.9l0.5,0.1v0.8h-2.3V60.6z
M253.7,58.6h1.6l-0.8-2.4h0L253.7,58.6z"/>
<path d="M260.6,60.6l1.2-0.1v-4.6h-1.2v-0.8l2.5-0.5v5.9l1.2,0.1v0.8h-3.7V60.6z"/>
<path d="M269.6,58.8c0,0.9-0.2,1.6-0.6,2.1c-0.4,0.5-1,0.7-1.7,0.7c-0.7,0-1.3-0.2-1.7-0.7c-0.4-0.5-0.6-1.2-0.6-2.1v-1.5
c0-0.9,0.2-1.6,0.6-2.1c0.4-0.5,1-0.7,1.7-0.7c0.7,0,1.3,0.2,1.7,0.7c0.4,0.5,0.6,1.2,0.6,2.1V58.8z M268.3,57.1
c0-0.5-0.1-0.9-0.2-1.2c-0.2-0.3-0.4-0.4-0.7-0.4c-0.3,0-0.5,0.1-0.7,0.4s-0.2,0.6-0.2,1.2v1.8c0,0.5,0.1,1,0.2,1.2
c0.2,0.2,0.4,0.4,0.7,0.4c0.3,0,0.5-0.1,0.7-0.4s0.2-0.7,0.2-1.2V57.1z"/>
<path d="M272,61.4h-1.4v-1.2h1.4V61.4z"/>
<path d="M274.3,57.4h0.8c0.3,0,0.6-0.1,0.7-0.3c0.2-0.2,0.2-0.4,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7c-0.2-0.2-0.4-0.2-0.7-0.2
c-0.3,0-0.5,0.1-0.6,0.2c-0.2,0.1-0.3,0.3-0.3,0.6h-1.3l0,0c0-0.5,0.2-1,0.6-1.3c0.4-0.3,1-0.5,1.6-0.5c0.7,0,1.3,0.2,1.7,0.5
c0.4,0.3,0.6,0.8,0.6,1.4c0,0.3-0.1,0.6-0.3,0.8c-0.2,0.3-0.4,0.5-0.8,0.6c0.4,0.1,0.7,0.3,0.9,0.6c0.2,0.3,0.3,0.6,0.3,1
c0,0.6-0.2,1.1-0.7,1.5c-0.5,0.4-1,0.5-1.7,0.5c-0.6,0-1.2-0.2-1.6-0.5s-0.7-0.8-0.7-1.4l0,0h1.3c0,0.3,0.1,0.5,0.3,0.6
s0.4,0.3,0.7,0.3c0.3,0,0.6-0.1,0.7-0.3s0.3-0.4,0.3-0.7c0-0.4-0.1-0.6-0.3-0.8c-0.2-0.2-0.4-0.2-0.8-0.2h-0.8V57.4z"/>
<path d="M279.7,61.4h-1.4v-1.2h1.4V61.4z"/>
<path d="M280.5,61.4v-0.9l2.2-2.4c0.3-0.4,0.5-0.7,0.7-0.9c0.1-0.3,0.2-0.5,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7s-0.4-0.3-0.7-0.3
c-0.3,0-0.6,0.1-0.7,0.3s-0.2,0.5-0.2,0.9h-1.3l0,0c0-0.6,0.2-1.1,0.6-1.6c0.4-0.4,1-0.6,1.7-0.6c0.7,0,1.3,0.2,1.7,0.5
s0.6,0.9,0.6,1.5c0,0.4-0.1,0.8-0.3,1.1c-0.2,0.3-0.6,0.8-1.1,1.4l-1.2,1.3l0,0h1.8l0.1-0.7h1v1.7H280.5z"/>
<path d="M289.4,56.2l-0.1-0.5h-1.8l-0.2,1.6c0.1-0.1,0.3-0.2,0.5-0.2c0.2-0.1,0.4-0.1,0.6-0.1c0.7,0,1.2,0.2,1.5,0.6
s0.5,1,0.5,1.7c0,0.7-0.2,1.2-0.6,1.6c-0.4,0.4-1,0.7-1.7,0.7c-0.6,0-1.2-0.2-1.6-0.5c-0.4-0.3-0.7-0.8-0.6-1.4l0,0l1.3-0.1
c0,0.3,0.1,0.5,0.3,0.7s0.4,0.3,0.7,0.3c0.3,0,0.6-0.1,0.7-0.3c0.2-0.2,0.2-0.5,0.2-0.9c0-0.4-0.1-0.7-0.2-0.9
c-0.2-0.2-0.4-0.4-0.7-0.4c-0.3,0-0.5,0-0.6,0.1c-0.1,0.1-0.2,0.2-0.3,0.4l-1.2-0.1l0.4-3.8h3.9v1.6H289.4z"/>
<path d="M295.7,58.8c0,0.9-0.2,1.6-0.6,2.1c-0.4,0.5-1,0.7-1.7,0.7c-0.7,0-1.3-0.2-1.7-0.7c-0.4-0.5-0.6-1.2-0.6-2.1v-1.5
c0-0.9,0.2-1.6,0.6-2.1c0.4-0.5,1-0.7,1.7-0.7c0.7,0,1.3,0.2,1.7,0.7c0.4,0.5,0.6,1.2,0.6,2.1V58.8z M294.3,57.1
c0-0.5-0.1-0.9-0.2-1.2c-0.2-0.3-0.4-0.4-0.7-0.4c-0.3,0-0.5,0.1-0.7,0.4s-0.2,0.6-0.2,1.2v1.8c0,0.5,0.1,1,0.2,1.2
c0.2,0.2,0.4,0.4,0.7,0.4c0.3,0,0.5-0.1,0.7-0.4s0.2-0.7,0.2-1.2V57.1z"/>
<path d="M298,61.4h-1.4v-1.2h1.4V61.4z"/>
<path d="M298.9,61.4v-0.9l2.2-2.4c0.3-0.4,0.5-0.7,0.7-0.9c0.1-0.3,0.2-0.5,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7s-0.4-0.3-0.7-0.3
c-0.3,0-0.6,0.1-0.7,0.3s-0.2,0.5-0.2,0.9h-1.3l0,0c0-0.6,0.2-1.1,0.6-1.6c0.4-0.4,1-0.6,1.7-0.6c0.7,0,1.3,0.2,1.7,0.5
s0.6,0.9,0.6,1.5c0,0.4-0.1,0.8-0.3,1.1c-0.2,0.3-0.6,0.8-1.1,1.4l-1.2,1.3l0,0h1.8l0.1-0.7h1v1.7H298.9z"/>
<path d="M305.6,57.4h0.8c0.3,0,0.6-0.1,0.7-0.3c0.2-0.2,0.2-0.4,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7c-0.2-0.2-0.4-0.2-0.7-0.2
c-0.3,0-0.5,0.1-0.6,0.2c-0.2,0.1-0.3,0.3-0.3,0.6h-1.3l0,0c0-0.5,0.2-1,0.6-1.3c0.4-0.3,1-0.5,1.6-0.5c0.7,0,1.3,0.2,1.7,0.5
c0.4,0.3,0.6,0.8,0.6,1.4c0,0.3-0.1,0.6-0.3,0.8c-0.2,0.3-0.4,0.5-0.8,0.6c0.4,0.1,0.7,0.3,0.9,0.6c0.2,0.3,0.3,0.6,0.3,1
c0,0.6-0.2,1.1-0.7,1.5c-0.5,0.4-1,0.5-1.7,0.5c-0.6,0-1.2-0.2-1.6-0.5s-0.7-0.8-0.7-1.4l0,0h1.3c0,0.3,0.1,0.5,0.3,0.6
s0.4,0.3,0.7,0.3c0.3,0,0.6-0.1,0.7-0.3s0.3-0.4,0.3-0.7c0-0.4-0.1-0.6-0.3-0.8c-0.2-0.2-0.4-0.2-0.8-0.2h-0.8V57.4z"/>
<path d="M312.2,54.5c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0.1,0.7,0.2l-0.2,1c-0.2-0.1-0.4-0.1-0.5-0.2c-0.2,0-0.4-0.1-0.6-0.1
c-0.4,0-0.7,0.1-1,0.4s-0.4,0.7-0.4,1.3l0,0c0.2-0.2,0.3-0.3,0.6-0.4c0.2-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.2,1.4,0.6
s0.5,1,0.5,1.7c0,0.7-0.2,1.3-0.6,1.7c-0.4,0.4-1,0.7-1.7,0.7c-0.7,0-1.3-0.2-1.8-0.7c-0.5-0.5-0.7-1.2-0.7-2v-1.2
c0-1,0.3-1.7,0.8-2.3C310.7,54.8,311.4,54.5,312.2,54.5z M311.9,57.9c-0.3,0-0.5,0-0.6,0.1s-0.3,0.2-0.4,0.3v0.5
c0,0.5,0.1,1,0.3,1.2c0.2,0.3,0.5,0.4,0.8,0.4c0.3,0,0.5-0.1,0.7-0.4c0.2-0.3,0.3-0.6,0.3-0.9c0-0.4-0.1-0.7-0.3-0.9
S312.2,57.9,311.9,57.9z"/>
</g>
</g>
<g id="pods">
<circle class="st27" cx="153.4" cy="108.6" r="20.5"/>
<circle class="st40" cx="153.4" cy="108.8" r="20.5"/>
<circle class="st22" cx="152.8" cy="330.3" r="20.5"/>
<circle class="st22" cx="285.2" cy="93.8" r="16.4"/>
<circle class="st22" cx="322.4" cy="93.8" r="16.4"/>
<circle class="st26" cx="152.8" cy="330.3" r="20.5"/>
<circle class="st26" cx="322.4" cy="93.8" r="16.4"/>
<circle class="st41" cx="199.9" cy="108.8" r="20.1"/>
<circle class="st26" cx="199.9" cy="108.8" r="20.1"/>
<circle class="st26" cx="285.2" cy="93.8" r="16.4"/>
</g>
<g id="IP">
<g>
<path class="st42" d="M180.9,95.3l0.5-0.8l-3.4-2.6l-0.5,0.9l-0.2-0.2l0.6-1.3l3.8,2.9l0.6-0.7l0.2,0.2l-1.4,1.8L180.9,95.3z"/>
<path class="st42" d="M183.8,89.6c0.5,0.5,0.7,0.9,0.8,1.4c0,0.5-0.1,0.8-0.5,1.2c-0.4,0.3-0.8,0.5-1.2,0.4
c-0.5-0.1-0.9-0.3-1.4-0.8l-0.8-0.8c-0.5-0.5-0.7-0.9-0.8-1.4c0-0.5,0.1-0.9,0.5-1.2c0.4-0.3,0.8-0.5,1.2-0.4
c0.5,0.1,0.9,0.3,1.4,0.8L183.8,89.6z M182.6,89c-0.4-0.4-0.7-0.6-1.1-0.7c-0.3-0.1-0.6,0-0.9,0.3c-0.3,0.3-0.4,0.6-0.3,0.9
c0.1,0.3,0.3,0.7,0.6,1.1l0.9,0.9c0.4,0.4,0.7,0.6,1.1,0.7c0.3,0.1,0.7,0,0.9-0.3c0.3-0.3,0.4-0.6,0.3-0.9
c-0.1-0.3-0.3-0.7-0.6-1.1L182.6,89z"/>
<path class="st42" d="M186.2,90.3l-0.4,0.3l-0.3-0.5l0.4-0.3L186.2,90.3z"/>
<path class="st42" d="M188.7,86.4c0.3,0.6,0.5,1.1,0.4,1.5c-0.1,0.4-0.3,0.8-0.7,1.1c-0.4,0.3-0.9,0.3-1.3,0.1
c-0.4-0.2-0.8-0.5-1.1-1.1l-0.6-1c-0.3-0.6-0.5-1.1-0.4-1.5s0.3-0.8,0.7-1.1c0.4-0.3,0.9-0.3,1.3-0.1s0.8,0.5,1.1,1.1L188.7,86.4z
M187.7,85.5c-0.3-0.5-0.6-0.8-0.9-0.9c-0.3-0.1-0.6-0.1-1,0.1c-0.3,0.2-0.5,0.5-0.5,0.8c0,0.3,0.1,0.7,0.4,1.2l0.6,1.1
c0.3,0.4,0.6,0.7,0.9,0.9c0.3,0.1,0.6,0.1,1-0.1c0.3-0.2,0.5-0.5,0.5-0.8c0-0.3-0.1-0.7-0.4-1.2L187.7,85.5z"/>
<path class="st42" d="M190.9,87.6l-0.4,0.2l-0.2-0.5l0.4-0.2L190.9,87.6z"/>
<path class="st42" d="M194.2,84.3c0.2,0.6,0.2,1.2,0,1.6c-0.2,0.4-0.5,0.7-1,0.8c-0.5,0.1-0.9,0.1-1.3-0.2
c-0.4-0.3-0.7-0.7-0.8-1.3l-0.3-1.1c-0.2-0.6-0.2-1.2,0-1.6c0.2-0.4,0.5-0.7,1-0.9c0.5-0.1,0.9-0.1,1.3,0.2
c0.4,0.3,0.7,0.7,0.8,1.3L194.2,84.3z M193.5,83.3c-0.2-0.5-0.4-0.9-0.6-1.1c-0.3-0.2-0.6-0.3-1-0.2c-0.4,0.1-0.6,0.3-0.7,0.7
c-0.1,0.3-0.1,0.7,0.1,1.2l0.4,1.2c0.2,0.5,0.4,0.9,0.6,1.1c0.3,0.2,0.6,0.3,1,0.2c0.4-0.1,0.6-0.3,0.7-0.7
c0.1-0.3,0.1-0.7-0.1-1.2L193.5,83.3z"/>
<path class="st42" d="M196.1,86l-0.5,0.1l-0.1-0.6l0.5-0.1L196.1,86z"/>
<path class="st42" d="M198.5,80.6c0.2,0,0.3,0,0.5,0c0.2,0,0.3,0.1,0.5,0.1l-0.1,0.3c-0.1-0.1-0.3-0.1-0.4-0.1c-0.1,0-0.3,0-0.5,0
c-0.4,0-0.7,0.2-0.9,0.5c-0.2,0.3-0.3,0.8-0.3,1.4l0,0.2c0.1-0.2,0.3-0.3,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.2c0.5,0,0.8,0.1,1.1,0.4
c0.3,0.3,0.4,0.7,0.5,1.2c0,0.5-0.1,0.9-0.4,1.3c-0.3,0.3-0.6,0.5-1.1,0.6c-0.5,0-0.9-0.1-1.2-0.5s-0.5-0.8-0.5-1.5l-0.1-0.9
c0-0.7,0.1-1.3,0.4-1.7S198,80.6,198.5,80.6z M198.5,82.7c-0.3,0-0.5,0.1-0.7,0.3s-0.3,0.4-0.4,0.6l0,0.3c0,0.5,0.2,0.9,0.4,1.2
c0.2,0.3,0.5,0.4,0.9,0.4c0.3,0,0.6-0.2,0.8-0.4c0.2-0.3,0.3-0.6,0.3-1c0-0.4-0.1-0.7-0.4-1C199.1,82.8,198.8,82.7,198.5,82.7z"/>
</g>
<g class="st43">
<path class="st42" d="M134.4,95.3l0.5-0.8l-3.4-2.6l-0.5,0.9l-0.2-0.2l0.6-1.3l3.8,2.9l0.6-0.7l0.2,0.2l-1.4,1.8L134.4,95.3z"/>
<path class="st42" d="M137.3,89.6c0.5,0.5,0.7,0.9,0.8,1.4c0,0.5-0.1,0.8-0.5,1.2c-0.4,0.3-0.8,0.5-1.2,0.4
c-0.5-0.1-0.9-0.3-1.4-0.8l-0.8-0.8c-0.5-0.5-0.7-0.9-0.8-1.4c0-0.5,0.1-0.9,0.5-1.2c0.4-0.3,0.8-0.5,1.2-0.4
c0.5,0.1,0.9,0.3,1.4,0.8L137.3,89.6z M136.1,89c-0.4-0.4-0.7-0.6-1.1-0.7c-0.3-0.1-0.6,0-0.9,0.3c-0.3,0.3-0.4,0.6-0.3,0.9
s0.3,0.7,0.6,1.1l0.9,0.9c0.4,0.4,0.7,0.6,1.1,0.7c0.3,0.1,0.7,0,0.9-0.3c0.3-0.3,0.4-0.6,0.3-0.9c-0.1-0.3-0.3-0.7-0.6-1.1
L136.1,89z"/>
<path class="st42" d="M139.7,90.3l-0.4,0.3l-0.3-0.5l0.4-0.3L139.7,90.3z"/>
<path class="st42" d="M142.2,86.4c0.3,0.6,0.5,1.1,0.4,1.5c-0.1,0.4-0.3,0.8-0.7,1.1c-0.4,0.3-0.9,0.3-1.3,0.1
c-0.4-0.2-0.8-0.5-1.1-1.1l-0.6-1c-0.3-0.6-0.5-1.1-0.4-1.5s0.3-0.8,0.7-1.1c0.4-0.3,0.9-0.3,1.3-0.1s0.8,0.5,1.1,1.1L142.2,86.4z
M141.2,85.5c-0.3-0.5-0.6-0.8-0.9-0.9c-0.3-0.1-0.6-0.1-1,0.1c-0.3,0.2-0.5,0.5-0.5,0.8c0,0.3,0.1,0.7,0.4,1.2l0.6,1.1
c0.3,0.4,0.6,0.7,0.9,0.9c0.3,0.1,0.6,0.1,1-0.1c0.3-0.2,0.5-0.5,0.5-0.8c0-0.3-0.1-0.7-0.4-1.2L141.2,85.5z"/>
<path class="st42" d="M144.4,87.6l-0.4,0.2l-0.2-0.5l0.4-0.2L144.4,87.6z"/>
<path class="st42" d="M147.7,84.3c0.2,0.6,0.2,1.2,0,1.6c-0.2,0.4-0.5,0.7-1,0.8c-0.5,0.1-0.9,0.1-1.3-0.2
c-0.4-0.3-0.7-0.7-0.8-1.3l-0.3-1.1c-0.2-0.6-0.2-1.2,0-1.6c0.2-0.4,0.5-0.7,1-0.9c0.5-0.1,0.9-0.1,1.3,0.2
c0.4,0.3,0.7,0.7,0.8,1.3L147.7,84.3z M147,83.3c-0.2-0.5-0.4-0.9-0.6-1.1c-0.3-0.2-0.6-0.3-1-0.2c-0.4,0.1-0.6,0.3-0.7,0.7
c-0.1,0.3-0.1,0.7,0.1,1.2l0.4,1.2c0.2,0.5,0.4,0.9,0.6,1.1c0.3,0.2,0.6,0.3,1,0.2c0.4-0.1,0.6-0.3,0.7-0.7
c0.1-0.3,0.1-0.7-0.1-1.2L147,83.3z"/>
<path class="st42" d="M149.6,86l-0.5,0.1l-0.1-0.6l0.5-0.1L149.6,86z"/>
<path class="st42" d="M152.7,81.4l-0.1-0.4l-1.8,0.1l-0.1,1.8c0.1-0.1,0.3-0.2,0.4-0.3c0.2-0.1,0.4-0.1,0.6-0.1
c0.4,0,0.8,0.1,1.1,0.4c0.3,0.3,0.4,0.7,0.5,1.2c0,0.5-0.1,0.9-0.3,1.3s-0.6,0.5-1.1,0.5c-0.4,0-0.8-0.1-1.1-0.3s-0.4-0.6-0.5-1
l0,0l0.4,0c0,0.3,0.1,0.6,0.3,0.8c0.2,0.2,0.5,0.2,0.8,0.2c0.4,0,0.7-0.2,0.8-0.4c0.2-0.2,0.2-0.6,0.2-1c0-0.4-0.1-0.7-0.3-0.9
c-0.2-0.2-0.5-0.3-0.8-0.3c-0.3,0-0.6,0.1-0.7,0.2c-0.2,0.1-0.3,0.3-0.3,0.5l-0.3,0l0.1-2.8l2.6-0.2l0.1,0.8L152.7,81.4z"/>
</g>
<g>
<path class="st42" d="M133.8,317l0.5-0.8l-3.4-2.6l-0.5,0.9l-0.2-0.2l0.6-1.3l3.8,2.9l0.6-0.7l0.2,0.2l-1.4,1.8L133.8,317z"/>
<path class="st42" d="M136.6,311.4c0.5,0.5,0.7,0.9,0.8,1.4c0,0.5-0.1,0.8-0.5,1.2c-0.4,0.3-0.8,0.5-1.2,0.4
c-0.5-0.1-0.9-0.3-1.4-0.8l-0.8-0.8c-0.5-0.5-0.7-0.9-0.8-1.4c0-0.5,0.1-0.9,0.5-1.2c0.4-0.3,0.8-0.5,1.2-0.4
c0.5,0.1,0.9,0.3,1.4,0.8L136.6,311.4z M135.5,310.8c-0.4-0.4-0.7-0.6-1.1-0.7c-0.3-0.1-0.6,0-0.9,0.3c-0.3,0.3-0.4,0.6-0.3,0.9
s0.3,0.7,0.6,1.1l0.9,0.9c0.4,0.4,0.7,0.6,1.1,0.7c0.3,0.1,0.7,0,0.9-0.3c0.3-0.3,0.4-0.6,0.3-0.9c-0.1-0.3-0.3-0.7-0.6-1.1
L135.5,310.8z"/>
<path class="st42" d="M139.1,312l-0.4,0.3l-0.3-0.5l0.4-0.3L139.1,312z"/>
<path class="st42" d="M141.5,308.1c0.3,0.6,0.5,1.1,0.4,1.5c-0.1,0.4-0.3,0.8-0.7,1.1c-0.4,0.3-0.9,0.3-1.3,0.1
c-0.4-0.2-0.8-0.5-1.1-1.1l-0.6-1c-0.3-0.6-0.5-1.1-0.4-1.5s0.3-0.8,0.7-1.1c0.4-0.3,0.9-0.3,1.3-0.1s0.8,0.5,1.1,1.1L141.5,308.1
z M140.6,307.2c-0.3-0.5-0.6-0.8-0.9-0.9c-0.3-0.1-0.6-0.1-1,0.1c-0.3,0.2-0.5,0.5-0.5,0.8c0,0.3,0.1,0.7,0.4,1.2l0.6,1.1
c0.3,0.4,0.6,0.7,0.9,0.9c0.3,0.1,0.6,0.1,1-0.1c0.3-0.2,0.5-0.5,0.5-0.8c0-0.3-0.1-0.7-0.4-1.2L140.6,307.2z"/>
<path class="st42" d="M143.8,309.3l-0.4,0.2l-0.2-0.5l0.4-0.2L143.8,309.3z"/>
<path class="st42" d="M144.5,308.6l0.9-0.3l-1.3-4.1l-0.9,0.5l-0.1-0.3l1.3-0.7l1.5,4.5l0.9-0.2l0.1,0.3l-2.1,0.7L144.5,308.6z"/>
<path class="st42" d="M147.9,308l-0.5,0.1l-0.1-0.6l0.5-0.1L147.9,308z"/>
<path class="st42" d="M150.8,303.2l-0.1-0.4l-1.8,0.2l0,1.8c0.1-0.1,0.2-0.2,0.4-0.3c0.1-0.1,0.4-0.1,0.6-0.2
c0.4-0.1,0.8,0.1,1.1,0.3c0.3,0.3,0.5,0.7,0.5,1.2c0.1,0.5,0,0.9-0.3,1.3c-0.2,0.3-0.6,0.5-1.1,0.6c-0.4,0-0.8,0-1.1-0.2
c-0.3-0.2-0.5-0.5-0.5-1l0,0l0.4,0c0,0.3,0.2,0.6,0.4,0.8c0.2,0.2,0.5,0.2,0.8,0.2c0.4,0,0.7-0.2,0.8-0.4c0.2-0.2,0.2-0.6,0.2-1
c0-0.4-0.2-0.7-0.4-0.9c-0.2-0.2-0.5-0.3-0.8-0.3c-0.3,0-0.6,0.1-0.7,0.2c-0.2,0.1-0.3,0.3-0.3,0.5l-0.3,0l0-2.8l2.6-0.3l0.1,0.8
L150.8,303.2z"/>
</g>
<g>
<path class="st42" d="M268.1,86.5l0.4-0.8l-3.9-1.9l-0.3,1l-0.3-0.1l0.4-1.4l4.3,2.1l0.5-0.8l0.3,0.1l-1,2L268.1,86.5z"/>
<path class="st42" d="M269.9,80.4c0.5,0.4,0.9,0.8,1,1.3c0.1,0.4,0,0.9-0.3,1.3c-0.3,0.4-0.7,0.6-1.1,0.6c-0.5,0-0.9-0.2-1.5-0.6
l-0.9-0.7c-0.5-0.4-0.9-0.8-1-1.3c-0.1-0.4,0-0.9,0.3-1.3c0.3-0.4,0.7-0.6,1.1-0.6c0.5,0,0.9,0.2,1.5,0.6L269.9,80.4z M268.7,80.1
c-0.4-0.3-0.8-0.5-1.1-0.5c-0.3,0-0.6,0.1-0.9,0.4c-0.2,0.3-0.3,0.6-0.2,1c0.1,0.3,0.4,0.7,0.8,1l1,0.8c0.4,0.3,0.8,0.5,1.2,0.5
c0.4,0,0.6-0.1,0.9-0.4c0.2-0.3,0.3-0.6,0.2-1c-0.1-0.3-0.4-0.7-0.8-1L268.7,80.1z"/>
<path class="st42" d="M272.5,80.7l-0.3,0.3l-0.4-0.4l0.3-0.3L272.5,80.7z"/>
<path class="st42" d="M274.4,76.6c0.4,0.5,0.6,1,0.6,1.5s-0.2,0.8-0.6,1.1c-0.4,0.3-0.8,0.4-1.3,0.3c-0.4-0.1-0.9-0.4-1.2-1
l-0.7-0.9c-0.4-0.5-0.6-1-0.6-1.5c0-0.5,0.2-0.8,0.6-1.1c0.4-0.3,0.8-0.4,1.3-0.3c0.4,0.1,0.9,0.4,1.2,1L274.4,76.6z M273.4,75.9
c-0.3-0.4-0.6-0.7-1-0.8s-0.6,0-1,0.2c-0.3,0.2-0.5,0.5-0.4,0.9s0.2,0.7,0.5,1.1l0.8,1c0.3,0.4,0.6,0.7,1,0.8
c0.3,0.1,0.7,0.1,1-0.2c0.3-0.2,0.5-0.5,0.4-0.9c0-0.3-0.2-0.7-0.5-1.2L273.4,75.9z"/>
<path class="st42" d="M276.8,77.6l-0.4,0.2l-0.3-0.5l0.4-0.2L276.8,77.6z"/>
<path class="st42" d="M277.5,77.2l-0.1-0.3l0.9-2.4c0.2-0.4,0.3-0.8,0.3-1.1s0-0.5,0-0.7c-0.1-0.3-0.3-0.5-0.5-0.6
c-0.2-0.1-0.5-0.1-0.8,0c-0.4,0.1-0.6,0.3-0.7,0.6s-0.1,0.6,0,0.9l-0.4,0.1l0,0c-0.2-0.4-0.2-0.8,0-1.2s0.5-0.6,1-0.8
c0.4-0.2,0.8-0.2,1.1,0c0.3,0.1,0.6,0.4,0.7,0.8c0.1,0.3,0.1,0.6,0,0.9c-0.1,0.3-0.2,0.7-0.4,1.2l-0.8,2l0,0l2.1-0.8l-0.2-0.7
l0.4-0.1l0.4,1L277.5,77.2z"/>
<path class="st42" d="M281.7,75.9l-0.5,0.1l-0.1-0.6l0.5-0.1L281.7,75.9z"/>
<path class="st42" d="M285.1,73.9l0.8,0l0,0.4l-0.8,0l0.1,0.9l0.6,0l0,0.3l-1.6,0.1l0-0.3l0.6-0.1l-0.1-0.9l-2.4,0.1l0-0.2
l2.2-3.7l0.5,0L285.1,73.9z M282.8,74l1.9-0.1l-0.2-2.9l0,0l-0.2,0.4L282.8,74z"/>
</g>
<g>
<path class="st42" d="M307.2,83.1l0.5-0.7l-3.4-2.7l-0.5,0.9l-0.2-0.2l0.7-1.3l3.7,3l0.6-0.7l0.2,0.2l-1.4,1.8L307.2,83.1z"/>
<path class="st42" d="M310.3,77.5c0.4,0.5,0.7,1,0.7,1.4c0,0.5-0.2,0.8-0.5,1.2c-0.4,0.3-0.8,0.5-1.2,0.4
c-0.4-0.1-0.9-0.4-1.3-0.9l-0.8-0.9c-0.4-0.5-0.7-1-0.7-1.4c0-0.5,0.1-0.8,0.5-1.2c0.4-0.3,0.8-0.5,1.2-0.4
c0.4,0.1,0.9,0.4,1.3,0.9L310.3,77.5z M309.1,76.9c-0.3-0.4-0.7-0.6-1-0.7s-0.6,0-0.9,0.3c-0.3,0.2-0.4,0.5-0.4,0.9
c0,0.3,0.2,0.7,0.6,1.1l0.8,1c0.3,0.4,0.7,0.6,1,0.7s0.7,0,0.9-0.2c0.3-0.2,0.4-0.5,0.4-0.9c0-0.3-0.2-0.7-0.6-1.1L309.1,76.9z"/>
<path class="st42" d="M312.7,78.4l-0.4,0.3l-0.3-0.5l0.4-0.3L312.7,78.4z"/>
<path class="st42" d="M315.5,74.7c0.3,0.6,0.4,1.1,0.3,1.6c-0.1,0.4-0.4,0.8-0.8,1c-0.5,0.2-0.9,0.2-1.3,0s-0.7-0.6-1-1.2l-0.5-1
c-0.3-0.6-0.4-1.1-0.3-1.6c0.1-0.4,0.4-0.8,0.8-1c0.5-0.2,0.9-0.2,1.3,0c0.4,0.2,0.7,0.6,1,1.2L315.5,74.7z M314.6,73.8
c-0.2-0.5-0.5-0.8-0.8-1s-0.6-0.2-1,0c-0.3,0.2-0.5,0.4-0.6,0.7c-0.1,0.3,0,0.7,0.2,1.2l0.5,1.2c0.2,0.5,0.5,0.8,0.8,1
c0.3,0.2,0.6,0.2,1,0c0.3-0.2,0.5-0.4,0.6-0.8c0.1-0.3,0-0.8-0.2-1.2L314.6,73.8z"/>
<path class="st42" d="M317.5,76.2l-0.5,0.1l-0.2-0.6l0.5-0.1L317.5,76.2z"/>
<path class="st42" d="M318.3,75.9l0-0.3l1.4-2.1c0.3-0.4,0.4-0.7,0.5-1c0.1-0.2,0.1-0.5,0.1-0.7c0-0.3-0.2-0.6-0.4-0.7
s-0.5-0.2-0.8-0.2c-0.4,0.1-0.7,0.2-0.8,0.4c-0.2,0.2-0.2,0.5-0.2,0.9l-0.4,0.1l0,0c-0.1-0.4,0-0.8,0.3-1.1
c0.2-0.3,0.6-0.5,1.1-0.6c0.4-0.1,0.8,0,1.1,0.2c0.3,0.2,0.5,0.5,0.5,1c0,0.3,0,0.6-0.1,0.9c-0.1,0.3-0.3,0.7-0.6,1.1l-1.2,1.8
l0,0l2.2-0.3l-0.1-0.7l0.4-0.1l0.1,1.1L318.3,75.9z"/>
<path class="st42" d="M322.7,75.5l-0.5,0l0-0.6l0.5,0L322.7,75.5z"/>
<path class="st42" d="M326.7,71.6l0-0.4l-1.8-0.3l-0.4,1.8c0.1-0.1,0.3-0.2,0.5-0.2c0.2,0,0.4,0,0.6,0c0.4,0.1,0.8,0.2,1,0.6
s0.3,0.8,0.2,1.3c-0.1,0.5-0.3,0.9-0.6,1.2c-0.3,0.3-0.7,0.4-1.2,0.3c-0.4-0.1-0.7-0.2-1-0.5c-0.2-0.3-0.3-0.6-0.2-1.1l0,0
l0.4,0.1c0,0.3,0,0.6,0.2,0.8c0.2,0.2,0.4,0.3,0.7,0.4c0.4,0.1,0.7,0,0.9-0.2c0.2-0.2,0.4-0.5,0.4-0.9c0.1-0.4,0-0.7-0.1-1
c-0.2-0.3-0.4-0.4-0.7-0.5c-0.3,0-0.6,0-0.8,0c-0.2,0.1-0.3,0.2-0.4,0.4l-0.3-0.1l0.7-2.7l2.5,0.4l-0.1,0.8L326.7,71.6z"/>
</g>
<g class="st44">
<path class="st42" d="M268.1,86.5l0.4-0.8l-3.9-1.9l-0.3,1l-0.3-0.1l0.4-1.4l4.3,2.1l0.5-0.8l0.3,0.1l-1,2L268.1,86.5z"/>
<path class="st42" d="M269.9,80.4c0.5,0.4,0.9,0.8,1,1.3c0.1,0.4,0,0.9-0.3,1.3c-0.3,0.4-0.7,0.6-1.1,0.6c-0.5,0-0.9-0.2-1.5-0.6
l-0.9-0.7c-0.5-0.4-0.9-0.8-1-1.3c-0.1-0.4,0-0.9,0.3-1.3c0.3-0.4,0.7-0.6,1.1-0.6c0.5,0,0.9,0.2,1.5,0.6L269.9,80.4z M268.7,80.1
c-0.4-0.3-0.8-0.5-1.1-0.5c-0.3,0-0.6,0.1-0.9,0.4c-0.2,0.3-0.3,0.6-0.2,1c0.1,0.3,0.4,0.7,0.8,1l1,0.8c0.4,0.3,0.8,0.5,1.2,0.5
c0.4,0,0.6-0.1,0.9-0.4c0.2-0.3,0.3-0.6,0.2-1c-0.1-0.3-0.4-0.7-0.8-1L268.7,80.1z"/>
<path class="st42" d="M273.9,79.5c-0.1-0.1-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.1-0.2-0.2c0,0.2,0,0.5-0.1,0.7
c-0.1,0.3-0.2,0.5-0.5,0.7c-0.3,0.2-0.6,0.4-0.8,0.4c-0.3,0-0.5-0.1-0.7-0.4c-0.2-0.3-0.3-0.6-0.2-0.9c0.1-0.4,0.3-0.7,0.7-1
l0.6-0.6l-0.3-0.4c-0.2-0.2-0.4-0.3-0.6-0.3c-0.2,0-0.5,0.1-0.7,0.3c-0.2,0.1-0.3,0.3-0.4,0.4c-0.1,0.2-0.2,0.3-0.2,0.5l0.3,0.4
l-0.3,0.2l-0.5-0.6c0-0.2,0.1-0.4,0.3-0.7c0.1-0.2,0.3-0.4,0.5-0.6c0.3-0.3,0.6-0.4,1-0.4c0.3,0,0.6,0.1,0.9,0.4l1.2,1.4
c0.1,0.1,0.1,0.1,0.2,0.2c0.1,0.1,0.1,0.1,0.2,0.1l0.3-0.2l0.2,0.2L273.9,79.5z M272.6,80.1c0.2-0.2,0.4-0.4,0.5-0.7
c0.1-0.3,0.1-0.5,0-0.7l-0.5-0.6l-0.6,0.6c-0.3,0.3-0.5,0.5-0.5,0.8c-0.1,0.3,0,0.5,0.1,0.7c0.1,0.2,0.3,0.2,0.5,0.2
C272.3,80.4,272.4,80.3,272.6,80.1z"/>
<path class="st42" d="M275.8,75.1l-0.3,0.2l-0.3-0.4c-0.1,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.5,0.2c-0.3,0.2-0.4,0.3-0.5,0.5
c-0.1,0.2-0.1,0.4,0,0.5c0.1,0.2,0.2,0.2,0.4,0.3c0.2,0,0.5,0,0.8-0.1c0.4-0.1,0.8-0.2,1.1-0.2s0.5,0.2,0.7,0.4
c0.2,0.3,0.2,0.6,0.1,0.9c-0.1,0.3-0.4,0.6-0.7,0.8c-0.2,0.1-0.5,0.2-0.7,0.3c-0.2,0-0.5,0.1-0.7,0l-0.4-0.7l0.3-0.2l0.3,0.4
c0.2,0,0.3,0,0.5,0s0.3-0.1,0.5-0.2c0.3-0.2,0.4-0.3,0.5-0.5s0.1-0.4,0-0.6c-0.1-0.2-0.2-0.3-0.4-0.3c-0.2,0-0.5,0-0.8,0.1
c-0.4,0.1-0.8,0.2-1.1,0.2c-0.3,0-0.5-0.2-0.6-0.4c-0.1-0.2-0.2-0.5-0.1-0.8c0.1-0.3,0.3-0.5,0.7-0.8c0.2-0.1,0.5-0.2,0.7-0.3
c0.2,0,0.5,0,0.7,0L275.8,75.1z"/>
<path class="st42" d="M278.4,76.9l-0.4,0.2l-0.2-0.5l0.4-0.2L278.4,76.9z"/>
<path class="st42" d="M279.4,73.6l0.5-0.1c0.4-0.1,0.6-0.3,0.8-0.5s0.2-0.5,0.1-0.8c-0.1-0.3-0.2-0.5-0.5-0.7
c-0.2-0.1-0.5-0.2-0.8-0.1c-0.3,0.1-0.6,0.2-0.7,0.5c-0.2,0.2-0.2,0.5-0.1,0.8l-0.4,0.1l0,0c-0.1-0.4-0.1-0.7,0.2-1.1
c0.2-0.3,0.5-0.5,1-0.7c0.4-0.1,0.8-0.1,1.1,0.1c0.3,0.2,0.5,0.5,0.7,0.9c0.1,0.2,0,0.5,0,0.7c-0.1,0.2-0.3,0.4-0.5,0.6
c0.3,0,0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.4,0.4,0.7c0.1,0.4,0.1,0.8-0.2,1.1s-0.6,0.5-1,0.7c-0.4,0.1-0.8,0.1-1.2-0.1
c-0.4-0.2-0.6-0.5-0.7-0.9l0,0l0.4-0.1c0.1,0.3,0.3,0.5,0.5,0.7c0.3,0.1,0.6,0.2,0.9,0.1c0.4-0.1,0.6-0.3,0.8-0.5
c0.2-0.2,0.2-0.5,0.1-0.9c-0.1-0.3-0.3-0.6-0.5-0.7c-0.2-0.1-0.6-0.1-1,0l-0.5,0.1L279.4,73.6z"/>
</g>
</g>
<g id="deployments">
<g>
<g>
<circle class="st45" cx="249.9" cy="211.2" r="14.1"/>
<g>
<g>
<path class="st46" d="M254.3,202.9c3,1.6,5,4.7,5,8.3c0,5.2-4.2,9.4-9.4,9.4c-5.2,0-9.4-4.2-9.4-9.4c0-4.1,2.6-7.6,6.3-8.9"/>
<g>
<polygon class="st6" points="255.7,205.7 254.6,203.1 257.3,202 255.7,201.3 253,202.4 254.1,205 "/>
</g>
</g>
</g>
<g>
<path class="st6" d="M244.7,214.9l0.8-0.1l3.3-9.5h2.2l3.3,9.5l0.8,0.1v1.3h-3.7v-1.3l0.8-0.1l-0.5-1.5h-3.5l-0.5,1.5l0.8,0.1
v1.3h-3.7V214.9z M248.6,211.7h2.5l-1.2-3.8h0L248.6,211.7z"/>
</g>
</g>
</g>
</g>
<g id="containers_x2F_volumes">
<g>
<polygon class="st51" points="188,101.7 199.9,94.9 211.8,101.7 199.9,108.6 "/>
<polygon class="st51" points="188,115.4 188,101.7 199.9,108.6 199.9,122.3 "/>
<polygon class="st51" points="199.9,122.3 199.9,108.6 211.8,101.7 211.8,115.4 "/>
</g>
<g class="st52">
<polygon class="st50" points="141.5,101.7 153.4,94.9 165.3,101.7 153.4,108.6 "/>
<polygon class="st50" points="141.5,115.4 141.5,101.7 153.4,108.6 153.4,122.3 "/>
<polygon class="st50" points="153.4,122.3 153.4,108.6 165.3,101.7 165.3,115.4 "/>
</g>
<g>
<polygon class="st50" points="140.9,323.5 152.8,316.6 164.6,323.5 152.8,330.3 "/>
<polygon class="st50" points="140.9,337.2 140.9,323.5 152.8,330.3 152.8,344 "/>
<polygon class="st50" points="152.8,344 152.8,330.3 164.6,323.5 164.6,337.2 "/>
</g>
<g>
<polygon class="st50" points="275.7,88.4 285.2,82.9 294.7,88.4 285.2,93.8 "/>
<polygon class="st50" points="275.7,99.3 275.7,88.4 285.2,93.8 285.2,104.8 "/>
<polygon class="st50" points="285.2,104.8 285.2,93.8 294.7,88.4 294.7,99.3 "/>
</g>
<g>
<polygon class="st50" points="312.9,88.4 322.4,82.9 331.9,88.4 322.4,93.8 "/>
<polygon class="st50" points="312.9,99.3 312.9,88.4 322.4,93.8 322.4,104.8 "/>
<polygon class="st50" points="322.4,104.8 322.4,93.8 331.9,88.4 331.9,99.3 "/>
</g>
</g>
<g id="labels_x2F_selectors">
</g>
<g id="description">
<g>
<path class="st42" d="M58.8,130.4h-0.9l-0.2-1.2c-0.2-0.1-0.4-0.3-0.7-0.4s-0.6-0.1-1-0.1c-0.6,0-1.1,0.1-1.4,0.4s-0.5,0.6-0.5,1
c0,0.4,0.2,0.7,0.5,0.9s0.9,0.5,1.6,0.7c0.9,0.2,1.6,0.6,2,1s0.7,1,0.7,1.6c0,0.7-0.3,1.2-0.8,1.7s-1.3,0.6-2.2,0.6
c-0.7,0-1.2-0.1-1.7-0.3s-0.9-0.5-1.2-0.8v-1.6h0.9L54,135c0.2,0.2,0.5,0.3,0.8,0.5s0.7,0.2,1.1,0.2c0.6,0,1-0.1,1.4-0.4
s0.5-0.6,0.5-1c0-0.4-0.1-0.7-0.4-1s-0.8-0.5-1.6-0.7c-0.9-0.2-1.6-0.5-2.1-0.9s-0.8-0.9-0.8-1.6c0-0.7,0.3-1.2,0.8-1.7
s1.3-0.7,2.2-0.7c0.6,0,1.1,0.1,1.6,0.3s0.9,0.5,1.2,0.7V130.4z"/>
<path class="st42" d="M62.9,136.5c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S63.4,136.5,62.9,136.5z M62.7,130.8c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S63.2,130.8,62.7,130.8z"/>
<path class="st42" d="M66.4,130.8V130h2l0.1,0.9c0.2-0.3,0.4-0.6,0.7-0.8s0.6-0.3,0.9-0.3c0.1,0,0.2,0,0.3,0c0.1,0,0.2,0,0.2,0
l-0.2,1.1l-0.7,0c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.3-0.5,0.6v3.6l1,0.2v0.7h-3.1v-0.7l1-0.2v-4.5L66.4,130.8z"/>
<path class="st42" d="M73.7,130.8l-0.8,0.1l1.3,3.6l0.1,0.5h0l0.1-0.5l1.3-3.6l-0.8-0.1V130h2.4v0.7l-0.5,0.1l-2.1,5.5h-0.9
l-2.2-5.5l-0.5-0.1V130h2.4V130.8z"/>
<path class="st42" d="M78.2,135.6l1-0.2v-4.5l-1-0.2V130h2.1v5.4l1,0.2v0.7h-3.1V135.6z M80.3,128.4h-1.2v-1.2h1.2V128.4z"/>
<path class="st42" d="M85,135.6c0.4,0,0.7-0.1,1-0.4s0.4-0.5,0.4-0.9h1l0,0c0,0.5-0.2,1-0.7,1.5s-1.1,0.6-1.8,0.6
c-0.9,0-1.6-0.3-2.1-0.9s-0.7-1.4-0.7-2.3v-0.2c0-0.9,0.2-1.7,0.7-2.3s1.2-0.9,2.1-0.9c0.5,0,1,0.1,1.4,0.3s0.7,0.4,1,0.7l0.1,1.4
h-0.9l-0.3-1c-0.1-0.1-0.3-0.2-0.5-0.3s-0.5-0.1-0.7-0.1c-0.6,0-1,0.2-1.3,0.7s-0.4,1-0.4,1.6v0.2c0,0.6,0.1,1.2,0.4,1.6
S84.4,135.6,85,135.6z"/>
<path class="st42" d="M91.5,136.5c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S92,136.5,91.5,136.5z M91.3,130.8c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S91.8,130.8,91.3,130.8z"/>
</g>
<line class="st62" x1="153.8" y1="134" x2="97.8" y2="134"/>
<g>
<path class="st42" d="M8.9,86.2l1-0.2v-4.5l-1-0.2v-0.7h2l0.1,0.9c0.2-0.3,0.5-0.6,0.8-0.8s0.7-0.3,1.1-0.3c0.7,0,1.2,0.2,1.6,0.6
s0.6,1,0.6,1.9V86l1,0.2v0.7h-3.1v-0.7l1-0.2v-3.1c0-0.6-0.1-1-0.3-1.2s-0.6-0.4-1-0.4c-0.3,0-0.6,0.1-0.9,0.2S11.1,82,11,82.3V86
l1,0.2v0.7H8.9V86.2z"/>
<path class="st42" d="M19.6,87c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1V84h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5c0.3,0.4,0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2
s0.5-0.3,0.8-0.5l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S20.1,87,19.6,87z M19.4,81.4c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9
V83c0-0.5-0.1-0.8-0.4-1.1S19.9,81.4,19.4,81.4z"/>
<path class="st42" d="M25.4,81.3l-0.7,0.1l0.8,3.2l0.1,0.8h0l0.2-0.8l1.3-4H28l1.3,4l0.2,0.9h0l0.2-0.9l0.8-3.2l-0.7-0.1v-0.7h2.4
v0.7l-0.6,0.1L30,86.9H29l-1.2-3.9L27.5,82l0,0l-0.2,1.1l-1.2,3.9h-0.9l-1.6-5.5L23,81.3v-0.7h2.4V81.3z"/>
<path class="st42" d="M35.9,79.1v-0.7H39v0.7l-1,0.2V86l1,0.2v0.7h-3.1v-0.7l1-0.2v-6.7L35.9,79.1z"/>
<path class="st42" d="M43.7,78.4c0.9,0,1.6,0.2,2.1,0.7s0.8,1.1,0.8,1.9c0,0.8-0.3,1.4-0.8,1.9s-1.2,0.7-2.1,0.7h-1.8V86l1,0.2
v0.7h-3.1v-0.7l1-0.2v-6.7l-1-0.2v-0.7h1H43.7z M41.9,82.6h1.8c0.6,0,1-0.2,1.3-0.5c0.3-0.3,0.4-0.7,0.4-1.2s-0.1-0.9-0.4-1.2
s-0.7-0.5-1.3-0.5h-1.8V82.6z"/>
<path class="st42" d="M54.7,86.9c0-0.2-0.1-0.3-0.1-0.5s0-0.3,0-0.4c-0.2,0.3-0.5,0.5-0.8,0.7C53.4,87,53,87,52.6,87
c-0.7,0-1.2-0.2-1.5-0.5s-0.5-0.8-0.5-1.4c0-0.6,0.2-1.1,0.7-1.4s1.2-0.5,2-0.5h1.2v-0.7c0-0.4-0.1-0.7-0.4-0.9s-0.6-0.3-1-0.3
c-0.3,0-0.5,0-0.8,0.1s-0.4,0.2-0.5,0.3l-0.1,0.7h-0.9v-1.2c0.3-0.2,0.6-0.4,1-0.6s0.9-0.2,1.3-0.2c0.7,0,1.3,0.2,1.7,0.6
s0.7,0.9,0.7,1.6v3.1c0,0.1,0,0.2,0,0.2s0,0.2,0,0.2l0.5,0.1v0.7H54.7z M52.8,86.1c0.4,0,0.7-0.1,1-0.3s0.5-0.4,0.7-0.7v-1h-1.2
c-0.5,0-0.8,0.1-1.1,0.3s-0.4,0.5-0.4,0.8c0,0.3,0.1,0.5,0.3,0.6S52.5,86.1,52.8,86.1z"/>
<path class="st42" d="M61.4,86.2c-0.2,0.3-0.5,0.5-0.8,0.7S60,87,59.6,87c-0.8,0-1.4-0.3-1.8-0.8s-0.7-1.3-0.7-2.2v-0.1
c0-1,0.2-1.8,0.7-2.5s1-0.9,1.8-0.9c0.4,0,0.7,0.1,1,0.2s0.5,0.3,0.7,0.6v-2.6l-1-0.2v-0.7h1h1.2V86l1,0.2v0.7h-2L61.4,86.2z
M58.3,84c0,0.6,0.1,1.1,0.4,1.5s0.7,0.6,1.2,0.6c0.3,0,0.6-0.1,0.9-0.2s0.4-0.4,0.6-0.7v-2.9c-0.1-0.3-0.3-0.5-0.6-0.6
s-0.5-0.2-0.9-0.2c-0.6,0-1,0.2-1.2,0.7s-0.4,1.1-0.4,1.8V84z"/>
<path class="st42" d="M68.6,86.2c-0.2,0.3-0.5,0.5-0.8,0.7s-0.6,0.2-1,0.2c-0.8,0-1.4-0.3-1.8-0.8s-0.7-1.3-0.7-2.2v-0.1
c0-1,0.2-1.8,0.7-2.5s1-0.9,1.8-0.9c0.4,0,0.7,0.1,1,0.2s0.5,0.3,0.7,0.6v-2.6l-1-0.2v-0.7h1h1.2V86l1,0.2v0.7h-2L68.6,86.2z
M65.5,84c0,0.6,0.1,1.1,0.4,1.5s0.7,0.6,1.2,0.6c0.3,0,0.6-0.1,0.9-0.2s0.4-0.4,0.6-0.7v-2.9c-0.1-0.3-0.3-0.5-0.6-0.6
s-0.5-0.2-0.9-0.2c-0.6,0-1,0.2-1.2,0.7s-0.4,1.1-0.4,1.8V84z"/>
<path class="st42" d="M71.5,81.3v-0.7h2l0.1,0.9c0.2-0.3,0.4-0.6,0.7-0.8s0.6-0.3,0.9-0.3c0.1,0,0.2,0,0.3,0s0.2,0,0.2,0l-0.2,1.1
l-0.7,0c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.3-0.5,0.6V86l1,0.2v0.7h-3.1v-0.7l1-0.2v-4.5L71.5,81.3z"/>
<path class="st42" d="M79.3,87c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1V84h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5c0.3,0.4,0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2
s0.5-0.3,0.8-0.5l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S79.8,87,79.3,87z M79.1,81.4c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9
V83c0-0.5-0.1-0.8-0.4-1.1S79.6,81.4,79.1,81.4z"/>
<path class="st42" d="M87.7,82.6h-0.9l-0.2-0.8c-0.1-0.1-0.3-0.2-0.5-0.3s-0.5-0.1-0.7-0.1c-0.4,0-0.7,0.1-0.9,0.3
s-0.3,0.4-0.3,0.7c0,0.2,0.1,0.4,0.3,0.6s0.5,0.3,1.1,0.4c0.8,0.2,1.4,0.4,1.8,0.7s0.6,0.7,0.6,1.2c0,0.6-0.2,1-0.7,1.4
s-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.3-1-0.5l0-1.4H84l0.2,0.8c0.1,0.1,0.3,0.2,0.5,0.3s0.5,0.1,0.7,0.1
c0.4,0,0.7-0.1,1-0.2s0.3-0.4,0.3-0.7c0-0.3-0.1-0.5-0.3-0.6s-0.6-0.3-1.1-0.4c-0.8-0.2-1.3-0.4-1.7-0.7S83,82.8,83,82.3
c0-0.5,0.2-1,0.7-1.3s1-0.5,1.7-0.5c0.5,0,0.9,0.1,1.3,0.2s0.7,0.3,1,0.5L87.7,82.6z"/>
<path class="st42" d="M93.8,82.6h-0.9l-0.2-0.8c-0.1-0.1-0.3-0.2-0.5-0.3s-0.5-0.1-0.7-0.1c-0.4,0-0.7,0.1-0.9,0.3
s-0.3,0.4-0.3,0.7c0,0.2,0.1,0.4,0.3,0.6s0.5,0.3,1.1,0.4c0.8,0.2,1.4,0.4,1.8,0.7s0.6,0.7,0.6,1.2c0,0.6-0.2,1-0.7,1.4
s-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.3-1-0.5l0-1.4h0.9l0.2,0.8c0.1,0.1,0.3,0.2,0.5,0.3s0.5,0.1,0.7,0.1
c0.4,0,0.7-0.1,1-0.2s0.3-0.4,0.3-0.7c0-0.3-0.1-0.5-0.3-0.6s-0.6-0.3-1.1-0.4c-0.8-0.2-1.3-0.4-1.7-0.7s-0.6-0.7-0.6-1.2
c0-0.5,0.2-1,0.7-1.3s1-0.5,1.7-0.5c0.5,0,0.9,0.1,1.3,0.2s0.7,0.3,1,0.5L93.8,82.6z"/>
</g>
<line class="st62" x1="180.9" y1="84.5" x2="97.8" y2="84.5"/>
<g>
<path class="st42" d="M29.1,110.1c-0.2,0.3-0.5,0.6-0.8,0.8s-0.7,0.3-1.1,0.3c-0.7,0-1.2-0.2-1.6-0.7s-0.6-1.1-0.6-2.1v-2.8
l-0.7-0.2v-0.7H25h1.2v3.8c0,0.7,0.1,1.1,0.3,1.4s0.5,0.4,0.9,0.4c0.4,0,0.7-0.1,1-0.2s0.5-0.4,0.6-0.7v-3.7l-0.8-0.2v-0.7H29h1.2
v5.4l0.7,0.2v0.7h-1.8L29.1,110.1z"/>
<path class="st42" d="M31.7,112.7l1-0.2v-7l-1-0.2v-0.7h1.9l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2
c0.8,0,1.4,0.3,1.8,0.9s0.7,1.4,0.7,2.5v0.1c0,0.9-0.2,1.7-0.7,2.2s-1,0.8-1.8,0.8c-0.4,0-0.7-0.1-1-0.2s-0.5-0.3-0.8-0.6v2.2
l1,0.2v0.7h-3.1V112.7z M36.9,107.9c0-0.7-0.1-1.3-0.4-1.8s-0.7-0.7-1.3-0.7c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.4-0.6,0.6v3.1
c0.1,0.3,0.3,0.5,0.6,0.6s0.5,0.2,0.9,0.2c0.5,0,1-0.2,1.2-0.6s0.4-0.9,0.4-1.6V107.9z"/>
<path class="st42" d="M43.4,110.2c-0.2,0.3-0.5,0.5-0.8,0.7s-0.6,0.2-1,0.2c-0.8,0-1.4-0.3-1.8-0.8s-0.7-1.3-0.7-2.2v-0.1
c0-1,0.2-1.8,0.7-2.5s1-0.9,1.8-0.9c0.4,0,0.7,0.1,1,0.2s0.5,0.3,0.7,0.6v-2.6l-1-0.2v-0.7h1h1.2v8.2l1,0.2v0.7h-2L43.4,110.2z
M40.3,108.1c0,0.6,0.1,1.1,0.4,1.5s0.7,0.6,1.2,0.6c0.3,0,0.6-0.1,0.9-0.2s0.4-0.4,0.6-0.7v-2.9c-0.1-0.3-0.3-0.5-0.6-0.6
s-0.5-0.2-0.9-0.2c-0.6,0-1,0.2-1.2,0.7s-0.4,1.1-0.4,1.8V108.1z"/>
<path class="st42" d="M50.4,111c0-0.2-0.1-0.3-0.1-0.5s0-0.3,0-0.4c-0.2,0.3-0.5,0.5-0.8,0.7s-0.7,0.3-1.1,0.3
c-0.7,0-1.2-0.2-1.5-0.5s-0.5-0.8-0.5-1.4c0-0.6,0.2-1.1,0.7-1.4s1.2-0.5,2-0.5h1.2v-0.7c0-0.4-0.1-0.7-0.4-0.9s-0.6-0.3-1-0.3
c-0.3,0-0.5,0-0.8,0.1s-0.4,0.2-0.5,0.3l-0.1,0.7h-0.9v-1.2c0.3-0.2,0.6-0.4,1-0.6s0.9-0.2,1.3-0.2c0.7,0,1.3,0.2,1.7,0.6
s0.7,0.9,0.7,1.6v3.1c0,0.1,0,0.2,0,0.2s0,0.2,0,0.2l0.5,0.1v0.7H50.4z M48.6,110.2c0.4,0,0.7-0.1,1-0.3s0.5-0.4,0.7-0.7v-1h-1.2
c-0.5,0-0.8,0.1-1.1,0.3s-0.4,0.5-0.4,0.8c0,0.3,0.1,0.5,0.3,0.6S48.2,110.2,48.6,110.2z"/>
<path class="st42" d="M54.9,103.1v1.5h1.2v0.9h-1.2v3.8c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2c0.1,0,0.2,0,0.3,0s0.2,0,0.3-0.1
l0.2,0.8c-0.1,0.1-0.3,0.1-0.5,0.2s-0.4,0.1-0.6,0.1c-0.5,0-0.8-0.1-1.1-0.4s-0.4-0.7-0.4-1.3v-3.8h-1v-0.9h1v-1.5H54.9z"/>
<path class="st42" d="M60.2,111.1c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S60.7,111.1,60.2,111.1z M60,105.5c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9V107
c0-0.5-0.1-0.8-0.4-1.1S60.5,105.5,60,105.5z"/>
<path class="st42" d="M68,110.2c-0.2,0.3-0.5,0.5-0.8,0.7s-0.6,0.2-1,0.2c-0.8,0-1.4-0.3-1.8-0.8s-0.7-1.3-0.7-2.2v-0.1
c0-1,0.2-1.8,0.7-2.5s1-0.9,1.8-0.9c0.4,0,0.7,0.1,1,0.2s0.5,0.3,0.7,0.6v-2.6l-1-0.2v-0.7h1h1.2v8.2l1,0.2v0.7h-2L68,110.2z
M64.9,108.1c0,0.6,0.1,1.1,0.4,1.5s0.7,0.6,1.2,0.6c0.3,0,0.6-0.1,0.9-0.2s0.4-0.4,0.6-0.7v-2.9c-0.1-0.3-0.3-0.5-0.6-0.6
s-0.5-0.2-0.9-0.2c-0.6,0-1,0.2-1.2,0.7s-0.4,1.1-0.4,1.8V108.1z"/>
<path class="st42" d="M78.1,111c0-0.2-0.1-0.3-0.1-0.5s0-0.3,0-0.4c-0.2,0.3-0.5,0.5-0.8,0.7s-0.7,0.3-1.1,0.3
c-0.7,0-1.2-0.2-1.5-0.5s-0.5-0.8-0.5-1.4c0-0.6,0.2-1.1,0.7-1.4s1.2-0.5,2-0.5h1.2v-0.7c0-0.4-0.1-0.7-0.4-0.9s-0.6-0.3-1-0.3
c-0.3,0-0.5,0-0.8,0.1s-0.4,0.2-0.5,0.3l-0.1,0.7h-0.9v-1.2c0.3-0.2,0.6-0.4,1-0.6s0.9-0.2,1.3-0.2c0.7,0,1.3,0.2,1.7,0.6
s0.7,0.9,0.7,1.6v3.1c0,0.1,0,0.2,0,0.2s0,0.2,0,0.2l0.5,0.1v0.7H78.1z M76.2,110.2c0.4,0,0.7-0.1,1-0.3s0.5-0.4,0.7-0.7v-1h-1.2
c-0.5,0-0.8,0.1-1.1,0.3s-0.4,0.5-0.4,0.8c0,0.3,0.1,0.5,0.3,0.6S75.9,110.2,76.2,110.2z"/>
<path class="st42" d="M80.4,112.7l1-0.2v-7l-1-0.2v-0.7h1.9l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2
c0.8,0,1.4,0.3,1.8,0.9s0.7,1.4,0.7,2.5v0.1c0,0.9-0.2,1.7-0.7,2.2s-1,0.8-1.8,0.8c-0.4,0-0.7-0.1-1-0.2s-0.5-0.3-0.8-0.6v2.2
l1,0.2v0.7h-3.1V112.7z M85.6,107.9c0-0.7-0.1-1.3-0.4-1.8s-0.7-0.7-1.3-0.7c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.4-0.6,0.6v3.1
c0.1,0.3,0.3,0.5,0.6,0.6s0.5,0.2,0.9,0.2c0.5,0,1-0.2,1.2-0.6s0.4-0.9,0.4-1.6V107.9z"/>
<path class="st42" d="M87.7,112.7l1-0.2v-7l-1-0.2v-0.7h1.9l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2
c0.8,0,1.4,0.3,1.8,0.9s0.7,1.4,0.7,2.5v0.1c0,0.9-0.2,1.7-0.7,2.2s-1,0.8-1.8,0.8c-0.4,0-0.7-0.1-1-0.2s-0.5-0.3-0.8-0.6v2.2
l1,0.2v0.7h-3.1V112.7z M92.9,107.9c0-0.7-0.1-1.3-0.4-1.8s-0.7-0.7-1.3-0.7c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.4-0.6,0.6v3.1
c0.1,0.3,0.3,0.5,0.6,0.6s0.5,0.2,0.9,0.2c0.5,0,1-0.2,1.2-0.6s0.4-0.9,0.4-1.6V107.9z"/>
</g>
<line class="st62" x1="192.1" y1="108.6" x2="97.8" y2="108.6"/>
<g>
<path class="st42" d="M316.4,196.8c1.1,0,2,0.3,2.7,1s1,1.6,1,2.7v1.2c0,1.1-0.3,2-1,2.7s-1.6,1-2.7,1h-3.6v-0.7l1-0.2v-6.7
l-1-0.2v-0.7h1H316.4z M315,197.7v6.7h1.5c0.8,0,1.4-0.3,1.9-0.8s0.7-1.2,0.7-2v-1.2c0-0.8-0.2-1.5-0.7-2s-1.1-0.8-1.9-0.8H315z"
/>
<path class="st42" d="M324.2,205.5c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S324.7,205.5,324.2,205.5z M324,199.8c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S324.5,199.8,324,199.8z"/>
<path class="st42" d="M327.6,207l1-0.2v-7l-1-0.2V199h1.9l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2c0.8,0,1.4,0.3,1.8,0.9
s0.7,1.4,0.7,2.5v0.1c0,0.9-0.2,1.7-0.7,2.2s-1,0.8-1.8,0.8c-0.4,0-0.7-0.1-1-0.2s-0.5-0.3-0.8-0.6v2.2l1,0.2v0.7h-3.1V207z
M332.8,202.3c0-0.7-0.1-1.3-0.4-1.8s-0.7-0.7-1.3-0.7c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.4-0.6,0.6v3.1c0.1,0.3,0.3,0.5,0.6,0.6
s0.5,0.2,0.9,0.2c0.5,0,1-0.2,1.2-0.6s0.4-0.9,0.4-1.6V202.3z"/>
<path class="st42" d="M334.8,197v-0.7h2.1v8.2l1,0.2v0.7h-3.1v-0.7l1-0.2v-7.3L334.8,197z"/>
<path class="st42" d="M338.6,202.1c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,2.1-0.9c0.9,0,1.6,0.3,2.1,0.9s0.8,1.4,0.8,2.3v0.1
c0,0.9-0.3,1.7-0.8,2.3s-1.2,0.9-2.1,0.9c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3V202.1z M339.8,202.3c0,0.7,0.1,1.2,0.4,1.7
s0.7,0.7,1.3,0.7c0.5,0,1-0.2,1.2-0.7s0.4-1,0.4-1.7v-0.1c0-0.7-0.1-1.2-0.4-1.7s-0.7-0.7-1.3-0.7s-1,0.2-1.3,0.7s-0.4,1-0.4,1.7
V202.3z"/>
<path class="st42" d="M351.3,199.8l-0.6,0.1l-2.4,6.5c-0.2,0.4-0.4,0.8-0.7,1.1s-0.7,0.5-1.2,0.5c-0.1,0-0.2,0-0.4,0
s-0.3,0-0.3-0.1l0.1-0.9c0,0,0,0,0.2,0s0.3,0,0.3,0c0.2,0,0.4-0.1,0.6-0.3s0.3-0.5,0.4-0.7l0.3-0.7l-2.1-5.4l-0.6-0.1V199h2.6v0.7
l-0.7,0.1l1.1,3.1l0.2,0.8h0l1.3-3.9l-0.7-0.1V199h2.6V199.8z"/>
<path class="st42" d="M351.8,204.6l1-0.2v-4.5l-1-0.2V199h2l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2s0.8,0.1,1.1,0.3
s0.5,0.5,0.7,0.9c0.2-0.4,0.5-0.6,0.8-0.9s0.7-0.3,1.1-0.3c0.6,0,1.2,0.2,1.5,0.7s0.6,1.1,0.6,2v2.9l1,0.2v0.7h-3.1v-0.7l1-0.2
v-2.9c0-0.6-0.1-1.1-0.3-1.3s-0.5-0.4-1-0.4c-0.4,0-0.7,0.1-1,0.4s-0.4,0.6-0.4,1.1v3.1l1,0.2v0.7h-3.1v-0.7l1-0.2v-2.9
c0-0.6-0.1-1-0.3-1.3s-0.5-0.4-1-0.4c-0.4,0-0.6,0.1-0.9,0.2s-0.4,0.3-0.5,0.6v3.8l1,0.2v0.7h-3.1V204.6z"/>
<path class="st42" d="M366.2,205.5c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S366.7,205.5,366.2,205.5z M366,199.8c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S366.5,199.8,366,199.8z"/>
<path class="st42" d="M369.6,204.6l1-0.2v-4.5l-1-0.2V199h2l0.1,0.9c0.2-0.3,0.5-0.6,0.8-0.8s0.7-0.3,1.1-0.3
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.9v3.1l1,0.2v0.7h-3.1v-0.7l1-0.2v-3.1c0-0.6-0.1-1-0.3-1.2s-0.6-0.4-1-0.4
c-0.3,0-0.6,0.1-0.9,0.2s-0.5,0.4-0.6,0.7v3.7l1,0.2v0.7h-3.1V204.6z"/>
<path class="st42" d="M379.5,197.5v1.5h1.2v0.9h-1.2v3.8c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2c0.1,0,0.2,0,0.3,0s0.2,0,0.3-0.1
l0.2,0.8c-0.1,0.1-0.3,0.1-0.5,0.2s-0.4,0.1-0.6,0.1c-0.5,0-0.8-0.1-1.1-0.4s-0.4-0.7-0.4-1.3v-3.8h-1V199h1v-1.5H379.5z"/>
</g>
<line class="st62" x1="310.4" y1="203" x2="249.9" y2="203"/>
</g>
<g id="Layer_14">
</g>
</svg>

After

Width:  |  Height:  |  Size: 44 KiB

@@ -0,0 +1,493 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 484 440.4" style="enable-background:new 0 0 484 440.4;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FFFFFF;stroke:#326DE6;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st1{opacity:0.71;fill:#326CE6;}
.st2{opacity:0.45;fill:#FFFFFF;}
.st3{fill:#FFFFFF;stroke:#006DE9;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st4{fill:#006DE9;}
.st5{fill:#A0CAEA;}
.st6{fill:#FFFFFF;}
.st7{opacity:0.13;}
.st8{fill:url(#SVGID_1_);}
.st9{fill:url(#SVGID_2_);}
.st10{fill:#FFFFFF;stroke:#006DE9;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st11{fill:#FFFFFF;stroke:#006DE9;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st12{fill:#FFFFFF;stroke:#326DE6;stroke-width:3.2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st13{fill:#326DE6;}
.st14{fill:none;stroke:#326DE6;stroke-width:2.4;stroke-miterlimit:10;}
.st15{fill:#A0CAE9;}
.st16{fill:#FFFFFF;stroke:#326DE6;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st17{fill:#FFFFFF;stroke:#326DE6;stroke-width:1.6;stroke-miterlimit:10;}
.st18{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;}
.st19{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3749,1.5832;}
.st20{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4006,1.6004;}
.st21{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st22{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st23{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3975,1.5984;}
.st24{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.395,1.5966;}
.st25{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3963,1.5976;}
.st26{opacity:0.1;fill:#EEF406;}
.st27{opacity:2.000000e-02;fill:#EEF406;}
.st28{opacity:0.1;fill:#06F7C9;}
.st29{fill:none;stroke:#006DE9;stroke-width:0.8;stroke-miterlimit:10;}
.st30{opacity:0.1;fill:url(#SVGID_3_);}
.st31{opacity:0.1;fill:url(#SVGID_4_);}
.st32{opacity:0.1;fill:url(#SVGID_5_);}
.st33{opacity:0.1;fill:url(#SVGID_6_);}
.st34{fill:none;stroke:#326DE6;stroke-width:1.2;stroke-miterlimit:10;}
.st35{opacity:0.1;fill:url(#SVGID_7_);}
.st36{opacity:0.1;fill:url(#SVGID_8_);}
.st37{opacity:0.1;fill:url(#SVGID_9_);}
.st38{opacity:0.1;fill:url(#SVGID_10_);}
.st39{fill:none;stroke:#326DE6;stroke-width:2;stroke-miterlimit:10;}
.st40{opacity:0.4;fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st41{fill:none;stroke:#EEF406;stroke-width:2.4596;stroke-miterlimit:10;}
.st42{fill:#011F38;}
.st43{opacity:0.4;}
.st44{opacity:0.1;}
.st45{fill:#326DE6;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st46{fill:none;stroke:#FFFFFF;stroke-width:1.2;stroke-linecap:round;stroke-linejoin:round;}
.st47{fill:#06F7C9;stroke:#FFFFFF;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st48{fill:none;stroke:#011F38;stroke-width:1.2;stroke-linecap:round;stroke-linejoin:round;}
.st49{fill:#326DE6;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;}
.st50{fill:#06F7C9;stroke:#011F38;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st51{fill:#8115FF;stroke:#011F38;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st52{opacity:0.3;}
.st53{opacity:0.2;fill:#6D6E71;}
.st54{fill:#EEF406;}
.st55{fill:#06F7C9;}
.st56{fill:#FFFFFF;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st57{fill:#FFFFFF;stroke:#EEF406;stroke-width:1.6;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st58{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4938,1.6626;}
.st59{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.0084,1.3389;}
.st60{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.724,1.816;}
.st61{fill:#011F38;stroke:#414042;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st62{fill:none;stroke:#011F38;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st63{fill:none;stroke:#011F38;stroke-width:0.2813;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
</style>
<symbol id="node_high_level" viewBox="-81 -93 162 186.1">
<polygon class="st0" points="-80,-46 -80,46 0,92 80,46 80,-46 0,-92 "/>
<g id="Isolation_Mode_3_">
</g>
</symbol>
<symbol id="node_x5F_empty" viewBox="-87.5 -100.6 175.1 201.1">
<use xlink:href="#node_high_level" width="162" height="186.1" id="XMLID_201_" x="-81" y="-93" transform="matrix(1.0808 0 0 1.0808 -3.292006e-05 -3.749943e-05)" style="overflow:visible;"/>
<g>
<polygon class="st1" points="76.8,-28.1 -14,-80.3 0,-88.3 76.7,-44.4 "/>
<polygon class="st2" points="76.8,-28.1 32.1,-53.8 38.8,-66.1 76.7,-44.4 "/>
</g>
</symbol>
<symbol id="node_x5F_new" viewBox="-87.6 -101 175.2 202">
<polygon class="st3" points="0,-100 -86.6,-50 -86.6,50 0,100 86.6,50 86.6,-50 "/>
<polygon class="st4" points="-86.6,-20.2 -86.6,-50 0,-100 25.8,-85.1 "/>
<polygon class="st5" points="-40.8,-70.7 -32.9,-57 15.7,-85.1 0,-94.3 "/>
<text transform="matrix(0.866 -0.5 -0.5 -0.866 -33.9256 -70.7388)" class="st6" style="font-family:'RobotoSlab-Regular'; font-size:11.3632px;">Docker</text>
<text transform="matrix(0.866 -0.5 -0.5 -0.866 -76.0668 -46.4087)" class="st6" style="font-family:'RobotoSlab-Regular'; font-size:11.3632px;">Kubelt</text>
</symbol>
<g id="CLUSTER">
</g>
<g id="master">
<g id="master_x5F_level1">
</g>
<polygon class="st12" points="220.9,265.9 196.7,235.6 205.3,197.8 240.2,181 275.1,197.8 283.8,235.6 259.6,265.9 "/>
</g>
<g id="Node">
<g id="Node_x5F_level3_x5F_1">
<g id="Isolation_Mode">
</g>
</g>
<g>
<polygon class="st17" points="303.8,179.8 245.7,146.2 245.7,79.1 303.8,45.6 361.9,79.1 361.9,146.2 "/>
</g>
<g>
<polygon class="st17" points="176.6,179.7 118.6,146.1 118.6,79.1 176.6,45.5 234.7,79.1 234.7,146.1 "/>
</g>
<g>
<polygon class="st17" points="176.6,401.4 118.6,367.9 118.6,300.8 176.6,267.2 234.7,300.8 234.7,367.9 "/>
</g>
</g>
<g id="service">
<g>
<g>
<g>
<path class="st22" d="M167.1,329.1v1.2h0v0c0,0.4,0,0.8,0,1.2"/>
<path class="st24" d="M167.2,333.1c1.4,16.7,15.6,29.8,32.7,29.7c17.9-0.2,32.2-15,32.2-32.9V181.8c0-12.4,10-22.4,22.4-22.4h68
c15.7,0,28.4-12.7,28.4-28.4V93.8v0c0-15.6-12.7-28.4-28.4-28.4H199.6c-17.9,0-32.5,14.5-32.5,32.5v0v230.4"/>
</g>
</g>
</g>
<g>
<path d="M220.4,56.8h-1l-0.2-0.9c-0.1-0.1-0.3-0.1-0.5-0.2c-0.2-0.1-0.5-0.1-0.7-0.1c-0.4,0-0.7,0.1-0.9,0.2
c-0.2,0.2-0.3,0.4-0.3,0.6c0,0.2,0.1,0.4,0.3,0.6s0.6,0.3,1.1,0.5c0.8,0.2,1.3,0.5,1.7,0.8c0.4,0.3,0.6,0.8,0.6,1.4
c0,0.6-0.2,1-0.7,1.4c-0.5,0.3-1.1,0.5-1.8,0.5c-0.5,0-1-0.1-1.5-0.3s-0.8-0.4-1.1-0.7v-1.4h1.1l0.1,1c0.1,0.1,0.3,0.2,0.6,0.3
c0.2,0.1,0.5,0.1,0.8,0.1c0.4,0,0.7-0.1,0.9-0.2s0.3-0.4,0.3-0.6c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.2-0.5-0.3-1-0.5
c-0.8-0.2-1.4-0.5-1.8-0.8c-0.4-0.3-0.6-0.8-0.6-1.3c0-0.6,0.2-1,0.7-1.4s1.1-0.5,1.8-0.5c0.5,0,1,0.1,1.4,0.2s0.8,0.4,1.1,0.6
V56.8z"/>
<path d="M223.5,61.5c-0.7,0-1.3-0.2-1.8-0.7s-0.7-1.1-0.7-1.8v-0.2c0-0.8,0.2-1.4,0.6-1.9c0.4-0.5,1-0.7,1.7-0.7
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.7v0.7h-3l0,0c0,0.3,0.1,0.6,0.3,0.8c0.2,0.2,0.5,0.3,0.8,0.3c0.3,0,0.6,0,0.8-0.1
c0.2-0.1,0.4-0.2,0.7-0.3l0.4,0.8c-0.2,0.2-0.5,0.3-0.8,0.4S223.9,61.5,223.5,61.5z M223.3,57.3c-0.3,0-0.5,0.1-0.6,0.3
c-0.1,0.2-0.2,0.4-0.3,0.8l0,0h1.7v-0.1c0-0.3-0.1-0.5-0.2-0.7C223.8,57.4,223.6,57.3,223.3,57.3z"/>
<path d="M226.3,60.6l0.7-0.1v-3.1l-0.7-0.1v-0.8h2l0.1,0.7c0.1-0.3,0.3-0.5,0.5-0.6s0.4-0.2,0.7-0.2c0.1,0,0.1,0,0.2,0
c0.1,0,0.1,0,0.2,0l-0.1,1.2l-0.6,0c-0.2,0-0.4,0-0.5,0.1c-0.1,0.1-0.2,0.2-0.3,0.3v2.5l0.7,0.1v0.8h-2.7V60.6z"/>
<path d="M232.4,57.2l-0.5,0.1l0.7,2.3l0.1,0.5h0l0.1-0.5l0.7-2.3l-0.5-0.1v-0.8h2.3v0.8l-0.4,0.1l-1.5,4.2h-1.3l-1.5-4.2l-0.4-0.1
v-0.8h2.3V57.2z"/>
<path d="M235.7,60.6l0.7-0.1v-3.1l-0.7-0.1v-0.8h2.1v4.1l0.7,0.1v0.8h-2.7V60.6z M237.7,55.2h-1.4v-1h1.4V55.2z"/>
<path d="M241.2,60.5c0.2,0,0.4-0.1,0.6-0.2c0.1-0.1,0.2-0.3,0.2-0.6h1.2l0,0c0,0.5-0.2,0.9-0.6,1.3c-0.4,0.3-0.9,0.5-1.5,0.5
c-0.8,0-1.3-0.2-1.7-0.7c-0.4-0.5-0.6-1.1-0.6-1.8v-0.1c0-0.7,0.2-1.4,0.6-1.8c0.4-0.5,1-0.7,1.8-0.7c0.4,0,0.8,0.1,1.1,0.2
c0.3,0.1,0.6,0.3,0.8,0.5l0,1.4h-1.1l-0.2-0.8c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2-0.1-0.3-0.1c-0.4,0-0.7,0.1-0.8,0.4
s-0.2,0.6-0.2,1.1V59c0,0.5,0.1,0.8,0.2,1.1C240.6,60.4,240.9,60.5,241.2,60.5z"/>
<path d="M246.3,61.5c-0.7,0-1.3-0.2-1.8-0.7s-0.7-1.1-0.7-1.8v-0.2c0-0.8,0.2-1.4,0.6-1.9c0.4-0.5,1-0.7,1.7-0.7
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.7v0.7h-3l0,0c0,0.3,0.1,0.6,0.3,0.8c0.2,0.2,0.5,0.3,0.8,0.3c0.3,0,0.6,0,0.8-0.1
c0.2-0.1,0.4-0.2,0.7-0.3l0.4,0.8c-0.2,0.2-0.5,0.3-0.8,0.4S246.7,61.5,246.3,61.5z M246.2,57.3c-0.3,0-0.5,0.1-0.6,0.3
c-0.1,0.2-0.2,0.4-0.3,0.8l0,0h1.7v-0.1c0-0.3-0.1-0.5-0.2-0.7C246.7,57.4,246.5,57.3,246.2,57.3z"/>
<path d="M251.3,60.6l0.5-0.1l2.1-5.9h1.4l2.1,5.9l0.5,0.1v0.8h-2.3v-0.8l0.5-0.1l-0.3-0.9h-2.2l-0.3,0.9l0.5,0.1v0.8h-2.3V60.6z
M253.7,58.6h1.6l-0.8-2.4h0L253.7,58.6z"/>
<path d="M260.6,60.6l1.2-0.1v-4.6h-1.2v-0.8l2.5-0.5v5.9l1.2,0.1v0.8h-3.7V60.6z"/>
<path d="M269.6,58.8c0,0.9-0.2,1.6-0.6,2.1c-0.4,0.5-1,0.7-1.7,0.7c-0.7,0-1.3-0.2-1.7-0.7c-0.4-0.5-0.6-1.2-0.6-2.1v-1.5
c0-0.9,0.2-1.6,0.6-2.1c0.4-0.5,1-0.7,1.7-0.7c0.7,0,1.3,0.2,1.7,0.7c0.4,0.5,0.6,1.2,0.6,2.1V58.8z M268.3,57.1
c0-0.5-0.1-0.9-0.2-1.2c-0.2-0.3-0.4-0.4-0.7-0.4c-0.3,0-0.5,0.1-0.7,0.4s-0.2,0.6-0.2,1.2v1.8c0,0.5,0.1,1,0.2,1.2
c0.2,0.2,0.4,0.4,0.7,0.4c0.3,0,0.5-0.1,0.7-0.4s0.2-0.7,0.2-1.2V57.1z"/>
<path d="M272,61.4h-1.4v-1.2h1.4V61.4z"/>
<path d="M274.3,57.4h0.8c0.3,0,0.6-0.1,0.7-0.3c0.2-0.2,0.2-0.4,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7c-0.2-0.2-0.4-0.2-0.7-0.2
c-0.3,0-0.5,0.1-0.6,0.2c-0.2,0.1-0.3,0.3-0.3,0.6h-1.3l0,0c0-0.5,0.2-1,0.6-1.3c0.4-0.3,1-0.5,1.6-0.5c0.7,0,1.3,0.2,1.7,0.5
c0.4,0.3,0.6,0.8,0.6,1.4c0,0.3-0.1,0.6-0.3,0.8c-0.2,0.3-0.4,0.5-0.8,0.6c0.4,0.1,0.7,0.3,0.9,0.6c0.2,0.3,0.3,0.6,0.3,1
c0,0.6-0.2,1.1-0.7,1.5c-0.5,0.4-1,0.5-1.7,0.5c-0.6,0-1.2-0.2-1.6-0.5s-0.7-0.8-0.7-1.4l0,0h1.3c0,0.3,0.1,0.5,0.3,0.6
s0.4,0.3,0.7,0.3c0.3,0,0.6-0.1,0.7-0.3s0.3-0.4,0.3-0.7c0-0.4-0.1-0.6-0.3-0.8c-0.2-0.2-0.4-0.2-0.8-0.2h-0.8V57.4z"/>
<path d="M279.7,61.4h-1.4v-1.2h1.4V61.4z"/>
<path d="M280.5,61.4v-0.9l2.2-2.4c0.3-0.4,0.5-0.7,0.7-0.9c0.1-0.3,0.2-0.5,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7s-0.4-0.3-0.7-0.3
c-0.3,0-0.6,0.1-0.7,0.3s-0.2,0.5-0.2,0.9h-1.3l0,0c0-0.6,0.2-1.1,0.6-1.6c0.4-0.4,1-0.6,1.7-0.6c0.7,0,1.3,0.2,1.7,0.5
s0.6,0.9,0.6,1.5c0,0.4-0.1,0.8-0.3,1.1c-0.2,0.3-0.6,0.8-1.1,1.4l-1.2,1.3l0,0h1.8l0.1-0.7h1v1.7H280.5z"/>
<path d="M289.4,56.2l-0.1-0.5h-1.8l-0.2,1.6c0.1-0.1,0.3-0.2,0.5-0.2c0.2-0.1,0.4-0.1,0.6-0.1c0.7,0,1.2,0.2,1.5,0.6
s0.5,1,0.5,1.7c0,0.7-0.2,1.2-0.6,1.6c-0.4,0.4-1,0.7-1.7,0.7c-0.6,0-1.2-0.2-1.6-0.5c-0.4-0.3-0.7-0.8-0.6-1.4l0,0l1.3-0.1
c0,0.3,0.1,0.5,0.3,0.7s0.4,0.3,0.7,0.3c0.3,0,0.6-0.1,0.7-0.3c0.2-0.2,0.2-0.5,0.2-0.9c0-0.4-0.1-0.7-0.2-0.9
c-0.2-0.2-0.4-0.4-0.7-0.4c-0.3,0-0.5,0-0.6,0.1c-0.1,0.1-0.2,0.2-0.3,0.4l-1.2-0.1l0.4-3.8h3.9v1.6H289.4z"/>
<path d="M295.7,58.8c0,0.9-0.2,1.6-0.6,2.1c-0.4,0.5-1,0.7-1.7,0.7c-0.7,0-1.3-0.2-1.7-0.7c-0.4-0.5-0.6-1.2-0.6-2.1v-1.5
c0-0.9,0.2-1.6,0.6-2.1c0.4-0.5,1-0.7,1.7-0.7c0.7,0,1.3,0.2,1.7,0.7c0.4,0.5,0.6,1.2,0.6,2.1V58.8z M294.3,57.1
c0-0.5-0.1-0.9-0.2-1.2c-0.2-0.3-0.4-0.4-0.7-0.4c-0.3,0-0.5,0.1-0.7,0.4s-0.2,0.6-0.2,1.2v1.8c0,0.5,0.1,1,0.2,1.2
c0.2,0.2,0.4,0.4,0.7,0.4c0.3,0,0.5-0.1,0.7-0.4s0.2-0.7,0.2-1.2V57.1z"/>
<path d="M298,61.4h-1.4v-1.2h1.4V61.4z"/>
<path d="M298.9,61.4v-0.9l2.2-2.4c0.3-0.4,0.5-0.7,0.7-0.9c0.1-0.3,0.2-0.5,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7s-0.4-0.3-0.7-0.3
c-0.3,0-0.6,0.1-0.7,0.3s-0.2,0.5-0.2,0.9h-1.3l0,0c0-0.6,0.2-1.1,0.6-1.6c0.4-0.4,1-0.6,1.7-0.6c0.7,0,1.3,0.2,1.7,0.5
s0.6,0.9,0.6,1.5c0,0.4-0.1,0.8-0.3,1.1c-0.2,0.3-0.6,0.8-1.1,1.4l-1.2,1.3l0,0h1.8l0.1-0.7h1v1.7H298.9z"/>
<path d="M305.6,57.4h0.8c0.3,0,0.6-0.1,0.7-0.3c0.2-0.2,0.2-0.4,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7c-0.2-0.2-0.4-0.2-0.7-0.2
c-0.3,0-0.5,0.1-0.6,0.2c-0.2,0.1-0.3,0.3-0.3,0.6h-1.3l0,0c0-0.5,0.2-1,0.6-1.3c0.4-0.3,1-0.5,1.6-0.5c0.7,0,1.3,0.2,1.7,0.5
c0.4,0.3,0.6,0.8,0.6,1.4c0,0.3-0.1,0.6-0.3,0.8c-0.2,0.3-0.4,0.5-0.8,0.6c0.4,0.1,0.7,0.3,0.9,0.6c0.2,0.3,0.3,0.6,0.3,1
c0,0.6-0.2,1.1-0.7,1.5c-0.5,0.4-1,0.5-1.7,0.5c-0.6,0-1.2-0.2-1.6-0.5s-0.7-0.8-0.7-1.4l0,0h1.3c0,0.3,0.1,0.5,0.3,0.6
s0.4,0.3,0.7,0.3c0.3,0,0.6-0.1,0.7-0.3s0.3-0.4,0.3-0.7c0-0.4-0.1-0.6-0.3-0.8c-0.2-0.2-0.4-0.2-0.8-0.2h-0.8V57.4z"/>
<path d="M312.2,54.5c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0.1,0.7,0.2l-0.2,1c-0.2-0.1-0.4-0.1-0.5-0.2c-0.2,0-0.4-0.1-0.6-0.1
c-0.4,0-0.7,0.1-1,0.4s-0.4,0.7-0.4,1.3l0,0c0.2-0.2,0.3-0.3,0.6-0.4c0.2-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.2,1.4,0.6
s0.5,1,0.5,1.7c0,0.7-0.2,1.3-0.6,1.7c-0.4,0.4-1,0.7-1.7,0.7c-0.7,0-1.3-0.2-1.8-0.7c-0.5-0.5-0.7-1.2-0.7-2v-1.2
c0-1,0.3-1.7,0.8-2.3C310.7,54.8,311.4,54.5,312.2,54.5z M311.9,57.9c-0.3,0-0.5,0-0.6,0.1s-0.3,0.2-0.4,0.3v0.5
c0,0.5,0.1,1,0.3,1.2c0.2,0.3,0.5,0.4,0.8,0.4c0.3,0,0.5-0.1,0.7-0.4c0.2-0.3,0.3-0.6,0.3-0.9c0-0.4-0.1-0.7-0.3-0.9
S312.2,57.9,311.9,57.9z"/>
</g>
</g>
<g id="pods">
<circle class="st22" cx="285.2" cy="93.8" r="16.4"/>
<circle class="st22" cx="322.4" cy="93.8" r="16.4"/>
<circle class="st26" cx="322.4" cy="93.8" r="16.4"/>
<circle class="st26" cx="285.2" cy="93.8" r="16.4"/>
<g>
<circle class="st41" cx="199.4" cy="329.9" r="20.1"/>
<circle class="st26" cx="199.4" cy="329.9" r="20.1"/>
</g>
<g>
<circle class="st41" cx="199.4" cy="108.5" r="20.1"/>
<circle class="st26" cx="199.4" cy="108.5" r="20.1"/>
</g>
</g>
<g id="IP">
<g>
<path class="st42" d="M180.9,317l0.5-0.8l-3.4-2.6l-0.5,0.9l-0.2-0.2l0.6-1.3l3.8,2.9l0.6-0.7l0.2,0.2l-1.4,1.8L180.9,317z"/>
<path class="st42" d="M183.8,311.3c0.5,0.5,0.7,0.9,0.8,1.4c0,0.5-0.1,0.8-0.5,1.2c-0.4,0.3-0.8,0.5-1.2,0.4
c-0.5-0.1-0.9-0.3-1.4-0.8l-0.8-0.8c-0.5-0.5-0.7-0.9-0.8-1.4c0-0.5,0.1-0.9,0.5-1.2c0.4-0.3,0.8-0.5,1.2-0.4
c0.5,0.1,0.9,0.3,1.4,0.8L183.8,311.3z M182.6,310.8c-0.4-0.4-0.7-0.6-1.1-0.7c-0.3-0.1-0.6,0-0.9,0.3c-0.3,0.3-0.4,0.6-0.3,0.9
c0.1,0.3,0.3,0.7,0.6,1.1l0.9,0.9c0.4,0.4,0.7,0.6,1.1,0.7c0.3,0.1,0.7,0,0.9-0.3c0.3-0.3,0.4-0.6,0.3-0.9
c-0.1-0.3-0.3-0.7-0.6-1.1L182.6,310.8z"/>
<path class="st42" d="M186.2,312l-0.4,0.3l-0.3-0.5l0.4-0.3L186.2,312z"/>
<path class="st42" d="M188.7,308.1c0.3,0.6,0.5,1.1,0.4,1.5c-0.1,0.4-0.3,0.8-0.7,1.1c-0.4,0.3-0.9,0.3-1.3,0.1
c-0.4-0.2-0.8-0.5-1.1-1.1l-0.6-1c-0.3-0.6-0.5-1.1-0.4-1.5s0.3-0.8,0.7-1.1c0.4-0.3,0.9-0.3,1.3-0.1s0.8,0.5,1.1,1.1L188.7,308.1
z M187.7,307.2c-0.3-0.5-0.6-0.8-0.9-0.9c-0.3-0.1-0.6-0.1-1,0.1c-0.3,0.2-0.5,0.5-0.5,0.8c0,0.3,0.1,0.7,0.4,1.2l0.6,1.1
c0.3,0.4,0.6,0.7,0.9,0.9s0.6,0.1,1-0.1c0.3-0.2,0.5-0.5,0.5-0.8c0-0.3-0.1-0.7-0.4-1.2L187.7,307.2z"/>
<path class="st42" d="M190.9,309.3l-0.4,0.2l-0.2-0.5l0.4-0.2L190.9,309.3z"/>
<path class="st42" d="M191.7,308.6l0.9-0.3l-1.3-4.1l-0.9,0.5l-0.1-0.3l1.3-0.7l1.5,4.5l0.9-0.2l0.1,0.3l-2.1,0.7L191.7,308.6z"/>
<path class="st42" d="M195,308l-0.5,0.1l-0.1-0.6l0.5-0.1L195,308z"/>
<path class="st42" d="M197.1,302.4c0.2,0,0.3,0,0.5,0c0.2,0,0.3,0.1,0.5,0.1l-0.1,0.3c-0.1-0.1-0.3-0.1-0.4-0.1s-0.3,0-0.5,0
c-0.4,0-0.7,0.2-0.9,0.6c-0.2,0.3-0.3,0.8-0.2,1.5l0,0.2c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.2c0.5,0,0.8,0.1,1.1,0.4
s0.5,0.7,0.5,1.2c0.1,0.5,0,0.9-0.3,1.3c-0.3,0.4-0.6,0.6-1.1,0.6c-0.5,0-0.9-0.1-1.2-0.4c-0.3-0.3-0.5-0.8-0.6-1.5l-0.1-0.9
c-0.1-0.7,0-1.3,0.3-1.7S196.6,302.4,197.1,302.4z M197.2,304.6c-0.3,0-0.5,0.1-0.7,0.3c-0.2,0.2-0.3,0.4-0.4,0.6l0,0.3
c0.1,0.5,0.2,0.9,0.5,1.2s0.6,0.4,0.9,0.3c0.3,0,0.6-0.2,0.8-0.5c0.2-0.3,0.2-0.6,0.2-1c0-0.4-0.2-0.7-0.4-1
C197.9,304.6,197.6,304.5,197.2,304.6z"/>
</g>
<g>
<path class="st42" d="M268.1,86.5l0.4-0.8l-3.9-1.9l-0.3,1l-0.3-0.1l0.4-1.4l4.3,2.1l0.5-0.8l0.3,0.1l-1,2L268.1,86.5z"/>
<path class="st42" d="M269.9,80.4c0.5,0.4,0.9,0.8,1,1.3s0,0.9-0.3,1.3c-0.3,0.4-0.7,0.6-1.1,0.6c-0.5,0-0.9-0.2-1.5-0.6l-0.9-0.7
c-0.5-0.4-0.9-0.8-1-1.3c-0.1-0.4,0-0.9,0.3-1.3c0.3-0.4,0.7-0.6,1.1-0.6c0.5,0,0.9,0.2,1.5,0.6L269.9,80.4z M268.7,80.1
c-0.4-0.3-0.8-0.5-1.1-0.5c-0.3,0-0.6,0.1-0.9,0.4c-0.2,0.3-0.3,0.6-0.2,1c0.1,0.3,0.4,0.7,0.8,1l1,0.8c0.4,0.3,0.8,0.5,1.2,0.5
c0.4,0,0.6-0.1,0.9-0.4c0.2-0.3,0.3-0.6,0.2-1c-0.1-0.3-0.4-0.7-0.8-1L268.7,80.1z"/>
<path class="st42" d="M272.5,80.7l-0.3,0.3l-0.4-0.4l0.3-0.3L272.5,80.7z"/>
<path class="st42" d="M274.5,76.6c0.4,0.5,0.6,1,0.6,1.5s-0.2,0.8-0.6,1.1c-0.4,0.3-0.8,0.4-1.3,0.3c-0.4-0.1-0.9-0.4-1.2-1
l-0.7-0.9c-0.4-0.5-0.6-1-0.6-1.5c0-0.5,0.2-0.8,0.6-1.1c0.4-0.3,0.8-0.4,1.3-0.3c0.4,0.1,0.9,0.4,1.2,1L274.5,76.6z M273.4,75.8
c-0.3-0.4-0.6-0.7-1-0.8c-0.3-0.1-0.6,0-1,0.2c-0.3,0.2-0.5,0.5-0.4,0.9c0,0.3,0.2,0.7,0.5,1.2l0.8,1c0.3,0.4,0.6,0.7,1,0.8
s0.7,0.1,1-0.2c0.3-0.2,0.5-0.5,0.4-0.9c0-0.3-0.2-0.7-0.5-1.2L273.4,75.8z"/>
<path class="st42" d="M276.8,77.6l-0.4,0.2l-0.3-0.5l0.4-0.2L276.8,77.6z"/>
<path class="st42" d="M277.5,77.2l-0.1-0.3l0.9-2.4c0.2-0.4,0.3-0.8,0.3-1.1s0-0.5,0-0.7c-0.1-0.3-0.3-0.5-0.5-0.6
c-0.2-0.1-0.5-0.1-0.8,0c-0.4,0.1-0.6,0.3-0.7,0.6s-0.1,0.6,0,0.9l-0.4,0.1l0,0c-0.2-0.4-0.2-0.8,0-1.2s0.5-0.6,1-0.8
c0.4-0.2,0.8-0.2,1.1,0c0.3,0.1,0.6,0.4,0.7,0.8c0.1,0.3,0.1,0.6,0,0.9c-0.1,0.3-0.2,0.7-0.4,1.2l-0.8,2l0,0l2.1-0.8l-0.2-0.7
l0.4-0.1l0.4,1L277.5,77.2z"/>
<path class="st42" d="M281.7,75.9l-0.5,0.1l-0.1-0.6l0.5-0.1L281.7,75.9z"/>
<path class="st42" d="M285.1,73.9l0.8,0l0,0.4l-0.8,0l0.1,0.9l0.6,0l0,0.3l-1.6,0.1l0-0.3l0.6-0.1l-0.1-0.9l-2.4,0.1l0-0.2
l2.2-3.7l0.5,0L285.1,73.9z M282.8,74l1.9-0.1l-0.2-2.9l0,0l-0.2,0.4L282.8,74z"/>
</g>
<g>
<path class="st42" d="M307.2,83.1l0.5-0.7l-3.4-2.7l-0.5,0.9l-0.2-0.2l0.6-1.3l3.7,3l0.6-0.7l0.2,0.2l-1.4,1.8L307.2,83.1z"/>
<path class="st42" d="M310.3,77.5c0.4,0.5,0.7,1,0.7,1.4c0,0.5-0.2,0.8-0.5,1.2c-0.4,0.3-0.8,0.5-1.2,0.4
c-0.4-0.1-0.9-0.4-1.3-0.9l-0.8-0.9c-0.4-0.5-0.7-1-0.7-1.4c0-0.5,0.1-0.8,0.5-1.2c0.4-0.3,0.8-0.5,1.2-0.4
c0.4,0.1,0.9,0.4,1.3,0.9L310.3,77.5z M309.1,76.9c-0.3-0.4-0.7-0.6-1-0.7s-0.6,0-0.9,0.3c-0.3,0.2-0.4,0.5-0.4,0.9
c0,0.3,0.2,0.7,0.6,1.1l0.8,1c0.3,0.4,0.7,0.6,1,0.7s0.7,0,0.9-0.2c0.3-0.2,0.4-0.5,0.4-0.9c0-0.3-0.2-0.7-0.6-1.1L309.1,76.9z"/>
<path class="st42" d="M312.7,78.4l-0.4,0.3l-0.3-0.5l0.4-0.3L312.7,78.4z"/>
<path class="st42" d="M315.5,74.7c0.3,0.6,0.4,1.1,0.3,1.6c-0.1,0.4-0.4,0.8-0.8,1c-0.5,0.2-0.9,0.2-1.3,0c-0.4-0.2-0.7-0.6-1-1.2
l-0.5-1c-0.3-0.6-0.4-1.1-0.3-1.6c0.1-0.4,0.4-0.8,0.8-1c0.5-0.2,0.9-0.2,1.3,0c0.4,0.2,0.7,0.6,1,1.2L315.5,74.7z M314.6,73.8
c-0.2-0.5-0.5-0.8-0.8-1c-0.3-0.2-0.6-0.2-1,0c-0.3,0.2-0.5,0.4-0.6,0.7c-0.1,0.3,0,0.7,0.2,1.2l0.5,1.2c0.2,0.5,0.5,0.8,0.8,1
c0.3,0.2,0.6,0.2,1,0c0.3-0.2,0.5-0.4,0.6-0.8s0-0.8-0.2-1.2L314.6,73.8z"/>
<path class="st42" d="M317.5,76.2l-0.5,0.1l-0.2-0.6l0.5-0.1L317.5,76.2z"/>
<path class="st42" d="M318.3,75.9l0-0.3l1.4-2.1c0.3-0.4,0.4-0.7,0.5-1c0.1-0.2,0.1-0.5,0.1-0.7c0-0.3-0.2-0.6-0.4-0.7
s-0.5-0.2-0.8-0.2c-0.4,0.1-0.7,0.2-0.8,0.4c-0.2,0.2-0.2,0.5-0.2,0.9l-0.4,0.1l0,0c-0.1-0.4,0-0.8,0.3-1.1
c0.2-0.3,0.6-0.5,1.1-0.6c0.4-0.1,0.8,0,1.1,0.2c0.3,0.2,0.5,0.5,0.5,1c0,0.3,0,0.6-0.1,0.9c-0.1,0.3-0.3,0.7-0.6,1.1l-1.2,1.8
l0,0l2.2-0.3l-0.1-0.7l0.4-0.1l0.1,1.1L318.3,75.9z"/>
<path class="st42" d="M322.7,75.5l-0.5,0l0-0.6l0.5,0L322.7,75.5z"/>
<path class="st42" d="M326.7,71.6l0-0.4l-1.8-0.3l-0.4,1.8c0.1-0.1,0.3-0.2,0.5-0.2c0.2,0,0.4,0,0.6,0c0.4,0.1,0.8,0.2,1,0.6
s0.3,0.8,0.2,1.3c-0.1,0.5-0.3,0.9-0.6,1.2c-0.3,0.3-0.7,0.4-1.2,0.3c-0.4-0.1-0.7-0.2-1-0.5c-0.2-0.3-0.3-0.6-0.2-1.1l0,0
l0.4,0.1c0,0.3,0,0.6,0.2,0.8c0.2,0.2,0.4,0.3,0.7,0.4c0.4,0.1,0.7,0,0.9-0.2c0.2-0.2,0.4-0.5,0.4-0.9c0.1-0.4,0-0.7-0.1-1
c-0.2-0.3-0.4-0.4-0.7-0.5c-0.3,0-0.6,0-0.8,0s-0.3,0.2-0.4,0.4l-0.3-0.1l0.7-2.7l2.5,0.4l-0.1,0.8L326.7,71.6z"/>
</g>
<g class="st44">
<path class="st42" d="M268.1,86.5l0.4-0.8l-3.9-1.9l-0.3,1l-0.3-0.1l0.4-1.4l4.3,2.1l0.5-0.8l0.3,0.1l-1,2L268.1,86.5z"/>
</g>
<g>
<path class="st42" d="M180.4,95l0.5-0.8l-3.4-2.6l-0.5,0.9l-0.2-0.2l0.6-1.3l3.8,2.9l0.6-0.7l0.2,0.2l-1.4,1.8L180.4,95z"/>
<path class="st42" d="M183.3,89.4c0.5,0.5,0.7,0.9,0.8,1.4c0,0.5-0.1,0.8-0.5,1.2c-0.4,0.3-0.8,0.5-1.2,0.4
c-0.5-0.1-0.9-0.3-1.4-0.8l-0.8-0.8c-0.5-0.5-0.7-0.9-0.8-1.4c0-0.5,0.1-0.9,0.5-1.2c0.4-0.3,0.8-0.5,1.2-0.4
c0.5,0.1,0.9,0.3,1.4,0.8L183.3,89.4z M182.2,88.8c-0.4-0.4-0.7-0.6-1.1-0.7c-0.3-0.1-0.6,0-0.9,0.3c-0.3,0.3-0.4,0.6-0.3,0.9
s0.3,0.7,0.6,1.1l0.9,0.9c0.4,0.4,0.7,0.6,1.1,0.7c0.3,0.1,0.7,0,0.9-0.3c0.3-0.3,0.4-0.6,0.3-0.9c-0.1-0.3-0.3-0.7-0.6-1.1
L182.2,88.8z"/>
<path class="st42" d="M185.7,90l-0.4,0.3l-0.3-0.5l0.4-0.3L185.7,90z"/>
<path class="st42" d="M188.2,86.1c0.3,0.6,0.5,1.1,0.4,1.5c-0.1,0.4-0.3,0.8-0.7,1.1c-0.4,0.3-0.9,0.3-1.3,0.1
c-0.4-0.2-0.8-0.5-1.1-1.1l-0.6-1c-0.3-0.6-0.5-1.1-0.4-1.5s0.3-0.8,0.7-1.1c0.4-0.3,0.9-0.3,1.3-0.1s0.8,0.5,1.1,1.1L188.2,86.1z
M187.2,85.3c-0.3-0.5-0.6-0.8-0.9-0.9c-0.3-0.1-0.6-0.1-1,0.1c-0.3,0.2-0.5,0.5-0.5,0.8c0,0.3,0.1,0.7,0.4,1.2l0.6,1.1
c0.3,0.4,0.6,0.7,0.9,0.9s0.6,0.1,1-0.1c0.3-0.2,0.5-0.5,0.5-0.8c0-0.3-0.1-0.7-0.4-1.2L187.2,85.3z"/>
<path class="st42" d="M190.4,87.3l-0.4,0.2l-0.2-0.5l0.4-0.2L190.4,87.3z"/>
<path class="st42" d="M193.8,84.1c0.2,0.6,0.2,1.2,0,1.6c-0.2,0.4-0.5,0.7-1,0.8c-0.5,0.1-0.9,0.1-1.3-0.2
c-0.4-0.3-0.7-0.7-0.8-1.3l-0.3-1.1c-0.2-0.6-0.2-1.2,0-1.6c0.2-0.4,0.5-0.7,1-0.9c0.5-0.1,0.9-0.1,1.3,0.2
c0.4,0.3,0.7,0.7,0.8,1.3L193.8,84.1z M193,83.1c-0.2-0.5-0.4-0.9-0.6-1.1c-0.3-0.2-0.6-0.3-1-0.2c-0.4,0.1-0.6,0.3-0.7,0.7
c-0.1,0.3-0.1,0.7,0.1,1.2l0.4,1.2c0.2,0.5,0.4,0.9,0.6,1.1c0.3,0.2,0.6,0.3,1,0.2c0.4-0.1,0.6-0.3,0.7-0.7
c0.1-0.3,0.1-0.7-0.1-1.2L193,83.1z"/>
<path class="st42" d="M195.6,85.8l-0.5,0.1l-0.1-0.6l0.5-0.1L195.6,85.8z"/>
<path class="st42" d="M198,80.3c0.2,0,0.3,0,0.5,0c0.2,0,0.3,0.1,0.5,0.1l-0.1,0.3c-0.1-0.1-0.3-0.1-0.4-0.1c-0.1,0-0.3,0-0.5,0
c-0.4,0-0.7,0.2-0.9,0.5c-0.2,0.3-0.3,0.8-0.3,1.4l0,0.2c0.1-0.2,0.3-0.3,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.2c0.5,0,0.8,0.1,1.1,0.4
c0.3,0.3,0.4,0.7,0.5,1.2c0,0.5-0.1,0.9-0.4,1.3c-0.3,0.3-0.6,0.5-1.1,0.6c-0.5,0-0.9-0.1-1.2-0.5s-0.5-0.8-0.5-1.5l-0.1-0.9
c0-0.7,0.1-1.3,0.4-1.7S197.5,80.4,198,80.3z M198,82.5c-0.3,0-0.5,0.1-0.7,0.3s-0.3,0.4-0.4,0.6l0,0.3c0,0.5,0.2,0.9,0.4,1.2
c0.2,0.3,0.5,0.4,0.9,0.4c0.3,0,0.6-0.2,0.8-0.4c0.2-0.3,0.3-0.6,0.3-1c0-0.4-0.1-0.7-0.4-1C198.6,82.6,198.3,82.5,198,82.5z"/>
</g>
</g>
<g id="deployments">
<g>
<g>
<circle class="st45" cx="249.9" cy="211.2" r="14.1"/>
<g>
<g>
<path class="st46" d="M254.3,202.9c3,1.6,5,4.7,5,8.3c0,5.2-4.2,9.4-9.4,9.4c-5.2,0-9.4-4.2-9.4-9.4c0-4.1,2.6-7.6,6.3-8.9"/>
<g>
<polygon class="st6" points="255.7,205.7 254.6,203.1 257.3,202 255.7,201.3 253,202.4 254.1,205 "/>
</g>
</g>
</g>
<g>
<path class="st6" d="M244.7,214.9l0.8-0.1l3.3-9.5h2.2l3.3,9.5l0.8,0.1v1.3h-3.7v-1.3l0.8-0.1l-0.5-1.5h-3.5l-0.5,1.5l0.8,0.1
v1.3h-3.7V214.9z M248.6,211.7h2.5l-1.2-3.8h0L248.6,211.7z"/>
</g>
</g>
</g>
</g>
<g id="containers_x2F_volumes">
<g>
<polygon class="st51" points="188,323.5 199.9,316.6 211.8,323.5 199.9,330.3 "/>
<polygon class="st51" points="188,337.2 188,323.5 199.9,330.3 199.9,344 "/>
<polygon class="st51" points="199.9,344 199.9,330.3 211.8,323.5 211.8,337.2 "/>
</g>
<g>
<polygon class="st50" points="275.7,88.4 285.2,82.9 294.7,88.4 285.2,93.8 "/>
<polygon class="st50" points="275.7,99.3 275.7,88.4 285.2,93.8 285.2,104.8 "/>
<polygon class="st50" points="285.2,104.8 285.2,93.8 294.7,88.4 294.7,99.3 "/>
</g>
<g>
<polygon class="st50" points="312.9,88.4 322.4,82.9 331.9,88.4 322.4,93.8 "/>
<polygon class="st50" points="312.9,99.3 312.9,88.4 322.4,93.8 322.4,104.8 "/>
<polygon class="st50" points="322.4,104.8 322.4,93.8 331.9,88.4 331.9,99.3 "/>
</g>
<g>
<polygon class="st51" points="187.6,101.5 199.4,94.7 211.3,101.5 199.4,108.4 "/>
<polygon class="st51" points="187.6,115.2 187.6,101.5 199.4,108.4 199.4,122.1 "/>
<polygon class="st51" points="199.4,122.1 199.4,108.4 211.3,101.5 211.3,115.2 "/>
</g>
</g>
<g id="labels_x2F_selectors">
</g>
<g id="description">
<g>
<path class="st42" d="M29.1,332.3c-0.2,0.3-0.5,0.6-0.8,0.8s-0.7,0.3-1.1,0.3c-0.7,0-1.2-0.2-1.6-0.7s-0.6-1.1-0.6-2.1v-2.8
l-0.7-0.2v-0.7H25h1.2v3.8c0,0.7,0.1,1.1,0.3,1.4s0.5,0.4,0.9,0.4c0.4,0,0.7-0.1,1-0.2s0.5-0.4,0.6-0.7v-3.7l-0.8-0.2v-0.7H29h1.2
v5.4l0.7,0.2v0.7h-1.8L29.1,332.3z"/>
<path class="st42" d="M31.7,334.9l1-0.2v-7l-1-0.2v-0.7h1.9l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2
c0.8,0,1.4,0.3,1.8,0.9s0.7,1.4,0.7,2.5v0.1c0,0.9-0.2,1.7-0.7,2.2s-1,0.8-1.8,0.8c-0.4,0-0.7-0.1-1-0.2s-0.5-0.3-0.8-0.6v2.2
l1,0.2v0.7h-3.1V334.9z M36.9,330.1c0-0.7-0.1-1.3-0.4-1.8s-0.7-0.7-1.3-0.7c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.4-0.6,0.6v3.1
c0.1,0.3,0.3,0.5,0.6,0.6s0.5,0.2,0.9,0.2c0.5,0,1-0.2,1.2-0.6s0.4-0.9,0.4-1.6V330.1z"/>
<path class="st42" d="M43.4,332.4c-0.2,0.3-0.5,0.5-0.8,0.7s-0.6,0.2-1,0.2c-0.8,0-1.4-0.3-1.8-0.8s-0.7-1.3-0.7-2.2v-0.1
c0-1,0.2-1.8,0.7-2.5s1-0.9,1.8-0.9c0.4,0,0.7,0.1,1,0.2s0.5,0.3,0.7,0.6V325l-1-0.2V324h1h1.2v8.2l1,0.2v0.7h-2L43.4,332.4z
M40.3,330.3c0,0.6,0.1,1.1,0.4,1.5s0.7,0.6,1.2,0.6c0.3,0,0.6-0.1,0.9-0.2s0.4-0.4,0.6-0.7v-2.9c-0.1-0.3-0.3-0.5-0.6-0.6
s-0.5-0.2-0.9-0.2c-0.6,0-1,0.2-1.2,0.7s-0.4,1.1-0.4,1.8V330.3z"/>
<path class="st42" d="M50.4,333.2c0-0.2-0.1-0.3-0.1-0.5s0-0.3,0-0.4c-0.2,0.3-0.5,0.5-0.8,0.7s-0.7,0.3-1.1,0.3
c-0.7,0-1.2-0.2-1.5-0.5s-0.5-0.8-0.5-1.4c0-0.6,0.2-1.1,0.7-1.4s1.2-0.5,2-0.5h1.2v-0.7c0-0.4-0.1-0.7-0.4-0.9s-0.6-0.3-1-0.3
c-0.3,0-0.5,0-0.8,0.1s-0.4,0.2-0.5,0.3l-0.1,0.7h-0.9v-1.2c0.3-0.2,0.6-0.4,1-0.6s0.9-0.2,1.3-0.2c0.7,0,1.3,0.2,1.7,0.6
s0.7,0.9,0.7,1.6v3.1c0,0.1,0,0.2,0,0.2s0,0.2,0,0.2l0.5,0.1v0.7H50.4z M48.6,332.3c0.4,0,0.7-0.1,1-0.3s0.5-0.4,0.7-0.7v-1h-1.2
c-0.5,0-0.8,0.1-1.1,0.3s-0.4,0.5-0.4,0.8c0,0.3,0.1,0.5,0.3,0.6S48.2,332.3,48.6,332.3z"/>
<path class="st42" d="M54.9,325.3v1.5h1.2v0.9h-1.2v3.8c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2c0.1,0,0.2,0,0.3,0s0.2,0,0.3-0.1
l0.2,0.8c-0.1,0.1-0.3,0.1-0.5,0.2s-0.4,0.1-0.6,0.1c-0.5,0-0.8-0.1-1.1-0.4s-0.4-0.7-0.4-1.3v-3.8h-1v-0.9h1v-1.5H54.9z"/>
<path class="st42" d="M60.2,333.3c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S60.7,333.3,60.2,333.3z M60,327.6c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S60.5,327.6,60,327.6z"/>
<path class="st42" d="M68,332.4c-0.2,0.3-0.5,0.5-0.8,0.7s-0.6,0.2-1,0.2c-0.8,0-1.4-0.3-1.8-0.8s-0.7-1.3-0.7-2.2v-0.1
c0-1,0.2-1.8,0.7-2.5s1-0.9,1.8-0.9c0.4,0,0.7,0.1,1,0.2s0.5,0.3,0.7,0.6V325l-1-0.2V324h1h1.2v8.2l1,0.2v0.7h-2L68,332.4z
M64.9,330.3c0,0.6,0.1,1.1,0.4,1.5s0.7,0.6,1.2,0.6c0.3,0,0.6-0.1,0.9-0.2s0.4-0.4,0.6-0.7v-2.9c-0.1-0.3-0.3-0.5-0.6-0.6
s-0.5-0.2-0.9-0.2c-0.6,0-1,0.2-1.2,0.7s-0.4,1.1-0.4,1.8V330.3z"/>
<path class="st42" d="M78.1,333.2c0-0.2-0.1-0.3-0.1-0.5s0-0.3,0-0.4c-0.2,0.3-0.5,0.5-0.8,0.7s-0.7,0.3-1.1,0.3
c-0.7,0-1.2-0.2-1.5-0.5s-0.5-0.8-0.5-1.4c0-0.6,0.2-1.1,0.7-1.4s1.2-0.5,2-0.5h1.2v-0.7c0-0.4-0.1-0.7-0.4-0.9s-0.6-0.3-1-0.3
c-0.3,0-0.5,0-0.8,0.1s-0.4,0.2-0.5,0.3l-0.1,0.7h-0.9v-1.2c0.3-0.2,0.6-0.4,1-0.6s0.9-0.2,1.3-0.2c0.7,0,1.3,0.2,1.7,0.6
s0.7,0.9,0.7,1.6v3.1c0,0.1,0,0.2,0,0.2s0,0.2,0,0.2l0.5,0.1v0.7H78.1z M76.2,332.3c0.4,0,0.7-0.1,1-0.3s0.5-0.4,0.7-0.7v-1h-1.2
c-0.5,0-0.8,0.1-1.1,0.3s-0.4,0.5-0.4,0.8c0,0.3,0.1,0.5,0.3,0.6S75.9,332.3,76.2,332.3z"/>
<path class="st42" d="M80.4,334.9l1-0.2v-7l-1-0.2v-0.7h1.9l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2
c0.8,0,1.4,0.3,1.8,0.9s0.7,1.4,0.7,2.5v0.1c0,0.9-0.2,1.7-0.7,2.2s-1,0.8-1.8,0.8c-0.4,0-0.7-0.1-1-0.2s-0.5-0.3-0.8-0.6v2.2
l1,0.2v0.7h-3.1V334.9z M85.6,330.1c0-0.7-0.1-1.3-0.4-1.8s-0.7-0.7-1.3-0.7c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.4-0.6,0.6v3.1
c0.1,0.3,0.3,0.5,0.6,0.6s0.5,0.2,0.9,0.2c0.5,0,1-0.2,1.2-0.6s0.4-0.9,0.4-1.6V330.1z"/>
<path class="st42" d="M87.7,334.9l1-0.2v-7l-1-0.2v-0.7h1.9l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2
c0.8,0,1.4,0.3,1.8,0.9s0.7,1.4,0.7,2.5v0.1c0,0.9-0.2,1.7-0.7,2.2s-1,0.8-1.8,0.8c-0.4,0-0.7-0.1-1-0.2s-0.5-0.3-0.8-0.6v2.2
l1,0.2v0.7h-3.1V334.9z M92.9,330.1c0-0.7-0.1-1.3-0.4-1.8s-0.7-0.7-1.3-0.7c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.4-0.6,0.6v3.1
c0.1,0.3,0.3,0.5,0.6,0.6s0.5,0.2,0.9,0.2c0.5,0,1-0.2,1.2-0.6s0.4-0.9,0.4-1.6V330.1z"/>
</g>
<line class="st62" x1="192.1" y1="330.8" x2="97.8" y2="330.8"/>
<g>
<path class="st42" d="M58.8,130.4h-0.9l-0.2-1.2c-0.2-0.1-0.4-0.3-0.7-0.4s-0.6-0.1-1-0.1c-0.6,0-1.1,0.1-1.4,0.4s-0.5,0.6-0.5,1
c0,0.4,0.2,0.7,0.5,0.9s0.9,0.5,1.6,0.7c0.9,0.2,1.6,0.6,2,1s0.7,1,0.7,1.6c0,0.7-0.3,1.2-0.8,1.7s-1.3,0.6-2.2,0.6
c-0.7,0-1.2-0.1-1.7-0.3s-0.9-0.5-1.2-0.8v-1.6h0.9L54,135c0.2,0.2,0.5,0.3,0.8,0.5s0.7,0.2,1.1,0.2c0.6,0,1-0.1,1.4-0.4
s0.5-0.6,0.5-1c0-0.4-0.1-0.7-0.4-1s-0.8-0.5-1.6-0.7c-0.9-0.2-1.6-0.5-2.1-0.9s-0.8-0.9-0.8-1.6c0-0.7,0.3-1.2,0.8-1.7
s1.3-0.7,2.2-0.7c0.6,0,1.1,0.1,1.6,0.3s0.9,0.5,1.2,0.7V130.4z"/>
<path class="st42" d="M62.9,136.5c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S63.4,136.5,62.9,136.5z M62.7,130.8c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S63.2,130.8,62.7,130.8z"/>
<path class="st42" d="M66.4,130.8V130h2l0.1,0.9c0.2-0.3,0.4-0.6,0.7-0.8s0.6-0.3,0.9-0.3c0.1,0,0.2,0,0.3,0s0.2,0,0.2,0l-0.2,1.1
l-0.7,0c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.3-0.5,0.6v3.6l1,0.2v0.7h-3.1v-0.7l1-0.2v-4.5L66.4,130.8z"/>
<path class="st42" d="M73.7,130.8l-0.8,0.1l1.3,3.6l0.1,0.5h0l0.1-0.5l1.3-3.6l-0.8-0.1V130h2.4v0.7l-0.5,0.1l-2.1,5.5h-0.9
l-2.2-5.5l-0.5-0.1V130h2.4V130.8z"/>
<path class="st42" d="M78.2,135.6l1-0.2v-4.5l-1-0.2V130h2.1v5.4l1,0.2v0.7h-3.1V135.6z M80.3,128.4h-1.2v-1.2h1.2V128.4z"/>
<path class="st42" d="M85,135.6c0.4,0,0.7-0.1,1-0.4s0.4-0.5,0.4-0.9h1l0,0c0,0.5-0.2,1-0.7,1.5s-1.1,0.6-1.8,0.6
c-0.9,0-1.6-0.3-2.1-0.9s-0.7-1.4-0.7-2.3v-0.2c0-0.9,0.2-1.7,0.7-2.3s1.2-0.9,2.1-0.9c0.5,0,1,0.1,1.4,0.3s0.7,0.4,1,0.7l0.1,1.4
h-0.9l-0.3-1c-0.1-0.1-0.3-0.2-0.5-0.3s-0.5-0.1-0.7-0.1c-0.6,0-1,0.2-1.3,0.7s-0.4,1-0.4,1.6v0.2c0,0.6,0.1,1.2,0.4,1.6
S84.4,135.6,85,135.6z"/>
<path class="st42" d="M91.5,136.5c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S92,136.5,91.5,136.5z M91.3,130.8c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S91.8,130.8,91.3,130.8z"/>
</g>
<line class="st62" x1="173.7" y1="134" x2="97.8" y2="134"/>
<g>
<path class="st42" d="M8.9,308.3l1-0.2v-4.5l-1-0.2v-0.7h2l0.1,0.9c0.2-0.3,0.5-0.6,0.8-0.8s0.7-0.3,1.1-0.3
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.9v3.1l1,0.2v0.7h-3.1v-0.7l1-0.2V305c0-0.6-0.1-1-0.3-1.2s-0.6-0.4-1-0.4
c-0.3,0-0.6,0.1-0.9,0.2s-0.5,0.4-0.6,0.7v3.7l1,0.2v0.7H8.9V308.3z"/>
<path class="st42" d="M19.6,309.1c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S20.1,309.1,19.6,309.1z M19.4,303.4c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9V305
c0-0.5-0.1-0.8-0.4-1.1S19.9,303.4,19.4,303.4z"/>
<path class="st42" d="M25.4,303.4l-0.7,0.1l0.8,3.2l0.1,0.8h0l0.2-0.8l1.3-4H28l1.3,4l0.2,0.9h0l0.2-0.9l0.8-3.2l-0.7-0.1v-0.7
h2.4v0.7l-0.6,0.1L30,309H29l-1.2-3.9l-0.3-1.1l0,0l-0.2,1.1l-1.2,3.9h-0.9l-1.6-5.5l-0.6-0.1v-0.7h2.4V303.4z"/>
<path class="st42" d="M35.9,301.2v-0.7H39v0.7l-1,0.2v6.7l1,0.2v0.7h-3.1v-0.7l1-0.2v-6.7L35.9,301.2z"/>
<path class="st42" d="M43.7,300.5c0.9,0,1.6,0.2,2.1,0.7s0.8,1.1,0.8,1.9c0,0.8-0.3,1.4-0.8,1.9s-1.2,0.7-2.1,0.7h-1.8v2.5l1,0.2
v0.7h-3.1v-0.7l1-0.2v-6.7l-1-0.2v-0.7h1H43.7z M41.9,304.7h1.8c0.6,0,1-0.2,1.3-0.5s0.4-0.7,0.4-1.2s-0.1-0.9-0.4-1.2
s-0.7-0.5-1.3-0.5h-1.8V304.7z"/>
<path class="st42" d="M54.7,309c0-0.2-0.1-0.3-0.1-0.5s0-0.3,0-0.4c-0.2,0.3-0.5,0.5-0.8,0.7s-0.7,0.3-1.1,0.3
c-0.7,0-1.2-0.2-1.5-0.5s-0.5-0.8-0.5-1.4c0-0.6,0.2-1.1,0.7-1.4s1.2-0.5,2-0.5h1.2v-0.7c0-0.4-0.1-0.7-0.4-0.9s-0.6-0.3-1-0.3
c-0.3,0-0.5,0-0.8,0.1s-0.4,0.2-0.5,0.3l-0.1,0.7h-0.9v-1.2c0.3-0.2,0.6-0.4,1-0.6s0.9-0.2,1.3-0.2c0.7,0,1.3,0.2,1.7,0.6
s0.7,0.9,0.7,1.6v3.1c0,0.1,0,0.2,0,0.2s0,0.2,0,0.2l0.5,0.1v0.7H54.7z M52.8,308.2c0.4,0,0.7-0.1,1-0.3s0.5-0.4,0.7-0.7v-1h-1.2
c-0.5,0-0.8,0.1-1.1,0.3s-0.4,0.5-0.4,0.8c0,0.3,0.1,0.5,0.3,0.6S52.5,308.2,52.8,308.2z"/>
<path class="st42" d="M61.4,308.2c-0.2,0.3-0.5,0.5-0.8,0.7s-0.6,0.2-1,0.2c-0.8,0-1.4-0.3-1.8-0.8s-0.7-1.3-0.7-2.2v-0.1
c0-1,0.2-1.8,0.7-2.5s1-0.9,1.8-0.9c0.4,0,0.7,0.1,1,0.2s0.5,0.3,0.7,0.6v-2.6l-1-0.2v-0.7h1h1.2v8.2l1,0.2v0.7h-2L61.4,308.2z
M58.3,306.1c0,0.6,0.1,1.1,0.4,1.5s0.7,0.6,1.2,0.6c0.3,0,0.6-0.1,0.9-0.2s0.4-0.4,0.6-0.7v-2.9c-0.1-0.3-0.3-0.5-0.6-0.6
s-0.5-0.2-0.9-0.2c-0.6,0-1,0.2-1.2,0.7s-0.4,1.1-0.4,1.8V306.1z"/>
<path class="st42" d="M68.6,308.2c-0.2,0.3-0.5,0.5-0.8,0.7s-0.6,0.2-1,0.2c-0.8,0-1.4-0.3-1.8-0.8s-0.7-1.3-0.7-2.2v-0.1
c0-1,0.2-1.8,0.7-2.5s1-0.9,1.8-0.9c0.4,0,0.7,0.1,1,0.2s0.5,0.3,0.7,0.6v-2.6l-1-0.2v-0.7h1h1.2v8.2l1,0.2v0.7h-2L68.6,308.2z
M65.5,306.1c0,0.6,0.1,1.1,0.4,1.5s0.7,0.6,1.2,0.6c0.3,0,0.6-0.1,0.9-0.2s0.4-0.4,0.6-0.7v-2.9c-0.1-0.3-0.3-0.5-0.6-0.6
s-0.5-0.2-0.9-0.2c-0.6,0-1,0.2-1.2,0.7s-0.4,1.1-0.4,1.8V306.1z"/>
<path class="st42" d="M71.5,303.4v-0.7h2l0.1,0.9c0.2-0.3,0.4-0.6,0.7-0.8s0.6-0.3,0.9-0.3c0.1,0,0.2,0,0.3,0s0.2,0,0.2,0
l-0.2,1.1l-0.7,0c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.3-0.5,0.6v3.6l1,0.2v0.7h-3.1v-0.7l1-0.2v-4.5L71.5,303.4z"/>
<path class="st42" d="M79.3,309.1c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S79.8,309.1,79.3,309.1z M79.1,303.4c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9V305
c0-0.5-0.1-0.8-0.4-1.1S79.6,303.4,79.1,303.4z"/>
<path class="st42" d="M87.7,304.6h-0.9l-0.2-0.8c-0.1-0.1-0.3-0.2-0.5-0.3s-0.5-0.1-0.7-0.1c-0.4,0-0.7,0.1-0.9,0.3
s-0.3,0.4-0.3,0.7c0,0.2,0.1,0.4,0.3,0.6s0.5,0.3,1.1,0.4c0.8,0.2,1.4,0.4,1.8,0.7s0.6,0.7,0.6,1.2c0,0.6-0.2,1-0.7,1.4
s-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.3-1-0.5l0-1.4H84l0.2,0.8c0.1,0.1,0.3,0.2,0.5,0.3s0.5,0.1,0.7,0.1
c0.4,0,0.7-0.1,1-0.2s0.3-0.4,0.3-0.7c0-0.3-0.1-0.5-0.3-0.6s-0.6-0.3-1.1-0.4c-0.8-0.2-1.3-0.4-1.7-0.7s-0.6-0.7-0.6-1.2
c0-0.5,0.2-1,0.7-1.3s1-0.5,1.7-0.5c0.5,0,0.9,0.1,1.3,0.2s0.7,0.3,1,0.5L87.7,304.6z"/>
<path class="st42" d="M93.8,304.6h-0.9l-0.2-0.8c-0.1-0.1-0.3-0.2-0.5-0.3s-0.5-0.1-0.7-0.1c-0.4,0-0.7,0.1-0.9,0.3
s-0.3,0.4-0.3,0.7c0,0.2,0.1,0.4,0.3,0.6s0.5,0.3,1.1,0.4c0.8,0.2,1.4,0.4,1.8,0.7s0.6,0.7,0.6,1.2c0,0.6-0.2,1-0.7,1.4
s-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.3-1-0.5l0-1.4h0.9l0.2,0.8c0.1,0.1,0.3,0.2,0.5,0.3s0.5,0.1,0.7,0.1
c0.4,0,0.7-0.1,1-0.2s0.3-0.4,0.3-0.7c0-0.3-0.1-0.5-0.3-0.6s-0.6-0.3-1.1-0.4c-0.8-0.2-1.3-0.4-1.7-0.7s-0.6-0.7-0.6-1.2
c0-0.5,0.2-1,0.7-1.3s1-0.5,1.7-0.5c0.5,0,0.9,0.1,1.3,0.2s0.7,0.3,1,0.5L93.8,304.6z"/>
</g>
<line class="st62" x1="180.9" y1="306.6" x2="97.8" y2="306.6"/>
<g>
<path class="st42" d="M316.4,196.8c1.1,0,2,0.3,2.7,1s1,1.6,1,2.7v1.2c0,1.1-0.3,2-1,2.7s-1.6,1-2.7,1h-3.6v-0.7l1-0.2v-6.7
l-1-0.2v-0.7h1H316.4z M315,197.7v6.7h1.5c0.8,0,1.4-0.3,1.9-0.8s0.7-1.2,0.7-2v-1.2c0-0.8-0.2-1.5-0.7-2s-1.1-0.8-1.9-0.8H315z"
/>
<path class="st42" d="M324.2,205.5c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S324.7,205.5,324.2,205.5z M324,199.8c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S324.5,199.8,324,199.8z"/>
<path class="st42" d="M327.6,207.1l1-0.2v-7l-1-0.2V199h1.9l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2
c0.8,0,1.4,0.3,1.8,0.9s0.7,1.4,0.7,2.5v0.1c0,0.9-0.2,1.7-0.7,2.2s-1,0.8-1.8,0.8c-0.4,0-0.7-0.1-1-0.2s-0.5-0.3-0.8-0.6v2.2
l1,0.2v0.7h-3.1V207.1z M332.8,202.3c0-0.7-0.1-1.3-0.4-1.8s-0.7-0.7-1.3-0.7c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.4-0.6,0.6v3.1
c0.1,0.3,0.3,0.5,0.6,0.6s0.5,0.2,0.9,0.2c0.5,0,1-0.2,1.2-0.6s0.4-0.9,0.4-1.6V202.3z"/>
<path class="st42" d="M334.8,197v-0.7h2.1v8.2l1,0.2v0.7h-3.1v-0.7l1-0.2v-7.3L334.8,197z"/>
<path class="st42" d="M338.6,202.1c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,2.1-0.9c0.9,0,1.6,0.3,2.1,0.9s0.8,1.4,0.8,2.3v0.1
c0,0.9-0.3,1.7-0.8,2.3s-1.2,0.9-2.1,0.9c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3V202.1z M339.8,202.3c0,0.7,0.1,1.2,0.4,1.7
s0.7,0.7,1.3,0.7c0.5,0,1-0.2,1.2-0.7s0.4-1,0.4-1.7v-0.1c0-0.7-0.1-1.2-0.4-1.7s-0.7-0.7-1.3-0.7s-1,0.2-1.3,0.7s-0.4,1-0.4,1.7
V202.3z"/>
<path class="st42" d="M351.3,199.8l-0.6,0.1l-2.4,6.5c-0.2,0.4-0.4,0.8-0.7,1.1s-0.7,0.5-1.2,0.5c-0.1,0-0.2,0-0.4,0
s-0.3,0-0.3-0.1l0.1-0.9c0,0,0,0,0.2,0s0.3,0,0.3,0c0.2,0,0.4-0.1,0.6-0.3s0.3-0.5,0.4-0.7l0.3-0.7l-2.1-5.4l-0.6-0.1V199h2.6v0.7
l-0.7,0.1l1.1,3.1l0.2,0.8h0l1.3-3.9l-0.7-0.1V199h2.6V199.8z"/>
<path class="st42" d="M351.8,204.6l1-0.2v-4.5l-1-0.2V199h2l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2s0.8,0.1,1.1,0.3
s0.5,0.5,0.7,0.9c0.2-0.4,0.5-0.6,0.8-0.9s0.7-0.3,1.1-0.3c0.6,0,1.2,0.2,1.5,0.7s0.6,1.1,0.6,2v2.9l1,0.2v0.7h-3.1v-0.7l1-0.2
v-2.9c0-0.6-0.1-1.1-0.3-1.3s-0.5-0.4-1-0.4c-0.4,0-0.7,0.1-1,0.4s-0.4,0.6-0.4,1.1v3.1l1,0.2v0.7h-3.1v-0.7l1-0.2v-2.9
c0-0.6-0.1-1-0.3-1.3s-0.5-0.4-1-0.4c-0.4,0-0.6,0.1-0.9,0.2s-0.4,0.3-0.5,0.6v3.8l1,0.2v0.7h-3.1V204.6z"/>
<path class="st42" d="M366.2,205.5c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S366.7,205.5,366.2,205.5z M366,199.8c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S366.5,199.8,366,199.8z"/>
<path class="st42" d="M369.6,204.6l1-0.2v-4.5l-1-0.2V199h2l0.1,0.9c0.2-0.3,0.5-0.6,0.8-0.8s0.7-0.3,1.1-0.3
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.9v3.1l1,0.2v0.7h-3.1v-0.7l1-0.2v-3.1c0-0.6-0.1-1-0.3-1.2s-0.6-0.4-1-0.4
c-0.3,0-0.6,0.1-0.9,0.2s-0.5,0.4-0.6,0.7v3.7l1,0.2v0.7h-3.1V204.6z"/>
<path class="st42" d="M379.5,197.5v1.5h1.2v0.9h-1.2v3.8c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2c0.1,0,0.2,0,0.3,0s0.2,0,0.3-0.1
l0.2,0.8c-0.1,0.1-0.3,0.1-0.5,0.2s-0.4,0.1-0.6,0.1c-0.5,0-0.8-0.1-1.1-0.4s-0.4-0.7-0.4-1.3v-3.8h-1V199h1v-1.5H379.5z"/>
</g>
<line class="st62" x1="310.4" y1="203" x2="249.9" y2="203"/>
</g>
<g id="Layer_14">
</g>
</svg>

After

Width:  |  Height:  |  Size: 38 KiB

@@ -0,0 +1,508 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 484 440.4" style="enable-background:new 0 0 484 440.4;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FFFFFF;stroke:#326DE6;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st1{opacity:0.71;fill:#326CE6;}
.st2{opacity:0.45;fill:#FFFFFF;}
.st3{fill:#FFFFFF;stroke:#006DE9;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st4{fill:#006DE9;}
.st5{fill:#A0CAEA;}
.st6{fill:#FFFFFF;}
.st7{opacity:0.13;}
.st8{fill:url(#SVGID_1_);}
.st9{fill:url(#SVGID_2_);}
.st10{fill:#FFFFFF;stroke:#006DE9;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st11{fill:#FFFFFF;stroke:#006DE9;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st12{fill:#FFFFFF;stroke:#326DE6;stroke-width:3.2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st13{fill:#326DE6;}
.st14{fill:none;stroke:#326DE6;stroke-width:2.4;stroke-miterlimit:10;}
.st15{fill:#A0CAE9;}
.st16{fill:#FFFFFF;stroke:#326DE6;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st17{fill:#FFFFFF;stroke:#326DE6;stroke-width:1.6;stroke-miterlimit:10;}
.st18{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;}
.st19{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3749,1.5832;}
.st20{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4006,1.6004;}
.st21{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st22{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st23{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3975,1.5984;}
.st24{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.395,1.5966;}
.st25{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3963,1.5976;}
.st26{opacity:0.1;fill:#EEF406;}
.st27{opacity:2.000000e-02;fill:#EEF406;}
.st28{opacity:0.1;fill:#06F7C9;}
.st29{fill:none;stroke:#006DE9;stroke-width:0.8;stroke-miterlimit:10;}
.st30{opacity:0.1;fill:url(#SVGID_3_);}
.st31{opacity:0.1;fill:url(#SVGID_4_);}
.st32{opacity:0.1;fill:url(#SVGID_5_);}
.st33{opacity:0.1;fill:url(#SVGID_6_);}
.st34{fill:none;stroke:#326DE6;stroke-width:1.2;stroke-miterlimit:10;}
.st35{opacity:0.1;fill:url(#SVGID_7_);}
.st36{opacity:0.1;fill:url(#SVGID_8_);}
.st37{opacity:0.1;fill:url(#SVGID_9_);}
.st38{opacity:0.1;fill:url(#SVGID_10_);}
.st39{fill:none;stroke:#326DE6;stroke-width:2;stroke-miterlimit:10;}
.st40{opacity:0.4;fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st41{fill:none;stroke:#EEF406;stroke-width:2.4596;stroke-miterlimit:10;}
.st42{fill:#011F38;}
.st43{opacity:0.4;}
.st44{opacity:0.1;}
.st45{fill:#326DE6;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st46{fill:none;stroke:#FFFFFF;stroke-width:1.2;stroke-linecap:round;stroke-linejoin:round;}
.st47{fill:#06F7C9;stroke:#FFFFFF;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st48{fill:none;stroke:#011F38;stroke-width:1.2;stroke-linecap:round;stroke-linejoin:round;}
.st49{fill:#326DE6;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;}
.st50{fill:#06F7C9;stroke:#011F38;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st51{fill:#8115FF;stroke:#011F38;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st52{opacity:0.3;}
.st53{opacity:0.2;fill:#6D6E71;}
.st54{fill:#EEF406;}
.st55{fill:#06F7C9;}
.st56{fill:#FFFFFF;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st57{fill:#FFFFFF;stroke:#EEF406;stroke-width:1.6;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st58{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4938,1.6626;}
.st59{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.0084,1.3389;}
.st60{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.724,1.816;}
.st61{fill:#011F38;stroke:#414042;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st62{fill:none;stroke:#011F38;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st63{fill:none;stroke:#011F38;stroke-width:0.2813;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
</style>
<symbol id="node_high_level" viewBox="-81 -93 162 186.1">
<polygon class="st0" points="-80,-46 -80,46 0,92 80,46 80,-46 0,-92 "/>
<g id="Isolation_Mode_3_">
</g>
</symbol>
<symbol id="node_x5F_empty" viewBox="-87.5 -100.6 175.1 201.1">
<use xlink:href="#node_high_level" width="162" height="186.1" id="XMLID_201_" x="-81" y="-93" transform="matrix(1.0808 0 0 1.0808 -3.292006e-05 -3.749943e-05)" style="overflow:visible;"/>
<g>
<polygon class="st1" points="76.8,-28.1 -14,-80.3 0,-88.3 76.7,-44.4 "/>
<polygon class="st2" points="76.8,-28.1 32.1,-53.8 38.8,-66.1 76.7,-44.4 "/>
</g>
</symbol>
<symbol id="node_x5F_new" viewBox="-87.6 -101 175.2 202">
<polygon class="st3" points="0,-100 -86.6,-50 -86.6,50 0,100 86.6,50 86.6,-50 "/>
<polygon class="st4" points="-86.6,-20.2 -86.6,-50 0,-100 25.8,-85.1 "/>
<polygon class="st5" points="-40.8,-70.7 -32.9,-57 15.7,-85.1 0,-94.3 "/>
<text transform="matrix(0.866 -0.5 -0.5 -0.866 -33.9256 -70.7388)" class="st6" style="font-family:'RobotoSlab-Regular'; font-size:11.3632px;">Docker</text>
<text transform="matrix(0.866 -0.5 -0.5 -0.866 -76.0668 -46.4087)" class="st6" style="font-family:'RobotoSlab-Regular'; font-size:11.3632px;">Kubelt</text>
</symbol>
<g id="CLUSTER">
</g>
<g id="master">
<g id="master_x5F_level1">
</g>
<polygon class="st12" points="220.9,265.9 196.7,235.6 205.3,197.8 240.2,181 275.1,197.8 283.8,235.6 259.6,265.9 "/>
</g>
<g id="Node">
<g id="Node_x5F_level3_x5F_1">
<g id="Isolation_Mode">
</g>
</g>
<g>
<polygon class="st17" points="303.8,179.8 245.7,146.2 245.7,79.1 303.8,45.6 361.9,79.1 361.9,146.2 "/>
</g>
<g>
<polygon class="st17" points="176.6,179.7 118.6,146.1 118.6,79.1 176.6,45.5 234.7,79.1 234.7,146.1 "/>
</g>
<g>
<polygon class="st17" points="176.6,401.4 118.6,367.9 118.6,300.8 176.6,267.2 234.7,300.8 234.7,367.9 "/>
</g>
</g>
<g id="service">
<g>
<g>
<g>
<path class="st22" d="M167.1,329.1v1.2h0v0c0,0.4,0,0.8,0,1.2"/>
<path class="st24" d="M167.2,333.1c1.4,16.7,15.6,29.8,32.7,29.7c17.9-0.2,32.2-15,32.2-32.9V181.8c0-12.4,10-22.4,22.4-22.4h68
c15.7,0,28.4-12.7,28.4-28.4V93.8v0c0-15.6-12.7-28.4-28.4-28.4H199.6c-17.9,0-32.5,14.5-32.5,32.5v0v230.4"/>
</g>
</g>
</g>
<g>
<path d="M220.4,56.8h-1l-0.2-0.9c-0.1-0.1-0.3-0.1-0.5-0.2c-0.2-0.1-0.5-0.1-0.7-0.1c-0.4,0-0.7,0.1-0.9,0.2
c-0.2,0.2-0.3,0.4-0.3,0.6c0,0.2,0.1,0.4,0.3,0.6s0.6,0.3,1.1,0.5c0.8,0.2,1.3,0.5,1.7,0.8c0.4,0.3,0.6,0.8,0.6,1.4
c0,0.6-0.2,1-0.7,1.4c-0.5,0.3-1.1,0.5-1.8,0.5c-0.5,0-1-0.1-1.5-0.3s-0.8-0.4-1.1-0.7v-1.4h1.1l0.1,1c0.1,0.1,0.3,0.2,0.6,0.3
c0.2,0.1,0.5,0.1,0.8,0.1c0.4,0,0.7-0.1,0.9-0.2c0.2-0.2,0.3-0.4,0.3-0.6c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.2-0.5-0.3-1-0.4
c-0.8-0.2-1.4-0.5-1.8-0.8c-0.4-0.3-0.6-0.8-0.6-1.3c0-0.6,0.2-1,0.7-1.4s1.1-0.5,1.8-0.5c0.5,0,1,0.1,1.4,0.2
c0.4,0.2,0.8,0.4,1.1,0.6V56.8z"/>
<path d="M223.5,61.5c-0.7,0-1.3-0.2-1.8-0.7s-0.7-1.1-0.7-1.8v-0.2c0-0.8,0.2-1.4,0.6-1.9c0.4-0.5,1-0.7,1.7-0.7
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.7v0.7h-3l0,0c0,0.3,0.1,0.6,0.3,0.8c0.2,0.2,0.5,0.3,0.8,0.3c0.3,0,0.6,0,0.8-0.1
c0.2-0.1,0.4-0.2,0.7-0.3l0.4,0.8c-0.2,0.2-0.5,0.3-0.8,0.4C224.2,61.5,223.9,61.5,223.5,61.5z M223.3,57.3
c-0.3,0-0.5,0.1-0.6,0.3c-0.1,0.2-0.2,0.4-0.3,0.8l0,0h1.7v-0.1c0-0.3-0.1-0.5-0.2-0.7C223.8,57.4,223.6,57.3,223.3,57.3z"/>
<path d="M226.3,60.6l0.7-0.1v-3.1l-0.7-0.1v-0.8h2l0.1,0.7c0.1-0.3,0.3-0.5,0.5-0.6s0.4-0.2,0.7-0.2c0.1,0,0.1,0,0.2,0
c0.1,0,0.1,0,0.2,0l-0.1,1.2l-0.6,0c-0.2,0-0.4,0-0.5,0.1c-0.1,0.1-0.2,0.2-0.3,0.3v2.5l0.7,0.1v0.8h-2.7V60.6z"/>
<path d="M232.4,57.2l-0.5,0.1l0.7,2.3l0.1,0.5h0l0.1-0.5l0.7-2.3l-0.5-0.1v-0.8h2.3v0.8l-0.4,0.1l-1.5,4.2h-1.3l-1.5-4.2l-0.4-0.1
v-0.8h2.3V57.2z"/>
<path d="M235.7,60.6l0.7-0.1v-3.1l-0.7-0.1v-0.8h2.1v4.1l0.7,0.1v0.8h-2.7V60.6z M237.7,55.2h-1.4v-1h1.4V55.2z"/>
<path d="M241.2,60.5c0.2,0,0.4-0.1,0.6-0.2c0.1-0.1,0.2-0.3,0.2-0.6h1.2l0,0c0,0.5-0.2,0.9-0.6,1.3c-0.4,0.3-0.9,0.5-1.5,0.5
c-0.8,0-1.3-0.2-1.7-0.7c-0.4-0.5-0.6-1.1-0.6-1.8v-0.1c0-0.7,0.2-1.4,0.6-1.8c0.4-0.5,1-0.7,1.8-0.7c0.4,0,0.8,0.1,1.1,0.2
s0.6,0.3,0.8,0.5l0,1.4h-1.1l-0.2-0.8c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2-0.1-0.3-0.1c-0.4,0-0.7,0.1-0.8,0.4s-0.2,0.6-0.2,1.1
V59c0,0.5,0.1,0.8,0.2,1.1C240.6,60.4,240.9,60.5,241.2,60.5z"/>
<path d="M246.3,61.5c-0.7,0-1.3-0.2-1.8-0.7s-0.7-1.1-0.7-1.8v-0.2c0-0.8,0.2-1.4,0.6-1.9c0.4-0.5,1-0.7,1.7-0.7
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.7v0.7h-3l0,0c0,0.3,0.1,0.6,0.3,0.8c0.2,0.2,0.5,0.3,0.8,0.3c0.3,0,0.6,0,0.8-0.1
c0.2-0.1,0.4-0.2,0.7-0.3l0.4,0.8c-0.2,0.2-0.5,0.3-0.8,0.4C247.1,61.5,246.7,61.5,246.3,61.5z M246.2,57.3
c-0.3,0-0.5,0.1-0.6,0.3c-0.1,0.2-0.2,0.4-0.3,0.8l0,0h1.7v-0.1c0-0.3-0.1-0.5-0.2-0.7C246.7,57.4,246.5,57.3,246.2,57.3z"/>
<path d="M251.3,60.6l0.5-0.1l2.1-5.9h1.4l2.1,5.9l0.5,0.1v0.8h-2.3v-0.8l0.5-0.1l-0.3-0.9h-2.2l-0.3,0.9l0.5,0.1v0.8h-2.3V60.6z
M253.7,58.6h1.6l-0.8-2.4h0L253.7,58.6z"/>
<path d="M260.6,60.6l1.2-0.1v-4.6h-1.2v-0.8l2.5-0.5v5.9l1.2,0.1v0.8h-3.7V60.6z"/>
<path d="M269.6,58.8c0,0.9-0.2,1.6-0.6,2.1s-1,0.7-1.7,0.7c-0.7,0-1.3-0.2-1.7-0.7s-0.6-1.2-0.6-2.1v-1.5c0-0.9,0.2-1.6,0.6-2.1
c0.4-0.5,1-0.7,1.7-0.7c0.7,0,1.3,0.2,1.7,0.7c0.4,0.5,0.6,1.2,0.6,2.1V58.8z M268.3,57.1c0-0.5-0.1-0.9-0.2-1.2
c-0.2-0.3-0.4-0.4-0.7-0.4c-0.3,0-0.5,0.1-0.7,0.4s-0.2,0.6-0.2,1.2v1.8c0,0.5,0.1,0.9,0.2,1.2c0.2,0.2,0.4,0.4,0.7,0.4
c0.3,0,0.5-0.1,0.7-0.4s0.2-0.7,0.2-1.2V57.1z"/>
<path d="M272,61.4h-1.4v-1.2h1.4V61.4z"/>
<path d="M274.3,57.4h0.8c0.3,0,0.6-0.1,0.7-0.3c0.2-0.2,0.2-0.4,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7c-0.2-0.2-0.4-0.2-0.7-0.2
c-0.3,0-0.5,0.1-0.6,0.2c-0.2,0.1-0.3,0.3-0.3,0.6h-1.3l0,0c0-0.5,0.2-1,0.6-1.3c0.4-0.3,1-0.5,1.6-0.5c0.7,0,1.3,0.2,1.7,0.5
c0.4,0.3,0.6,0.8,0.6,1.4c0,0.3-0.1,0.6-0.3,0.8s-0.4,0.5-0.8,0.6c0.4,0.1,0.7,0.3,0.9,0.6c0.2,0.3,0.3,0.6,0.3,1
c0,0.6-0.2,1.1-0.7,1.5c-0.5,0.4-1,0.5-1.7,0.5c-0.6,0-1.2-0.2-1.6-0.5s-0.7-0.8-0.7-1.4l0,0h1.3c0,0.3,0.1,0.5,0.3,0.6
s0.4,0.3,0.7,0.3c0.3,0,0.6-0.1,0.7-0.3c0.2-0.2,0.3-0.4,0.3-0.7c0-0.4-0.1-0.6-0.3-0.8c-0.2-0.2-0.4-0.2-0.8-0.2h-0.8V57.4z"/>
<path d="M279.7,61.4h-1.4v-1.2h1.4V61.4z"/>
<path d="M280.5,61.4v-0.9l2.2-2.4c0.3-0.4,0.5-0.7,0.7-0.9c0.1-0.3,0.2-0.5,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7
c-0.2-0.2-0.4-0.3-0.7-0.3c-0.3,0-0.6,0.1-0.7,0.3c-0.2,0.2-0.2,0.5-0.2,0.9h-1.3l0,0c0-0.6,0.2-1.1,0.6-1.6
c0.4-0.4,1-0.6,1.7-0.6c0.7,0,1.3,0.2,1.7,0.5s0.6,0.9,0.6,1.5c0,0.4-0.1,0.8-0.3,1.1c-0.2,0.3-0.6,0.8-1.1,1.4l-1.2,1.3l0,0h1.8
l0.1-0.7h1v1.7H280.5z"/>
<path d="M289.4,56.2l-0.1-0.5h-1.8l-0.2,1.6c0.1-0.1,0.3-0.2,0.5-0.2c0.2-0.1,0.4-0.1,0.6-0.1c0.7,0,1.2,0.2,1.5,0.6
s0.5,1,0.5,1.7c0,0.7-0.2,1.2-0.6,1.6s-1,0.7-1.7,0.7c-0.6,0-1.2-0.2-1.6-0.5s-0.7-0.8-0.6-1.4l0,0l1.3-0.1c0,0.3,0.1,0.5,0.3,0.7
s0.4,0.3,0.7,0.3c0.3,0,0.6-0.1,0.7-0.3s0.2-0.5,0.2-0.9c0-0.4-0.1-0.7-0.2-0.9c-0.2-0.2-0.4-0.4-0.7-0.4c-0.3,0-0.5,0-0.6,0.1
c-0.1,0.1-0.2,0.2-0.3,0.4l-1.2-0.1l0.4-3.8h3.9v1.6H289.4z"/>
<path d="M295.7,58.8c0,0.9-0.2,1.6-0.6,2.1s-1,0.7-1.7,0.7c-0.7,0-1.3-0.2-1.7-0.7s-0.6-1.2-0.6-2.1v-1.5c0-0.9,0.2-1.6,0.6-2.1
c0.4-0.5,1-0.7,1.7-0.7c0.7,0,1.3,0.2,1.7,0.7c0.4,0.5,0.6,1.2,0.6,2.1V58.8z M294.3,57.1c0-0.5-0.1-0.9-0.2-1.2
c-0.2-0.3-0.4-0.4-0.7-0.4c-0.3,0-0.5,0.1-0.7,0.4s-0.2,0.6-0.2,1.2v1.8c0,0.5,0.1,0.9,0.2,1.2c0.2,0.2,0.4,0.4,0.7,0.4
c0.3,0,0.5-0.1,0.7-0.4s0.2-0.7,0.2-1.2V57.1z"/>
<path d="M298,61.4h-1.4v-1.2h1.4V61.4z"/>
<path d="M298.9,61.4v-0.9l2.2-2.4c0.3-0.4,0.5-0.7,0.7-0.9c0.1-0.3,0.2-0.5,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7
c-0.2-0.2-0.4-0.3-0.7-0.3c-0.3,0-0.6,0.1-0.7,0.3c-0.2,0.2-0.2,0.5-0.2,0.9h-1.3l0,0c0-0.6,0.2-1.1,0.6-1.6
c0.4-0.4,1-0.6,1.7-0.6c0.7,0,1.3,0.2,1.7,0.5s0.6,0.9,0.6,1.5c0,0.4-0.1,0.8-0.3,1.1c-0.2,0.3-0.6,0.8-1.1,1.4l-1.2,1.3l0,0h1.8
l0.1-0.7h1v1.7H298.9z"/>
<path d="M305.6,57.4h0.8c0.3,0,0.6-0.1,0.7-0.3c0.2-0.2,0.2-0.4,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7c-0.2-0.2-0.4-0.2-0.7-0.2
c-0.3,0-0.5,0.1-0.6,0.2c-0.2,0.1-0.3,0.3-0.3,0.6h-1.3l0,0c0-0.5,0.2-1,0.6-1.3c0.4-0.3,1-0.5,1.6-0.5c0.7,0,1.3,0.2,1.7,0.5
c0.4,0.3,0.6,0.8,0.6,1.4c0,0.3-0.1,0.6-0.3,0.8s-0.4,0.5-0.8,0.6c0.4,0.1,0.7,0.3,0.9,0.6c0.2,0.3,0.3,0.6,0.3,1
c0,0.6-0.2,1.1-0.7,1.5c-0.5,0.4-1,0.5-1.7,0.5c-0.6,0-1.2-0.2-1.6-0.5s-0.7-0.8-0.7-1.4l0,0h1.3c0,0.3,0.1,0.5,0.3,0.6
s0.4,0.3,0.7,0.3c0.3,0,0.6-0.1,0.7-0.3c0.2-0.2,0.3-0.4,0.3-0.7c0-0.4-0.1-0.6-0.3-0.8c-0.2-0.2-0.4-0.2-0.8-0.2h-0.8V57.4z"/>
<path d="M312.2,54.5c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0.1,0.7,0.2l-0.2,1c-0.2-0.1-0.4-0.1-0.5-0.2c-0.2,0-0.4-0.1-0.6-0.1
c-0.4,0-0.7,0.1-1,0.4s-0.4,0.7-0.4,1.3l0,0c0.2-0.2,0.3-0.3,0.6-0.4c0.2-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.2,1.4,0.7
c0.3,0.4,0.5,1,0.5,1.7c0,0.7-0.2,1.3-0.6,1.7c-0.4,0.4-1,0.7-1.7,0.7c-0.7,0-1.3-0.2-1.8-0.7s-0.7-1.2-0.7-2v-1.2
c0-1,0.3-1.7,0.8-2.3C310.7,54.8,311.4,54.5,312.2,54.5z M311.9,57.9c-0.3,0-0.5,0-0.6,0.1c-0.2,0.1-0.3,0.2-0.4,0.3v0.5
c0,0.5,0.1,1,0.3,1.2s0.5,0.4,0.8,0.4c0.3,0,0.5-0.1,0.7-0.4c0.2-0.3,0.3-0.6,0.3-0.9c0-0.4-0.1-0.7-0.3-0.9
S312.2,57.9,311.9,57.9z"/>
</g>
</g>
<g id="pods">
<circle class="st22" cx="285.2" cy="93.8" r="16.4"/>
<circle class="st22" cx="322.4" cy="93.8" r="16.4"/>
<circle class="st26" cx="322.4" cy="93.8" r="16.4"/>
<circle class="st26" cx="285.2" cy="93.8" r="16.4"/>
<g>
<circle class="st41" cx="199.4" cy="329.9" r="20.1"/>
<circle class="st26" cx="199.4" cy="329.9" r="20.1"/>
</g>
<g>
<circle class="st41" cx="199.4" cy="108.5" r="20.1"/>
<circle class="st26" cx="199.4" cy="108.5" r="20.1"/>
</g>
</g>
<g id="IP">
<g>
<path class="st42" d="M180.9,317l0.5-0.8l-3.4-2.6l-0.5,0.9l-0.2-0.2l0.6-1.3l3.8,2.9l0.6-0.7l0.2,0.2l-1.4,1.8L180.9,317z"/>
<path class="st42" d="M183.8,311.4c0.5,0.5,0.7,0.9,0.8,1.4s-0.1,0.8-0.5,1.2c-0.4,0.3-0.8,0.5-1.2,0.4c-0.5-0.1-0.9-0.3-1.4-0.8
l-0.8-0.8c-0.5-0.5-0.7-0.9-0.8-1.4c0-0.5,0.1-0.9,0.5-1.2c0.4-0.3,0.8-0.5,1.2-0.4s0.9,0.3,1.4,0.8L183.8,311.4z M182.6,310.8
c-0.4-0.4-0.7-0.6-1.1-0.7c-0.3-0.1-0.6,0-0.9,0.3c-0.3,0.3-0.4,0.6-0.3,0.9c0.1,0.3,0.3,0.7,0.6,1.1l0.9,0.9
c0.4,0.4,0.7,0.6,1.1,0.7c0.3,0.1,0.7,0,0.9-0.3c0.3-0.3,0.4-0.6,0.3-0.9c-0.1-0.3-0.3-0.7-0.6-1.1L182.6,310.8z"/>
<path class="st42" d="M186.2,312l-0.4,0.3l-0.3-0.5l0.4-0.3L186.2,312z"/>
<path class="st42" d="M188.7,308.1c0.3,0.6,0.5,1.1,0.4,1.5c-0.1,0.4-0.3,0.8-0.7,1.1c-0.4,0.3-0.9,0.3-1.3,0.1
c-0.4-0.2-0.8-0.5-1.1-1.1l-0.6-1c-0.3-0.6-0.5-1.1-0.4-1.5s0.3-0.8,0.7-1.1c0.4-0.3,0.9-0.3,1.3-0.1s0.8,0.5,1.1,1.1L188.7,308.1
z M187.7,307.3c-0.3-0.5-0.6-0.8-0.9-0.9c-0.3-0.1-0.6-0.1-1,0.1c-0.3,0.2-0.5,0.5-0.5,0.8c0,0.3,0.1,0.7,0.4,1.2l0.6,1.1
c0.3,0.4,0.6,0.7,0.9,0.9s0.6,0.1,1-0.1c0.3-0.2,0.5-0.5,0.5-0.8c0-0.3-0.1-0.7-0.4-1.2L187.7,307.3z"/>
<path class="st42" d="M190.9,309.3l-0.4,0.2l-0.2-0.5l0.4-0.2L190.9,309.3z"/>
<path class="st42" d="M191.7,308.6l0.9-0.3l-1.3-4.1l-0.9,0.5l-0.1-0.3l1.3-0.7l1.5,4.5l0.9-0.2l0.1,0.3l-2.1,0.7L191.7,308.6z"/>
<path class="st42" d="M195,308l-0.5,0.1l-0.1-0.6l0.5-0.1L195,308z"/>
<path class="st42" d="M197.1,302.4c0.2,0,0.3,0,0.5,0c0.2,0,0.3,0.1,0.5,0.1l-0.1,0.3c-0.1-0.1-0.3-0.1-0.4-0.1s-0.3,0-0.5,0
c-0.4,0-0.7,0.2-0.9,0.6c-0.2,0.3-0.3,0.8-0.2,1.4l0,0.2c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.2c0.5,0,0.8,0.1,1.1,0.4
s0.5,0.7,0.5,1.2c0.1,0.5,0,0.9-0.3,1.3c-0.3,0.4-0.6,0.6-1.1,0.6c-0.5,0-0.9-0.1-1.2-0.4c-0.3-0.3-0.5-0.8-0.6-1.5l-0.1-0.9
c-0.1-0.7,0-1.3,0.3-1.7C196.2,302.7,196.6,302.4,197.1,302.4z M197.2,304.6c-0.3,0-0.5,0.1-0.7,0.3c-0.2,0.2-0.3,0.4-0.4,0.6
l0,0.3c0.1,0.5,0.2,0.9,0.5,1.2s0.6,0.4,0.9,0.3c0.3,0,0.6-0.2,0.8-0.5c0.2-0.3,0.2-0.6,0.2-1c0-0.4-0.2-0.7-0.4-1
C197.9,304.6,197.6,304.5,197.2,304.6z"/>
</g>
<g>
<path class="st42" d="M268.1,86.5l0.4-0.8l-3.9-1.9l-0.3,1l-0.3-0.1l0.4-1.4l4.3,2.1l0.5-0.8l0.3,0.1l-1,2L268.1,86.5z"/>
<path class="st42" d="M269.9,80.4c0.5,0.4,0.9,0.8,1,1.3c0.1,0.4,0,0.9-0.3,1.3c-0.3,0.4-0.7,0.6-1.1,0.6c-0.5,0-0.9-0.2-1.5-0.6
l-0.9-0.7c-0.5-0.4-0.9-0.8-1-1.2c-0.1-0.4,0-0.9,0.3-1.3c0.3-0.4,0.7-0.6,1.1-0.6c0.5,0,0.9,0.2,1.5,0.6L269.9,80.4z M268.7,80.1
c-0.4-0.3-0.8-0.5-1.1-0.5c-0.3,0-0.6,0.1-0.9,0.4c-0.2,0.3-0.3,0.6-0.2,1c0.1,0.3,0.4,0.7,0.8,1l1,0.8c0.4,0.3,0.8,0.5,1.2,0.5
c0.4,0,0.6-0.1,0.9-0.4c0.2-0.3,0.3-0.6,0.2-1c-0.1-0.3-0.4-0.7-0.8-1L268.7,80.1z"/>
<path class="st42" d="M272.5,80.7l-0.3,0.3l-0.4-0.4l0.3-0.3L272.5,80.7z"/>
<path class="st42" d="M274.5,76.6c0.4,0.5,0.6,1,0.6,1.5s-0.2,0.8-0.6,1.1c-0.4,0.3-0.8,0.4-1.3,0.3c-0.4-0.1-0.9-0.4-1.2-1
l-0.7-0.9c-0.4-0.5-0.6-1-0.6-1.5c0-0.5,0.2-0.8,0.6-1.1c0.4-0.3,0.8-0.4,1.3-0.3c0.4,0.1,0.9,0.4,1.2,1L274.5,76.6z M273.4,75.8
c-0.3-0.4-0.6-0.7-1-0.8c-0.3-0.1-0.6,0-1,0.2c-0.3,0.2-0.5,0.5-0.4,0.9c0,0.3,0.2,0.7,0.5,1.2l0.8,1c0.3,0.4,0.6,0.7,1,0.8
c0.3,0.1,0.7,0.1,1-0.2c0.3-0.2,0.5-0.5,0.4-0.9c0-0.3-0.2-0.7-0.5-1.2L273.4,75.8z"/>
<path class="st42" d="M276.8,77.6l-0.4,0.2l-0.3-0.5l0.4-0.2L276.8,77.6z"/>
<path class="st42" d="M277.5,77.2l-0.1-0.3l0.9-2.4c0.2-0.4,0.3-0.8,0.3-1.1s0-0.5,0-0.7c-0.1-0.3-0.3-0.5-0.5-0.6
c-0.2-0.1-0.5-0.1-0.8,0c-0.4,0.1-0.6,0.3-0.7,0.6s-0.1,0.6,0,0.9l-0.4,0.1l0,0c-0.2-0.4-0.2-0.8,0-1.2c0.2-0.4,0.5-0.6,1-0.8
c0.4-0.2,0.8-0.2,1.1,0c0.3,0.1,0.6,0.4,0.7,0.8c0.1,0.3,0.1,0.6,0,0.9s-0.2,0.7-0.4,1.2l-0.8,2l0,0l2.1-0.8l-0.2-0.7l0.4-0.1
l0.4,1L277.5,77.2z"/>
<path class="st42" d="M281.7,75.9l-0.5,0.1l-0.1-0.6l0.5-0.1L281.7,75.9z"/>
<path class="st42" d="M284,70.4c0.2,0,0.4,0,0.5,0s0.3,0.1,0.5,0.1l-0.1,0.3c-0.1-0.1-0.3-0.1-0.4-0.1c-0.1,0-0.3,0-0.5,0
c-0.4,0-0.7,0.2-0.9,0.5c-0.2,0.3-0.3,0.8-0.3,1.4l0,0.2c0.1-0.2,0.3-0.3,0.5-0.5s0.4-0.2,0.7-0.2c0.5,0,0.8,0.1,1.1,0.4
c0.3,0.3,0.4,0.7,0.5,1.2c0,0.5-0.1,0.9-0.4,1.3c-0.3,0.3-0.6,0.5-1.1,0.6c-0.5,0-0.9-0.1-1.2-0.5c-0.3-0.3-0.5-0.8-0.5-1.5
l-0.1-0.9c0-0.7,0.1-1.3,0.4-1.7S283.5,70.4,284,70.4z M284,72.5c-0.3,0-0.5,0.1-0.7,0.3c-0.2,0.2-0.3,0.4-0.4,0.6l0,0.3
c0,0.5,0.2,0.9,0.4,1.2c0.2,0.3,0.5,0.4,0.9,0.4c0.3,0,0.6-0.2,0.8-0.5c0.2-0.3,0.3-0.6,0.2-1c0-0.4-0.1-0.7-0.4-1
S284.3,72.5,284,72.5z"/>
</g>
<g>
<path class="st42" d="M307.2,83.1l0.5-0.7l-3.4-2.7l-0.5,0.9l-0.2-0.2l0.6-1.3l3.7,3l0.6-0.7l0.2,0.2l-1.4,1.8L307.2,83.1z"/>
<path class="st42" d="M310.3,77.5c0.4,0.5,0.7,1,0.7,1.4c0,0.5-0.2,0.8-0.5,1.2c-0.4,0.3-0.8,0.4-1.2,0.4
c-0.4-0.1-0.9-0.4-1.3-0.9l-0.8-0.9c-0.4-0.5-0.7-1-0.7-1.4c0-0.5,0.1-0.8,0.5-1.2c0.4-0.3,0.8-0.5,1.2-0.4
c0.4,0.1,0.9,0.4,1.3,0.9L310.3,77.5z M309.1,76.9c-0.3-0.4-0.7-0.6-1-0.7s-0.6,0-0.9,0.3c-0.3,0.2-0.4,0.5-0.4,0.9
s0.2,0.7,0.6,1.1l0.8,1c0.3,0.4,0.7,0.6,1,0.7s0.7,0,0.9-0.2c0.3-0.2,0.4-0.5,0.4-0.9c0-0.3-0.2-0.7-0.6-1.1L309.1,76.9z"/>
<path class="st42" d="M312.7,78.4l-0.4,0.3l-0.3-0.5l0.4-0.3L312.7,78.4z"/>
<path class="st42" d="M315.5,74.7c0.3,0.6,0.4,1.1,0.3,1.6c-0.1,0.4-0.4,0.8-0.8,1c-0.5,0.2-0.9,0.2-1.3,0c-0.4-0.2-0.7-0.6-1-1.2
l-0.5-1c-0.3-0.6-0.4-1.1-0.3-1.6c0.1-0.4,0.4-0.8,0.8-1c0.5-0.2,0.9-0.2,1.3,0c0.4,0.2,0.7,0.6,1,1.2L315.5,74.7z M314.6,73.8
c-0.2-0.5-0.5-0.8-0.8-1s-0.6-0.2-1,0c-0.3,0.2-0.5,0.4-0.6,0.7c-0.1,0.3,0,0.7,0.2,1.2l0.5,1.2c0.2,0.5,0.5,0.8,0.8,1
s0.6,0.2,1,0c0.3-0.2,0.5-0.4,0.6-0.8c0.1-0.3,0-0.8-0.2-1.2L314.6,73.8z"/>
<path class="st42" d="M317.5,76.2l-0.5,0.1l-0.2-0.6l0.5-0.1L317.5,76.2z"/>
<path class="st42" d="M318.3,75.9l0-0.3l1.4-2.1c0.3-0.4,0.4-0.7,0.5-1s0.1-0.5,0.1-0.7c0-0.3-0.2-0.6-0.4-0.7
c-0.2-0.2-0.5-0.2-0.8-0.2c-0.4,0.1-0.7,0.2-0.8,0.4c-0.2,0.2-0.2,0.5-0.2,0.9l-0.4,0.1l0,0c-0.1-0.4,0-0.8,0.3-1.1
s0.6-0.5,1.1-0.6c0.4-0.1,0.8,0,1.1,0.2c0.3,0.2,0.5,0.5,0.5,1c0,0.3,0,0.6-0.1,0.9c-0.1,0.3-0.3,0.7-0.6,1.1l-1.2,1.8l0,0
l2.2-0.3l-0.1-0.7l0.4-0.1l0.1,1.1L318.3,75.9z"/>
<path class="st42" d="M322.7,75.5l-0.5,0l0-0.6l0.5,0L322.7,75.5z"/>
<path class="st42" d="M327.5,71.3c-0.6,0.6-1.2,1.2-1.5,1.8c-0.4,0.6-0.7,1.4-0.9,2.2l-0.1,0.4l-0.4-0.1l0.1-0.4
c0.2-0.8,0.5-1.6,1-2.2c0.4-0.6,0.9-1.2,1.5-1.8l-2.5-0.4l-0.1,0.7l-0.4-0.1l0.2-1.1l3.3,0.5L327.5,71.3z"/>
</g>
<g class="st44">
<path class="st42" d="M268.1,86.5l0.4-0.8l-3.9-1.9l-0.3,1l-0.3-0.1l0.4-1.4l4.3,2.1l0.5-0.8l0.3,0.1l-1,2L268.1,86.5z"/>
<path class="st42" d="M269.9,80.4c0.5,0.4,0.9,0.8,1,1.3c0.1,0.4,0,0.9-0.3,1.3c-0.3,0.4-0.7,0.6-1.1,0.6c-0.5,0-0.9-0.2-1.5-0.6
l-0.9-0.7c-0.5-0.4-0.9-0.8-1-1.2c-0.1-0.4,0-0.9,0.3-1.3c0.3-0.4,0.7-0.6,1.1-0.6c0.5,0,0.9,0.2,1.5,0.6L269.9,80.4z M268.7,80.1
c-0.4-0.3-0.8-0.5-1.1-0.5c-0.3,0-0.6,0.1-0.9,0.4c-0.2,0.3-0.3,0.6-0.2,1c0.1,0.3,0.4,0.7,0.8,1l1,0.8c0.4,0.3,0.8,0.5,1.2,0.5
c0.4,0,0.6-0.1,0.9-0.4c0.2-0.3,0.3-0.6,0.2-1c-0.1-0.3-0.4-0.7-0.8-1L268.7,80.1z"/>
<path class="st42" d="M272.5,80.7l-0.3,0.3l-0.4-0.4l0.3-0.3L272.5,80.7z"/>
<path class="st42" d="M272.9,79.8l0.7-0.6l-2.7-3.4l-0.7,0.7l-0.2-0.2l0.9-1.1l3,3.8l0.7-0.5l0.2,0.2l-1.8,1.4L272.9,79.8z"/>
<path class="st42" d="M275.8,78.1l-0.4,0.2l-0.3-0.5l0.4-0.3L275.8,78.1z"/>
<path class="st42" d="M276.3,74.7l0.4-0.2c0.3-0.1,0.6-0.3,0.7-0.6c0.1-0.2,0.1-0.5,0-0.8c-0.1-0.3-0.3-0.5-0.6-0.6
c-0.2-0.1-0.5-0.1-0.8,0.1c-0.3,0.1-0.5,0.3-0.6,0.6c-0.1,0.3-0.1,0.5,0,0.8l-0.4,0.2l0,0c-0.2-0.4-0.2-0.7,0-1.1
c0.2-0.4,0.4-0.6,0.9-0.8c0.4-0.2,0.8-0.2,1.1-0.1c0.3,0.1,0.6,0.4,0.8,0.8c0.1,0.2,0.1,0.5,0.1,0.7s-0.2,0.5-0.4,0.7
c0.3,0,0.6,0,0.8,0.1c0.2,0.1,0.4,0.3,0.5,0.6c0.2,0.4,0.2,0.8,0,1.2s-0.5,0.6-0.9,0.8c-0.4,0.2-0.8,0.2-1.2,0.1
c-0.4-0.1-0.7-0.4-0.8-0.8l0,0l0.4-0.2c0.1,0.3,0.3,0.5,0.6,0.6c0.3,0.1,0.6,0.1,0.9-0.1c0.3-0.1,0.6-0.3,0.7-0.6
c0.1-0.3,0.1-0.5,0-0.9c-0.1-0.3-0.3-0.5-0.6-0.6s-0.6,0-0.9,0.1l-0.4,0.2L276.3,74.7z"/>
</g>
<g>
<path class="st42" d="M180.4,95l0.5-0.8l-3.4-2.6l-0.5,0.9l-0.2-0.2l0.6-1.3l3.8,2.9l0.6-0.7l0.2,0.2l-1.4,1.8L180.4,95z"/>
<path class="st42" d="M183.3,89.4c0.5,0.5,0.7,0.9,0.8,1.4s-0.1,0.8-0.5,1.2c-0.4,0.3-0.8,0.5-1.2,0.4c-0.5-0.1-0.9-0.3-1.4-0.8
l-0.8-0.8c-0.5-0.5-0.7-0.9-0.8-1.4c0-0.5,0.1-0.9,0.5-1.2c0.4-0.3,0.8-0.5,1.2-0.4s0.9,0.3,1.4,0.8L183.3,89.4z M182.2,88.8
c-0.4-0.4-0.7-0.6-1.1-0.7c-0.3-0.1-0.6,0-0.9,0.3c-0.3,0.3-0.4,0.6-0.3,0.9c0.1,0.3,0.3,0.7,0.6,1.1l0.9,0.9
c0.4,0.4,0.7,0.6,1.1,0.7c0.3,0.1,0.7,0,0.9-0.3c0.3-0.3,0.4-0.6,0.3-0.9c-0.1-0.3-0.3-0.7-0.6-1.1L182.2,88.8z"/>
<path class="st42" d="M185.7,90l-0.4,0.3l-0.3-0.5l0.4-0.3L185.7,90z"/>
<path class="st42" d="M188.2,86.1c0.3,0.6,0.5,1.1,0.4,1.5c-0.1,0.4-0.3,0.8-0.7,1.1c-0.4,0.3-0.9,0.3-1.3,0.1
c-0.4-0.2-0.8-0.5-1.1-1.1l-0.6-1c-0.3-0.6-0.5-1.1-0.4-1.5s0.3-0.8,0.7-1.1c0.4-0.3,0.9-0.3,1.3-0.1s0.8,0.5,1.1,1.1L188.2,86.1z
M187.2,85.3c-0.3-0.5-0.6-0.8-0.9-0.9c-0.3-0.1-0.6-0.1-1,0.1c-0.3,0.2-0.5,0.5-0.5,0.8c0,0.3,0.1,0.7,0.4,1.2l0.6,1.1
c0.3,0.4,0.6,0.7,0.9,0.9s0.6,0.1,1-0.1c0.3-0.2,0.5-0.5,0.5-0.8c0-0.3-0.1-0.7-0.4-1.2L187.2,85.3z"/>
<path class="st42" d="M190.4,87.3l-0.4,0.2l-0.2-0.5l0.4-0.2L190.4,87.3z"/>
<path class="st42" d="M193.8,84.1c0.2,0.6,0.2,1.2,0,1.6c-0.2,0.4-0.5,0.7-1,0.8c-0.5,0.1-0.9,0.1-1.3-0.2
c-0.4-0.3-0.7-0.7-0.8-1.3l-0.3-1.1c-0.2-0.6-0.2-1.2,0-1.6s0.5-0.7,1-0.9c0.5-0.1,0.9-0.1,1.3,0.2c0.4,0.3,0.7,0.7,0.8,1.3
L193.8,84.1z M193,83.1c-0.2-0.5-0.4-0.9-0.6-1.1c-0.3-0.2-0.6-0.3-1-0.2c-0.4,0.1-0.6,0.3-0.7,0.7c-0.1,0.3-0.1,0.7,0.1,1.2
l0.4,1.2c0.2,0.5,0.4,0.9,0.6,1.1s0.6,0.3,1,0.2c0.4-0.1,0.6-0.3,0.7-0.7s0.1-0.7-0.1-1.2L193,83.1z"/>
<path class="st42" d="M195.6,85.8l-0.5,0.1l-0.1-0.6l0.5-0.1L195.6,85.8z"/>
<path class="st42" d="M198,80.3c0.2,0,0.3,0,0.5,0c0.2,0,0.3,0.1,0.5,0.1l-0.1,0.3c-0.1-0.1-0.3-0.1-0.4-0.1c-0.1,0-0.3,0-0.5,0
c-0.4,0-0.7,0.2-0.9,0.5c-0.2,0.3-0.3,0.8-0.3,1.4l0,0.2c0.1-0.2,0.3-0.3,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.2c0.5,0,0.8,0.1,1.1,0.4
c0.3,0.3,0.4,0.7,0.5,1.2c0,0.5-0.1,0.9-0.4,1.3s-0.6,0.5-1.1,0.6c-0.5,0-0.9-0.1-1.2-0.5s-0.5-0.8-0.5-1.5l-0.1-0.9
c0-0.7,0.1-1.3,0.4-1.7C197.1,80.6,197.5,80.4,198,80.3z M198,82.5c-0.3,0-0.5,0.1-0.7,0.3c-0.2,0.2-0.3,0.4-0.4,0.6l0,0.3
c0,0.5,0.2,0.9,0.4,1.2c0.2,0.3,0.5,0.4,0.9,0.4c0.3,0,0.6-0.2,0.8-0.4s0.3-0.6,0.3-1c0-0.4-0.1-0.7-0.4-1
C198.6,82.6,198.3,82.5,198,82.5z"/>
</g>
</g>
<g id="deployments">
<g>
<g>
<circle class="st45" cx="249.9" cy="211.2" r="14.1"/>
<g>
<g>
<path class="st46" d="M254.3,202.9c3,1.6,5,4.7,5,8.3c0,5.2-4.2,9.4-9.4,9.4c-5.2,0-9.4-4.2-9.4-9.4c0-4.1,2.6-7.6,6.3-8.9"/>
<g>
<polygon class="st6" points="255.7,205.7 254.6,203.1 257.3,202 255.7,201.3 253,202.4 254.1,205 "/>
</g>
</g>
</g>
<g>
<path class="st6" d="M244.7,214.9l0.8-0.1l3.3-9.5h2.2l3.3,9.5l0.8,0.1v1.3h-3.7v-1.3l0.8-0.1l-0.5-1.5h-3.5l-0.5,1.5l0.8,0.1
v1.3h-3.7V214.9z M248.6,211.7h2.5l-1.2-3.8h0L248.6,211.7z"/>
</g>
</g>
</g>
</g>
<g id="containers_x2F_volumes">
<g>
<polygon class="st51" points="188,323.5 199.9,316.6 211.8,323.5 199.9,330.3 "/>
<polygon class="st51" points="188,337.2 188,323.5 199.9,330.3 199.9,344 "/>
<polygon class="st51" points="199.9,344 199.9,330.3 211.8,323.5 211.8,337.2 "/>
</g>
<g>
<polygon class="st51" points="275.7,88.4 285.2,82.9 294.7,88.4 285.2,93.8 "/>
<polygon class="st51" points="275.7,99.3 275.7,88.4 285.2,93.8 285.2,104.8 "/>
<polygon class="st51" points="285.2,104.8 285.2,93.8 294.7,88.4 294.7,99.3 "/>
</g>
<g>
<polygon class="st51" points="312.9,88.4 322.4,82.9 331.9,88.4 322.4,93.8 "/>
<polygon class="st51" points="312.9,99.3 312.9,88.4 322.4,93.8 322.4,104.8 "/>
<polygon class="st51" points="322.4,104.8 322.4,93.8 331.9,88.4 331.9,99.3 "/>
</g>
<g>
<polygon class="st51" points="187.6,101.5 199.4,94.7 211.3,101.5 199.4,108.4 "/>
<polygon class="st51" points="187.6,115.2 187.6,101.5 199.4,108.4 199.4,122.1 "/>
<polygon class="st51" points="199.4,122.1 199.4,108.4 211.3,101.5 211.3,115.2 "/>
</g>
</g>
<g id="labels_x2F_selectors">
</g>
<g id="description">
<g>
<path class="st42" d="M390.5,100.7c-0.2,0.3-0.5,0.6-0.8,0.8s-0.7,0.3-1.1,0.3c-0.7,0-1.2-0.2-1.6-0.7s-0.6-1.1-0.6-2.1v-2.8
l-0.7-0.2v-0.7h0.7h1.2v3.8c0,0.7,0.1,1.1,0.3,1.4s0.5,0.4,0.9,0.4c0.4,0,0.7-0.1,1-0.2s0.5-0.4,0.6-0.7v-3.7l-0.8-0.2v-0.7h0.8
h1.2v5.4l0.7,0.2v0.7h-1.8L390.5,100.7z"/>
<path class="st42" d="M393.1,103.3l1-0.2v-7l-1-0.2v-0.7h1.9l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2
c0.8,0,1.4,0.3,1.8,0.9s0.7,1.4,0.7,2.5v0.1c0,0.9-0.2,1.7-0.7,2.2s-1,0.8-1.8,0.8c-0.4,0-0.7-0.1-1-0.2s-0.5-0.3-0.8-0.6v2.2
l1,0.2v0.7h-3.1V103.3z M398.3,98.6c0-0.7-0.1-1.3-0.4-1.8s-0.7-0.7-1.3-0.7c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.4-0.6,0.6v3.1
c0.1,0.3,0.3,0.5,0.6,0.6s0.5,0.2,0.9,0.2c0.5,0,1-0.2,1.2-0.6s0.4-0.9,0.4-1.6V98.6z"/>
<path class="st42" d="M404.8,100.9c-0.2,0.3-0.5,0.5-0.8,0.7s-0.6,0.2-1,0.2c-0.8,0-1.4-0.3-1.8-0.8s-0.7-1.3-0.7-2.2v-0.1
c0-1,0.2-1.8,0.7-2.5s1-0.9,1.8-0.9c0.4,0,0.7,0.1,1,0.2s0.5,0.3,0.7,0.6v-2.6l-1-0.2v-0.7h1h1.2v8.2l1,0.2v0.7h-2L404.8,100.9z
M401.7,98.7c0,0.6,0.1,1.1,0.4,1.5s0.7,0.6,1.2,0.6c0.3,0,0.6-0.1,0.9-0.2s0.4-0.4,0.6-0.7V97c-0.1-0.3-0.3-0.5-0.6-0.6
s-0.5-0.2-0.9-0.2c-0.6,0-1,0.2-1.2,0.7s-0.4,1.1-0.4,1.8V98.7z"/>
<path class="st42" d="M411.9,101.7c0-0.2-0.1-0.3-0.1-0.5s0-0.3,0-0.4c-0.2,0.3-0.5,0.5-0.8,0.7s-0.7,0.3-1.1,0.3
c-0.7,0-1.2-0.2-1.5-0.5s-0.5-0.8-0.5-1.4c0-0.6,0.2-1.1,0.7-1.4s1.2-0.5,2-0.5h1.2v-0.7c0-0.4-0.1-0.7-0.4-0.9s-0.6-0.3-1-0.3
c-0.3,0-0.5,0-0.8,0.1s-0.4,0.2-0.5,0.3l-0.1,0.7h-0.9V96c0.3-0.2,0.6-0.4,1-0.6s0.9-0.2,1.3-0.2c0.7,0,1.3,0.2,1.7,0.6
s0.7,0.9,0.7,1.6v3.1c0,0.1,0,0.2,0,0.2s0,0.2,0,0.2l0.5,0.1v0.7H411.9z M410,100.8c0.4,0,0.7-0.1,1-0.3s0.5-0.4,0.7-0.7v-1h-1.2
c-0.5,0-0.8,0.1-1.1,0.3s-0.4,0.5-0.4,0.8c0,0.3,0.1,0.5,0.3,0.6S409.7,100.8,410,100.8z"/>
<path class="st42" d="M416.4,93.8v1.5h1.2v0.9h-1.2v3.8c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2c0.1,0,0.2,0,0.3,0s0.2,0,0.3-0.1
l0.2,0.8c-0.1,0.1-0.3,0.1-0.5,0.2s-0.4,0.1-0.6,0.1c-0.5,0-0.8-0.1-1.1-0.4s-0.4-0.7-0.4-1.3v-3.8h-1v-0.9h1v-1.5H416.4z"/>
<path class="st42" d="M421.6,101.8c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S422.2,101.8,421.6,101.8z M421.5,96.1c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S421.9,96.1,421.5,96.1z"/>
<path class="st42" d="M429.5,100.9c-0.2,0.3-0.5,0.5-0.8,0.7s-0.6,0.2-1,0.2c-0.8,0-1.4-0.3-1.8-0.8s-0.7-1.3-0.7-2.2v-0.1
c0-1,0.2-1.8,0.7-2.5s1-0.9,1.8-0.9c0.4,0,0.7,0.1,1,0.2s0.5,0.3,0.7,0.6v-2.6l-1-0.2v-0.7h1h1.2v8.2l1,0.2v0.7h-2L429.5,100.9z
M426.3,98.7c0,0.6,0.1,1.1,0.4,1.5s0.7,0.6,1.2,0.6c0.3,0,0.6-0.1,0.9-0.2s0.4-0.4,0.6-0.7V97c-0.1-0.3-0.3-0.5-0.6-0.6
s-0.5-0.2-0.9-0.2c-0.6,0-1,0.2-1.2,0.7s-0.4,1.1-0.4,1.8V98.7z"/>
<path class="st42" d="M439.5,101.7c0-0.2-0.1-0.3-0.1-0.5s0-0.3,0-0.4c-0.2,0.3-0.5,0.5-0.8,0.7s-0.7,0.3-1.1,0.3
c-0.7,0-1.2-0.2-1.5-0.5s-0.5-0.8-0.5-1.4c0-0.6,0.2-1.1,0.7-1.4s1.2-0.5,2-0.5h1.2v-0.7c0-0.4-0.1-0.7-0.4-0.9s-0.6-0.3-1-0.3
c-0.3,0-0.5,0-0.8,0.1s-0.4,0.2-0.5,0.3l-0.1,0.7h-0.9V96c0.3-0.2,0.6-0.4,1-0.6s0.9-0.2,1.3-0.2c0.7,0,1.3,0.2,1.7,0.6
s0.7,0.9,0.7,1.6v3.1c0,0.1,0,0.2,0,0.2s0,0.2,0,0.2l0.5,0.1v0.7H439.5z M437.6,100.8c0.4,0,0.7-0.1,1-0.3s0.5-0.4,0.7-0.7v-1
h-1.2c-0.5,0-0.8,0.1-1.1,0.3s-0.4,0.5-0.4,0.8c0,0.3,0.1,0.5,0.3,0.6S437.3,100.8,437.6,100.8z"/>
<path class="st42" d="M441.8,103.3l1-0.2v-7l-1-0.2v-0.7h1.9l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2
c0.8,0,1.4,0.3,1.8,0.9s0.7,1.4,0.7,2.5v0.1c0,0.9-0.2,1.7-0.7,2.2s-1,0.8-1.8,0.8c-0.4,0-0.7-0.1-1-0.2s-0.5-0.3-0.8-0.6v2.2
l1,0.2v0.7h-3.1V103.3z M447,98.6c0-0.7-0.1-1.3-0.4-1.8s-0.7-0.7-1.3-0.7c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.4-0.6,0.6v3.1
c0.1,0.3,0.3,0.5,0.6,0.6s0.5,0.2,0.9,0.2c0.5,0,1-0.2,1.2-0.6s0.4-0.9,0.4-1.6V98.6z"/>
<path class="st42" d="M449.1,103.3l1-0.2v-7l-1-0.2v-0.7h1.9l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2
c0.8,0,1.4,0.3,1.8,0.9s0.7,1.4,0.7,2.5v0.1c0,0.9-0.2,1.7-0.7,2.2s-1,0.8-1.8,0.8c-0.4,0-0.7-0.1-1-0.2s-0.5-0.3-0.8-0.6v2.2
l1,0.2v0.7h-3.1V103.3z M454.3,98.6c0-0.7-0.1-1.3-0.4-1.8s-0.7-0.7-1.3-0.7c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.4-0.6,0.6v3.1
c0.1,0.3,0.3,0.5,0.6,0.6s0.5,0.2,0.9,0.2c0.5,0,1-0.2,1.2-0.6s0.4-0.9,0.4-1.6V98.6z"/>
</g>
<line class="st62" x1="325.5" y1="99.3" x2="383.9" y2="99.3"/>
<g>
<path class="st42" d="M58.8,130.4h-0.9l-0.2-1.2c-0.2-0.1-0.4-0.3-0.7-0.4s-0.6-0.1-1-0.1c-0.6,0-1.1,0.1-1.4,0.4s-0.5,0.6-0.5,1
c0,0.4,0.2,0.7,0.5,0.9s0.9,0.5,1.6,0.7c0.9,0.2,1.6,0.6,2,1s0.7,1,0.7,1.6c0,0.7-0.3,1.2-0.8,1.7s-1.3,0.6-2.2,0.6
c-0.7,0-1.2-0.1-1.7-0.3s-0.9-0.5-1.2-0.8v-1.6h0.9L54,135c0.2,0.2,0.5,0.3,0.8,0.5s0.7,0.2,1.1,0.2c0.6,0,1-0.1,1.4-0.4
s0.5-0.6,0.5-1c0-0.4-0.1-0.7-0.4-1s-0.8-0.5-1.6-0.7c-0.9-0.2-1.6-0.5-2.1-0.9s-0.8-0.9-0.8-1.6c0-0.7,0.3-1.2,0.8-1.7
s1.3-0.7,2.2-0.7c0.6,0,1.1,0.1,1.6,0.3s0.9,0.5,1.2,0.7V130.4z"/>
<path class="st42" d="M62.9,136.5c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S63.4,136.5,62.9,136.5z M62.7,130.8c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S63.2,130.8,62.7,130.8z"/>
<path class="st42" d="M66.4,130.8V130h2l0.1,0.9c0.2-0.3,0.4-0.6,0.7-0.8s0.6-0.3,0.9-0.3c0.1,0,0.2,0,0.3,0s0.2,0,0.2,0l-0.2,1.1
l-0.7,0c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.3-0.5,0.6v3.6l1,0.2v0.7h-3.1v-0.7l1-0.2v-4.5L66.4,130.8z"/>
<path class="st42" d="M73.7,130.8l-0.8,0.1l1.3,3.6l0.1,0.5h0l0.1-0.5l1.3-3.6l-0.8-0.1V130h2.4v0.7l-0.5,0.1l-2.1,5.5h-0.9
l-2.2-5.5l-0.5-0.1V130h2.4V130.8z"/>
<path class="st42" d="M78.2,135.6l1-0.2v-4.5l-1-0.2V130h2.1v5.4l1,0.2v0.7h-3.1V135.6z M80.3,128.4h-1.2v-1.2h1.2V128.4z"/>
<path class="st42" d="M85,135.6c0.4,0,0.7-0.1,1-0.4s0.4-0.5,0.4-0.9h1l0,0c0,0.5-0.2,1-0.7,1.5s-1.1,0.6-1.8,0.6
c-0.9,0-1.6-0.3-2.1-0.9s-0.7-1.4-0.7-2.3v-0.2c0-0.9,0.2-1.7,0.7-2.3s1.2-0.9,2.1-0.9c0.5,0,1,0.1,1.4,0.3s0.7,0.4,1,0.7l0.1,1.4
h-0.9l-0.3-1c-0.1-0.1-0.3-0.2-0.5-0.3s-0.5-0.1-0.7-0.1c-0.6,0-1,0.2-1.3,0.7s-0.4,1-0.4,1.6v0.2c0,0.6,0.1,1.2,0.4,1.6
S84.4,135.6,85,135.6z"/>
<path class="st42" d="M91.5,136.5c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S92,136.5,91.5,136.5z M91.3,130.8c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S91.8,130.8,91.3,130.8z"/>
</g>
<line class="st62" x1="173.7" y1="134" x2="97.8" y2="134"/>
<g>
<path class="st42" d="M385.8,76.7l1-0.2V72l-1-0.2v-0.7h2l0.1,0.9c0.2-0.3,0.5-0.6,0.8-0.8s0.7-0.3,1.1-0.3c0.7,0,1.2,0.2,1.6,0.6
s0.6,1,0.6,1.9v3.1l1,0.2v0.7h-3.1v-0.7l1-0.2v-3.1c0-0.6-0.1-1-0.3-1.2s-0.6-0.4-1-0.4c-0.3,0-0.6,0.1-0.9,0.2s-0.5,0.4-0.6,0.7
v3.7l1,0.2v0.7h-3.1V76.7z"/>
<path class="st42" d="M396.5,77.6c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S397.1,77.6,396.5,77.6z M396.4,71.9c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S396.8,71.9,396.4,71.9z"/>
<path class="st42" d="M402.3,71.9l-0.7,0.1l0.8,3.2l0.1,0.8h0l0.2-0.8l1.3-4h0.9l1.3,4l0.2,0.9h0l0.2-0.9l0.8-3.2l-0.7-0.1v-0.7
h2.4v0.7l-0.6,0.1l-1.6,5.5H406l-1.2-3.9l-0.3-1.1l0,0l-0.2,1.1l-1.2,3.9h-0.9l-1.6-5.5l-0.6-0.1v-0.7h2.4V71.9z"/>
<path class="st42" d="M412.9,69.7v-0.7h3.1v0.7l-1,0.2v6.7l1,0.2v0.7h-3.1v-0.7l1-0.2v-6.7L412.9,69.7z"/>
<path class="st42" d="M420.7,68.9c0.9,0,1.6,0.2,2.1,0.7s0.8,1.1,0.8,1.9c0,0.8-0.3,1.4-0.8,1.9s-1.2,0.7-2.1,0.7h-1.8v2.5l1,0.2
v0.7h-3.1v-0.7l1-0.2v-6.7l-1-0.2v-0.7h1H420.7z M418.9,73.1h1.8c0.6,0,1-0.2,1.3-0.5s0.4-0.7,0.4-1.2s-0.1-0.9-0.4-1.2
s-0.7-0.5-1.3-0.5h-1.8V73.1z"/>
<path class="st42" d="M431.6,77.5c0-0.2-0.1-0.3-0.1-0.5s0-0.3,0-0.4c-0.2,0.3-0.5,0.5-0.8,0.7s-0.7,0.3-1.1,0.3
c-0.7,0-1.2-0.2-1.5-0.5s-0.5-0.8-0.5-1.4c0-0.6,0.2-1.1,0.7-1.4s1.2-0.5,2-0.5h1.2v-0.7c0-0.4-0.1-0.7-0.4-0.9s-0.6-0.3-1-0.3
c-0.3,0-0.5,0-0.8,0.1s-0.4,0.2-0.5,0.3l-0.1,0.7h-0.9v-1.2c0.3-0.2,0.6-0.4,1-0.6s0.9-0.2,1.3-0.2c0.7,0,1.3,0.2,1.7,0.6
s0.7,0.9,0.7,1.6v3.1c0,0.1,0,0.2,0,0.2s0,0.2,0,0.2l0.5,0.1v0.7H431.6z M429.8,76.6c0.4,0,0.7-0.1,1-0.3s0.5-0.4,0.7-0.7v-1h-1.2
c-0.5,0-0.8,0.1-1.1,0.3s-0.4,0.5-0.4,0.8c0,0.3,0.1,0.5,0.3,0.6S429.4,76.6,429.8,76.6z"/>
<path class="st42" d="M438.4,76.7c-0.2,0.3-0.5,0.5-0.8,0.7s-0.6,0.2-1,0.2c-0.8,0-1.4-0.3-1.8-0.8s-0.7-1.3-0.7-2.2v-0.1
c0-1,0.2-1.8,0.7-2.5s1-0.9,1.8-0.9c0.4,0,0.7,0.1,1,0.2s0.5,0.3,0.7,0.6v-2.6l-1-0.2v-0.7h1h1.2v8.2l1,0.2v0.7h-2L438.4,76.7z
M435.2,74.5c0,0.6,0.1,1.1,0.4,1.5s0.7,0.6,1.2,0.6c0.3,0,0.6-0.1,0.9-0.2s0.4-0.4,0.6-0.7v-2.9c-0.1-0.3-0.3-0.5-0.6-0.6
s-0.5-0.2-0.9-0.2c-0.6,0-1,0.2-1.2,0.7s-0.4,1.1-0.4,1.8V74.5z"/>
<path class="st42" d="M445.6,76.7c-0.2,0.3-0.5,0.5-0.8,0.7s-0.6,0.2-1,0.2c-0.8,0-1.4-0.3-1.8-0.8s-0.7-1.3-0.7-2.2v-0.1
c0-1,0.2-1.8,0.7-2.5s1-0.9,1.8-0.9c0.4,0,0.7,0.1,1,0.2s0.5,0.3,0.7,0.6v-2.6l-1-0.2v-0.7h1h1.2v8.2l1,0.2v0.7h-2L445.6,76.7z
M442.4,74.5c0,0.6,0.1,1.1,0.4,1.5s0.7,0.6,1.2,0.6c0.3,0,0.6-0.1,0.9-0.2s0.4-0.4,0.6-0.7v-2.9c-0.1-0.3-0.3-0.5-0.6-0.6
s-0.5-0.2-0.9-0.2c-0.6,0-1,0.2-1.2,0.7s-0.4,1.1-0.4,1.8V74.5z"/>
<path class="st42" d="M448.5,71.9v-0.7h2l0.1,0.9c0.2-0.3,0.4-0.6,0.7-0.8s0.6-0.3,0.9-0.3c0.1,0,0.2,0,0.3,0s0.2,0,0.2,0
l-0.2,1.1l-0.7,0c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.3-0.5,0.6v3.6l1,0.2v0.7h-3.1v-0.7l1-0.2V72L448.5,71.9z"/>
<path class="st42" d="M456.2,77.6c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S456.8,77.6,456.2,77.6z M456.1,71.9c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S456.5,71.9,456.1,71.9z"/>
<path class="st42" d="M464.6,73.1h-0.9l-0.2-0.8c-0.1-0.1-0.3-0.2-0.5-0.3s-0.5-0.1-0.7-0.1c-0.4,0-0.7,0.1-0.9,0.3
s-0.3,0.4-0.3,0.7c0,0.2,0.1,0.4,0.3,0.6s0.5,0.3,1.1,0.4c0.8,0.2,1.4,0.4,1.8,0.7s0.6,0.7,0.6,1.2c0,0.6-0.2,1-0.7,1.4
s-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.3-1-0.5l0-1.4h0.9l0.2,0.8c0.1,0.1,0.3,0.2,0.5,0.3s0.5,0.1,0.7,0.1
c0.4,0,0.7-0.1,1-0.2s0.3-0.4,0.3-0.7c0-0.3-0.1-0.5-0.3-0.6s-0.6-0.3-1.1-0.4c-0.8-0.2-1.3-0.4-1.7-0.7s-0.6-0.7-0.6-1.2
c0-0.5,0.2-1,0.7-1.3s1-0.5,1.7-0.5c0.5,0,0.9,0.1,1.3,0.2s0.7,0.3,1,0.5L464.6,73.1z"/>
<path class="st42" d="M470.8,73.1h-0.9l-0.2-0.8c-0.1-0.1-0.3-0.2-0.5-0.3s-0.5-0.1-0.7-0.1c-0.4,0-0.7,0.1-0.9,0.3
s-0.3,0.4-0.3,0.7c0,0.2,0.1,0.4,0.3,0.6s0.5,0.3,1.1,0.4c0.8,0.2,1.4,0.4,1.8,0.7s0.6,0.7,0.6,1.2c0,0.6-0.2,1-0.7,1.4
s-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.3-1-0.5l0-1.4h0.9l0.2,0.8c0.1,0.1,0.3,0.2,0.5,0.3s0.5,0.1,0.7,0.1
c0.4,0,0.7-0.1,1-0.2s0.3-0.4,0.3-0.7c0-0.3-0.1-0.5-0.3-0.6s-0.6-0.3-1.1-0.4c-0.8-0.2-1.3-0.4-1.7-0.7s-0.6-0.7-0.6-1.2
c0-0.5,0.2-1,0.7-1.3s1-0.5,1.7-0.5c0.5,0,0.9,0.1,1.3,0.2s0.7,0.3,1,0.5L470.8,73.1z"/>
</g>
<line class="st62" x1="327.2" y1="75.1" x2="383.9" y2="75.1"/>
<g>
<path class="st42" d="M316.4,196.8c1.1,0,2,0.3,2.7,1s1,1.6,1,2.7v1.2c0,1.1-0.3,2-1,2.7s-1.6,1-2.7,1h-3.6v-0.7l1-0.2v-6.7
l-1-0.2v-0.7h1H316.4z M315,197.7v6.7h1.5c0.8,0,1.4-0.3,1.9-0.8s0.7-1.2,0.7-2v-1.2c0-0.8-0.2-1.5-0.7-2s-1.1-0.8-1.9-0.8H315z"
/>
<path class="st42" d="M324.2,205.5c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S324.7,205.5,324.2,205.5z M324,199.8c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S324.5,199.8,324,199.8z"/>
<path class="st42" d="M327.6,207.1l1-0.2v-7l-1-0.2V199h1.9l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2
c0.8,0,1.4,0.3,1.8,0.9s0.7,1.4,0.7,2.5v0.1c0,0.9-0.2,1.7-0.7,2.2s-1,0.8-1.8,0.8c-0.4,0-0.7-0.1-1-0.2s-0.5-0.3-0.8-0.6v2.2
l1,0.2v0.7h-3.1V207.1z M332.8,202.3c0-0.7-0.1-1.3-0.4-1.8s-0.7-0.7-1.3-0.7c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.4-0.6,0.6v3.1
c0.1,0.3,0.3,0.5,0.6,0.6s0.5,0.2,0.9,0.2c0.5,0,1-0.2,1.2-0.6s0.4-0.9,0.4-1.6V202.3z"/>
<path class="st42" d="M334.8,197v-0.7h2.1v8.2l1,0.2v0.7h-3.1v-0.7l1-0.2v-7.3L334.8,197z"/>
<path class="st42" d="M338.6,202.1c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,2.1-0.9c0.9,0,1.6,0.3,2.1,0.9s0.8,1.4,0.8,2.3v0.1
c0,0.9-0.3,1.7-0.8,2.3s-1.2,0.9-2.1,0.9c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3V202.1z M339.8,202.3c0,0.7,0.1,1.2,0.4,1.7
s0.7,0.7,1.3,0.7c0.5,0,1-0.2,1.2-0.7s0.4-1,0.4-1.7v-0.1c0-0.7-0.1-1.2-0.4-1.7s-0.7-0.7-1.3-0.7s-1,0.2-1.3,0.7s-0.4,1-0.4,1.7
V202.3z"/>
<path class="st42" d="M351.3,199.8l-0.6,0.1l-2.4,6.5c-0.2,0.4-0.4,0.8-0.7,1.1s-0.7,0.5-1.2,0.5c-0.1,0-0.2,0-0.4,0
s-0.3,0-0.3-0.1l0.1-0.9c0,0,0,0,0.2,0s0.3,0,0.3,0c0.2,0,0.4-0.1,0.6-0.3s0.3-0.5,0.4-0.7l0.3-0.7l-2.1-5.4l-0.6-0.1V199h2.6v0.7
l-0.7,0.1l1.1,3.1l0.2,0.8h0l1.3-3.9l-0.7-0.1V199h2.6V199.8z"/>
<path class="st42" d="M351.8,204.6l1-0.2v-4.5l-1-0.2V199h2l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2s0.8,0.1,1.1,0.3
s0.5,0.5,0.7,0.9c0.2-0.4,0.5-0.6,0.8-0.9s0.7-0.3,1.1-0.3c0.6,0,1.2,0.2,1.5,0.7s0.6,1.1,0.6,2v2.9l1,0.2v0.7h-3.1v-0.7l1-0.2
v-2.9c0-0.6-0.1-1.1-0.3-1.3s-0.5-0.4-1-0.4c-0.4,0-0.7,0.1-1,0.4s-0.4,0.6-0.4,1.1v3.1l1,0.2v0.7h-3.1v-0.7l1-0.2v-2.9
c0-0.6-0.1-1-0.3-1.3s-0.5-0.4-1-0.4c-0.4,0-0.6,0.1-0.9,0.2s-0.4,0.3-0.5,0.6v3.8l1,0.2v0.7h-3.1V204.6z"/>
<path class="st42" d="M366.2,205.5c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S366.7,205.5,366.2,205.5z M366,199.8c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S366.5,199.8,366,199.8z"/>
<path class="st42" d="M369.6,204.6l1-0.2v-4.5l-1-0.2V199h2l0.1,0.9c0.2-0.3,0.5-0.6,0.8-0.8s0.7-0.3,1.1-0.3
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.9v3.1l1,0.2v0.7h-3.1v-0.7l1-0.2v-3.1c0-0.6-0.1-1-0.3-1.2s-0.6-0.4-1-0.4
c-0.3,0-0.6,0.1-0.9,0.2s-0.5,0.4-0.6,0.7v3.7l1,0.2v0.7h-3.1V204.6z"/>
<path class="st42" d="M379.5,197.5v1.5h1.2v0.9h-1.2v3.8c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2c0.1,0,0.2,0,0.3,0s0.2,0,0.3-0.1
l0.2,0.8c-0.1,0.1-0.3,0.1-0.5,0.2s-0.4,0.1-0.6,0.1c-0.5,0-0.8-0.1-1.1-0.4s-0.4-0.7-0.4-1.3v-3.8h-1V199h1v-1.5H379.5z"/>
</g>
<line class="st62" x1="310.4" y1="203" x2="249.9" y2="203"/>
</g>
<g id="Layer_14">
</g>
</svg>

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="37" height="36" viewBox="0 0 37 36"><defs><style>.cls-1{fill:#fff;stroke:#4aa3ff;stroke-linejoin:round;stroke-width:2px;fill-rule:evenodd}</style></defs><path id="Многоугольник_1" data-name="Многоугольник 1" class="cls-1" d="M690.538 834.74L694 849.869 684.283 862h-15.577L659 849.858l3.471-15.128 14.035-6.73z" transform="translate(-658 -827)"/></svg>

After

Width:  |  Height:  |  Size: 425 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 506 B

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="35" height="34" viewBox="0 0 35 34"><defs><style>.cls-1{fill:#326de6;fill-rule:evenodd}</style></defs><path id="Многоугольник_1_копия" data-name="Многоугольник 1 копия" class="cls-1" d="M730.538 834.74L734 849.869 724.283 862h-15.577L699 849.858l3.471-15.128 14.035-6.73z" transform="translate(-699 -828)"/></svg>

After

Width:  |  Height:  |  Size: 396 B

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="35" height="34" viewBox="0 0 35 34"><defs><style>.cls-1{fill:#53a2e5;fill-rule:evenodd}</style></defs><path id="Многоугольник_1_копия" data-name="Многоугольник 1 копия" class="cls-1" d="M730.538 834.74L734 849.869 724.283 862h-15.577L699 849.858l3.471-15.128 14.035-6.73z" transform="translate(-699 -828)"/></svg>

After

Width:  |  Height:  |  Size: 396 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

@@ -0,0 +1,39 @@
---
title: Interactive Tutorial - Scaling Your App
---
<!DOCTYPE html>
<html lang="en">
<body>
<link href="/docs/tutorials/kubernetes-basics/public/css/styles.css" rel="stylesheet">
<link href="/docs/tutorials/kubernetes-basics/public/css/overrides.css" rel="stylesheet">
<script src="https://katacoda.com/embed.js"></script>
<div class="layout" id="top">
<main class="content katacoda-content">
<div class="katacoda">
<div class="katacoda__alert">
To interact with the Terminal, please use the desktop/tablet version
</div>
<div class="katacoda__box" id="inline-terminal-1" data-katacoda-id="kubernetes-bootcamp/5" data-katacoda-color="326de6" data-katacoda-secondary="273d6d" data-katacoda-hideintro="false" data-katacoda-font="Roboto" data-katacoda-fontheader="Roboto Slab" data-katacoda-prompt="Kubernetes Bootcamp Terminal" style="height: 600px;">
</div>
</div>
<div class="row">
<div class="col-md-12">
<a class="btn btn-lg btn-success" href="/docs/tutorials/kubernetes-basics/update-intro/" role="button">Continue to Module 6<span class="btn__next"></span></a>
</div>
</div>
</main>
<a class="scrolltop" href="#top"></a>
</div>
</body>
</html>
@@ -0,0 +1,120 @@
---
title: Running Multiple Instances of Your App
---
<!DOCTYPE html>
<html lang="en">
<body>
<link href="/docs/tutorials/kubernetes-basics/public/css/styles.css" rel="stylesheet">
<div class="layout" id="top">
<main class="content">
<div class="row">
<div class="col-md-8">
<h3>Objectives</h3>
<ul>
<li>Scale an app using kubectl.</li>
</ul>
</div>
<div class="col-md-8">
<h3>Scaling an application</h3>
<p>In the previous modules we created a <a href="https://kubernetes.io/docs/concepts/workloads/controllers/deployment/"> Deployment</a>, and then exposed it publicly via a <a href="https://kubernetes.io/docs/concepts/services-networking/service/">Service</a>. The Deployment created only one Pod for running our application. When traffic increases, we will need to scale the application to keep up with user demand.</p>
<p><b>Scaling</b> is accomplished by changing the number of replicas in a Deployment</p>
</div>
<div class="col-md-4">
<div class="content__box content__box_lined">
<h3>Summary:</h3>
<ul>
<li>Scaling a Deployment</li>
</ul>
</div>
<div class="content__box content__box_fill">
<p><i> You can create from the start a Deployment with multiple instances using the --replicas parameter for the kubectl run command </i></p>
</div>
</div>
</div>
<br>
<div class="row">
<div class="col-md-8">
<h2 style="color: #3771e3;">Scaling overview</h2>
</div>
</div>
<div class="row">
<div class="col-md-1"></div>
<div class="col-md-8">
<div id="myCarousel" class="carousel" data-ride="carousel" data-interval="3000">
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
</ol>
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="/docs/tutorials/kubernetes-basics/public/images/module_05_scaling1.svg">
</div>
<div class="item">
<img src="/docs/tutorials/kubernetes-basics/public/images/module_05_scaling2.svg">
</div>
</div>
<a class="left carousel-control" href="#myCarousel" role="button" data-slide="prev">
<span class="sr-only ">Previous</span>
</a>
<a class="right carousel-control" href="#myCarousel" role="button" data-slide="next">
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
<br>
<div class="row">
<div class="col-md-8">
<p>Scaling out a Deployment will ensure new Pods are created and scheduled to Nodes with available resources. Scaling in will reduce the number of Pods to the new desired state. Kubernetes also supports <a href="http://kubernetes.io/docs/user-guide/horizontal-pod-autoscaling/"> autoscaling </a> of Pods, but it is outside of the scope of this tutorial. Scaling to zero is also possible, and it will terminate all Pods of the specified Deployment.</p>
<p>Running multiple instances of an application will require a way to distribute the traffic to all of them. Services have an integrated load-balancer that will distribute network traffic to all Pods of an exposed Deployment. Services will monitor continuously the running Pods using endpoints, to ensure the traffic is sent only to available Pods.</p>
</div>
<div class="col-md-4">
<div class="content__box content__box_fill">
<p><i>Scaling is accomplished by changing the number of replicas in a Deployment.</i></p>
</div>
</div>
</div>
<br>
<div class="row">
<div class="col-md-8">
<p> Once you have multiple instances of an Application running, you would be able to do Rolling updates without downtime. We'll cover that in the next module. Now, let's go to the online terminal and scale our application.</p>
</div>
</div>
<br>
<div class="row">
<div class="col-md-12">
<a class="btn btn-lg btn-success" href="/docs/tutorials/kubernetes-basics/scale-interactive/" role="button">Start Interactive Tutorial <span class="btn__next"></span></a>
</div>
</div>
</main>
</div>
</body>
</html>
@@ -0,0 +1,32 @@
---
title: Interactive Tutorial - Updating Your App
---
<!DOCTYPE html>
<html lang="en">
<body>
<link href="/docs/tutorials/kubernetes-basics/public/css/styles.css" rel="stylesheet">
<link href="/docs/tutorials/kubernetes-basics/public/css/overrides.css" rel="stylesheet">
<script src="https://katacoda.com/embed.js"></script>
<div class="layout" id="top">
<main class="content katacoda-content">
<div class="katacoda">
<div class="katacoda__alert">
To interact with the Terminal, please use the desktop/tablet version
</div>
<div class="katacoda__box" id="inline-terminal-1" data-katacoda-id="kubernetes-bootcamp/6" data-katacoda-color="326de6" data-katacoda-secondary="273d6d" data-katacoda-hideintro="false" data-katacoda-font="Roboto" data-katacoda-fontheader="Roboto Slab" data-katacoda-prompt="Kubernetes Bootcamp Terminal" style="height: 600px;">
</div>
</div>
</main>
</div>
</body>
</html>
@@ -0,0 +1,135 @@
---
title: Performing a Rolling Update
---
<!DOCTYPE html>
<html lang="en">
<body>
<link href="/docs/tutorials/kubernetes-basics/public/css/styles.css" rel="stylesheet">
<div class="layout" id="top">
<main class="content">
<div class="row">
<div class="col-md-8">
<h3>Objectives</h3>
<ul>
<li>Perform a rolling update using kubectl.</li>
</ul>
</div>
<div class="col-md-8">
<h3>Updating an application</h3>
<p>Users expect applications to be available all the time and developers are expected to deploy new versions of them several times a day. In Kubernetes this is done with rolling updates. <b>Rolling updates</b> allow Deployments' update to take place with zero downtime by incrementally updating Pods instances with new ones. The new Pods will be scheduled on Nodes with available resources.</p>
<p>In the previous module we scaled our application to run multiple instances. This is a requirement for performing updates without affecting application availability. By default, the maximum number of Pods that can be unavailable during the update and the maximum number of new Pods that can be created, is one. Both options can be configured to either numbers or percentages (of Pods).
In Kubernetes, updates are versioned and any Deployment update can be reverted to previous (stable) version.</p>
</div>
<div class="col-md-4">
<div class="content__box content__box_lined">
<h3>Summary:</h3>
<ul>
<li>Updating an app</li>
</ul>
</div>
<div class="content__box content__box_fill">
<p><i>Rolling updates allow Deployments' update to take place with zero downtime by incrementally updating Pods instances with new ones. </i></p>
</div>
</div>
</div>
<br>
<div class="row">
<div class="col-md-8">
<h2 style="color: #3771e3;">Rolling updates overview</h2>
</div>
</div>
<div class="row">
<div class="col-md-1"></div>
<div class="col-md-8">
<div id="myCarousel" class="carousel" data-ride="carousel" data-interval="3000">
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
<li data-target="#myCarousel" data-slide-to="3"></li>
</ol>
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="/docs/tutorials/kubernetes-basics/public/images/module_06_rollingupdates1.svg" >
</div>
<div class="item">
<img src="/docs/tutorials/kubernetes-basics/public/images/module_06_rollingupdates2.svg">
</div>
<div class="item">
<img src="/docs/tutorials/kubernetes-basics/public/images/module_06_rollingupdates3.svg">
</div>
<div class="item">
<img src="/docs/tutorials/kubernetes-basics/public/images/module_06_rollingupdates4.svg">
</div>
</div>
<a class="left carousel-control" href="#myCarousel" role="button" data-slide="prev">
<span class="sr-only ">Previous</span>
</a>
<a class="right carousel-control" href="#myCarousel" role="button" data-slide="next">
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
<br>
<div class="row">
<div class="col-md-8">
<p>Similar to application Scaling, if a Deployment is exposed publicly, the Service will load-balance the traffic only to available Pods during the update. An available Pod is an instance that is available to the users of the application.</p>
<p>Rolling updates allow the following actions:</p>
<ul>
<li>Promote an application from one environment to another (via container image updates)</li>
<li>Rollback to previous versions</li>
<li>Continuous Integration and Continuous Delivery of applications with zero downtime</li>
</ul>
</div>
<div class="col-md-4">
<div class="content__box content__box_fill">
<p><i>If a Deployment is exposed publicly, the Service will load-balance the traffic only to available Pods during the update. </i></p>
</div>
</div>
</div>
<br>
<div class="row">
<div class="col-md-8">
<p> In the following interactive tutorial, we'll update our application to a new version, and also perform a rollback.</p>
</div>
</div>
<br>
<div class="row">
<div class="col-md-12">
<a class="btn btn-lg btn-success" href="/docs/tutorials/kubernetes-basics/update-interactive/" role="button">Start Interactive Tutorial <span class="btn__next"></span></a>
</div>
</div>
</main>
</div>
</body>
</html>