Diagram generation: ref-arch-driven procedure + spec validator + KB enrichment

The diagram path now follows a documented standard procedure (lookup
the closest Oracle Architecture Center reference → confirm components
→ author absolute_layout → spec validator → render → visually verify)
and ships persistent guardrails so layout regressions can't recur.

Persistent procedure changes (apply to all users, all sessions):
- tools/diagram_spec_validator.py — geometry checks (CONTAINER_TOO_THIN,
  CONTAINER_PADDING_VIOLATION, LABEL_OVERFLOW_PARENT) run BEFORE either
  renderer (drawio + PPTX). Catches the subnet-collapse / label-overflow
  bugs that the post-render drawio validator missed.
- tools/oci_diagram_gen.py + tools/oci_pptx_diagram_gen.py — call the
  spec validator before emitting any output. Adds mysql / mysql_heatwave
  type aliases.
- tools/archcenter_pattern_lookup.py — scores against cached page
  descriptions (not just the 1-line summary), supports --queries for
  multi-fragment composition, and applies synonym expansion via
  kb/architecture-center/synonyms.yaml so "LB HA cross AD" matches
  "load balancer high availability availability domain".
- kb/architecture-center/synonyms.yaml — canonical synonym table
  (load balancer, autonomous database, data guard, …) used by the
  lookup scorer.

KB enrichment:
- tools/archcenter_description_fetcher.py + 121 cached _description.md
  under kb/diagram/assets/archcenter-refs/<slug>/. Removes the runtime
  dependency on docs.oracle.com when authoring specs and feeds the
  pattern-lookup scorer.
- 110+ cached .drawio / .svg / .png references for offline reuse,
  plus the OCI Toolkit v24.2 import (kb/diagram/assets/oci-toolkit-drawio).

Documentation:
- docs/skill/output-formats.md — new "Standard diagram-generation
  procedure (MANDATORY)" + geometry rules + the new validator entry.
- SKILL.md option 2 — references the mandatory procedure.
- README.md — describes the spec validator, archcenter_pattern_lookup
  and description fetcher, and updates the KB-health table.

Tooling that backs the procedure (cumulative across recent sessions):
tools/archcenter_case_runner.py, archcenter_batch_driver.py,
archcenter_zip_downloader.py, drawio_visual_validator.py,
drawio_fidelity_eval.py, harvest_drawio_icon.py, import_oci_library.py,
oci_pptx_diagram_gen.py, oci_pptx_render.py, refresh_pptx_icon_index.py.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
root
2026-04-25 21:15:21 -03:00
parent 2491c38d4b
commit b30a4f0d32
635 changed files with 365317 additions and 1014 deletions

View File

@@ -0,0 +1,214 @@
# Use artifact snapshots to protect your OCI Kubernetes Engine clusters from disaster
- Source: https://docs.oracle.com/en/solutions/kubernetes-artifact-snapshot-dr/index.html
- Date: 2025-01
- Type: reference-architecture
- Services: oke, object-storage
- Tags: ha-dr, application
## Summary (catalog)
OKE DR using etcd snapshots and artifact replication. Cross-region backup of Kubernetes state, container images, and persistent volumes. Velero for workload backup and restore.
## Architecture (fetched from source)
Architecture
This architecture shows the disaster recovery (DR) system's topology for the
Kubernetes cluster.
All runtime, configuration, and metadata information residing in the primary
database is replicated from Region 1 to Region 2 with Oracle Autonomous Data Guard . The required Kubernetes (K8s) cluster configuration is replicated
through ETCD snapshots for control plane protection and with YAML snapshots
for application configuration protection. You can use artifact snapshots or
You can use etcd copies or artifact snapshots for application-specific
configuration protection for application-specific configuration protection.
See Kubernetes clusters
restore based on etcd snapshots for more details. The images that the container uses are
hosted in registries, either local to each cluster or in external
repositories (images are not considered a Kubernetes cluster configuration
by themselves).
Note:
Setting up Oracle Autonomous Data Guard for the runtime database is out of the scope of this document.
Description of the illustration kubernetes-multiregion-dr.png
kubernetes-multiregion-dr-oracle.zip
This architecture supports the following components:
- Region
An Oracle Cloud
Infrastructure region is a localized geographic area that contains one or more data centers, called availability domains. Regions are independent of other regions, and vast distances can separate them (across countries or even continents).
- Load balancer
Oracle Cloud
Infrastructure Load Balancing provides automated traffic distribution from a single entry point to multiple servers.
- Dynamic routing gateway (DRG)
The DRG is a virtual router that provides a path for private network traffic between VCNs in the same region, between a VCN and a network outside the region, such as a VCN in another Oracle Cloud
Infrastructure region, an on-premises network, or a network in another cloud provider.
- Data Guard
Oracle Data Guard and Oracle Active Data Guard provide a comprehensive set of services that create, maintain, manage, and monitor one or more standby databases and that enable production Oracle databases to remain available without interruption. Oracle Data Guard maintains these standby databases as copies of the production database by using in-memory replication. If the production database becomes unavailable due to a planned or an unplanned outage, Oracle Data Guard can switch any standby database to the production role, minimizing the downtime associated with the outage. Oracle Active Data Guard provides the additional ability to offload read-mostly workloads to standby databases and also provides advanced data protection features.
- Oracle Real Application Clusters (Oracle
RAC)
Oracle RAC enables you to run a single Oracle Database
across multiple servers to maximize availability and enable horizontal
scalability, while accessing shared storage. User sessions connecting to Oracle
RAC instances can failover and safely replay changes during outages, without any
changes to end user applications.
- Registry
Oracle Cloud Infrastructure
Registry is an Oracle-managed registry that enables you to simplify your development-to-production workflow. Registry makes it easy for you to store, share, and manage development artifacts, like Docker images. The highly available and scalable architecture of Oracle Cloud
Infrastructure ensures that you can deploy and manage your applications reliably.
- Kubernetes Engine
Oracle Cloud Infrastructure Kubernetes Engine ( OCI Kubernetes Engine or OKE ) is a fully managed, scalable, and highly available service that you can use to deploy your containerized applications to the cloud. You specify the compute resources that your applications require, and Kubernetes Engine provisions them on Oracle Cloud
Infrastructure in an existing tenancy. OKE uses Kubernetes to automate the deployment, scaling, and management of containerized applications across clusters of hosts.
- Kubernetes cluster
A Kubernetes cluster is a set of machines that run containerized applications. Kubernetes provides a portable, extensible, open source platform for managing containerized workloads and services in those nodes. A Kubernetes cluster is formed of worker nodes and control plane nodes.
- Kubernetes worker node
A Kubernetes worker node is a worker machine that runs containerized applications within a Kubernetes cluster. Every cluster has at least one worker node.
- Kubernetes control plane
A Kubernetes control plane manages the resources for the worker nodes and pods within a Kubernetes cluster. The control plane components detect and respond to events, perform scheduling, and move cluster resources.
The following are the control plane components:
- kube-apiserver: Runs the Kubernetes API server.
- etcd: Distributed key-value store for all cluster data.
- kube-scheduler: Determines which node new unassigned pods will run on.
- kube-controller-manager: Runs controller processes.
- cloud-controller-manager: Links your cluster with cloud-specific API.
- Ingress Controller
An Ingress controller is a
component that runs in a Kubernetes cluster and manages the Ingress resources.
It receives traffic from the external network, routes it to the correct service,
and performs load balancing and SSL termination. The Ingress controller
typically runs as a separate pod in the cluster and can be scaled independently
from the services it manages.
- KUBE-Endpoint API
The KUBE-Endpoint API is the
kube-apiserver component of the Kubernetes control plane.
It runs the Kubernetes API server.
- ETCD Backup
ETCD Backup is a backup of
etcd component of the Kubernetes control plane. The
etcd contains the distributed key-value store for all
cluster data. It's important to create an ETCD Backup to recover Kubernetes
clusters for disaster recovery.
- YAML Snapshots
A YAML snapshot is a point-in-time
copy of the (yaml) files containing the definition of the
artifacts in a Kubernetes cluster. The snapshot is a tar
file that you can use to restore those artifacts in the same
or a different Kubernetes cluster.
Considerations for Kubernetes
Disaster Protection
When implementing disaster protection for Kubernetes, consider the
following:
- Symmetric disaster recovery (DR) : Oracle recommends using the
exact same resource capacity and configuration in primary and secondary. The
Kubernetes namespaces involved should have similar resources available, such as the
number of worker nodes (and their hardware capacity) and other infrastructure
(shared storage, load balancers, databases, and so on). The resources on which the
Kubernetes cluster in the secondary region depend, must be able to keep up with the
same workloads as primary. Also, the two systems must be consistent functionally
with the exact same services on which the restored system depends on, side cars,
configuration maps (CMs) must be used in both locations.
- Images present a similar paradigm to binaries : Images don't
change as frequently as the Kubernetes configuration and you might not need to
update images with every Kubernetes cluster replication. The images used by the
primary system must be the same as the ones used in the secondary system or
inconsistencies and failure may take place. However, image replication is out of the
scope of this playbook. There are multiple strategies that you can use to maintain a
consistent use of images between two locations, including the following:
- Save images in primary and load to secondarys worker nodes.
This approach is very easy to implement but incurs in management overhead.
Using container registries has considerable benefits and saving images
locally makes it more difficult to manage versions and updates.
- Images can reside in totally external Container reg

View File

@@ -0,0 +1,923 @@
<svg width="1282" height="745" viewBox="0 0 1282 745" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="kubernetes-multiregion-dr (update)" clip-path="url(#clip0_9166_203344)">
<rect width="1282" height="745" fill="white"/>
<g id="Group 1240">
<g id="OCI Region">
<rect x="0.5" y="122.5" width="591" height="566" rx="3.5" fill="#F5F4F2"/>
<text id="OCI Region_2" fill="#312D2A" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" font-weight="bold" letter-spacing="0em"><tspan x="8" y="143.816">Region 1 -</tspan></text>
<text id="OCI Region_3" fill="#312D2A" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" font-weight="bold" letter-spacing="0em"><tspan x="8" y="159.816">Primary</tspan></text>
<rect x="0.5" y="122.5" width="591" height="566" rx="3.5" stroke="#9E9892"/>
</g>
<g id="OCI Region_4">
<rect x="690.5" y="122.5" width="591" height="566" rx="3.5" fill="#F5F4F2"/>
<text id="OCI Region_5" fill="#312D2A" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" font-weight="bold" letter-spacing="0em"><tspan x="698" y="143.816">Region 2 -</tspan></text>
<text id="OCI Region_6" fill="#312D2A" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" font-weight="bold" letter-spacing="0em"><tspan x="698" y="159.816">Secondary</tspan></text>
<rect x="690.5" y="122.5" width="591" height="566" rx="3.5" stroke="#9E9892"/>
</g>
<g id="Availability Domain">
<rect x="9.5" y="266.5" width="453" height="285" rx="3.5" fill="#E4E1DD"/>
<text id="Availability Domain_2" fill="#312D2A" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" font-weight="600" letter-spacing="0em"><tspan x="131.766" y="287.816">Region 1 Kubernetes Cluster</tspan></text>
<rect x="9.5" y="266.5" width="453" height="285" rx="3.5" stroke="#9E9892"/>
</g>
<g id="Availability Domain_3">
<rect x="722.5" y="266.5" width="453" height="285" rx="3.5" fill="#E4E1DD"/>
<text id="Availability Domain_4" fill="#312D2A" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" font-weight="600" letter-spacing="0em"><tspan x="843.711" y="287.816">Region 2 Kubernetes Cluster</tspan></text>
<rect x="722.5" y="266.5" width="453" height="285" rx="3.5" stroke="#9E9892"/>
</g>
<g id="Tier">
<rect x="18.5" y="298.5" width="213" height="244" fill="white"/>
<text id="Tier_2" fill="#312D2A" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" font-weight="600" letter-spacing="0em"><tspan x="26" y="319.816">Kubernetes</tspan></text>
<text id="Tier_3" fill="#312D2A" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" font-weight="600" letter-spacing="0em"><tspan x="26" y="335.816">Worker</tspan></text>
<text id="Tier_4" fill="#312D2A" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" font-weight="600" letter-spacing="0em"><tspan x="26" y="351.816">Nodes</tspan></text>
<rect x="18.5" y="298.5" width="213" height="244" stroke="#9E9892" stroke-dasharray="2 2"/>
</g>
<g id="Tier_5">
<rect x="731.5" y="298.5" width="213" height="244" fill="white"/>
<text id="Tier_6" fill="#312D2A" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" font-weight="600" letter-spacing="0em"><tspan x="739" y="319.816">Kubernetes</tspan></text>
<text id="Tier_7" fill="#312D2A" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" font-weight="600" letter-spacing="0em"><tspan x="739" y="335.816">Worker</tspan></text>
<text id="Tier_8" fill="#312D2A" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" font-weight="600" letter-spacing="0em"><tspan x="739" y="351.816">Nodes</tspan></text>
<rect x="731.5" y="298.5" width="213" height="244" stroke="#9E9892" stroke-dasharray="2 2"/>
</g>
<g id="Tier_9">
<rect x="240.5" y="298.5" width="213" height="244" fill="white"/>
<text id="Tier_10" fill="#312D2A" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" font-weight="600" letter-spacing="0em"><tspan x="252.234" y="319.816">Kubernetes Control Plane</tspan></text>
<rect x="240.5" y="298.5" width="213" height="244" stroke="#9E9892" stroke-dasharray="2 2"/>
</g>
<g id="Tier_11">
<rect x="953.5" y="298.5" width="213" height="244" fill="white"/>
<text id="Tier_12" fill="#312D2A" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" font-weight="600" letter-spacing="0em"><tspan x="965.234" y="319.816">Kubernetes Control Plane</tspan></text>
<rect x="953.5" y="298.5" width="213" height="244" stroke="#9E9892" stroke-dasharray="2 2"/>
</g>
<g id="Laptop">
<g id="Technology-Laptop">
<g id="Group 552">
<path id="Vector" d="M246.598 59.5144L244.016 58.2445V56.7267L249.696 46.2057V20.1149C249.696 19.3461 249.998 18.6079 250.536 18.0595C251.075 17.5111 251.808 17.1962 252.577 17.1826H294.422C295.2 17.1826 295.946 17.4916 296.496 18.0415C297.046 18.5914 297.355 19.3372 297.355 20.1149V45.8237L302.983 56.7267V58.2445L300.443 59.5144H246.598Z" fill="white"/>
<path id="Vector_2" d="M294.423 17.6992C295.063 17.6992 295.678 17.9537 296.131 18.4068C296.584 18.8599 296.839 19.4744 296.839 20.1152V45.9273L302.467 56.8509V57.8834L300.299 58.9985H246.681L244.533 57.966V56.9335L250.161 46.3403V20.1152C250.161 19.4744 250.416 18.8599 250.869 18.4068C251.322 17.9537 251.937 17.6992 252.577 17.6992H294.423ZM294.423 16.6667H252.577C251.663 16.6694 250.788 17.0336 250.141 17.6797C249.495 18.3259 249.131 19.2014 249.128 20.1152V46.0821L243.624 56.407L243.5 56.5928V58.5649L244.068 58.854L246.226 59.8865L246.443 60H300.567L300.784 59.8865L302.932 58.854L303.5 58.5649V56.6032L303.397 56.376L297.872 45.6898V20.1152C297.869 19.2014 297.505 18.3259 296.859 17.6797C296.212 17.0336 295.337 16.6694 294.423 16.6667V16.6667Z" fill="white"/>
<path id="Vector_3" d="M255.799 49.0758H291.2V51.2233H255.799V49.0758ZM264.917 54.9713H282.081V52.803H264.917V54.9713ZM302.467 56.8504V57.8829L300.298 58.9979H246.68L244.532 57.9655V56.933L250.16 46.3397V20.1146C250.16 19.4739 250.415 18.8593 250.868 18.4062C251.321 17.9532 251.936 17.6986 252.577 17.6986H294.422C295.063 17.6986 295.677 17.9532 296.131 18.4062C296.584 18.8593 296.838 19.4739 296.838 20.1146V45.9267L302.467 56.8504ZM295.238 47.4651H252.009L246.969 56.8504H300.06L295.238 47.4651ZM252.308 45.3175H294.649V20.1146C294.65 20.079 294.644 20.0434 294.631 20.0102C294.619 19.977 294.599 19.9468 294.574 19.9216C294.548 19.8963 294.518 19.8766 294.485 19.8636C294.452 19.8507 294.416 19.8447 294.38 19.8462H252.577C252.505 19.8462 252.437 19.8745 252.387 19.9248C252.336 19.9751 252.308 20.0434 252.308 20.1146V45.3175Z" fill="#2D5967"/>
</g>
</g>
<g id="Icon Text Label">
<text id="IconLabel" fill="black" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" letter-spacing="0em"><tspan x="186.164" y="77.816">myk8sapp.example.com</tspan></text>
</g>
</g>
<g id="DNS">
<g id="Domain-Name-System-DNS">
<g id="Group">
<g id="Group_2">
<g id="Group_3">
<path id="Vector_4" d="M636.315 59.2825C621.079 59.2825 608.674 46.878 608.674 31.642C608.674 16.4061 621.079 4.00159 636.315 4.00159C649.663 4.00159 661.124 13.4398 663.551 26.6533C665.708 27.3274 667.326 29.3499 667.326 31.7769C667.326 34.2038 665.843 36.0915 663.551 36.9005C661.124 49.8443 649.798 59.2825 636.315 59.2825Z" fill="white"/>
<path id="Vector_5" d="M636.315 4.67577C649.663 4.67577 660.719 14.3836 662.876 27.0578C664.899 27.5971 666.517 29.3499 666.517 31.6421C666.517 33.7994 664.899 35.687 662.876 36.2263C660.854 48.9005 649.663 58.6084 636.315 58.6084C621.483 58.6084 609.348 46.4735 609.348 31.6421C609.348 16.8106 621.483 4.67577 636.315 4.67577ZM636.315 3.32745C620.674 3.32745 608 16.0016 608 31.6421C608 47.2825 620.674 59.9567 636.315 59.9567C649.933 59.9567 661.528 50.3836 664.09 37.1702C666.382 36.2263 667.865 34.069 667.865 31.6421C667.865 29.2151 666.247 26.923 664.09 26.114C661.528 12.9005 649.933 3.32745 636.315 3.32745Z" fill="white"/>
</g>
<g id="Group_4">
<path id="Vector_6" d="M666.652 31.6421C666.652 29.4848 665.034 27.5971 663.011 27.0578C660.854 14.3836 649.663 4.67578 636.315 4.67578C621.483 4.67578 609.348 16.8106 609.348 31.6421C609.348 46.4735 621.483 58.6084 636.315 58.6084C649.663 58.6084 660.719 48.9005 662.876 36.2263C665.034 35.687 666.652 33.7994 666.652 31.6421ZM661.933 34.069C660.584 34.069 659.506 32.9904 659.506 31.6421C659.506 30.2938 660.584 29.2151 661.933 29.2151C663.281 29.2151 664.359 30.2938 664.359 31.6421C664.359 32.9904 663.281 34.069 661.933 34.069ZM660.719 27.1926C659.101 27.5971 657.888 28.9454 657.483 30.5634H647.101C647.101 28.2713 646.831 26.114 646.427 23.9567C648.584 23.0129 650.202 20.8556 650.202 18.2938C650.202 14.923 647.371 12.0915 644 12.0915C643.326 12.0915 642.786 12.2263 642.247 12.3612C641.303 10.6084 640.225 8.85556 638.876 7.23758C649.798 8.1814 658.697 16.5409 660.719 27.1926ZM628.764 39.8668C632.135 39.0578 634.697 36.2263 635.101 32.8556H644.809C644.539 41.2151 641.573 49.305 636.315 55.7769C632.539 51.0578 629.977 45.6645 628.764 39.8668ZM620.539 31.6421C620.539 28.2713 623.371 25.4398 626.742 25.4398C630.112 25.4398 632.944 28.2713 632.944 31.6421C632.944 35.0129 630.112 37.8443 626.742 37.8443C623.371 37.8443 620.539 35.0129 620.539 31.6421ZM635.101 30.5634C634.697 27.0578 632 24.2263 628.629 23.5522C629.843 17.7544 632.539 12.3612 636.18 7.64207C637.663 9.39488 638.876 11.4174 639.955 13.305C638.472 14.3836 637.528 16.2713 637.528 18.1589C637.528 21.5297 640.36 24.3612 643.73 24.3612H643.865C644.27 26.3836 644.539 28.4061 644.539 30.5634H635.101ZM644 14.2488C646.157 14.2488 647.91 16.0016 647.91 18.1589C647.91 20.3162 646.157 22.069 644 22.069C641.843 22.069 640.09 20.3162 640.09 18.1589C640.09 16.0016 641.708 14.2488 644 14.2488ZM633.888 7.10275C630.247 11.9567 627.685 17.3499 626.472 23.2825C622.292 23.4174 618.921 26.5185 618.382 30.5634H611.64C612.18 18.2938 621.753 8.31623 633.888 7.10275ZM611.64 32.7207H618.382C618.921 36.7657 622.292 39.8668 626.472 40.0016C627.685 45.7994 630.247 51.3275 633.888 56.1814C621.753 54.9679 612.18 44.9904 611.64 32.7207ZM638.876 56.1814C644 49.4398 646.831 41.2151 647.101 32.7207H657.483C657.888 34.3387 659.101 35.5522 660.719 36.0915C658.697 46.7432 649.798 55.1027 638.876 56.1814Z" fill="#2D5967"/>
</g>
</g>
</g>
</g>
<g id="Icon Text Label_2">
<text id="IconLabel_2" fill="black" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" letter-spacing="0em"><tspan x="622" y="77.816">DNS</tspan></text>
</g>
</g>
<g id="Igress Controller">
<g id="routing-rules">
<g id="Group_5">
<g id="Group_6">
<g id="Group_7">
<path id="Vector_7" d="M98.81 410.286C97.1029 410.286 95.7143 408.897 95.7143 407.19V354.809C95.7143 353.103 97.1029 351.714 98.81 351.714H151.191C152.899 351.714 154.287 353.103 154.287 354.809V407.19C154.287 408.897 152.899 410.286 151.191 410.286H98.81Z" fill="white"/>
<path id="Vector_8" d="M151.19 352.429C152.503 352.429 153.571 353.497 153.571 354.81V407.191C153.571 408.503 152.503 409.571 151.19 409.571H98.81C97.4971 409.571 96.4286 408.503 96.4286 407.19V354.81C96.4286 353.497 97.4971 352.429 98.81 352.429H151.19ZM151.19 351H98.81C96.7086 351 95 352.709 95 354.81V407.191C95 409.291 96.7086 411 98.81 411H151.191C153.291 411 155 409.291 155 407.19V354.81C155 352.709 153.291 351 151.19 351Z" fill="white"/>
</g>
<g id="Group_8">
<path id="Vector_9" d="M135.581 363.01H117.329V364.069V365.127V379.941V382.057V396.871V397.93V398.989H135.583V404.28H148.281V391.581H135.583V396.873H119.444V382.059H135.581V387.35H148.28V374.651H135.581V379.943H119.444V365.127H135.581V370.419H148.28V357.72H135.581V363.01ZM137.699 393.699H146.164V402.164H137.699V393.699ZM137.699 376.767H146.164V385.233H137.699V376.767ZM137.699 359.836H146.164V368.301H137.699V359.836Z" fill="#2D5967"/>
<path id="Vector_10" d="M151.19 352.429H98.81C97.4972 352.429 96.4286 353.497 96.4286 354.81V407.191C96.4286 408.503 97.4972 409.571 98.81 409.571H151.191C152.503 409.571 153.571 408.503 153.571 407.19V354.81C153.571 353.497 152.503 352.429 151.19 352.429ZM151.456 407.19C151.456 407.336 151.337 407.454 151.191 407.454H98.81C98.6643 407.454 98.5457 407.336 98.5457 407.19V354.81C98.5457 354.664 98.6643 354.546 98.81 354.546H151.191C151.337 354.546 151.456 354.664 151.456 354.81V407.19Z" fill="#2D5967"/>
<path id="Vector_11" d="M108.379 376.721L111.599 379.941H100.133V382.059H111.599L108.379 385.279L109.876 386.774L115.65 381L109.876 375.226L108.379 376.721Z" fill="#2D5967"/>
</g>
</g>
</g>
</g>
<g id="Icon Text Label_3">
<text id="IconLabel_3" fill="black" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" letter-spacing="0em"><tspan x="61.2891" y="428.816">Ingress Controller</tspan></text>
</g>
</g>
<g id="Igress Controller_2">
<g id="routing-rules_2">
<g id="Group_9">
<g id="Group_10">
<g id="Group_11">
<path id="Vector_12" d="M811.81 410.286C810.103 410.286 808.714 408.897 808.714 407.19V354.809C808.714 353.103 810.103 351.714 811.81 351.714H864.191C865.899 351.714 867.287 353.103 867.287 354.809V407.19C867.287 408.897 865.899 410.286 864.191 410.286H811.81Z" fill="white"/>
<path id="Vector_13" d="M864.19 352.429C865.503 352.429 866.571 353.497 866.571 354.81V407.191C866.571 408.503 865.503 409.571 864.19 409.571H811.81C810.497 409.571 809.429 408.503 809.429 407.19V354.81C809.429 353.497 810.497 352.429 811.81 352.429H864.19ZM864.19 351H811.81C809.709 351 808 352.709 808 354.81V407.191C808 409.291 809.709 411 811.81 411H864.191C866.291 411 868 409.291 868 407.19V354.81C868 352.709 866.291 351 864.19 351Z" fill="white"/>
</g>
<g id="Group_12">
<path id="Vector_14" d="M848.581 363.01H830.329V364.069V365.127V379.941V382.057V396.871V397.93V398.989H848.583V404.28H861.281V391.581H848.583V396.873H832.444V382.059H848.581V387.35H861.28V374.651H848.581V379.943H832.444V365.127H848.581V370.419H861.28V357.72H848.581V363.01ZM850.699 393.699H859.164V402.164H850.699V393.699ZM850.699 376.767H859.164V385.233H850.699V376.767ZM850.699 359.836H859.164V368.301H850.699V359.836Z" fill="#2D5967"/>
<path id="Vector_15" d="M864.19 352.429H811.81C810.497 352.429 809.429 353.497 809.429 354.81V407.191C809.429 408.503 810.497 409.571 811.81 409.571H864.191C865.503 409.571 866.571 408.503 866.571 407.19V354.81C866.571 353.497 865.503 352.429 864.19 352.429ZM864.456 407.19C864.456 407.336 864.337 407.454 864.191 407.454H811.81C811.664 407.454 811.546 407.336 811.546 407.19V354.81C811.546 354.664 811.664 354.546 811.81 354.546H864.191C864.337 354.546 864.456 354.664 864.456 354.81V407.19Z" fill="#2D5967"/>
<path id="Vector_16" d="M821.379 376.721L824.599 379.941H813.133V382.059H824.599L821.379 385.279L822.876 386.774L828.65 381L822.876 375.226L821.379 376.721Z" fill="#2D5967"/>
</g>
</g>
</g>
</g>
<g id="Icon Text Label_4">
<text id="IconLabel_4" fill="black" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" letter-spacing="0em"><tspan x="774.289" y="428.816">Ingress Controller</tspan></text>
</g>
</g>
<g id="Container Registry">
<g id="OCI-Container-Registry">
<g id="Group_13">
<g id="Group_14">
<path id="Vector_17" d="M614.857 357.286C613.143 357.286 611.714 355.857 611.714 354.143V301.857C611.714 300.143 613.143 298.714 614.857 298.714H667.286C669 298.714 670.429 300.143 670.429 301.857V354.286C670.429 356 669 357.429 667.286 357.429L614.857 357.286Z" fill="white"/>
<path id="Vector_18" d="M667.143 299.429C668.429 299.429 669.571 300.571 669.571 301.857V354.286C669.571 355.571 668.429 356.714 667.143 356.714H614.857C613.571 356.571 612.429 355.429 612.429 354.143V301.857C612.429 300.571 613.571 299.429 614.857 299.429H667.143ZM667.143 298H614.857C612.714 298 611 299.714 611 301.857V354.286C611 356.286 612.714 358 614.857 358H667.286C669.429 358 671.143 356.286 671.143 354.143V301.857C671 299.714 669.286 298 667.143 298Z" fill="white"/>
</g>
<g id="Group_15">
<path id="Vector_19" d="M667.143 356.571H614.857C613.571 356.571 612.429 355.429 612.429 354.143V301.857C612.429 300.571 613.571 299.429 614.857 299.429H667.286C668.429 299.429 669.571 300.571 669.571 301.857V354.286C669.571 355.429 668.429 356.571 667.143 356.571ZM614.857 301.571C614.714 301.571 614.571 301.714 614.571 301.857V354.286C614.571 354.429 614.714 354.571 614.857 354.571H667.286C667.429 354.571 667.571 354.429 667.571 354.286V301.857C667.571 301.714 667.429 301.571 667.286 301.571H614.857Z" fill="#2D5967"/>
</g>
<g id="Group_16">
<g id="Group_17">
<g id="Group_18">
<path id="Vector_20" d="M640.143 327.143H627.429V314.429H640.143V327.143ZM629.429 325.143H637.857V316.571H629.429V325.143Z" fill="#2D5967"/>
</g>
</g>
<g id="Group_19">
<g id="Group_20">
<path id="Vector_21" d="M654.429 327.143H641.714V314.429H654.429C654.286 314.571 654.286 327.143 654.429 327.143ZM643.714 325.143H652.143V316.571H643.714V325.143Z" fill="#2D5967"/>
</g>
</g>
<g id="Group_21">
<g id="Group_22">
<path id="Vector_22" d="M647.286 341.429H634.572V328.714H647.286V341.429ZM636.714 339.429H645.286V330.857H636.714V339.429Z" fill="#2D5967"/>
</g>
</g>
<g id="Group_23">
<g id="Group_24">
<path id="Vector_23" d="M661.571 341.429H648.857V328.714H661.571V341.429ZM651 339.429H659.571V330.857H651V339.429Z" fill="#2D5967"/>
</g>
</g>
<g id="Group_25">
<g id="Group_26">
<path id="Vector_24" d="M633 341.429H620.429V328.714H633.143L633 341.429ZM622.429 339.429H631V330.857H622.429V339.429Z" fill="#2D5967"/>
</g>
</g>
</g>
</g>
</g>
<g id="Icon Text Label_5">
<text id="IconLabel_5" fill="black" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" letter-spacing="0em"><tspan x="620.305" y="375.816">Other</tspan></text>
<text id="IconLabel_6" fill="black" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" letter-spacing="0em"><tspan x="611.273" y="391.816">External</tspan></text>
<text id="IconLabel_7" fill="black" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" letter-spacing="0em"><tspan x="605.516" y="407.816">Container</tspan></text>
<text id="IconLabel_8" fill="black" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" letter-spacing="0em"><tspan x="605.445" y="423.816">Registries</tspan></text>
</g>
</g>
<g id="Load Balancer">
<g id="Load-Balancer-LB">
<g id="Group_27">
<g id="Group_28">
<g id="Group_29">
<path id="Vector_25" d="M143.011 229.286V225.715H147.266L127.408 205.715C126.841 212.572 125.281 218.572 122.869 223.143C119.891 228.286 116.912 229.286 114.926 229.286C114.642 229.286 114.217 229.286 113.791 229.143C108.117 228.143 104.571 219.429 103.295 211.715C102.727 208.857 102.444 205.429 102.302 201.857H95.2097V198.286H102.302C102.444 194.572 102.727 191 103.295 188C105.139 177.429 109.536 170.857 114.926 170.857C118.047 170.857 123.578 173.143 126.557 188.286C126.841 190.286 127.125 192.286 127.266 194.286L147.125 174.286H142.869V170.715H153.224V181.143H149.82V176.572L128.401 198.286H146.699L143.862 195.572L146.273 193L153.649 200L146.415 207.286L143.862 204.715L146.841 201.715H128.543L149.82 223.286V218.857H153.366V229.286H143.011Z" fill="white"/>
<path id="Vector_26" d="M152.656 171.429V180.429H150.528V174.857L126.84 198.857V199H148.401L144.855 195.571L146.273 194L152.656 200L146.415 206.286L144.996 204.857L148.684 201.143H126.84L150.528 225V219.571H152.656V228.571H143.72V226.429H148.968L126.699 204C126.415 210.571 124.996 217.286 122.16 222.714C119.465 227.286 116.77 228.429 114.784 228.429C114.5 228.429 114.074 228.429 113.791 228.286C108.401 227.286 105.138 218.571 103.862 211.429C103.436 208.429 103.011 204.714 103.011 201H95.9184V198.857H103.011C103.011 195 103.436 191.286 104.004 188C105.848 178 109.961 171.571 114.926 171.571C117.762 171.571 122.869 173.857 125.706 188.429C126.131 190.714 126.415 193.143 126.557 195.857L148.968 173.571H143.72V171.429H152.656ZM154.074 170H152.656H143.72H142.301V171.429V173.571V175H143.72H145.564L127.833 192.714C127.691 191.143 127.408 189.714 127.266 188.286C124.287 173.286 119.039 170.143 115.067 170.143C109.252 170.143 104.713 176.857 102.727 187.857C102.16 190.714 101.876 194 101.734 197.571H95.9184H94.5V199V201.143V202.571H95.9184H101.592C101.734 205.857 102.018 209.143 102.585 211.857C104.004 219.857 107.55 228.714 113.649 229.857C114.074 229.857 114.5 230 114.926 230C117.053 230 120.316 228.857 123.436 223.571C125.706 219.143 127.266 213.714 127.833 207.429L145.564 225H143.72H142.301V226.429V228.571V230H143.72H152.656H154.074V228.571V219.571V218.143H152.656H150.528H149.11V219.571V221.571L130.245 202.429H145.138L143.862 203.714L142.869 204.714L143.862 205.714L145.28 207.143L146.273 208.143L147.266 207.143L153.507 200.857L154.5 199.857L153.507 198.857L147.266 192.857L146.273 191.857L145.28 192.857L143.862 194.429L142.869 195.429L143.862 196.429L144.855 197.429H130.103L149.11 178.286V180.429V181.857H150.528H152.656H154.074V180.429V171.429V170Z" fill="white"/>
</g>
<g id="Group_30">
<path id="Vector_27" d="M152.655 180.429V171.429H143.719V173.572H148.967L126.698 195.858C126.556 193.143 126.272 190.715 125.847 188.429C123.01 173.715 117.904 171.572 115.067 171.572C110.102 171.572 105.989 178 104.145 188.143C103.435 191.429 103.152 195.143 103.01 199H95.9177V201.143H103.01C103.01 204.858 103.435 208.429 104.003 211.572C105.279 218.715 108.542 227.429 113.932 228.429C114.216 228.429 114.499 228.572 114.925 228.572C116.911 228.572 119.606 227.429 122.301 222.858C125.138 217.429 126.414 210.715 126.84 204.143L149.109 226.572H143.861V228.572H152.655V219.572H150.528V225L126.84 201.143H148.542L144.854 204.858L146.272 206.286L152.655 200L146.414 194L144.996 195.572L148.542 199H126.84V198.858L150.528 174.858V180.429H152.655ZM119.889 221.429C118.613 223.429 116.911 225.858 114.783 225.858C114.641 225.858 114.499 225.858 114.357 225.858C111.237 225.286 107.833 219.143 106.556 211.143C105.989 208.143 105.705 204.715 105.563 201.143H118.187L114.499 204.858L116.06 206.286L122.301 200L115.776 193.715L114.357 195.286L118.187 199H105.705C105.705 195.429 106.13 191.715 106.698 188.715C108.4 178.715 112.23 174.286 114.925 174.286C117.478 174.286 121.024 178.143 123.152 189C124.996 198.715 124.57 212.572 119.889 221.429Z" fill="#2D5967"/>
</g>
</g>
</g>
</g>
<g id="Icon Text Label_6">
<text id="IconLabel_9" fill="black" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" letter-spacing="0em"><tspan x="73.1953" y="247.816">Load Balancer</tspan></text>
</g>
</g>
<g id="Load Balancer_2">
<g id="Load-Balancer-LB_2">
<g id="Group_31">
<g id="Group_32">
<g id="Group_33">
<path id="Vector_28" d="M856.011 229.286V225.715H860.266L840.408 205.715C839.841 212.572 838.281 218.572 835.869 223.143C832.891 228.286 829.912 229.286 827.926 229.286C827.642 229.286 827.217 229.286 826.791 229.143C821.118 228.143 817.571 219.429 816.295 211.715C815.727 208.857 815.444 205.429 815.302 201.857H808.21V198.286H815.302C815.444 194.572 815.727 191 816.295 188C818.139 177.429 822.536 170.857 827.926 170.857C831.047 170.857 836.579 173.143 839.557 188.286C839.841 190.286 840.125 192.286 840.266 194.286L860.125 174.286H855.869V170.715H866.224V181.143H862.82V176.572L841.401 198.286H859.699L856.862 195.572L859.274 193L866.649 200L859.415 207.286L856.862 204.715L859.841 201.715H841.543L862.82 223.286V218.857H866.366V229.286H856.011Z" fill="white"/>
<path id="Vector_29" d="M865.656 171.429V180.429H863.528V174.857L839.84 198.857V199H861.401L857.855 195.571L859.273 194L865.656 200L859.415 206.286L857.996 204.857L861.684 201.143H839.84L863.528 225V219.571H865.656V228.571H856.72V226.429H861.968L839.699 204C839.415 210.571 837.996 217.286 835.16 222.714C832.465 227.286 829.77 228.429 827.784 228.429C827.5 228.429 827.074 228.429 826.791 228.286C821.401 227.286 818.138 218.571 816.862 211.429C816.436 208.429 816.011 204.714 816.011 201H808.918V198.857H816.011C816.011 195 816.436 191.286 817.004 188C818.848 178 822.961 171.571 827.926 171.571C830.762 171.571 835.869 173.857 838.706 188.429C839.131 190.714 839.415 193.143 839.557 195.857L861.968 173.571H856.72V171.429H865.656ZM867.074 170H865.656H856.72H855.301V171.429V173.571V175H856.72H858.564L840.833 192.714C840.691 191.143 840.408 189.714 840.266 188.286C837.287 173.286 832.039 170.143 828.067 170.143C822.252 170.143 817.713 176.857 815.727 187.857C815.16 190.714 814.876 194 814.734 197.571H808.918H807.5V199V201.143V202.571H808.918H814.592C814.734 205.857 815.018 209.143 815.585 211.857C817.004 219.857 820.55 228.714 826.649 229.857C827.074 229.857 827.5 230 827.926 230C830.053 230 833.316 228.857 836.436 223.571C838.706 219.143 840.266 213.714 840.833 207.429L858.564 225H856.72H855.301V226.429V228.571V230H856.72H865.656H867.074V228.571V219.571V218.143H865.656H863.528H862.11V219.571V221.571L843.245 202.429H858.138L856.862 203.714L855.869 204.714L856.862 205.714L858.28 207.143L859.273 208.143L860.266 207.143L866.507 200.857L867.5 199.857L866.507 198.857L860.266 192.857L859.273 191.857L858.28 192.857L856.862 194.429L855.869 195.429L856.862 196.429L857.855 197.429H843.103L862.11 178.286V180.429V181.857H863.528H865.656H867.074V180.429V171.429V170Z" fill="white"/>
</g>
<g id="Group_34">
<path id="Vector_30" d="M865.655 180.429V171.429H856.719V173.572H861.967L839.698 195.858C839.556 193.143 839.272 190.715 838.847 188.429C836.01 173.715 830.904 171.572 828.067 171.572C823.102 171.572 818.989 178 817.145 188.143C816.435 191.429 816.152 195.143 816.01 199H808.918V201.143H816.01C816.01 204.858 816.435 208.429 817.003 211.572C818.279 218.715 821.542 227.429 826.932 228.429C827.216 228.429 827.499 228.572 827.925 228.572C829.911 228.572 832.606 227.429 835.301 222.858C838.138 217.429 839.414 210.715 839.84 204.143L862.109 226.572H856.861V228.572H865.655V219.572H863.528V225L839.84 201.143H861.542L857.854 204.858L859.272 206.286L865.655 200L859.414 194L857.996 195.572L861.542 199H839.84V198.858L863.528 174.858V180.429H865.655ZM832.889 221.429C831.613 223.429 829.911 225.858 827.783 225.858C827.641 225.858 827.499 225.858 827.357 225.858C824.237 225.286 820.833 219.143 819.556 211.143C818.989 208.143 818.705 204.715 818.563 201.143H831.187L827.499 204.858L829.06 206.286L835.301 200L828.776 193.715L827.357 195.286L831.187 199H818.705C818.705 195.429 819.13 191.715 819.698 188.715C821.4 178.715 825.23 174.286 827.925 174.286C830.478 174.286 834.024 178.143 836.152 189C837.996 198.715 837.57 212.572 832.889 221.429Z" fill="#2D5967"/>
</g>
</g>
</g>
</g>
<g id="Icon Text Label_7">
<text id="IconLabel_10" fill="black" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" letter-spacing="0em"><tspan x="786.195" y="247.816">Load Balancer</tspan></text>
</g>
</g>
<g id="Backup">
<g id="OCI File Storage Snapshot">
<g id="OCI-File-Storage-Snapshot">
<g id="Group_35">
<g id="Group_36">
<path id="Vector_31" d="M320.348 635.145C318.638 635.145 317.213 633.72 317.213 632.01V579.848C317.213 578.138 318.638 576.713 320.348 576.713H372.652C374.362 576.713 375.787 578.138 375.787 579.848V632.152C375.787 633.862 374.362 635.287 372.652 635.287H320.348V635.145Z" fill="white"/>
<path id="Vector_32" d="M372.51 577.425C373.935 577.425 374.932 578.423 374.932 579.848V583.268V632.152C374.932 633.435 373.935 634.575 372.51 634.575H320.348C318.923 634.432 317.925 633.435 317.925 632.01V579.848C317.925 578.423 318.923 577.425 320.348 577.425H372.51ZM372.51 576H320.348C318.21 576 316.5 577.71 316.5 579.848V632.152C316.5 634.147 318.21 635.857 320.348 635.857H372.652C374.79 635.857 376.5 634.147 376.5 632.01V583.268V579.848C376.357 577.71 374.647 576 372.51 576Z" fill="white"/>
</g>
<g id="Group_37">
<path id="Vector_33" d="M320.348 632.295C320.205 632.295 320.063 632.152 320.063 632.01V585.407H372.794V607.782V609.35V609.635C373.649 609.635 374.362 609.92 374.932 610.49V583.269H317.925V632.152C317.925 633.435 318.923 634.433 320.348 634.433H340.87C340.443 633.863 340.158 633.15 340.015 632.295H320.348Z" fill="#2D5967"/>
<path id="Vector_34" d="M374.932 579.848C374.932 578.423 373.935 577.425 372.509 577.425H320.348C318.923 577.425 317.925 578.423 317.925 579.848V581.701H374.932V579.848Z" fill="#2D5967"/>
<path id="Vector_35" d="M365.669 596.381H341.583L339.303 593.53C338.875 592.96 338.305 592.675 337.593 592.675H326.904C325.764 592.675 324.766 593.673 324.766 594.813V625.169H340.015V623.031H326.904V602.224H338.163C338.875 602.224 339.445 601.939 339.873 601.369L342.153 598.518H365.669V604.932C366.381 605.359 367.094 606.072 367.521 607.069L367.806 607.782V598.518C367.806 597.378 366.809 596.381 365.669 596.381ZM338.163 600.086H326.904V594.813H337.593L339.873 597.806L338.163 600.086Z" fill="#2D5967"/>
<path id="Vector_36" d="M336.88 596.38H328.756V598.518H336.88V596.38Z" fill="#2D5967"/>
<path id="Vector_37" d="M372.509 611.202H371.227V609.349H369.089V611.202H367.521L365.954 607.639C365.526 606.499 364.386 605.929 363.246 605.929H363.103H357.83C356.547 605.929 355.55 606.642 355.122 607.924L353.982 611.202H351.559V610.062C351.559 608.637 350.419 607.497 348.994 607.497H347.426C346.001 607.497 344.861 608.637 344.861 610.062V611.202H344.006C342.723 611.202 341.583 612.2 341.583 613.625V632.152C341.583 633.435 342.581 634.575 344.006 634.575H372.509C373.792 634.575 374.932 633.577 374.932 632.152V613.625C374.932 612.342 373.935 611.202 372.509 611.202ZM357.118 608.637C357.26 608.352 357.545 608.067 357.83 608.067H363.388C363.673 608.067 363.958 608.209 364.101 608.494L365.241 611.202H355.977L357.118 608.637ZM346.999 610.062C346.999 609.777 347.141 609.634 347.426 609.634H348.994C349.279 609.634 349.422 609.777 349.422 610.062V611.202H346.999V610.062ZM372.794 632.01C372.794 632.152 372.652 632.295 372.509 632.295H344.006C343.863 632.295 343.721 632.152 343.721 632.01V613.482C343.721 613.34 343.863 613.197 344.006 613.197H372.509C372.652 613.197 372.794 613.34 372.794 613.482V632.01Z" fill="#2D5967"/>
<path id="Vector_38" d="M360.395 615.193C356.12 615.193 352.699 618.613 352.699 622.889C352.699 627.164 356.12 630.585 360.395 630.585C364.671 630.585 368.091 627.164 368.091 622.889C368.091 618.613 364.671 615.193 360.395 615.193ZM360.395 628.304C357.402 628.304 354.837 625.881 354.837 622.746C354.837 619.753 357.26 617.188 360.395 617.188C363.531 617.188 365.953 619.611 365.953 622.746C365.953 625.881 363.531 628.304 360.395 628.304Z" fill="#2D5967"/>
<path id="Vector_39" d="M369.944 617.188C370.495 617.188 370.942 616.741 370.942 616.19C370.942 615.639 370.495 615.193 369.944 615.193C369.393 615.193 368.946 615.639 368.946 616.19C368.946 616.741 369.393 617.188 369.944 617.188Z" fill="#2D5967"/>
<path id="Vector_40" d="M350.561 615.193H345.573V617.33H350.561V615.193Z" fill="#2D5967"/>
<path id="Vector_41" d="M360.395 623.601H362.248C362.818 623.601 363.246 623.174 363.246 622.604C363.246 622.034 362.818 621.606 362.248 621.606H361.393V620.039C361.393 619.468 360.966 619.041 360.395 619.041C359.825 619.041 359.398 619.468 359.398 620.039V622.746C359.398 623.174 359.825 623.601 360.395 623.601Z" fill="#2D5967"/>
</g>
</g>
</g>
</g>
<g id="Icon Text Label_8">
<text id="IconLabel_11" fill="black" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" letter-spacing="0em"><tspan x="326.617" y="653.816">ETCD</tspan></text>
<text id="IconLabel_12" fill="black" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" letter-spacing="0em"><tspan x="316.016" y="669.816">Backups</tspan></text>
</g>
</g>
<g id="Backup_2">
<g id="OCI File Storage Snapshot_2">
<g id="OCI-File-Storage-Snapshot_2">
<g id="Group_38">
<g id="Group_39">
<path id="Vector_42" d="M1033.35 635.145C1031.64 635.145 1030.21 633.72 1030.21 632.01V579.848C1030.21 578.138 1031.64 576.713 1033.35 576.713H1085.65C1087.36 576.713 1088.79 578.138 1088.79 579.848V632.152C1088.79 633.862 1087.36 635.287 1085.65 635.287H1033.35V635.145Z" fill="white"/>
<path id="Vector_43" d="M1085.51 577.425C1086.93 577.425 1087.93 578.423 1087.93 579.848V583.268V632.152C1087.93 633.435 1086.93 634.575 1085.51 634.575H1033.35C1031.92 634.432 1030.93 633.435 1030.93 632.01V579.848C1030.93 578.423 1031.92 577.425 1033.35 577.425H1085.51ZM1085.51 576H1033.35C1031.21 576 1029.5 577.71 1029.5 579.848V632.152C1029.5 634.147 1031.21 635.857 1033.35 635.857H1085.65C1087.79 635.857 1089.5 634.147 1089.5 632.01V583.268V579.848C1089.36 577.71 1087.65 576 1085.51 576Z" fill="white"/>
</g>
<g id="Group_40">
<path id="Vector_44" d="M1033.35 632.295C1033.21 632.295 1033.06 632.152 1033.06 632.01V585.407H1085.79V607.782V609.35V609.635C1086.65 609.635 1087.36 609.92 1087.93 610.49V583.269H1030.92V632.152C1030.92 633.435 1031.92 634.433 1033.35 634.433H1053.87C1053.44 633.863 1053.16 633.15 1053.02 632.295H1033.35Z" fill="#2D5967"/>
<path id="Vector_45" d="M1087.93 579.848C1087.93 578.423 1086.93 577.425 1085.51 577.425H1033.35C1031.92 577.425 1030.93 578.423 1030.93 579.848V581.701H1087.93V579.848Z" fill="#2D5967"/>
<path id="Vector_46" d="M1078.67 596.381H1054.58L1052.3 593.53C1051.88 592.96 1051.31 592.675 1050.59 592.675H1039.9C1038.76 592.675 1037.77 593.673 1037.77 594.813V625.169H1053.02V623.031H1039.9V602.224H1051.16C1051.88 602.224 1052.45 601.939 1052.87 601.369L1055.15 598.518H1078.67V604.932C1079.38 605.359 1080.09 606.072 1080.52 607.069L1080.81 607.782V598.518C1080.81 597.378 1079.81 596.381 1078.67 596.381ZM1051.16 600.086H1039.9V594.813H1050.59L1052.87 597.806L1051.16 600.086Z" fill="#2D5967"/>
<path id="Vector_47" d="M1049.88 596.38H1041.76V598.518H1049.88V596.38Z" fill="#2D5967"/>
<path id="Vector_48" d="M1085.51 611.202H1084.23V609.349H1082.09V611.202H1080.52L1078.95 607.639C1078.53 606.499 1077.39 605.929 1076.25 605.929H1076.1H1070.83C1069.55 605.929 1068.55 606.642 1068.12 607.924L1066.98 611.202H1064.56V610.062C1064.56 608.637 1063.42 607.497 1061.99 607.497H1060.43C1059 607.497 1057.86 608.637 1057.86 610.062V611.202H1057.01C1055.72 611.202 1054.58 612.2 1054.58 613.625V632.152C1054.58 633.435 1055.58 634.575 1057.01 634.575H1085.51C1086.79 634.575 1087.93 633.577 1087.93 632.152V613.625C1087.93 612.342 1086.93 611.202 1085.51 611.202ZM1070.12 608.637C1070.26 608.352 1070.55 608.067 1070.83 608.067H1076.39C1076.67 608.067 1076.96 608.209 1077.1 608.494L1078.24 611.202H1068.98L1070.12 608.637ZM1060 610.062C1060 609.777 1060.14 609.634 1060.43 609.634H1061.99C1062.28 609.634 1062.42 609.777 1062.42 610.062V611.202H1060V610.062ZM1085.79 632.01C1085.79 632.152 1085.65 632.295 1085.51 632.295H1057.01C1056.86 632.295 1056.72 632.152 1056.72 632.01V613.482C1056.72 613.34 1056.86 613.197 1057.01 613.197H1085.51C1085.65 613.197 1085.79 613.34 1085.79 613.482V632.01Z" fill="#2D5967"/>
<path id="Vector_49" d="M1073.4 615.193C1069.12 615.193 1065.7 618.613 1065.7 622.889C1065.7 627.164 1069.12 630.585 1073.4 630.585C1077.67 630.585 1081.09 627.164 1081.09 622.889C1081.09 618.613 1077.67 615.193 1073.4 615.193ZM1073.4 628.304C1070.4 628.304 1067.84 625.881 1067.84 622.746C1067.84 619.753 1070.26 617.188 1073.4 617.188C1076.53 617.188 1078.95 619.611 1078.95 622.746C1078.95 625.881 1076.53 628.304 1073.4 628.304Z" fill="#2D5967"/>
<path id="Vector_50" d="M1082.94 617.188C1083.5 617.188 1083.94 616.741 1083.94 616.19C1083.94 615.639 1083.5 615.193 1082.94 615.193C1082.39 615.193 1081.95 615.639 1081.95 616.19C1081.95 616.741 1082.39 617.188 1082.94 617.188Z" fill="#2D5967"/>
<path id="Vector_51" d="M1063.56 615.193H1058.57V617.33H1063.56V615.193Z" fill="#2D5967"/>
<path id="Vector_52" d="M1073.4 623.601H1075.25C1075.82 623.601 1076.25 623.174 1076.25 622.604C1076.25 622.034 1075.82 621.606 1075.25 621.606H1074.39V620.039C1074.39 619.468 1073.97 619.041 1073.4 619.041C1072.83 619.041 1072.4 619.468 1072.4 620.039V622.746C1072.4 623.174 1072.83 623.601 1073.4 623.601Z" fill="#2D5967"/>
</g>
</g>
</g>
</g>
<g id="Icon Text Label_9">
<text id="IconLabel_13" fill="black" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" letter-spacing="0em"><tspan x="1039.62" y="653.816">ETCD</tspan></text>
<text id="IconLabel_14" fill="black" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" letter-spacing="0em"><tspan x="1029.02" y="669.816">Backups</tspan></text>
</g>
</g>
<g id="Snapshot">
<g id="OCI File Storage Snapshot_3">
<g id="OCI-File-Storage-Snapshot_3">
<g id="Group_41">
<g id="Group_42">
<path id="Vector_53" d="M479.848 635.145C478.138 635.145 476.713 633.72 476.713 632.01V579.848C476.713 578.138 478.138 576.713 479.848 576.713H532.152C533.862 576.713 535.287 578.138 535.287 579.848V632.152C535.287 633.862 533.862 635.287 532.152 635.287H479.848V635.145Z" fill="white"/>
<path id="Vector_54" d="M532.01 577.425C533.435 577.425 534.432 578.423 534.432 579.848V583.268V632.152C534.432 633.435 533.435 634.575 532.01 634.575H479.848C478.423 634.432 477.425 633.435 477.425 632.01V579.848C477.425 578.423 478.423 577.425 479.848 577.425H532.01ZM532.01 576H479.848C477.71 576 476 577.71 476 579.848V632.152C476 634.147 477.71 635.857 479.848 635.857H532.152C534.29 635.857 536 634.147 536 632.01V583.268V579.848C535.857 577.71 534.147 576 532.01 576Z" fill="white"/>
</g>
<g id="Group_43">
<path id="Vector_55" d="M479.848 632.295C479.705 632.295 479.563 632.152 479.563 632.01V585.407H532.294V607.782V609.35V609.635C533.149 609.635 533.862 609.92 534.432 610.49V583.269H477.425V632.152C477.425 633.435 478.423 634.433 479.848 634.433H500.37C499.943 633.863 499.658 633.15 499.515 632.295H479.848Z" fill="#2D5967"/>
<path id="Vector_56" d="M534.432 579.848C534.432 578.423 533.435 577.425 532.009 577.425H479.848C478.423 577.425 477.425 578.423 477.425 579.848V581.701H534.432V579.848Z" fill="#2D5967"/>
<path id="Vector_57" d="M525.168 596.381H501.083L498.803 593.53C498.375 592.96 497.805 592.675 497.092 592.675H486.404C485.263 592.675 484.266 593.673 484.266 594.813V625.169H499.515V623.031H486.404V602.224H497.663C498.375 602.224 498.945 601.939 499.373 601.369L501.653 598.518H525.168V604.932C525.881 605.359 526.594 606.072 527.021 607.069L527.306 607.782V598.518C527.306 597.378 526.309 596.381 525.168 596.381ZM497.663 600.086H486.404V594.813H497.092L499.373 597.806L497.663 600.086Z" fill="#2D5967"/>
<path id="Vector_58" d="M496.38 596.38H488.256V598.518H496.38V596.38Z" fill="#2D5967"/>
<path id="Vector_59" d="M532.01 611.202H530.727V609.349H528.589V611.202H527.021L525.454 607.639C525.026 606.499 523.886 605.929 522.746 605.929H522.603H517.33C516.048 605.929 515.05 606.642 514.622 607.924L513.482 611.202H511.059V610.062C511.059 608.637 509.919 607.497 508.494 607.497H506.926C505.501 607.497 504.361 608.637 504.361 610.062V611.202H503.506C502.223 611.202 501.083 612.2 501.083 613.625V632.152C501.083 633.435 502.081 634.575 503.506 634.575H532.01C533.292 634.575 534.432 633.577 534.432 632.152V613.625C534.432 612.342 533.435 611.202 532.01 611.202ZM516.618 608.637C516.76 608.352 517.045 608.067 517.33 608.067H522.888C523.173 608.067 523.458 608.209 523.601 608.494L524.741 611.202H515.477L516.618 608.637ZM506.499 610.062C506.499 609.777 506.641 609.634 506.926 609.634H508.494C508.779 609.634 508.922 609.777 508.922 610.062V611.202H506.499V610.062ZM532.295 632.01C532.295 632.152 532.152 632.295 532.01 632.295H503.506C503.363 632.295 503.221 632.152 503.221 632.01V613.482C503.221 613.34 503.363 613.197 503.506 613.197H532.01C532.152 613.197 532.295 613.34 532.295 613.482V632.01Z" fill="#2D5967"/>
<path id="Vector_60" d="M519.895 615.193C515.62 615.193 512.199 618.613 512.199 622.889C512.199 627.164 515.62 630.585 519.895 630.585C524.171 630.585 527.591 627.164 527.591 622.889C527.591 618.613 524.171 615.193 519.895 615.193ZM519.895 628.304C516.902 628.304 514.337 625.881 514.337 622.746C514.337 619.753 516.76 617.188 519.895 617.188C523.031 617.188 525.453 619.611 525.453 622.746C525.453 625.881 523.031 628.304 519.895 628.304Z" fill="#2D5967"/>
<path id="Vector_61" d="M529.444 617.188C529.995 617.188 530.442 616.741 530.442 616.19C530.442 615.639 529.995 615.193 529.444 615.193C528.893 615.193 528.446 615.639 528.446 616.19C528.446 616.741 528.893 617.188 529.444 617.188Z" fill="#2D5967"/>
<path id="Vector_62" d="M510.061 615.193H505.073V617.33H510.061V615.193Z" fill="#2D5967"/>
<path id="Vector_63" d="M519.895 623.601H521.748C522.318 623.601 522.746 623.174 522.746 622.604C522.746 622.034 522.318 621.606 521.748 621.606H520.893V620.039C520.893 619.468 520.466 619.041 519.895 619.041C519.325 619.041 518.898 619.468 518.898 620.039V622.746C518.898 623.174 519.325 623.601 519.895 623.601Z" fill="#2D5967"/>
</g>
</g>
</g>
</g>
<g id="Icon Text Label_10">
<text id="IconLabel_15" fill="black" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" letter-spacing="0em"><tspan x="484.734" y="653.816">YAML</tspan></text>
<text id="IconLabel_16" fill="black" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" letter-spacing="0em"><tspan x="468.109" y="669.816">Snapshots</tspan></text>
</g>
</g>
<g id="Snapshot_2">
<g id="OCI File Storage Snapshot_4">
<g id="OCI-File-Storage-Snapshot_4">
<g id="Group_44">
<g id="Group_45">
<path id="Vector_64" d="M1192.85 635.145C1191.14 635.145 1189.71 633.72 1189.71 632.01V579.848C1189.71 578.138 1191.14 576.713 1192.85 576.713H1245.15C1246.86 576.713 1248.29 578.138 1248.29 579.848V632.152C1248.29 633.862 1246.86 635.287 1245.15 635.287H1192.85V635.145Z" fill="white"/>
<path id="Vector_65" d="M1245.01 577.425C1246.43 577.425 1247.43 578.423 1247.43 579.848V583.268V632.152C1247.43 633.435 1246.43 634.575 1245.01 634.575H1192.85C1191.42 634.432 1190.43 633.435 1190.43 632.01V579.848C1190.43 578.423 1191.42 577.425 1192.85 577.425H1245.01ZM1245.01 576H1192.85C1190.71 576 1189 577.71 1189 579.848V632.152C1189 634.147 1190.71 635.857 1192.85 635.857H1245.15C1247.29 635.857 1249 634.147 1249 632.01V583.268V579.848C1248.86 577.71 1247.15 576 1245.01 576Z" fill="white"/>
</g>
<g id="Group_46">
<path id="Vector_66" d="M1192.85 632.295C1192.71 632.295 1192.56 632.152 1192.56 632.01V585.407H1245.29V607.782V609.35V609.635C1246.15 609.635 1246.86 609.92 1247.43 610.49V583.269H1190.42V632.152C1190.42 633.435 1191.42 634.433 1192.85 634.433H1213.37C1212.94 633.863 1212.66 633.15 1212.52 632.295H1192.85Z" fill="#2D5967"/>
<path id="Vector_67" d="M1247.43 579.848C1247.43 578.423 1246.43 577.425 1245.01 577.425H1192.85C1191.42 577.425 1190.43 578.423 1190.43 579.848V581.701H1247.43V579.848Z" fill="#2D5967"/>
<path id="Vector_68" d="M1238.17 596.381H1214.08L1211.8 593.53C1211.38 592.96 1210.81 592.675 1210.09 592.675H1199.4C1198.26 592.675 1197.27 593.673 1197.27 594.813V625.169H1212.52V623.031H1199.4V602.224H1210.66C1211.38 602.224 1211.95 601.939 1212.37 601.369L1214.65 598.518H1238.17V604.932C1238.88 605.359 1239.59 606.072 1240.02 607.069L1240.31 607.782V598.518C1240.31 597.378 1239.31 596.381 1238.17 596.381ZM1210.66 600.086H1199.4V594.813H1210.09L1212.37 597.806L1210.66 600.086Z" fill="#2D5967"/>
<path id="Vector_69" d="M1209.38 596.38H1201.26V598.518H1209.38V596.38Z" fill="#2D5967"/>
<path id="Vector_70" d="M1245.01 611.202H1243.73V609.349H1241.59V611.202H1240.02L1238.45 607.639C1238.03 606.499 1236.89 605.929 1235.75 605.929H1235.6H1230.33C1229.05 605.929 1228.05 606.642 1227.62 607.924L1226.48 611.202H1224.06V610.062C1224.06 608.637 1222.92 607.497 1221.49 607.497H1219.93C1218.5 607.497 1217.36 608.637 1217.36 610.062V611.202H1216.51C1215.22 611.202 1214.08 612.2 1214.08 613.625V632.152C1214.08 633.435 1215.08 634.575 1216.51 634.575H1245.01C1246.29 634.575 1247.43 633.577 1247.43 632.152V613.625C1247.43 612.342 1246.43 611.202 1245.01 611.202ZM1229.62 608.637C1229.76 608.352 1230.05 608.067 1230.33 608.067H1235.89C1236.17 608.067 1236.46 608.209 1236.6 608.494L1237.74 611.202H1228.48L1229.62 608.637ZM1219.5 610.062C1219.5 609.777 1219.64 609.634 1219.93 609.634H1221.49C1221.78 609.634 1221.92 609.777 1221.92 610.062V611.202H1219.5V610.062ZM1245.29 632.01C1245.29 632.152 1245.15 632.295 1245.01 632.295H1216.51C1216.36 632.295 1216.22 632.152 1216.22 632.01V613.482C1216.22 613.34 1216.36 613.197 1216.51 613.197H1245.01C1245.15 613.197 1245.29 613.34 1245.29 613.482V632.01Z" fill="#2D5967"/>
<path id="Vector_71" d="M1232.9 615.193C1228.62 615.193 1225.2 618.613 1225.2 622.889C1225.2 627.164 1228.62 630.585 1232.9 630.585C1237.17 630.585 1240.59 627.164 1240.59 622.889C1240.59 618.613 1237.17 615.193 1232.9 615.193ZM1232.9 628.304C1229.9 628.304 1227.34 625.881 1227.34 622.746C1227.34 619.753 1229.76 617.188 1232.9 617.188C1236.03 617.188 1238.45 619.611 1238.45 622.746C1238.45 625.881 1236.03 628.304 1232.9 628.304Z" fill="#2D5967"/>
<path id="Vector_72" d="M1242.44 617.188C1243 617.188 1243.44 616.741 1243.44 616.19C1243.44 615.639 1243 615.193 1242.44 615.193C1241.89 615.193 1241.45 615.639 1241.45 616.19C1241.45 616.741 1241.89 617.188 1242.44 617.188Z" fill="#2D5967"/>
<path id="Vector_73" d="M1223.06 615.193H1218.07V617.33H1223.06V615.193Z" fill="#2D5967"/>
<path id="Vector_74" d="M1232.9 623.601H1234.75C1235.32 623.601 1235.75 623.174 1235.75 622.604C1235.75 622.034 1235.32 621.606 1234.75 621.606H1233.89V620.039C1233.89 619.468 1233.47 619.041 1232.9 619.041C1232.33 619.041 1231.9 619.468 1231.9 620.039V622.746C1231.9 623.174 1232.33 623.601 1232.9 623.601Z" fill="#2D5967"/>
</g>
</g>
</g>
</g>
<g id="Icon Text Label_11">
<text id="IconLabel_17" fill="black" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" letter-spacing="0em"><tspan x="1197.73" y="653.816">YAML</tspan></text>
<text id="IconLabel_18" fill="black" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" letter-spacing="0em"><tspan x="1181.11" y="669.816">Snapshots</tspan></text>
</g>
</g>
<g id="RAC-Database">
<g id="RAC-Database_2">
<g id="Group 429">
<path id="Vector_75" d="M192.871 635.442C189.695 635.442 179.339 635.118 179.339 630.966V619.597H178.31H177.114C176.823 619.597 176.375 619.597 175.783 619.597C174.051 619.567 172.322 619.44 170.605 619.216L170.012 619.127L168.894 618.914L168.323 618.78C165.147 618.019 163.559 616.81 163.559 615.176V594.138C163.559 593.019 164.331 592.023 165.852 591.296C169.307 589.64 175.816 589.561 177.091 589.561C178.366 589.561 184.92 589.64 188.275 591.296C189.796 592.023 190.567 592.974 190.567 594.138V605.407C191.686 605.351 192.558 605.351 192.804 605.351C193.05 605.351 194.046 605.351 195.32 605.418V594.138C195.32 593.019 196.092 592.023 197.613 591.296C201.136 589.64 207.645 589.561 208.909 589.561C210.172 589.561 216.681 589.64 220.148 591.296C221.669 592.023 222.385 592.974 222.385 594.138V615.176C222.385 616.81 220.797 618.019 217.665 618.768L217.095 618.903L215.977 619.115L215.384 619.205C213.671 619.444 211.946 619.586 210.217 619.63C209.58 619.63 209.099 619.63 208.897 619.63H207.432H206.392V630.966C206.392 635.118 196.036 635.442 192.871 635.442Z" fill="white"/>
<path id="Vector_76" d="M208.909 590.12C209.893 590.12 216.525 590.188 219.902 591.799C221.088 592.358 221.882 593.119 221.882 594.138V615.176C221.882 616.72 219.958 617.66 217.587 618.231L217.039 618.354L215.921 618.567L215.339 618.656C213.645 618.89 211.938 619.028 210.228 619.07C209.602 619.07 209.11 619.07 208.931 619.07H207.444L205.833 618.992V630.966C205.833 634.77 194.191 634.882 192.871 634.882C191.552 634.882 179.898 634.77 179.898 630.966V619.003L178.288 619.07H177.091C176.879 619.07 176.42 619.07 175.794 619.07C174.084 619.028 172.378 618.89 170.683 618.656L170.102 618.567L168.983 618.354L168.435 618.231C166.042 617.66 164.118 616.72 164.118 615.176V594.138C164.118 593.119 164.912 592.358 166.098 591.799C169.453 590.188 176.163 590.12 177.091 590.12C178.02 590.12 184.696 590.188 188.085 591.799C189.27 592.358 190.053 593.119 190.053 594.138V606C191.44 605.921 192.514 605.91 192.871 605.91C193.229 605.91 194.426 605.91 195.947 606.011V594.138C195.947 593.119 196.73 592.358 197.915 591.799C201.27 590.188 207.98 590.12 208.909 590.12ZM208.909 589.001C207.623 589.001 201.024 589.091 197.434 590.792C195.276 591.821 194.829 593.175 194.829 594.149V604.847C193.844 604.847 193.117 604.847 192.871 604.847C192.625 604.847 192.033 604.847 191.171 604.847V594.138C191.171 593.175 190.724 591.821 188.566 590.781C184.998 589.091 178.377 589.001 177.091 589.001C175.805 589.001 169.173 589.091 165.617 590.792C163.459 591.821 163 593.175 163 594.138V615.176C163 617.101 164.733 618.533 168.156 619.316L168.737 619.451C169.129 619.529 169.52 619.607 169.923 619.663L170.527 619.764C172.262 620.002 174.009 620.144 175.76 620.189C176.409 620.189 176.879 620.189 177.091 620.189H178.78V630.966C178.78 635.509 188.633 636.001 192.871 636.001C197.11 636.001 206.952 635.509 206.952 630.966V620.167H207.399H208.909C209.121 620.167 209.591 620.167 210.24 620.167C211.991 620.121 213.738 619.979 215.473 619.742L216.077 619.641C216.48 619.641 216.871 619.507 217.263 619.428L217.844 619.294C221.267 618.477 223 617.056 223 615.153V594.138C223 593.175 222.541 591.821 220.383 590.781C216.827 589.091 210.206 589.001 208.909 589.001Z" fill="white"/>
<path id="Vector_77" d="M178.288 616.977H177.091C170.828 616.977 166.813 615.768 166.254 615.074V610.464C169.688 611.963 176.118 612.03 177.091 612.03H178.288V609.871H177.091C170.828 609.882 166.813 608.707 166.254 608.024V603.447C169.688 604.947 176.118 605.014 177.091 605.014C178.064 605.014 184.495 604.947 187.917 603.447V604.566C188.677 604.488 189.404 604.432 190.053 604.387V594.137C190.053 590.231 178.411 590.12 177.091 590.12C175.771 590.12 164.118 590.231 164.118 594.137V615.175C164.118 618.98 175.76 619.092 177.091 619.092C177.281 619.092 177.706 619.092 178.288 619.092V616.977ZM166.254 600.985V596.509C169.71 598.087 176.118 598.143 177.091 598.143C178.064 598.143 184.495 598.087 187.917 596.543V601.019C187.358 601.724 183.443 602.899 177.091 602.899C170.739 602.899 166.813 601.69 166.254 600.985ZM187.85 594.137C187.123 594.864 183.231 596.006 177.091 596.006C170.951 596.006 167.026 594.887 166.321 594.137C167.059 593.41 170.94 592.257 177.091 592.257C183.242 592.257 187.123 593.41 187.85 594.137Z" fill="#2D5967"/>
<path id="Vector_78" d="M208.909 590.12C207.589 590.12 195.947 590.231 195.947 594.137V604.41C196.607 604.41 197.334 604.51 198.083 604.589V603.47C201.505 604.969 207.947 605.036 208.909 605.036C209.87 605.036 216.312 604.969 219.745 603.47V608.024C219.175 608.718 215.216 609.893 208.909 609.893C208.405 609.893 207.913 609.893 207.444 609.893V612.03H208.909C209.882 612.03 216.312 611.963 219.745 610.464V615.074C219.186 615.768 215.216 616.954 208.909 616.954H207.444V619.092C208.159 619.092 208.685 619.092 208.909 619.092C210.239 619.092 221.882 618.98 221.882 615.175V594.137C221.882 590.231 210.239 590.12 208.909 590.12ZM219.678 594.137C218.94 594.864 215.048 596.006 208.909 596.006C202.769 596.006 198.843 594.887 198.15 594.137C198.877 593.41 202.769 592.257 208.909 592.257C215.048 592.257 218.918 593.41 219.678 594.137ZM198.083 600.985V596.509C201.505 598.054 207.947 598.11 208.909 598.11C209.87 598.11 216.312 598.054 219.745 596.509V600.985C219.175 601.69 215.216 602.865 208.909 602.865C202.601 602.865 198.642 601.69 198.083 600.985Z" fill="#2D5967"/>
<path id="Vector_79" d="M205.833 616.877V609.917C205.833 606.022 194.191 605.911 192.872 605.911C191.552 605.911 179.899 606.022 179.899 609.917V630.966C179.899 634.771 191.541 634.883 192.872 634.883C194.202 634.883 205.833 634.771 205.833 630.966V616.877ZM192.872 632.745C186.553 632.745 182.594 631.559 182.035 630.865V626.255C185.468 627.754 191.899 627.821 192.872 627.821C193.845 627.821 200.264 627.754 203.697 626.255V630.865C203.138 631.526 199.179 632.745 192.872 632.745ZM182.012 612.334C185.446 613.878 191.876 613.934 192.849 613.934C193.822 613.934 200.242 613.878 203.675 612.334V616.81C203.116 617.515 199.202 618.69 192.849 618.69C186.497 618.69 182.594 617.481 182.012 616.776V612.334ZM192.872 608.026C199.011 608.026 202.937 609.145 203.63 609.894C202.892 610.622 199.011 611.774 192.872 611.774C186.732 611.774 182.806 610.655 182.102 609.894C182.84 609.145 186.721 608.026 192.872 608.026ZM192.872 620.771C193.833 620.771 200.264 620.716 203.697 619.216V623.771C203.138 624.476 199.224 625.651 192.872 625.651C186.519 625.651 182.594 624.498 182.012 623.793V619.216C185.468 620.738 191.899 620.794 192.872 620.794V620.771Z" fill="#2D5967"/>
</g>
</g>
<g id="Icon Text Label_12">
<text id="IconLabel_19" fill="black" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" letter-spacing="0em"><tspan x="177.633" y="653.816">RAC</tspan></text>
<text id="IconLabel_20" fill="black" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" letter-spacing="0em"><tspan x="159.242" y="669.816">Database</tspan></text>
</g>
</g>
<g id="RAC-Database_3">
<g id="RAC-Database_4">
<g id="Group 429_2">
<path id="Vector_80" d="M905.871 635.442C902.695 635.442 892.339 635.118 892.339 630.966V619.597H891.31H890.114C889.823 619.597 889.375 619.597 888.783 619.597C887.051 619.567 885.322 619.44 883.605 619.216L883.012 619.127L881.894 618.914L881.323 618.78C878.147 618.019 876.559 616.81 876.559 615.176V594.138C876.559 593.019 877.331 592.023 878.852 591.296C882.307 589.64 888.816 589.561 890.091 589.561C891.366 589.561 897.92 589.64 901.275 591.296C902.796 592.023 903.567 592.974 903.567 594.138V605.407C904.686 605.351 905.558 605.351 905.804 605.351C906.05 605.351 907.046 605.351 908.32 605.418V594.138C908.32 593.019 909.092 592.023 910.613 591.296C914.136 589.64 920.645 589.561 921.909 589.561C923.172 589.561 929.681 589.64 933.148 591.296C934.669 592.023 935.385 592.974 935.385 594.138V615.176C935.385 616.81 933.797 618.019 930.665 618.768L930.095 618.903L928.977 619.115L928.384 619.205C926.671 619.444 924.946 619.586 923.217 619.63C922.58 619.63 922.099 619.63 921.897 619.63H920.432H919.392V630.966C919.392 635.118 909.036 635.442 905.871 635.442Z" fill="white"/>
<path id="Vector_81" d="M921.909 590.12C922.893 590.12 929.525 590.188 932.902 591.799C934.088 592.358 934.882 593.119 934.882 594.138V615.176C934.882 616.72 932.958 617.66 930.587 618.231L930.039 618.354L928.921 618.567L928.339 618.656C926.645 618.89 924.938 619.028 923.228 619.07C922.602 619.07 922.11 619.07 921.931 619.07H920.444L918.833 618.992V630.966C918.833 634.77 907.191 634.882 905.871 634.882C904.552 634.882 892.898 634.77 892.898 630.966V619.003L891.288 619.07H890.091C889.879 619.07 889.42 619.07 888.794 619.07C887.084 619.028 885.378 618.89 883.683 618.656L883.102 618.567L881.983 618.354L881.435 618.231C879.042 617.66 877.118 616.72 877.118 615.176V594.138C877.118 593.119 877.912 592.358 879.098 591.799C882.453 590.188 889.163 590.12 890.091 590.12C891.02 590.12 897.696 590.188 901.085 591.799C902.27 592.358 903.053 593.119 903.053 594.138V606C904.44 605.921 905.514 605.91 905.871 605.91C906.229 605.91 907.426 605.91 908.947 606.011V594.138C908.947 593.119 909.73 592.358 910.915 591.799C914.27 590.188 920.98 590.12 921.909 590.12ZM921.909 589.001C920.623 589.001 914.024 589.091 910.434 590.792C908.276 591.821 907.829 593.175 907.829 594.149V604.847C906.844 604.847 906.117 604.847 905.871 604.847C905.625 604.847 905.033 604.847 904.171 604.847V594.138C904.171 593.175 903.724 591.821 901.566 590.781C897.998 589.091 891.377 589.001 890.091 589.001C888.805 589.001 882.173 589.091 878.617 590.792C876.459 591.821 876 593.175 876 594.138V615.176C876 617.101 877.733 618.533 881.156 619.316L881.737 619.451C882.129 619.529 882.52 619.607 882.923 619.663L883.527 619.764C885.262 620.002 887.009 620.144 888.76 620.189C889.409 620.189 889.879 620.189 890.091 620.189H891.78V630.966C891.78 635.509 901.633 636.001 905.871 636.001C910.11 636.001 919.952 635.509 919.952 630.966V620.167H920.399H921.909C922.121 620.167 922.591 620.167 923.24 620.167C924.991 620.121 926.738 619.979 928.473 619.742L929.077 619.641C929.48 619.641 929.871 619.507 930.263 619.428L930.844 619.294C934.267 618.477 936 617.056 936 615.153V594.138C936 593.175 935.541 591.821 933.383 590.781C929.827 589.091 923.206 589.001 921.909 589.001Z" fill="white"/>
<path id="Vector_82" d="M891.288 616.977H890.091C883.828 616.977 879.813 615.768 879.254 615.074V610.464C882.688 611.963 889.118 612.03 890.091 612.03H891.288V609.871H890.091C883.828 609.882 879.813 608.707 879.254 608.024V603.447C882.688 604.947 889.118 605.014 890.091 605.014C891.064 605.014 897.495 604.947 900.917 603.447V604.566C901.677 604.488 902.404 604.432 903.053 604.387V594.137C903.053 590.231 891.411 590.12 890.091 590.12C888.771 590.12 877.118 590.231 877.118 594.137V615.175C877.118 618.98 888.76 619.092 890.091 619.092C890.281 619.092 890.706 619.092 891.288 619.092V616.977ZM879.254 600.985V596.509C882.71 598.087 889.118 598.143 890.091 598.143C891.064 598.143 897.495 598.087 900.917 596.543V601.019C900.358 601.724 896.443 602.899 890.091 602.899C883.739 602.899 879.813 601.69 879.254 600.985ZM900.85 594.137C900.123 594.864 896.231 596.006 890.091 596.006C883.951 596.006 880.026 594.887 879.321 594.137C880.059 593.41 883.94 592.257 890.091 592.257C896.242 592.257 900.123 593.41 900.85 594.137Z" fill="#2D5967"/>
<path id="Vector_83" d="M921.909 590.12C920.589 590.12 908.947 590.231 908.947 594.137V604.41C909.607 604.41 910.334 604.51 911.083 604.589V603.47C914.505 604.969 920.947 605.036 921.909 605.036C922.87 605.036 929.312 604.969 932.745 603.47V608.024C932.175 608.718 928.216 609.893 921.909 609.893C921.405 609.893 920.913 609.893 920.444 609.893V612.03H921.909C922.882 612.03 929.312 611.963 932.745 610.464V615.074C932.186 615.768 928.216 616.954 921.909 616.954H920.444V619.092C921.159 619.092 921.685 619.092 921.909 619.092C923.239 619.092 934.882 618.98 934.882 615.175V594.137C934.882 590.231 923.239 590.12 921.909 590.12ZM932.678 594.137C931.94 594.864 928.048 596.006 921.909 596.006C915.769 596.006 911.843 594.887 911.15 594.137C911.877 593.41 915.769 592.257 921.909 592.257C928.048 592.257 931.918 593.41 932.678 594.137ZM911.083 600.985V596.509C914.505 598.054 920.947 598.11 921.909 598.11C922.87 598.11 929.312 598.054 932.745 596.509V600.985C932.175 601.69 928.216 602.865 921.909 602.865C915.601 602.865 911.642 601.69 911.083 600.985Z" fill="#2D5967"/>
<path id="Vector_84" d="M918.833 616.877V609.917C918.833 606.022 907.191 605.911 905.872 605.911C904.552 605.911 892.899 606.022 892.899 609.917V630.966C892.899 634.771 904.541 634.883 905.872 634.883C907.202 634.883 918.833 634.771 918.833 630.966V616.877ZM905.872 632.745C899.553 632.745 895.594 631.559 895.035 630.865V626.255C898.468 627.754 904.899 627.821 905.872 627.821C906.845 627.821 913.264 627.754 916.697 626.255V630.865C916.138 631.526 912.179 632.745 905.872 632.745ZM895.012 612.334C898.446 613.878 904.876 613.934 905.849 613.934C906.822 613.934 913.242 613.878 916.675 612.334V616.81C916.116 617.515 912.201 618.69 905.849 618.69C899.497 618.69 895.594 617.481 895.012 616.776V612.334ZM905.872 608.026C912.011 608.026 915.937 609.145 916.63 609.894C915.892 610.622 912.011 611.774 905.872 611.774C899.732 611.774 895.806 610.655 895.102 609.894C895.84 609.145 899.721 608.026 905.872 608.026ZM905.872 620.771C906.833 620.771 913.264 620.716 916.697 619.216V623.771C916.138 624.476 912.224 625.651 905.872 625.651C899.519 625.651 895.594 624.498 895.012 623.793V619.216C898.468 620.738 904.899 620.794 905.872 620.794V620.771Z" fill="#2D5967"/>
</g>
</g>
<g id="Icon Text Label_13">
<text id="IconLabel_21" fill="black" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" letter-spacing="0em"><tspan x="890.633" y="653.816">RAC</tspan></text>
<text id="IconLabel_22" fill="black" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" letter-spacing="0em"><tspan x="872.242" y="669.816">Database</tspan></text>
</g>
</g>
<g id="Container Registry_2">
<g id="OCI-Container-Registry_2">
<g id="Group_47">
<g id="Group_48">
<path id="Vector_85" d="M30.3571 635.286C28.6428 635.286 27.2142 633.857 27.2142 632.143V579.857C27.2142 578.143 28.6428 576.714 30.3571 576.714H82.7857C84.4999 576.714 85.9285 578.143 85.9285 579.857V632.286C85.9285 634 84.4999 635.428 82.7857 635.428L30.3571 635.286Z" fill="white"/>
<path id="Vector_86" d="M82.6429 577.429C83.9286 577.429 85.0714 578.571 85.0714 579.857V632.286C85.0714 633.571 83.9286 634.714 82.6429 634.714H30.3571C29.0714 634.571 27.9286 633.429 27.9286 632.143V579.857C27.9286 578.571 29.0714 577.429 30.3571 577.429H82.6429ZM82.6429 576H30.3571C28.2143 576 26.5 577.714 26.5 579.857V632.286C26.5 634.286 28.2143 636 30.3571 636H82.7857C84.9286 636 86.6429 634.286 86.6429 632.143V579.857C86.5 577.714 84.7857 576 82.6429 576Z" fill="white"/>
</g>
<g id="Group_49">
<path id="Vector_87" d="M82.6429 634.571H30.3572C29.0714 634.571 27.9286 633.429 27.9286 632.143V579.857C27.9286 578.571 29.0714 577.429 30.3572 577.429H82.7857C83.9286 577.429 85.0714 578.571 85.0714 579.857V632.286C85.0714 633.429 83.9286 634.571 82.6429 634.571ZM30.3572 579.571C30.2143 579.571 30.0714 579.714 30.0714 579.857V632.286C30.0714 632.429 30.2143 632.571 30.3572 632.571H82.7857C82.9286 632.571 83.0714 632.429 83.0714 632.286V579.857C83.0714 579.714 82.9286 579.571 82.7857 579.571H30.3572Z" fill="#2D5967"/>
</g>
<g id="Group_50">
<g id="Group_51">
<g id="Group_52">
<path id="Vector_88" d="M55.6429 605.143H42.9286V592.429H55.6429V605.143ZM44.9286 603.143H53.3572V594.571H44.9286V603.143Z" fill="#2D5967"/>
</g>
</g>
<g id="Group_53">
<g id="Group_54">
<path id="Vector_89" d="M69.9285 605.143H57.2142V592.429H69.9285C69.7857 592.571 69.7857 605.143 69.9285 605.143ZM59.2142 603.143H67.6428V594.571H59.2142V603.143Z" fill="#2D5967"/>
</g>
</g>
<g id="Group_55">
<g id="Group_56">
<path id="Vector_90" d="M62.7858 619.429H50.0715V606.714H62.7858V619.429ZM52.2143 617.429H60.7858V608.857H52.2143V617.429Z" fill="#2D5967"/>
</g>
</g>
<g id="Group_57">
<g id="Group_58">
<path id="Vector_91" d="M77.0715 619.429H64.3572V606.714H77.0715V619.429ZM66.5 617.429H75.0715V608.857H66.5V617.429Z" fill="#2D5967"/>
</g>
</g>
<g id="Group_59">
<g id="Group_60">
<path id="Vector_92" d="M48.5 619.429H35.9286V606.714H48.6429L48.5 619.429ZM37.9286 617.429H46.5V608.857H37.9286V617.429Z" fill="#2D5967"/>
</g>
</g>
</g>
</g>
</g>
<g id="Icon Text Label_14">
<text id="IconLabel_23" fill="black" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" letter-spacing="0em"><tspan x="21.0156" y="653.816">Container</tspan></text>
<text id="IconLabel_24" fill="black" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" letter-spacing="0em"><tspan x="26.8438" y="669.816">Registry</tspan></text>
</g>
</g>
<g id="Container Registry_3">
<g id="OCI-Container-Registry_3">
<g id="Group_61">
<g id="Group_62">
<path id="Vector_93" d="M743.357 635.286C741.643 635.286 740.214 633.857 740.214 632.143V579.857C740.214 578.143 741.643 576.714 743.357 576.714H795.786C797.5 576.714 798.929 578.143 798.929 579.857V632.286C798.929 634 797.5 635.428 795.786 635.428L743.357 635.286Z" fill="white"/>
<path id="Vector_94" d="M795.643 577.429C796.929 577.429 798.071 578.571 798.071 579.857V632.286C798.071 633.571 796.929 634.714 795.643 634.714H743.357C742.071 634.571 740.929 633.429 740.929 632.143V579.857C740.929 578.571 742.071 577.429 743.357 577.429H795.643ZM795.643 576H743.357C741.214 576 739.5 577.714 739.5 579.857V632.286C739.5 634.286 741.214 636 743.357 636H795.786C797.929 636 799.643 634.286 799.643 632.143V579.857C799.5 577.714 797.786 576 795.643 576Z" fill="white"/>
</g>
<g id="Group_63">
<path id="Vector_95" d="M795.643 634.571H743.357C742.071 634.571 740.929 633.429 740.929 632.143V579.857C740.929 578.571 742.071 577.429 743.357 577.429H795.786C796.929 577.429 798.071 578.571 798.071 579.857V632.286C798.071 633.429 796.929 634.571 795.643 634.571ZM743.357 579.571C743.214 579.571 743.071 579.714 743.071 579.857V632.286C743.071 632.429 743.214 632.571 743.357 632.571H795.786C795.929 632.571 796.071 632.429 796.071 632.286V579.857C796.071 579.714 795.929 579.571 795.786 579.571H743.357Z" fill="#2D5967"/>
</g>
<g id="Group_64">
<g id="Group_65">
<g id="Group_66">
<path id="Vector_96" d="M768.643 605.143H755.929V592.429H768.643V605.143ZM757.929 603.143H766.357V594.571H757.929V603.143Z" fill="#2D5967"/>
</g>
</g>
<g id="Group_67">
<g id="Group_68">
<path id="Vector_97" d="M782.929 605.143H770.214V592.429H782.929C782.786 592.571 782.786 605.143 782.929 605.143ZM772.214 603.143H780.643V594.571H772.214V603.143Z" fill="#2D5967"/>
</g>
</g>
<g id="Group_69">
<g id="Group_70">
<path id="Vector_98" d="M775.786 619.429H763.072V606.714H775.786V619.429ZM765.214 617.429H773.786V608.857H765.214V617.429Z" fill="#2D5967"/>
</g>
</g>
<g id="Group_71">
<g id="Group_72">
<path id="Vector_99" d="M790.071 619.429H777.357V606.714H790.071V619.429ZM779.5 617.429H788.071V608.857H779.5V617.429Z" fill="#2D5967"/>
</g>
</g>
<g id="Group_73">
<g id="Group_74">
<path id="Vector_100" d="M761.5 619.429H748.929V606.714H761.643L761.5 619.429ZM750.929 617.429H759.5V608.857H750.929V617.429Z" fill="#2D5967"/>
</g>
</g>
</g>
</g>
</g>
<g id="Icon Text Label_15">
<text id="IconLabel_25" fill="black" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" letter-spacing="0em"><tspan x="734.016" y="653.816">Container</tspan></text>
<text id="IconLabel_26" fill="black" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" letter-spacing="0em"><tspan x="739.844" y="669.816">Registry</tspan></text>
</g>
</g>
<g id="Endpoint">
<g id="Load-Balancer">
<g id="Group 366">
<path id="Vector_101" d="M476.178 357.323V355.002L478.619 353.781V301.68H532.381V353.781L534.822 355.002V357.323H476.178Z" fill="white"/>
<path id="Vector_102" d="M531.703 302.358V354.201L534.144 355.423V356.644H476.856V355.423L479.297 354.201V302.358H531.703ZM533.059 301.001H477.941V353.36L476.246 354.215L475.5 354.581V358.001H535.5V354.581L534.754 354.215L533.059 353.36V301.001Z" fill="white"/>
<path id="Vector_103" d="M531.703 354.2V302.357H479.297V354.2L476.856 355.421V356.643H534.144V355.421L531.703 354.2ZM529.276 304.8V338.348H481.737V304.8H529.276ZM481.737 354.2V340.778H529.276V354.2H481.737Z" fill="#2D5967"/>
<path id="Vector_104" d="M484.178 350.239L487.215 352.37L490.266 350.239V346.887H484.178V350.239Z" fill="#2D5967"/>
<path id="Vector_105" d="M487.215 345.054C487.456 345.054 487.692 344.982 487.893 344.848C488.094 344.714 488.25 344.523 488.343 344.3C488.435 344.077 488.459 343.831 488.412 343.594C488.365 343.357 488.249 343.14 488.078 342.969C487.907 342.798 487.69 342.682 487.453 342.634C487.216 342.587 486.971 342.611 486.748 342.704C486.525 342.796 486.335 342.953 486.2 343.154C486.066 343.355 485.995 343.591 485.995 343.832C485.995 344.156 486.123 344.467 486.352 344.696C486.581 344.925 486.891 345.054 487.215 345.054Z" fill="#2D5967"/>
<path id="Vector_106" d="M496.368 350.239L499.405 352.37L502.456 350.239V346.887H496.368V350.239Z" fill="#2D5967"/>
<path id="Vector_107" d="M499.405 345.054C499.646 345.054 499.882 344.982 500.083 344.848C500.284 344.714 500.44 344.523 500.532 344.3C500.625 344.077 500.649 343.831 500.602 343.594C500.555 343.357 500.439 343.14 500.268 342.969C500.097 342.798 499.88 342.682 499.643 342.634C499.406 342.587 499.161 342.611 498.938 342.704C498.715 342.796 498.524 342.953 498.39 343.154C498.256 343.355 498.185 343.591 498.185 343.832C498.185 344.156 498.313 344.467 498.542 344.696C498.771 344.925 499.081 345.054 499.405 345.054Z" fill="#2D5967"/>
<path id="Vector_108" d="M508.544 350.239L511.595 352.37L514.646 350.239V346.887H508.544V350.239Z" fill="#2D5967"/>
<path id="Vector_109" d="M511.595 345.054C511.836 345.054 512.072 344.982 512.273 344.848C512.474 344.714 512.63 344.523 512.722 344.3C512.815 344.077 512.839 343.831 512.792 343.594C512.745 343.357 512.629 343.14 512.458 342.969C512.287 342.798 512.07 342.682 511.833 342.634C511.596 342.587 511.351 342.611 511.128 342.704C510.905 342.796 510.714 342.953 510.58 343.154C510.446 343.355 510.375 343.591 510.375 343.832C510.375 344.156 510.503 344.467 510.732 344.696C510.961 344.925 511.271 345.054 511.595 345.054Z" fill="#2D5967"/>
<path id="Vector_110" d="M520.734 350.239L523.785 352.37L526.836 350.239V346.887H520.734V350.239Z" fill="#2D5967"/>
<path id="Vector_111" d="M523.785 345.054C524.026 345.054 524.262 344.982 524.463 344.848C524.664 344.714 524.82 344.523 524.912 344.3C525.005 344.077 525.029 343.831 524.982 343.594C524.935 343.357 524.818 343.14 524.648 342.969C524.477 342.798 524.26 342.682 524.023 342.634C523.786 342.587 523.541 342.611 523.318 342.704C523.095 342.796 522.904 342.953 522.77 343.154C522.636 343.355 522.565 343.591 522.565 343.832C522.565 344.156 522.693 344.467 522.922 344.696C523.151 344.925 523.461 345.054 523.785 345.054Z" fill="#2D5967"/>
<path id="Vector_112" d="M488.151 324.941C488.824 324.941 489.482 324.737 490.039 324.357C490.595 323.977 491.024 323.438 491.269 322.81H499.907C500.102 323.726 500.516 324.582 501.115 325.302C501.713 326.022 502.477 326.587 503.342 326.946C504.206 327.305 505.145 327.449 506.077 327.364C507.009 327.28 507.907 326.97 508.693 326.461L515.703 333.464H513.127V335.907H519.825V329.202H517.385V331.74L510.388 324.724C510.769 324.135 511.04 323.482 511.188 322.797H522.036L520.246 324.669L521.968 326.393L526.795 321.575L521.9 316.744L520.246 318.467L522.13 320.354H511.283C511.135 319.679 510.869 319.036 510.497 318.454L517.493 311.437V313.948H519.934V307.23H513.249V309.673H515.798L508.761 316.717C507.829 316.108 506.741 315.782 505.629 315.78C504.294 315.772 502.997 316.223 501.955 317.058C500.913 317.893 500.19 319.062 499.907 320.367H491.269C491.047 319.799 490.675 319.303 490.192 318.931C489.709 318.559 489.133 318.327 488.528 318.258C487.923 318.189 487.31 318.287 486.756 318.541C486.202 318.795 485.728 319.195 485.384 319.699C485.041 320.203 484.841 320.791 484.807 321.4C484.772 322.008 484.905 322.615 485.189 323.154C485.474 323.694 485.9 324.145 486.422 324.46C486.944 324.775 487.542 324.941 488.151 324.941ZM502.171 321.589C502.171 320.926 502.368 320.278 502.736 319.726C503.104 319.175 503.627 318.745 504.239 318.492C504.851 318.238 505.524 318.172 506.174 318.301C506.823 318.43 507.42 318.75 507.889 319.218C508.357 319.687 508.676 320.284 508.805 320.935C508.934 321.585 508.868 322.259 508.615 322.871C508.361 323.484 507.932 324.008 507.381 324.376C506.83 324.744 506.183 324.941 505.52 324.941C504.633 324.937 503.783 324.583 503.156 323.955C502.529 323.327 502.175 322.477 502.171 321.589Z" fill="#2D5967"/>
</g>
</g>
<g id="Icon Text Label_16">
<text id="IconLabel_27" fill="black" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" letter-spacing="0em"><tspan x="471.328" y="375.816">Kube-API</tspan></text>
<text id="IconLabel_28" fill="black" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" letter-spacing="0em"><tspan x="482.367" y="391.816">Server</tspan></text>
</g>
</g>
<g id="Endpoint_2">
<g id="Load-Balancer_2">
<g id="Group 366_2">
<path id="Vector_113" d="M1189.18 357.323V355.002L1191.62 353.781V301.68H1245.38V353.781L1247.82 355.002V357.323H1189.18Z" fill="white"/>
<path id="Vector_114" d="M1244.7 302.358V354.201L1247.14 355.423V356.644H1189.86V355.423L1192.3 354.201V302.358H1244.7ZM1246.06 301.001H1190.94V353.36L1189.25 354.215L1188.5 354.581V358.001H1248.5V354.581L1247.75 354.215L1246.06 353.36V301.001Z" fill="white"/>
<path id="Vector_115" d="M1244.7 354.2V302.357H1192.3V354.2L1189.86 355.421V356.643H1247.14V355.421L1244.7 354.2ZM1242.28 304.8V338.348H1194.74V304.8H1242.28ZM1194.74 354.2V340.778H1242.28V354.2H1194.74Z" fill="#2D5967"/>
<path id="Vector_116" d="M1197.18 350.239L1200.22 352.37L1203.27 350.239V346.887H1197.18V350.239Z" fill="#2D5967"/>
<path id="Vector_117" d="M1200.22 345.054C1200.46 345.054 1200.69 344.982 1200.89 344.848C1201.09 344.714 1201.25 344.523 1201.34 344.3C1201.43 344.077 1201.46 343.831 1201.41 343.594C1201.36 343.357 1201.25 343.14 1201.08 342.969C1200.91 342.798 1200.69 342.682 1200.45 342.634C1200.22 342.587 1199.97 342.611 1199.75 342.704C1199.53 342.796 1199.33 342.953 1199.2 343.154C1199.07 343.355 1198.99 343.591 1198.99 343.832C1198.99 344.156 1199.12 344.467 1199.35 344.696C1199.58 344.925 1199.89 345.054 1200.22 345.054Z" fill="#2D5967"/>
<path id="Vector_118" d="M1209.37 350.239L1212.41 352.37L1215.46 350.239V346.887H1209.37V350.239Z" fill="#2D5967"/>
<path id="Vector_119" d="M1212.41 345.054C1212.65 345.054 1212.88 344.982 1213.08 344.848C1213.28 344.714 1213.44 344.523 1213.53 344.3C1213.62 344.077 1213.65 343.831 1213.6 343.594C1213.55 343.357 1213.44 343.14 1213.27 342.969C1213.1 342.798 1212.88 342.682 1212.64 342.634C1212.41 342.587 1212.16 342.611 1211.94 342.704C1211.72 342.796 1211.52 342.953 1211.39 343.154C1211.26 343.355 1211.18 343.591 1211.18 343.832C1211.18 344.156 1211.31 344.467 1211.54 344.696C1211.77 344.925 1212.08 345.054 1212.41 345.054Z" fill="#2D5967"/>
<path id="Vector_120" d="M1221.54 350.239L1224.59 352.37L1227.65 350.239V346.887H1221.54V350.239Z" fill="#2D5967"/>
<path id="Vector_121" d="M1224.59 345.054C1224.84 345.054 1225.07 344.982 1225.27 344.848C1225.47 344.714 1225.63 344.523 1225.72 344.3C1225.81 344.077 1225.84 343.831 1225.79 343.594C1225.74 343.357 1225.63 343.14 1225.46 342.969C1225.29 342.798 1225.07 342.682 1224.83 342.634C1224.6 342.587 1224.35 342.611 1224.13 342.704C1223.9 342.796 1223.71 342.953 1223.58 343.154C1223.45 343.355 1223.37 343.591 1223.37 343.832C1223.37 344.156 1223.5 344.467 1223.73 344.696C1223.96 344.925 1224.27 345.054 1224.59 345.054Z" fill="#2D5967"/>
<path id="Vector_122" d="M1233.73 350.239L1236.78 352.37L1239.84 350.239V346.887H1233.73V350.239Z" fill="#2D5967"/>
<path id="Vector_123" d="M1236.78 345.054C1237.03 345.054 1237.26 344.982 1237.46 344.848C1237.66 344.714 1237.82 344.523 1237.91 344.3C1238 344.077 1238.03 343.831 1237.98 343.594C1237.93 343.357 1237.82 343.14 1237.65 342.969C1237.48 342.798 1237.26 342.682 1237.02 342.634C1236.79 342.587 1236.54 342.611 1236.32 342.704C1236.09 342.796 1235.9 342.953 1235.77 343.154C1235.64 343.355 1235.56 343.591 1235.56 343.832C1235.56 344.156 1235.69 344.467 1235.92 344.696C1236.15 344.925 1236.46 345.054 1236.78 345.054Z" fill="#2D5967"/>
<path id="Vector_124" d="M1201.15 324.941C1201.82 324.941 1202.48 324.737 1203.04 324.357C1203.6 323.977 1204.02 323.438 1204.27 322.81H1212.91C1213.1 323.726 1213.52 324.582 1214.11 325.302C1214.71 326.022 1215.48 326.587 1216.34 326.946C1217.21 327.305 1218.15 327.449 1219.08 327.364C1220.01 327.28 1220.91 326.97 1221.69 326.461L1228.7 333.464H1226.13V335.907H1232.83V329.202H1230.38V331.74L1223.39 324.724C1223.77 324.135 1224.04 323.482 1224.19 322.797H1235.04L1233.25 324.669L1234.97 326.393L1239.79 321.575L1234.9 316.744L1233.25 318.467L1235.13 320.354H1224.28C1224.13 319.679 1223.87 319.036 1223.5 318.454L1230.49 311.437V313.948H1232.93V307.23H1226.25V309.673H1228.8L1221.76 316.717C1220.83 316.108 1219.74 315.782 1218.63 315.78C1217.29 315.772 1216 316.223 1214.95 317.058C1213.91 317.893 1213.19 319.062 1212.91 320.367H1204.27C1204.05 319.799 1203.67 319.303 1203.19 318.931C1202.71 318.559 1202.13 318.327 1201.53 318.258C1200.92 318.189 1200.31 318.287 1199.76 318.541C1199.2 318.795 1198.73 319.195 1198.38 319.699C1198.04 320.203 1197.84 320.791 1197.81 321.4C1197.77 322.008 1197.9 322.615 1198.19 323.154C1198.47 323.694 1198.9 324.145 1199.42 324.46C1199.94 324.775 1200.54 324.941 1201.15 324.941ZM1215.17 321.589C1215.17 320.926 1215.37 320.278 1215.74 319.726C1216.1 319.175 1216.63 318.745 1217.24 318.492C1217.85 318.238 1218.52 318.172 1219.17 318.301C1219.82 318.43 1220.42 318.75 1220.89 319.218C1221.36 319.687 1221.68 320.284 1221.81 320.935C1221.93 321.585 1221.87 322.259 1221.61 322.871C1221.36 323.484 1220.93 324.008 1220.38 324.376C1219.83 324.744 1219.18 324.941 1218.52 324.941C1217.63 324.937 1216.78 324.583 1216.16 323.955C1215.53 323.327 1215.17 322.477 1215.17 321.589Z" fill="#2D5967"/>
</g>
</g>
<g id="Icon Text Label_17">
<text id="IconLabel_29" fill="black" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" letter-spacing="0em"><tspan x="1184.33" y="375.816">Kube-API</tspan></text>
<text id="IconLabel_30" fill="black" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" letter-spacing="0em"><tspan x="1195.37" y="391.816">Server</tspan></text>
</g>
</g>
<g id="Container">
<g id="OCI-Containers">
<g id="Group_75">
<g id="Group_76">
<path id="Vector_125" d="M30.8806 513.254C29.0896 513.254 27.7463 511.91 27.7463 510.119V457.881C27.7463 456.09 29.0896 454.746 30.8806 454.746H83.1194C84.9104 454.746 86.2537 456.09 86.2537 457.881V510.119C86.2537 511.91 84.9104 513.254 83.1194 513.254H30.8806Z" fill="white"/>
<path id="Vector_126" d="M83.1194 455.493C84.4627 455.493 85.5075 456.537 85.5075 457.881V510.119C85.5075 511.463 84.4627 512.507 83.1194 512.507H30.8806C29.5373 512.507 28.4925 511.463 28.4925 510.119V457.881C28.4925 456.537 29.5373 455.493 30.8806 455.493H83.1194ZM83.1194 454H30.8806C28.791 454 27 455.791 27 457.881V510.119C27 512.209 28.791 514 30.8806 514H83.1194C85.209 514 87 512.209 87 510.119V457.881C87 455.791 85.3582 454 83.1194 454Z" fill="white"/>
</g>
<g id="Group_77">
<path id="Vector_127" d="M83.1194 455.493H30.8806C29.5373 455.493 28.4926 456.537 28.4926 457.881V510.119C28.4926 511.463 29.5373 512.507 30.8806 512.507H83.1194C84.4627 512.507 85.5075 511.463 85.5075 510.119V457.881C85.5075 456.537 84.4627 455.493 83.1194 455.493ZM83.4179 510.119C83.4179 510.269 83.2687 510.418 83.1194 510.418H30.8806C30.7314 510.418 30.5821 510.269 30.5821 510.119V457.881C30.5821 457.731 30.7314 457.582 30.8806 457.582H83.1194C83.2687 457.582 83.4179 457.731 83.4179 457.881V510.119Z" fill="#2D5967"/>
<path id="Vector_128" d="M34.7614 505.94H79.239V493.254H34.7614V505.94ZM37.0002 495.343H77.1494V503.851H37.0002V495.343Z" fill="#2D5967"/>
<path id="Vector_129" d="M72.373 501.313C73.2797 501.313 74.0148 500.578 74.0148 499.672C74.0148 498.765 73.2797 498.03 72.373 498.03C71.4663 498.03 70.7312 498.765 70.7312 499.672C70.7312 500.578 71.4663 501.313 72.373 501.313Z" fill="#2D5967"/>
<path id="Vector_130" d="M55.5076 461.761H34.7614V474.448H55.3584V461.761H55.5076ZM44.3136 464H45.9554V472.507H44.3136V464ZM42.224 472.358H40.5822V464H42.224V472.358ZM48.0449 464H49.6867V472.507H48.0449V464ZM37.0002 464H38.6419V472.507H37.0002V464ZM53.2688 472.358H51.627V464H53.2688V472.358Z" fill="#2D5967"/>
<path id="Vector_131" d="M58.642 474.448H79.239V461.761H58.642V474.448ZM69.6867 472.358H68.045V464H69.6867V472.358ZM71.7763 464H73.4181V472.507H71.7763V464ZM65.9554 472.358H64.3136V464H65.9554V472.358ZM77.1494 472.358H75.5076V464H77.1494V472.358ZM60.7315 464H62.3733V472.507H60.7315V464Z" fill="#2D5967"/>
<path id="Vector_132" d="M55.5076 477.731H34.7614V490.418H55.3584V477.731H55.5076ZM44.3136 479.821H45.9554V488.328H44.3136V479.821ZM42.224 488.179H40.5822V479.672H42.224V488.179ZM48.0449 479.821H49.6867V488.328H48.0449V479.821ZM37.0002 479.821H38.6419V488.328H37.0002V479.821ZM53.2688 488.179H51.627V479.672H53.2688V488.179Z" fill="#2D5967"/>
<path id="Vector_133" d="M58.642 490.418H79.239V477.731H58.642V490.418ZM69.6867 488.179H68.045V479.672H69.6867V488.179ZM71.7763 479.821H73.4181V488.328H71.7763V479.821ZM65.9554 488.179H64.3136V479.672H65.9554V488.179ZM77.1494 488.179H75.5076V479.672H77.1494V488.179ZM60.7315 479.821H62.3733V488.328H60.7315V479.821Z" fill="#2D5967"/>
</g>
</g>
</g>
<g id="Icon Text Label_18">
<text id="IconLabel_31" fill="black" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" letter-spacing="0em"><tspan x="39.0703" y="531.816">ci-w1</tspan></text>
</g>
</g>
<g id="Container_2">
<g id="OCI-Containers_2">
<g id="Group_78">
<g id="Group_79">
<path id="Vector_134" d="M743.881 513.254C742.089 513.254 740.746 511.91 740.746 510.119V457.881C740.746 456.09 742.089 454.746 743.881 454.746H796.119C797.91 454.746 799.254 456.09 799.254 457.881V510.119C799.254 511.91 797.91 513.254 796.119 513.254H743.881Z" fill="white"/>
<path id="Vector_135" d="M796.119 455.493C797.463 455.493 798.507 456.537 798.507 457.881V510.119C798.507 511.463 797.463 512.507 796.119 512.507H743.881C742.537 512.507 741.493 511.463 741.493 510.119V457.881C741.493 456.537 742.537 455.493 743.881 455.493H796.119ZM796.119 454H743.881C741.791 454 740 455.791 740 457.881V510.119C740 512.209 741.791 514 743.881 514H796.119C798.209 514 800 512.209 800 510.119V457.881C800 455.791 798.358 454 796.119 454Z" fill="white"/>
</g>
<g id="Group_80">
<path id="Vector_136" d="M796.119 455.493H743.881C742.537 455.493 741.493 456.537 741.493 457.881V510.119C741.493 511.463 742.537 512.507 743.881 512.507H796.119C797.463 512.507 798.507 511.463 798.507 510.119V457.881C798.507 456.537 797.463 455.493 796.119 455.493ZM796.418 510.119C796.418 510.269 796.269 510.418 796.119 510.418H743.881C743.731 510.418 743.582 510.269 743.582 510.119V457.881C743.582 457.731 743.731 457.582 743.881 457.582H796.119C796.269 457.582 796.418 457.731 796.418 457.881V510.119Z" fill="#2D5967"/>
<path id="Vector_137" d="M747.761 505.94H792.239V493.254H747.761V505.94ZM750 495.343H790.149V503.851H750V495.343Z" fill="#2D5967"/>
<path id="Vector_138" d="M785.373 501.313C786.28 501.313 787.015 500.578 787.015 499.672C787.015 498.765 786.28 498.03 785.373 498.03C784.466 498.03 783.731 498.765 783.731 499.672C783.731 500.578 784.466 501.313 785.373 501.313Z" fill="#2D5967"/>
<path id="Vector_139" d="M768.508 461.761H747.761V474.448H768.358V461.761H768.508ZM757.314 464H758.955V472.507H757.314V464ZM755.224 472.358H753.582V464H755.224V472.358ZM761.045 464H762.687V472.507H761.045V464ZM750 464H751.642V472.507H750V464ZM766.269 472.358H764.627V464H766.269V472.358Z" fill="#2D5967"/>
<path id="Vector_140" d="M771.642 474.448H792.239V461.761H771.642V474.448ZM782.687 472.358H781.045V464H782.687V472.358ZM784.776 464H786.418V472.507H784.776V464ZM778.955 472.358H777.314V464H778.955V472.358ZM790.149 472.358H788.508V464H790.149V472.358ZM773.732 464H775.373V472.507H773.732V464Z" fill="#2D5967"/>
<path id="Vector_141" d="M768.508 477.731H747.761V490.418H768.358V477.731H768.508ZM757.314 479.821H758.955V488.328H757.314V479.821ZM755.224 488.179H753.582V479.672H755.224V488.179ZM761.045 479.821H762.687V488.328H761.045V479.821ZM750 479.821H751.642V488.328H750V479.821ZM766.269 488.179H764.627V479.672H766.269V488.179Z" fill="#2D5967"/>
<path id="Vector_142" d="M771.642 490.418H792.239V477.731H771.642V490.418ZM782.687 488.179H781.045V479.672H782.687V488.179ZM784.776 479.821H786.418V488.328H784.776V479.821ZM778.955 488.179H777.314V479.672H778.955V488.179ZM790.149 488.179H788.508V479.672H790.149V488.179ZM773.732 479.821H775.373V488.328H773.732V479.821Z" fill="#2D5967"/>
</g>
</g>
</g>
<g id="Icon Text Label_19">
<text id="IconLabel_32" fill="black" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" letter-spacing="0em"><tspan x="752.07" y="531.816">ci-w1</tspan></text>
</g>
</g>
<g id="Container_3">
<g id="OCI-Containers_3">
<g id="Group_81">
<g id="Group_82">
<path id="Vector_143" d="M252.881 427.254C251.09 427.254 249.746 425.91 249.746 424.119V371.881C249.746 370.09 251.09 368.746 252.881 368.746H305.119C306.91 368.746 308.254 370.09 308.254 371.881V424.119C308.254 425.91 306.91 427.254 305.119 427.254H252.881Z" fill="white"/>
<path id="Vector_144" d="M305.119 369.493C306.463 369.493 307.507 370.537 307.507 371.881V424.119C307.507 425.463 306.463 426.507 305.119 426.507H252.881C251.537 426.507 250.493 425.463 250.493 424.119V371.881C250.493 370.537 251.537 369.493 252.881 369.493H305.119ZM305.119 368H252.881C250.791 368 249 369.791 249 371.881V424.119C249 426.209 250.791 428 252.881 428H305.119C307.209 428 309 426.209 309 424.119V371.881C309 369.791 307.358 368 305.119 368Z" fill="white"/>
</g>
<g id="Group_83">
<path id="Vector_145" d="M305.119 369.493H252.881C251.537 369.493 250.493 370.537 250.493 371.881V424.119C250.493 425.463 251.537 426.507 252.881 426.507H305.119C306.463 426.507 307.507 425.463 307.507 424.119V371.881C307.507 370.537 306.463 369.493 305.119 369.493ZM305.418 424.119C305.418 424.269 305.269 424.418 305.119 424.418H252.881C252.731 424.418 252.582 424.269 252.582 424.119V371.881C252.582 371.731 252.731 371.582 252.881 371.582H305.119C305.269 371.582 305.418 371.731 305.418 371.881V424.119Z" fill="#2D5967"/>
<path id="Vector_146" d="M256.761 419.94H301.239V407.254H256.761V419.94ZM259 409.343H299.149V417.851H259V409.343Z" fill="#2D5967"/>
<path id="Vector_147" d="M294.373 415.313C295.28 415.313 296.015 414.578 296.015 413.672C296.015 412.765 295.28 412.03 294.373 412.03C293.466 412.03 292.731 412.765 292.731 413.672C292.731 414.578 293.466 415.313 294.373 415.313Z" fill="#2D5967"/>
<path id="Vector_148" d="M277.508 375.761H256.761V388.448H277.358V375.761H277.508ZM266.314 378H267.955V386.507H266.314V378ZM264.224 386.358H262.582V378H264.224V386.358ZM270.045 378H271.687V386.507H270.045V378ZM259 378H260.642V386.507H259V378ZM275.269 386.358H273.627V378H275.269V386.358Z" fill="#2D5967"/>
<path id="Vector_149" d="M280.642 388.448H301.239V375.761H280.642V388.448ZM291.687 386.358H290.045V378H291.687V386.358ZM293.776 378H295.418V386.507H293.776V378ZM287.955 386.358H286.314V378H287.955V386.358ZM299.149 386.358H297.508V378H299.149V386.358ZM282.732 378H284.373V386.507H282.732V378Z" fill="#2D5967"/>
<path id="Vector_150" d="M277.508 391.731H256.761V404.418H277.358V391.731H277.508ZM266.314 393.821H267.955V402.328H266.314V393.821ZM264.224 402.179H262.582V393.672H264.224V402.179ZM270.045 393.821H271.687V402.328H270.045V393.821ZM259 393.821H260.642V402.328H259V393.821ZM275.269 402.179H273.627V393.672H275.269V402.179Z" fill="#2D5967"/>
<path id="Vector_151" d="M280.642 404.418H301.239V391.731H280.642V404.418ZM291.687 402.179H290.045V393.672H291.687V402.179ZM293.776 393.821H295.418V402.328H293.776V393.821ZM287.955 402.179H286.314V393.672H287.955V402.179ZM299.149 402.179H297.508V393.672H299.149V402.179ZM282.732 393.821H284.373V402.328H282.732V393.821Z" fill="#2D5967"/>
</g>
</g>
</g>
<g id="Icon Text Label_20">
<text id="IconLabel_33" fill="black" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" letter-spacing="0em"><tspan x="258.391" y="445.816">ci-cp1</tspan></text>
</g>
</g>
<g id="Container_4">
<g id="OCI-Containers_4">
<g id="Group_84">
<g id="Group_85">
<path id="Vector_152" d="M965.881 427.254C964.089 427.254 962.746 425.91 962.746 424.119V371.881C962.746 370.09 964.089 368.746 965.881 368.746H1018.12C1019.91 368.746 1021.25 370.09 1021.25 371.881V424.119C1021.25 425.91 1019.91 427.254 1018.12 427.254H965.881Z" fill="white"/>
<path id="Vector_153" d="M1018.12 369.493C1019.46 369.493 1020.51 370.537 1020.51 371.881V424.119C1020.51 425.463 1019.46 426.507 1018.12 426.507H965.881C964.537 426.507 963.493 425.463 963.493 424.119V371.881C963.493 370.537 964.537 369.493 965.881 369.493H1018.12ZM1018.12 368H965.881C963.791 368 962 369.791 962 371.881V424.119C962 426.209 963.791 428 965.881 428H1018.12C1020.21 428 1022 426.209 1022 424.119V371.881C1022 369.791 1020.36 368 1018.12 368Z" fill="white"/>
</g>
<g id="Group_86">
<path id="Vector_154" d="M1018.12 369.493H965.881C964.537 369.493 963.493 370.537 963.493 371.881V424.119C963.493 425.463 964.537 426.507 965.881 426.507H1018.12C1019.46 426.507 1020.51 425.463 1020.51 424.119V371.881C1020.51 370.537 1019.46 369.493 1018.12 369.493ZM1018.42 424.119C1018.42 424.269 1018.27 424.418 1018.12 424.418H965.881C965.731 424.418 965.582 424.269 965.582 424.119V371.881C965.582 371.731 965.731 371.582 965.881 371.582H1018.12C1018.27 371.582 1018.42 371.731 1018.42 371.881V424.119Z" fill="#2D5967"/>
<path id="Vector_155" d="M969.761 419.94H1014.24V407.254H969.761V419.94ZM972 409.343H1012.15V417.851H972V409.343Z" fill="#2D5967"/>
<path id="Vector_156" d="M1007.37 415.313C1008.28 415.313 1009.01 414.578 1009.01 413.672C1009.01 412.765 1008.28 412.03 1007.37 412.03C1006.47 412.03 1005.73 412.765 1005.73 413.672C1005.73 414.578 1006.47 415.313 1007.37 415.313Z" fill="#2D5967"/>
<path id="Vector_157" d="M990.508 375.761H969.761V388.448H990.358V375.761H990.508ZM979.314 378H980.955V386.507H979.314V378ZM977.224 386.358H975.582V378H977.224V386.358ZM983.045 378H984.687V386.507H983.045V378ZM972 378H973.642V386.507H972V378ZM988.269 386.358H986.627V378H988.269V386.358Z" fill="#2D5967"/>
<path id="Vector_158" d="M993.642 388.448H1014.24V375.761H993.642V388.448ZM1004.69 386.358H1003.04V378H1004.69V386.358ZM1006.78 378H1008.42V386.507H1006.78V378ZM1000.96 386.358H999.314V378H1000.96V386.358ZM1012.15 386.358H1010.51V378H1012.15V386.358ZM995.732 378H997.373V386.507H995.732V378Z" fill="#2D5967"/>
<path id="Vector_159" d="M990.508 391.731H969.761V404.418H990.358V391.731H990.508ZM979.314 393.821H980.955V402.328H979.314V393.821ZM977.224 402.179H975.582V393.672H977.224V402.179ZM983.045 393.821H984.687V402.328H983.045V393.821ZM972 393.821H973.642V402.328H972V393.821ZM988.269 402.179H986.627V393.672H988.269V402.179Z" fill="#2D5967"/>
<path id="Vector_160" d="M993.642 404.418H1014.24V391.731H993.642V404.418ZM1004.69 402.179H1003.04V393.672H1004.69V402.179ZM1006.78 393.821H1008.42V402.328H1006.78V393.821ZM1000.96 402.179H999.314V393.672H1000.96V402.179ZM1012.15 402.179H1010.51V393.672H1012.15V402.179ZM995.732 393.821H997.373V402.328H995.732V393.821Z" fill="#2D5967"/>
</g>
</g>
</g>
<g id="Icon Text Label_21">
<text id="IconLabel_34" fill="black" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" letter-spacing="0em"><tspan x="971.391" y="445.816">ci-cp1</tspan></text>
</g>
</g>
<g id="Access-Token">
<g id="Access-Token_2">
<g id="Group 245">
<path id="Vector_161" d="M277.806 486.615C277.017 487.85 275.963 488.893 274.72 489.665C273.476 490.438 272.076 490.921 270.622 491.079C269.168 491.236 267.698 491.065 266.318 490.577C264.939 490.09 263.686 489.298 262.653 488.26C261.619 487.222 260.83 485.965 260.345 484.582C259.86 483.198 259.69 481.722 259.848 480.264C260.007 478.806 260.489 477.402 261.26 476.155C262.031 474.909 263.071 473.851 264.303 473.061L261.238 469.977L264.642 459.876C264.221 460.034 263.775 460.114 263.325 460.112C262.57 460.112 261.832 459.886 261.205 459.465C260.578 459.043 260.09 458.443 259.803 457.743C259.516 457.042 259.443 456.271 259.594 455.529C259.745 454.787 260.112 454.106 260.65 453.574C261.187 453.042 261.87 452.682 262.612 452.54C263.354 452.398 264.121 452.48 264.816 452.776C265.511 453.073 266.102 453.57 266.515 454.204C266.928 454.838 267.143 455.582 267.134 456.339C267.134 456.78 267.058 457.217 266.908 457.631L277.044 454.217L298.333 475.476L282.507 491.34L277.806 486.615Z" fill="white"/>
<path id="Vector_162" d="M263.278 452.943C264.164 452.943 265.013 453.296 265.639 453.924C266.265 454.552 266.616 455.403 266.616 456.291C266.624 456.963 266.427 457.621 266.052 458.178L266.212 458.329L276.913 454.754L277.223 455.056L297.674 475.476L282.507 490.67L277.712 485.86C277.01 487.121 276.026 488.202 274.837 489.018C273.648 489.833 272.287 490.361 270.86 490.559C269.434 490.757 267.981 490.621 266.616 490.16C265.25 489.7 264.01 488.928 262.993 487.905C261.976 486.882 261.209 485.637 260.753 484.267C260.297 482.896 260.164 481.439 260.365 480.008C260.566 478.578 261.095 477.213 261.91 476.022C262.726 474.832 263.806 473.847 265.065 473.146L261.821 469.854L265.262 459.347L265.046 459.13C264.608 459.405 264.112 459.574 263.597 459.624C263.082 459.674 262.563 459.603 262.08 459.417C261.598 459.232 261.164 458.936 260.815 458.553C260.466 458.171 260.21 457.712 260.067 457.214C259.925 456.715 259.9 456.19 259.994 455.68C260.089 455.17 260.3 454.689 260.611 454.275C260.923 453.861 261.326 453.525 261.788 453.294C262.251 453.063 262.761 452.943 263.278 452.943ZM263.278 452C262.144 452 261.055 452.452 260.253 453.257C259.451 454.062 259 455.153 259 456.291C259 457.43 259.451 458.521 260.253 459.326C261.055 460.131 262.144 460.583 263.278 460.583C263.476 460.597 263.674 460.597 263.871 460.583L260.881 469.552L260.693 470.109L261.106 470.514L263.57 472.995C262.371 473.869 261.376 474.993 260.653 476.29C259.929 477.587 259.494 479.025 259.379 480.507C259.263 481.989 259.469 483.478 259.982 484.872C260.495 486.266 261.303 487.532 262.351 488.582C263.399 489.633 264.662 490.443 266.052 490.957C267.442 491.471 268.927 491.676 270.404 491.559C271.881 491.442 273.315 491.005 274.608 490.278C275.9 489.552 277.02 488.553 277.89 487.35L281.858 491.34L282.526 492L283.194 491.34L298.332 476.145L299 475.476L298.332 474.815L277.881 454.386L277.58 454.084L277.166 453.669L276.621 453.858L267.519 456.876C267.533 456.682 267.533 456.486 267.519 456.291C267.519 455.16 267.073 454.074 266.279 453.27C265.485 452.466 264.406 452.01 263.278 452V452Z" fill="white"/>
<path id="Vector_163" d="M297.674 475.475L277.223 455.056L276.912 454.754L266.212 458.3L266.052 458.149C266.427 457.593 266.624 456.935 266.616 456.263C266.619 455.52 266.375 454.798 265.923 454.21C265.472 453.621 264.838 453.2 264.122 453.013C263.406 452.825 262.648 452.881 261.967 453.173C261.286 453.465 260.722 453.975 260.362 454.624C260.002 455.272 259.867 456.023 259.978 456.757C260.09 457.491 260.441 458.167 260.978 458.678C261.514 459.19 262.205 459.508 262.941 459.583C263.678 459.658 264.418 459.486 265.046 459.092L265.262 459.309L261.821 469.854L264.284 472.372C264.7 472.118 265.134 471.894 265.582 471.703L263.382 469.467L266.644 459.639L276.536 456.367L295.671 475.485L282.507 488.689L279.15 485.331C278.962 485.788 278.739 486.23 278.483 486.652L282.507 490.67L297.674 475.475ZM261.351 456.291C261.351 455.906 261.464 455.53 261.678 455.211C261.891 454.891 262.194 454.642 262.549 454.495C262.903 454.348 263.293 454.311 263.669 454.386C264.045 454.462 264.39 454.648 264.661 454.921C264.931 455.193 265.115 455.54 265.189 455.918C265.262 456.295 265.223 456.686 265.074 457.041C264.926 457.396 264.677 457.699 264.357 457.911C264.037 458.124 263.662 458.236 263.278 458.234C263.024 458.234 262.773 458.184 262.538 458.086C262.304 457.988 262.091 457.845 261.912 457.664C261.733 457.484 261.591 457.27 261.495 457.034C261.398 456.798 261.349 456.546 261.351 456.291Z" fill="#2D5967"/>
<path id="Vector_164" d="M270.829 466.657L272.249 466.28L271.337 464.601L273.302 465.129L273.678 463.695L271.797 463.648L273.208 462.243L272.145 461.177L271.167 462.79L270.66 460.856L269.212 461.234L270.124 462.894L268.196 462.375L267.81 463.827L269.719 463.856L268.281 465.299L269.315 466.336L270.312 464.704L270.829 466.657Z" fill="#2D5967"/>
<path id="Vector_165" d="M273.152 467.364L272.766 468.816L274.684 468.845L273.236 470.288L274.27 471.325L275.267 469.694L275.794 471.655L277.204 471.269L276.292 469.59L278.257 470.118L278.633 468.684L276.753 468.637L278.163 467.232L277.101 466.166L276.123 467.779L275.624 465.845L274.167 466.232L275.079 467.883L273.152 467.364Z" fill="#2D5967"/>
<path id="Vector_166" d="M278.107 472.354L277.721 473.807L279.639 473.835L278.191 475.278L279.226 476.325L280.222 474.684L280.749 476.646L282.159 476.259L281.247 474.58L283.213 475.108L283.589 473.684L281.708 473.637L283.119 472.222L282.056 471.156L281.078 472.769L280.58 470.836L279.122 471.222L280.034 472.873L278.107 472.354Z" fill="#2D5967"/>
<path id="Vector_167" d="M283.071 477.343L282.677 478.796L284.595 478.824L283.147 480.267L284.181 481.314L285.178 479.682L285.704 481.635L287.115 481.248L286.203 479.569L288.168 480.097L288.544 478.673L286.663 478.626L288.074 477.211L287.011 476.146L286.033 477.758L285.535 475.825L284.078 476.212L284.99 477.862L283.071 477.343Z" fill="#2D5967"/>
<path id="Vector_168" d="M278.925 481.295C278.919 479.447 278.368 477.643 277.341 476.11C276.313 474.576 274.856 473.383 273.153 472.68C271.45 471.976 269.577 471.795 267.771 472.159C265.966 472.523 264.308 473.415 263.008 474.724C261.707 476.032 260.823 477.698 260.465 479.51C260.108 481.322 260.294 483.2 261 484.906C261.706 486.613 262.901 488.071 264.432 489.097C265.964 490.122 267.765 490.67 269.607 490.67C270.832 490.669 272.046 490.425 273.178 489.953C274.309 489.481 275.337 488.79 276.203 487.919C277.068 487.049 277.754 486.016 278.221 484.879C278.688 483.742 278.927 482.524 278.925 481.295ZM269.607 489.236C268.04 489.238 266.509 488.774 265.205 487.902C263.902 487.031 262.886 485.791 262.285 484.34C261.685 482.889 261.526 481.292 261.831 479.751C262.135 478.21 262.889 476.794 263.995 475.683C265.102 474.571 266.513 473.814 268.049 473.506C269.585 473.199 271.178 473.356 272.625 473.957C274.072 474.558 275.309 475.575 276.179 476.882C277.05 478.188 277.514 479.724 277.514 481.295C277.514 483.399 276.682 485.418 275.199 486.907C273.716 488.396 271.705 489.234 269.607 489.236Z" fill="#2D5967"/>
<path id="Vector_169" d="M275.587 480.446H268.61C268.439 479.805 268.041 479.248 267.491 478.879C266.941 478.511 266.276 478.355 265.62 478.442C264.964 478.528 264.362 478.851 263.926 479.35C263.489 479.849 263.249 480.49 263.249 481.153C263.249 481.817 263.489 482.458 263.926 482.957C264.362 483.456 264.964 483.779 265.62 483.865C266.276 483.952 266.941 483.796 267.491 483.427C268.041 483.059 268.439 482.502 268.61 481.861H271.224V483.625H272.634V481.861H274.214V484.322H275.624L275.587 480.446ZM266.005 482.559C265.745 482.559 265.49 482.481 265.274 482.336C265.057 482.191 264.889 481.985 264.789 481.744C264.689 481.502 264.663 481.237 264.714 480.981C264.765 480.725 264.89 480.489 265.074 480.305C265.258 480.12 265.493 479.994 265.748 479.943C266.004 479.892 266.268 479.918 266.509 480.018C266.749 480.118 266.955 480.288 267.1 480.505C267.244 480.722 267.322 480.977 267.322 481.238C267.322 481.589 267.183 481.924 266.936 482.172C266.689 482.42 266.354 482.559 266.005 482.559Z" fill="#2D5967"/>
</g>
</g>
<g id="Icon Text Label_22">
<text id="IconLabel_35" fill="black" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" letter-spacing="0em"><tspan x="259.117" y="509.816">ETCD</tspan></text>
</g>
</g>
<g id="Access-Token_3">
<g id="Access-Token_4">
<g id="Group 245_2">
<path id="Vector_170" d="M990.806 486.615C990.017 487.85 988.963 488.893 987.72 489.665C986.476 490.438 985.076 490.921 983.622 491.079C982.168 491.236 980.698 491.065 979.318 490.577C977.939 490.09 976.686 489.298 975.653 488.26C974.619 487.222 973.83 485.965 973.345 484.582C972.86 483.198 972.69 481.722 972.848 480.264C973.007 478.806 973.489 477.402 974.26 476.155C975.031 474.909 976.071 473.851 977.303 473.061L974.238 469.977L977.642 459.876C977.221 460.034 976.775 460.114 976.325 460.112C975.57 460.112 974.832 459.886 974.205 459.465C973.578 459.043 973.09 458.443 972.803 457.743C972.516 457.042 972.443 456.271 972.594 455.529C972.745 454.787 973.112 454.106 973.65 453.574C974.187 453.042 974.87 452.682 975.612 452.54C976.354 452.398 977.121 452.48 977.816 452.776C978.511 453.073 979.102 453.57 979.515 454.204C979.928 454.838 980.143 455.582 980.134 456.339C980.134 456.78 980.058 457.217 979.908 457.631L990.044 454.217L1011.33 475.476L995.507 491.34L990.806 486.615Z" fill="white"/>
<path id="Vector_171" d="M976.278 452.943C977.164 452.943 978.013 453.296 978.639 453.924C979.265 454.552 979.616 455.403 979.616 456.291C979.624 456.963 979.427 457.621 979.052 458.178L979.212 458.329L989.913 454.754L990.223 455.056L1010.67 475.476L995.507 490.67L990.712 485.86C990.01 487.121 989.026 488.202 987.837 489.018C986.648 489.833 985.287 490.361 983.86 490.559C982.434 490.757 980.981 490.621 979.616 490.16C978.25 489.7 977.01 488.928 975.993 487.905C974.976 486.882 974.209 485.637 973.753 484.267C973.297 482.896 973.164 481.439 973.365 480.008C973.566 478.578 974.095 477.213 974.91 476.022C975.726 474.832 976.806 473.847 978.065 473.146L974.821 469.854L978.262 459.347L978.046 459.13C977.608 459.405 977.112 459.574 976.597 459.624C976.082 459.674 975.563 459.603 975.08 459.417C974.598 459.232 974.164 458.936 973.815 458.553C973.466 458.171 973.21 457.712 973.067 457.214C972.925 456.715 972.9 456.19 972.994 455.68C973.089 455.17 973.3 454.689 973.611 454.275C973.923 453.861 974.326 453.525 974.788 453.294C975.251 453.063 975.761 452.943 976.278 452.943ZM976.278 452C975.144 452 974.055 452.452 973.253 453.257C972.451 454.062 972 455.153 972 456.291C972 457.43 972.451 458.521 973.253 459.326C974.055 460.131 975.144 460.583 976.278 460.583C976.476 460.597 976.674 460.597 976.871 460.583L973.881 469.552L973.693 470.109L974.106 470.514L976.57 472.995C975.371 473.869 974.376 474.993 973.653 476.29C972.929 477.587 972.494 479.025 972.379 480.507C972.263 481.989 972.469 483.478 972.982 484.872C973.495 486.266 974.303 487.532 975.351 488.582C976.399 489.633 977.662 490.443 979.052 490.957C980.442 491.471 981.927 491.676 983.404 491.559C984.881 491.442 986.315 491.005 987.608 490.278C988.9 489.552 990.02 488.553 990.89 487.35L994.858 491.34L995.526 492L996.194 491.34L1011.33 476.145L1012 475.476L1011.33 474.815L990.881 454.386L990.58 454.084L990.166 453.669L989.621 453.858L980.519 456.876C980.533 456.682 980.533 456.486 980.519 456.291C980.519 455.16 980.073 454.074 979.279 453.27C978.485 452.466 977.406 452.01 976.278 452V452Z" fill="white"/>
<path id="Vector_172" d="M1010.67 475.475L990.223 455.056L989.912 454.754L979.212 458.3L979.052 458.149C979.427 457.593 979.624 456.935 979.616 456.263C979.619 455.52 979.375 454.798 978.923 454.21C978.472 453.621 977.838 453.2 977.122 453.013C976.406 452.825 975.648 452.881 974.967 453.173C974.286 453.465 973.722 453.975 973.362 454.624C973.002 455.272 972.867 456.023 972.978 456.757C973.09 457.491 973.441 458.167 973.978 458.678C974.514 459.19 975.205 459.508 975.941 459.583C976.678 459.658 977.418 459.486 978.046 459.092L978.262 459.309L974.821 469.854L977.284 472.372C977.7 472.118 978.134 471.894 978.582 471.703L976.382 469.467L979.644 459.639L989.536 456.367L1008.67 475.485L995.507 488.689L992.15 485.331C991.962 485.788 991.739 486.23 991.483 486.652L995.507 490.67L1010.67 475.475ZM974.351 456.291C974.351 455.906 974.464 455.53 974.678 455.211C974.891 454.891 975.194 454.642 975.549 454.495C975.903 454.348 976.293 454.311 976.669 454.386C977.045 454.462 977.39 454.648 977.661 454.921C977.931 455.193 978.115 455.54 978.189 455.918C978.262 456.295 978.223 456.686 978.074 457.041C977.926 457.396 977.677 457.699 977.357 457.911C977.037 458.124 976.662 458.236 976.278 458.234C976.024 458.234 975.773 458.184 975.538 458.086C975.304 457.988 975.091 457.845 974.912 457.664C974.733 457.484 974.591 457.27 974.495 457.034C974.398 456.798 974.349 456.546 974.351 456.291Z" fill="#2D5967"/>
<path id="Vector_173" d="M983.829 466.657L985.249 466.28L984.337 464.601L986.302 465.129L986.678 463.695L984.797 463.648L986.208 462.243L985.145 461.177L984.167 462.79L983.66 460.856L982.212 461.234L983.124 462.894L981.196 462.375L980.811 463.827L982.719 463.856L981.281 465.299L982.315 466.336L983.312 464.704L983.829 466.657Z" fill="#2D5967"/>
<path id="Vector_174" d="M986.152 467.364L985.766 468.816L987.684 468.845L986.236 470.288L987.27 471.325L988.267 469.694L988.794 471.655L990.204 471.269L989.292 469.59L991.257 470.118L991.633 468.684L989.753 468.637L991.163 467.232L990.101 466.166L989.123 467.779L988.624 465.845L987.167 466.232L988.079 467.883L986.152 467.364Z" fill="#2D5967"/>
<path id="Vector_175" d="M991.107 472.354L990.721 473.807L992.639 473.835L991.191 475.278L992.226 476.325L993.222 474.684L993.749 476.646L995.159 476.259L994.247 474.58L996.212 475.108L996.589 473.684L994.708 473.637L996.118 472.222L995.056 471.156L994.078 472.769L993.58 470.836L992.122 471.222L993.034 472.873L991.107 472.354Z" fill="#2D5967"/>
<path id="Vector_176" d="M996.071 477.343L995.677 478.796L997.595 478.824L996.147 480.267L997.181 481.314L998.178 479.682L998.704 481.635L1000.11 481.248L999.203 479.569L1001.17 480.097L1001.54 478.673L999.663 478.626L1001.07 477.211L1000.01 476.146L999.033 477.758L998.535 475.825L997.078 476.212L997.99 477.862L996.071 477.343Z" fill="#2D5967"/>
<path id="Vector_177" d="M991.925 481.295C991.919 479.447 991.368 477.643 990.341 476.11C989.313 474.576 987.856 473.383 986.153 472.68C984.45 471.976 982.577 471.795 980.771 472.159C978.966 472.523 977.308 473.415 976.008 474.724C974.707 476.032 973.822 477.698 973.465 479.51C973.108 481.322 973.294 483.2 974 484.906C974.706 486.613 975.901 488.071 977.432 489.097C978.964 490.122 980.765 490.67 982.606 490.67C983.832 490.669 985.046 490.425 986.177 489.953C987.309 489.481 988.337 488.79 989.203 487.919C990.068 487.049 990.754 486.016 991.221 484.879C991.688 483.742 991.927 482.524 991.925 481.295ZM982.606 489.236C981.04 489.238 979.509 488.774 978.205 487.902C976.902 487.031 975.886 485.791 975.285 484.34C974.684 482.889 974.526 481.292 974.831 479.751C975.135 478.21 975.889 476.794 976.995 475.683C978.102 474.571 979.513 473.814 981.049 473.506C982.585 473.199 984.177 473.356 985.625 473.957C987.072 474.558 988.309 475.575 989.179 476.882C990.05 478.188 990.514 479.724 990.514 481.295C990.514 483.399 989.681 485.418 988.199 486.907C986.716 488.396 984.705 489.234 982.606 489.236Z" fill="#2D5967"/>
<path id="Vector_178" d="M988.587 480.446H981.61C981.439 479.805 981.041 479.248 980.491 478.879C979.941 478.511 979.276 478.355 978.62 478.442C977.964 478.528 977.362 478.851 976.926 479.35C976.489 479.849 976.249 480.49 976.249 481.153C976.249 481.817 976.489 482.458 976.926 482.957C977.362 483.456 977.964 483.779 978.62 483.865C979.276 483.952 979.941 483.796 980.491 483.427C981.041 483.059 981.439 482.502 981.61 481.861H984.224V483.625H985.634V481.861H987.214V484.322H988.624L988.587 480.446ZM979.005 482.559C978.745 482.559 978.49 482.481 978.274 482.336C978.057 482.191 977.889 481.985 977.789 481.744C977.689 481.502 977.663 481.237 977.714 480.981C977.765 480.725 977.89 480.489 978.074 480.305C978.258 480.12 978.493 479.994 978.748 479.943C979.004 479.892 979.268 479.918 979.509 480.018C979.75 480.118 979.955 480.288 980.1 480.505C980.244 480.722 980.322 480.977 980.322 481.238C980.322 481.589 980.183 481.924 979.936 482.172C979.689 482.42 979.354 482.559 979.005 482.559Z" fill="#2D5967"/>
</g>
</g>
<g id="Icon Text Label_23">
<text id="IconLabel_36" fill="black" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" letter-spacing="0em"><tspan x="972.117" y="509.816">ETCD</tspan></text>
</g>
</g>
<g id="Access-Token_5">
<g id="Access-Token_6">
<g id="Group 245_3">
<path id="Vector_179" d="M345.806 486.615C345.017 487.85 343.963 488.893 342.72 489.665C341.476 490.438 340.076 490.921 338.622 491.079C337.168 491.236 335.698 491.065 334.318 490.577C332.939 490.09 331.686 489.298 330.653 488.26C329.619 487.222 328.83 485.965 328.345 484.582C327.86 483.198 327.69 481.722 327.848 480.264C328.007 478.806 328.489 477.402 329.26 476.155C330.031 474.909 331.071 473.851 332.303 473.061L329.238 469.977L332.642 459.876C332.221 460.034 331.775 460.114 331.325 460.112C330.57 460.112 329.832 459.886 329.205 459.465C328.578 459.043 328.09 458.443 327.803 457.743C327.516 457.042 327.443 456.271 327.594 455.529C327.745 454.787 328.112 454.106 328.65 453.574C329.187 453.042 329.87 452.682 330.612 452.54C331.354 452.398 332.121 452.48 332.816 452.776C333.511 453.073 334.102 453.57 334.515 454.204C334.928 454.838 335.143 455.582 335.134 456.339C335.134 456.78 335.058 457.217 334.908 457.631L345.044 454.217L366.333 475.476L350.507 491.34L345.806 486.615Z" fill="white"/>
<path id="Vector_180" d="M331.278 452.943C332.164 452.943 333.013 453.296 333.639 453.924C334.265 454.552 334.616 455.403 334.616 456.291C334.624 456.963 334.427 457.621 334.052 458.178L334.212 458.329L344.913 454.754L345.223 455.056L365.674 475.476L350.507 490.67L345.712 485.86C345.01 487.121 344.026 488.202 342.837 489.018C341.648 489.833 340.287 490.361 338.86 490.559C337.434 490.757 335.981 490.621 334.616 490.16C333.25 489.7 332.01 488.928 330.993 487.905C329.976 486.882 329.209 485.637 328.753 484.267C328.297 482.896 328.164 481.439 328.365 480.008C328.566 478.578 329.095 477.213 329.91 476.022C330.726 474.832 331.806 473.847 333.065 473.146L329.821 469.854L333.262 459.347L333.046 459.13C332.608 459.405 332.112 459.574 331.597 459.624C331.082 459.674 330.563 459.603 330.08 459.417C329.598 459.232 329.164 458.936 328.815 458.553C328.466 458.171 328.21 457.712 328.067 457.214C327.925 456.715 327.9 456.19 327.994 455.68C328.089 455.17 328.3 454.689 328.611 454.275C328.923 453.861 329.326 453.525 329.788 453.294C330.251 453.063 330.761 452.943 331.278 452.943ZM331.278 452C330.144 452 329.055 452.452 328.253 453.257C327.451 454.062 327 455.153 327 456.291C327 457.43 327.451 458.521 328.253 459.326C329.055 460.131 330.144 460.583 331.278 460.583C331.476 460.597 331.674 460.597 331.871 460.583L328.881 469.552L328.693 470.109L329.106 470.514L331.57 472.995C330.371 473.869 329.376 474.993 328.653 476.29C327.929 477.587 327.494 479.025 327.379 480.507C327.263 481.989 327.469 483.478 327.982 484.872C328.495 486.266 329.303 487.532 330.351 488.582C331.399 489.633 332.662 490.443 334.052 490.957C335.442 491.471 336.927 491.676 338.404 491.559C339.881 491.442 341.315 491.005 342.608 490.278C343.9 489.552 345.02 488.553 345.89 487.35L349.858 491.34L350.526 492L351.194 491.34L366.332 476.145L367 475.476L366.332 474.815L345.881 454.386L345.58 454.084L345.166 453.669L344.621 453.858L335.519 456.876C335.533 456.682 335.533 456.486 335.519 456.291C335.519 455.16 335.073 454.074 334.279 453.27C333.485 452.466 332.406 452.01 331.278 452V452Z" fill="white"/>
<path id="Vector_181" d="M365.674 475.475L345.223 455.056L344.912 454.754L334.212 458.3L334.052 458.149C334.427 457.593 334.624 456.935 334.616 456.263C334.619 455.52 334.375 454.798 333.923 454.21C333.472 453.621 332.838 453.2 332.122 453.013C331.406 452.825 330.648 452.881 329.967 453.173C329.286 453.465 328.722 453.975 328.362 454.624C328.002 455.272 327.867 456.023 327.978 456.757C328.09 457.491 328.441 458.167 328.978 458.678C329.514 459.19 330.205 459.508 330.941 459.583C331.678 459.658 332.418 459.486 333.046 459.092L333.262 459.309L329.821 469.854L332.284 472.372C332.7 472.118 333.134 471.894 333.582 471.703L331.382 469.467L334.644 459.639L344.536 456.367L363.671 475.485L350.507 488.689L347.15 485.331C346.962 485.788 346.739 486.23 346.483 486.652L350.507 490.67L365.674 475.475ZM329.351 456.291C329.351 455.906 329.464 455.53 329.678 455.211C329.891 454.891 330.194 454.642 330.549 454.495C330.903 454.348 331.293 454.311 331.669 454.386C332.045 454.462 332.39 454.648 332.661 454.921C332.931 455.193 333.115 455.54 333.189 455.918C333.262 456.295 333.223 456.686 333.074 457.041C332.926 457.396 332.677 457.699 332.357 457.911C332.037 458.124 331.662 458.236 331.278 458.234C331.024 458.234 330.773 458.184 330.538 458.086C330.304 457.988 330.091 457.845 329.912 457.664C329.733 457.484 329.591 457.27 329.495 457.034C329.398 456.798 329.349 456.546 329.351 456.291Z" fill="#2D5967"/>
<path id="Vector_182" d="M338.829 466.657L340.249 466.28L339.337 464.601L341.302 465.129L341.678 463.695L339.797 463.648L341.208 462.243L340.145 461.177L339.167 462.79L338.66 460.856L337.212 461.234L338.124 462.894L336.196 462.375L335.81 463.827L337.719 463.856L336.281 465.299L337.315 466.336L338.312 464.704L338.829 466.657Z" fill="#2D5967"/>
<path id="Vector_183" d="M341.152 467.364L340.766 468.816L342.684 468.845L341.236 470.288L342.27 471.325L343.267 469.694L343.794 471.655L345.204 471.269L344.292 469.59L346.257 470.118L346.633 468.684L344.753 468.637L346.163 467.232L345.101 466.166L344.123 467.779L343.624 465.845L342.167 466.232L343.079 467.883L341.152 467.364Z" fill="#2D5967"/>
<path id="Vector_184" d="M346.107 472.354L345.721 473.807L347.639 473.835L346.191 475.278L347.226 476.325L348.222 474.684L348.749 476.646L350.159 476.259L349.247 474.58L351.213 475.108L351.589 473.684L349.708 473.637L351.119 472.222L350.056 471.156L349.078 472.769L348.58 470.836L347.122 471.222L348.034 472.873L346.107 472.354Z" fill="#2D5967"/>
<path id="Vector_185" d="M351.071 477.343L350.677 478.796L352.595 478.824L351.147 480.267L352.181 481.314L353.178 479.682L353.704 481.635L355.115 481.248L354.203 479.569L356.168 480.097L356.544 478.673L354.663 478.626L356.074 477.211L355.011 476.146L354.033 477.758L353.535 475.825L352.078 476.212L352.99 477.862L351.071 477.343Z" fill="#2D5967"/>
<path id="Vector_186" d="M346.925 481.295C346.919 479.447 346.368 477.643 345.341 476.11C344.313 474.576 342.856 473.383 341.153 472.68C339.45 471.976 337.577 471.795 335.771 472.159C333.966 472.523 332.308 473.415 331.008 474.724C329.707 476.032 328.823 477.698 328.465 479.51C328.108 481.322 328.294 483.2 329 484.906C329.706 486.613 330.901 488.071 332.432 489.097C333.964 490.122 335.765 490.67 337.607 490.67C338.832 490.669 340.046 490.425 341.178 489.953C342.309 489.481 343.337 488.79 344.203 487.919C345.068 487.049 345.754 486.016 346.221 484.879C346.688 483.742 346.927 482.524 346.925 481.295ZM337.607 489.236C336.04 489.238 334.509 488.774 333.205 487.902C331.902 487.031 330.886 485.791 330.285 484.34C329.685 482.889 329.526 481.292 329.831 479.751C330.135 478.21 330.889 476.794 331.995 475.683C333.102 474.571 334.513 473.814 336.049 473.506C337.585 473.199 339.178 473.356 340.625 473.957C342.072 474.558 343.309 475.575 344.179 476.882C345.05 478.188 345.514 479.724 345.514 481.295C345.514 483.399 344.682 485.418 343.199 486.907C341.716 488.396 339.705 489.234 337.607 489.236Z" fill="#2D5967"/>
<path id="Vector_187" d="M343.587 480.446H336.61C336.439 479.805 336.041 479.248 335.491 478.879C334.941 478.511 334.276 478.355 333.62 478.442C332.964 478.528 332.362 478.851 331.926 479.35C331.489 479.849 331.249 480.49 331.249 481.153C331.249 481.817 331.489 482.458 331.926 482.957C332.362 483.456 332.964 483.779 333.62 483.865C334.276 483.952 334.941 483.796 335.491 483.427C336.041 483.059 336.439 482.502 336.61 481.861H339.224V483.625H340.634V481.861H342.214V484.322H343.624L343.587 480.446ZM334.005 482.559C333.745 482.559 333.49 482.481 333.274 482.336C333.057 482.191 332.889 481.985 332.789 481.744C332.689 481.502 332.663 481.237 332.714 480.981C332.765 480.725 332.89 480.489 333.074 480.305C333.258 480.12 333.493 479.994 333.748 479.943C334.004 479.892 334.268 479.918 334.509 480.018C334.749 480.118 334.955 480.288 335.1 480.505C335.244 480.722 335.322 480.977 335.322 481.238C335.322 481.589 335.183 481.924 334.936 482.172C334.689 482.42 334.354 482.559 334.005 482.559Z" fill="#2D5967"/>
</g>
</g>
<g id="Icon Text Label_24">
<text id="IconLabel_37" fill="black" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" letter-spacing="0em"><tspan x="327.117" y="509.816">ETCD</tspan></text>
</g>
</g>
<g id="Access-Token_7">
<g id="Access-Token_8">
<g id="Group 245_4">
<path id="Vector_188" d="M1058.81 486.615C1058.02 487.85 1056.96 488.893 1055.72 489.665C1054.48 490.438 1053.08 490.921 1051.62 491.079C1050.17 491.236 1048.7 491.065 1047.32 490.577C1045.94 490.09 1044.69 489.298 1043.65 488.26C1042.62 487.222 1041.83 485.965 1041.35 484.582C1040.86 483.198 1040.69 481.722 1040.85 480.264C1041.01 478.806 1041.49 477.402 1042.26 476.155C1043.03 474.909 1044.07 473.851 1045.3 473.061L1042.24 469.977L1045.64 459.876C1045.22 460.034 1044.77 460.114 1044.33 460.112C1043.57 460.112 1042.83 459.886 1042.2 459.465C1041.58 459.043 1041.09 458.443 1040.8 457.743C1040.52 457.042 1040.44 456.271 1040.59 455.529C1040.75 454.787 1041.11 454.106 1041.65 453.574C1042.19 453.042 1042.87 452.682 1043.61 452.54C1044.35 452.398 1045.12 452.48 1045.82 452.776C1046.51 453.073 1047.1 453.57 1047.51 454.204C1047.93 454.838 1048.14 455.582 1048.13 456.339C1048.13 456.78 1048.06 457.217 1047.91 457.631L1058.04 454.217L1079.33 475.476L1063.51 491.34L1058.81 486.615Z" fill="white"/>
<path id="Vector_189" d="M1044.28 452.943C1045.16 452.943 1046.01 453.296 1046.64 453.924C1047.26 454.552 1047.62 455.403 1047.62 456.291C1047.62 456.963 1047.43 457.621 1047.05 458.178L1047.21 458.329L1057.91 454.754L1058.22 455.056L1078.67 475.476L1063.51 490.67L1058.71 485.86C1058.01 487.121 1057.03 488.202 1055.84 489.018C1054.65 489.833 1053.29 490.361 1051.86 490.559C1050.43 490.757 1048.98 490.621 1047.62 490.16C1046.25 489.7 1045.01 488.928 1043.99 487.905C1042.98 486.882 1042.21 485.637 1041.75 484.267C1041.3 482.896 1041.16 481.439 1041.36 480.008C1041.57 478.578 1042.09 477.213 1042.91 476.022C1043.73 474.832 1044.81 473.847 1046.06 473.146L1042.82 469.854L1046.26 459.347L1046.05 459.13C1045.61 459.405 1045.11 459.574 1044.6 459.624C1044.08 459.674 1043.56 459.603 1043.08 459.417C1042.6 459.232 1042.16 458.936 1041.82 458.553C1041.47 458.171 1041.21 457.712 1041.07 457.214C1040.93 456.715 1040.9 456.19 1040.99 455.68C1041.09 455.17 1041.3 454.689 1041.61 454.275C1041.92 453.861 1042.33 453.525 1042.79 453.294C1043.25 453.063 1043.76 452.943 1044.28 452.943ZM1044.28 452C1043.14 452 1042.06 452.452 1041.25 453.257C1040.45 454.062 1040 455.153 1040 456.291C1040 457.43 1040.45 458.521 1041.25 459.326C1042.06 460.131 1043.14 460.583 1044.28 460.583C1044.48 460.597 1044.67 460.597 1044.87 460.583L1041.88 469.552L1041.69 470.109L1042.11 470.514L1044.57 472.995C1043.37 473.869 1042.38 474.993 1041.65 476.29C1040.93 477.587 1040.49 479.025 1040.38 480.507C1040.26 481.989 1040.47 483.478 1040.98 484.872C1041.5 486.266 1042.3 487.532 1043.35 488.582C1044.4 489.633 1045.66 490.443 1047.05 490.957C1048.44 491.471 1049.93 491.676 1051.4 491.559C1052.88 491.442 1054.32 491.005 1055.61 490.278C1056.9 489.552 1058.02 488.553 1058.89 487.35L1062.86 491.34L1063.53 492L1064.19 491.34L1079.33 476.145L1080 475.476L1079.33 474.815L1058.88 454.386L1058.58 454.084L1058.17 453.669L1057.62 453.858L1048.52 456.876C1048.53 456.682 1048.53 456.486 1048.52 456.291C1048.52 455.16 1048.07 454.074 1047.28 453.27C1046.49 452.466 1045.41 452.01 1044.28 452V452Z" fill="white"/>
<path id="Vector_190" d="M1078.67 475.475L1058.22 455.056L1057.91 454.754L1047.21 458.3L1047.05 458.149C1047.43 457.593 1047.62 456.935 1047.62 456.263C1047.62 455.52 1047.37 454.798 1046.92 454.21C1046.47 453.621 1045.84 453.2 1045.12 453.013C1044.41 452.825 1043.65 452.881 1042.97 453.173C1042.29 453.465 1041.72 453.975 1041.36 454.624C1041 455.272 1040.87 456.023 1040.98 456.757C1041.09 457.491 1041.44 458.167 1041.98 458.678C1042.51 459.19 1043.2 459.508 1043.94 459.583C1044.68 459.658 1045.42 459.486 1046.05 459.092L1046.26 459.309L1042.82 469.854L1045.28 472.372C1045.7 472.118 1046.13 471.894 1046.58 471.703L1044.38 469.467L1047.64 459.639L1057.54 456.367L1076.67 475.485L1063.51 488.689L1060.15 485.331C1059.96 485.788 1059.74 486.23 1059.48 486.652L1063.51 490.67L1078.67 475.475ZM1042.35 456.291C1042.35 455.906 1042.46 455.53 1042.68 455.211C1042.89 454.891 1043.19 454.642 1043.55 454.495C1043.9 454.348 1044.29 454.311 1044.67 454.386C1045.04 454.462 1045.39 454.648 1045.66 454.921C1045.93 455.193 1046.11 455.54 1046.19 455.918C1046.26 456.295 1046.22 456.686 1046.07 457.041C1045.93 457.396 1045.68 457.699 1045.36 457.911C1045.04 458.124 1044.66 458.236 1044.28 458.234C1044.02 458.234 1043.77 458.184 1043.54 458.086C1043.3 457.988 1043.09 457.845 1042.91 457.664C1042.73 457.484 1042.59 457.27 1042.49 457.034C1042.4 456.798 1042.35 456.546 1042.35 456.291Z" fill="#2D5967"/>
<path id="Vector_191" d="M1051.83 466.657L1053.25 466.28L1052.34 464.601L1054.3 465.129L1054.68 463.695L1052.8 463.648L1054.21 462.243L1053.15 461.177L1052.17 462.79L1051.66 460.856L1050.21 461.234L1051.12 462.894L1049.2 462.375L1048.81 463.827L1050.72 463.856L1049.28 465.299L1050.32 466.336L1051.31 464.704L1051.83 466.657Z" fill="#2D5967"/>
<path id="Vector_192" d="M1054.15 467.364L1053.77 468.816L1055.68 468.845L1054.24 470.288L1055.27 471.325L1056.27 469.694L1056.79 471.655L1058.2 471.269L1057.29 469.59L1059.26 470.118L1059.63 468.684L1057.75 468.637L1059.16 467.232L1058.1 466.166L1057.12 467.779L1056.62 465.845L1055.17 466.232L1056.08 467.883L1054.15 467.364Z" fill="#2D5967"/>
<path id="Vector_193" d="M1059.11 472.354L1058.72 473.807L1060.64 473.835L1059.19 475.278L1060.23 476.325L1061.22 474.684L1061.75 476.646L1063.16 476.259L1062.25 474.58L1064.21 475.108L1064.59 473.684L1062.71 473.637L1064.12 472.222L1063.06 471.156L1062.08 472.769L1061.58 470.836L1060.12 471.222L1061.03 472.873L1059.11 472.354Z" fill="#2D5967"/>
<path id="Vector_194" d="M1064.07 477.343L1063.68 478.796L1065.59 478.824L1064.15 480.267L1065.18 481.314L1066.18 479.682L1066.7 481.635L1068.11 481.248L1067.2 479.569L1069.17 480.097L1069.54 478.673L1067.66 478.626L1069.07 477.211L1068.01 476.146L1067.03 477.758L1066.53 475.825L1065.08 476.212L1065.99 477.862L1064.07 477.343Z" fill="#2D5967"/>
<path id="Vector_195" d="M1059.92 481.295C1059.92 479.447 1059.37 477.643 1058.34 476.11C1057.31 474.576 1055.86 473.383 1054.15 472.68C1052.45 471.976 1050.58 471.795 1048.77 472.159C1046.97 472.523 1045.31 473.415 1044.01 474.724C1042.71 476.032 1041.82 477.698 1041.47 479.51C1041.11 481.322 1041.29 483.2 1042 484.906C1042.71 486.613 1043.9 488.071 1045.43 489.097C1046.96 490.122 1048.76 490.67 1050.61 490.67C1051.83 490.669 1053.05 490.425 1054.18 489.953C1055.31 489.481 1056.34 488.79 1057.2 487.919C1058.07 487.049 1058.75 486.016 1059.22 484.879C1059.69 483.742 1059.93 482.524 1059.92 481.295ZM1050.61 489.236C1049.04 489.238 1047.51 488.774 1046.21 487.902C1044.9 487.031 1043.89 485.791 1043.29 484.34C1042.68 482.889 1042.53 481.292 1042.83 479.751C1043.14 478.21 1043.89 476.794 1045 475.683C1046.1 474.571 1047.51 473.814 1049.05 473.506C1050.59 473.199 1052.18 473.356 1053.62 473.957C1055.07 474.558 1056.31 475.575 1057.18 476.882C1058.05 478.188 1058.51 479.724 1058.51 481.295C1058.51 483.399 1057.68 485.418 1056.2 486.907C1054.72 488.396 1052.7 489.234 1050.61 489.236Z" fill="#2D5967"/>
<path id="Vector_196" d="M1056.59 480.446H1049.61C1049.44 479.805 1049.04 479.248 1048.49 478.879C1047.94 478.511 1047.28 478.355 1046.62 478.442C1045.96 478.528 1045.36 478.851 1044.93 479.35C1044.49 479.849 1044.25 480.49 1044.25 481.153C1044.25 481.817 1044.49 482.458 1044.93 482.957C1045.36 483.456 1045.96 483.779 1046.62 483.865C1047.28 483.952 1047.94 483.796 1048.49 483.427C1049.04 483.059 1049.44 482.502 1049.61 481.861H1052.22V483.625H1053.63V481.861H1055.21V484.322H1056.62L1056.59 480.446ZM1047.01 482.559C1046.74 482.559 1046.49 482.481 1046.27 482.336C1046.06 482.191 1045.89 481.985 1045.79 481.744C1045.69 481.502 1045.66 481.237 1045.71 480.981C1045.76 480.725 1045.89 480.489 1046.07 480.305C1046.26 480.12 1046.49 479.994 1046.75 479.943C1047 479.892 1047.27 479.918 1047.51 480.018C1047.75 480.118 1047.96 480.288 1048.1 480.505C1048.24 480.722 1048.32 480.977 1048.32 481.238C1048.32 481.589 1048.18 481.924 1047.94 482.172C1047.69 482.42 1047.35 482.559 1047.01 482.559Z" fill="#2D5967"/>
</g>
</g>
<g id="Icon Text Label_25">
<text id="IconLabel_38" fill="black" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" letter-spacing="0em"><tspan x="1040.12" y="509.816">ETCD</tspan></text>
</g>
</g>
<g id="Access-Token_9">
<g id="Access-Token_10">
<g id="Group 245_5">
<path id="Vector_197" d="M413.806 486.615C413.017 487.85 411.963 488.893 410.72 489.665C409.476 490.438 408.076 490.921 406.622 491.079C405.168 491.236 403.698 491.065 402.318 490.577C400.939 490.09 399.686 489.298 398.653 488.26C397.619 487.222 396.83 485.965 396.345 484.582C395.86 483.198 395.69 481.722 395.848 480.264C396.007 478.806 396.489 477.402 397.26 476.155C398.031 474.909 399.071 473.851 400.303 473.061L397.238 469.977L400.642 459.876C400.221 460.034 399.775 460.114 399.325 460.112C398.57 460.112 397.832 459.886 397.205 459.465C396.578 459.043 396.09 458.443 395.803 457.743C395.516 457.042 395.443 456.271 395.594 455.529C395.745 454.787 396.112 454.106 396.65 453.574C397.187 453.042 397.87 452.682 398.612 452.54C399.354 452.398 400.121 452.48 400.816 452.776C401.511 453.073 402.102 453.57 402.515 454.204C402.928 454.838 403.143 455.582 403.134 456.339C403.134 456.78 403.058 457.217 402.908 457.631L413.044 454.217L434.333 475.476L418.507 491.34L413.806 486.615Z" fill="white"/>
<path id="Vector_198" d="M399.278 452.943C400.164 452.943 401.013 453.296 401.639 453.924C402.265 454.552 402.616 455.403 402.616 456.291C402.624 456.963 402.427 457.621 402.052 458.178L402.212 458.329L412.913 454.754L413.223 455.056L433.674 475.476L418.507 490.67L413.712 485.86C413.01 487.121 412.026 488.202 410.837 489.018C409.648 489.833 408.287 490.361 406.86 490.559C405.434 490.757 403.981 490.621 402.616 490.16C401.25 489.7 400.01 488.928 398.993 487.905C397.976 486.882 397.209 485.637 396.753 484.267C396.297 482.896 396.164 481.439 396.365 480.008C396.566 478.578 397.095 477.213 397.91 476.022C398.726 474.832 399.806 473.847 401.065 473.146L397.821 469.854L401.262 459.347L401.046 459.13C400.608 459.405 400.112 459.574 399.597 459.624C399.082 459.674 398.563 459.603 398.08 459.417C397.598 459.232 397.164 458.936 396.815 458.553C396.466 458.171 396.21 457.712 396.067 457.214C395.925 456.715 395.9 456.19 395.994 455.68C396.089 455.17 396.3 454.689 396.611 454.275C396.923 453.861 397.326 453.525 397.788 453.294C398.251 453.063 398.761 452.943 399.278 452.943ZM399.278 452C398.144 452 397.055 452.452 396.253 453.257C395.451 454.062 395 455.153 395 456.291C395 457.43 395.451 458.521 396.253 459.326C397.055 460.131 398.144 460.583 399.278 460.583C399.476 460.597 399.674 460.597 399.871 460.583L396.881 469.552L396.693 470.109L397.106 470.514L399.57 472.995C398.371 473.869 397.376 474.993 396.653 476.29C395.929 477.587 395.494 479.025 395.379 480.507C395.263 481.989 395.469 483.478 395.982 484.872C396.495 486.266 397.303 487.532 398.351 488.582C399.399 489.633 400.662 490.443 402.052 490.957C403.442 491.471 404.927 491.676 406.404 491.559C407.881 491.442 409.315 491.005 410.608 490.278C411.9 489.552 413.02 488.553 413.89 487.35L417.858 491.34L418.526 492L419.194 491.34L434.332 476.145L435 475.476L434.332 474.815L413.881 454.386L413.58 454.084L413.166 453.669L412.621 453.858L403.519 456.876C403.533 456.682 403.533 456.486 403.519 456.291C403.519 455.16 403.073 454.074 402.279 453.27C401.485 452.466 400.406 452.01 399.278 452V452Z" fill="white"/>
<path id="Vector_199" d="M433.674 475.475L413.223 455.056L412.912 454.754L402.212 458.3L402.052 458.149C402.427 457.593 402.624 456.935 402.616 456.263C402.619 455.52 402.375 454.798 401.923 454.21C401.472 453.621 400.838 453.2 400.122 453.013C399.406 452.825 398.648 452.881 397.967 453.173C397.286 453.465 396.722 453.975 396.362 454.624C396.002 455.272 395.867 456.023 395.978 456.757C396.09 457.491 396.441 458.167 396.978 458.678C397.514 459.19 398.205 459.508 398.941 459.583C399.678 459.658 400.418 459.486 401.046 459.092L401.262 459.309L397.821 469.854L400.284 472.372C400.7 472.118 401.134 471.894 401.582 471.703L399.382 469.467L402.644 459.639L412.536 456.367L431.671 475.485L418.507 488.689L415.15 485.331C414.962 485.788 414.739 486.23 414.483 486.652L418.507 490.67L433.674 475.475ZM397.351 456.291C397.351 455.906 397.464 455.53 397.678 455.211C397.891 454.891 398.194 454.642 398.549 454.495C398.903 454.348 399.293 454.311 399.669 454.386C400.045 454.462 400.39 454.648 400.661 454.921C400.931 455.193 401.115 455.54 401.189 455.918C401.262 456.295 401.223 456.686 401.074 457.041C400.926 457.396 400.677 457.699 400.357 457.911C400.037 458.124 399.662 458.236 399.278 458.234C399.024 458.234 398.773 458.184 398.538 458.086C398.304 457.988 398.091 457.845 397.912 457.664C397.733 457.484 397.591 457.27 397.495 457.034C397.398 456.798 397.349 456.546 397.351 456.291Z" fill="#2D5967"/>
<path id="Vector_200" d="M406.829 466.657L408.249 466.28L407.337 464.601L409.302 465.129L409.678 463.695L407.797 463.648L409.208 462.243L408.145 461.177L407.167 462.79L406.66 460.856L405.212 461.234L406.124 462.894L404.196 462.375L403.81 463.827L405.719 463.856L404.281 465.299L405.315 466.336L406.312 464.704L406.829 466.657Z" fill="#2D5967"/>
<path id="Vector_201" d="M409.152 467.364L408.766 468.816L410.684 468.845L409.236 470.288L410.27 471.325L411.267 469.694L411.794 471.655L413.204 471.269L412.292 469.59L414.257 470.118L414.633 468.684L412.753 468.637L414.163 467.232L413.101 466.166L412.123 467.779L411.624 465.845L410.167 466.232L411.079 467.883L409.152 467.364Z" fill="#2D5967"/>
<path id="Vector_202" d="M414.107 472.354L413.721 473.807L415.639 473.835L414.191 475.278L415.226 476.325L416.222 474.684L416.749 476.646L418.159 476.259L417.247 474.58L419.213 475.108L419.589 473.684L417.708 473.637L419.119 472.222L418.056 471.156L417.078 472.769L416.58 470.836L415.122 471.222L416.034 472.873L414.107 472.354Z" fill="#2D5967"/>
<path id="Vector_203" d="M419.071 477.343L418.677 478.796L420.595 478.824L419.147 480.267L420.181 481.314L421.178 479.682L421.704 481.635L423.115 481.248L422.203 479.569L424.168 480.097L424.544 478.673L422.663 478.626L424.074 477.211L423.011 476.146L422.033 477.758L421.535 475.825L420.078 476.212L420.99 477.862L419.071 477.343Z" fill="#2D5967"/>
<path id="Vector_204" d="M414.925 481.295C414.919 479.447 414.368 477.643 413.341 476.11C412.313 474.576 410.856 473.383 409.153 472.68C407.45 471.976 405.577 471.795 403.771 472.159C401.966 472.523 400.308 473.415 399.008 474.724C397.707 476.032 396.823 477.698 396.465 479.51C396.108 481.322 396.294 483.2 397 484.906C397.706 486.613 398.901 488.071 400.432 489.097C401.964 490.122 403.765 490.67 405.607 490.67C406.832 490.669 408.046 490.425 409.178 489.953C410.309 489.481 411.337 488.79 412.203 487.919C413.068 487.049 413.754 486.016 414.221 484.879C414.688 483.742 414.927 482.524 414.925 481.295ZM405.607 489.236C404.04 489.238 402.509 488.774 401.205 487.902C399.902 487.031 398.886 485.791 398.285 484.34C397.685 482.889 397.526 481.292 397.831 479.751C398.135 478.21 398.889 476.794 399.995 475.683C401.102 474.571 402.513 473.814 404.049 473.506C405.585 473.199 407.178 473.356 408.625 473.957C410.072 474.558 411.309 475.575 412.179 476.882C413.05 478.188 413.514 479.724 413.514 481.295C413.514 483.399 412.682 485.418 411.199 486.907C409.716 488.396 407.705 489.234 405.607 489.236Z" fill="#2D5967"/>
<path id="Vector_205" d="M411.587 480.446H404.61C404.439 479.805 404.041 479.248 403.491 478.879C402.941 478.511 402.276 478.355 401.62 478.442C400.964 478.528 400.362 478.851 399.926 479.35C399.489 479.849 399.249 480.49 399.249 481.153C399.249 481.817 399.489 482.458 399.926 482.957C400.362 483.456 400.964 483.779 401.62 483.865C402.276 483.952 402.941 483.796 403.491 483.427C404.041 483.059 404.439 482.502 404.61 481.861H407.224V483.625H408.634V481.861H410.214V484.322H411.624L411.587 480.446ZM402.005 482.559C401.745 482.559 401.49 482.481 401.274 482.336C401.057 482.191 400.889 481.985 400.789 481.744C400.689 481.502 400.663 481.237 400.714 480.981C400.765 480.725 400.89 480.489 401.074 480.305C401.258 480.12 401.493 479.994 401.748 479.943C402.004 479.892 402.268 479.918 402.509 480.018C402.749 480.118 402.955 480.288 403.1 480.505C403.244 480.722 403.322 480.977 403.322 481.238C403.322 481.589 403.183 481.924 402.936 482.172C402.689 482.42 402.354 482.559 402.005 482.559Z" fill="#2D5967"/>
</g>
</g>
<g id="Icon Text Label_26">
<text id="IconLabel_39" fill="black" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" letter-spacing="0em"><tspan x="395.117" y="509.816">ETCD</tspan></text>
</g>
</g>
<g id="Access-Token_11">
<g id="Access-Token_12">
<g id="Group 245_6">
<path id="Vector_206" d="M1126.81 486.615C1126.02 487.85 1124.96 488.893 1123.72 489.665C1122.48 490.438 1121.08 490.921 1119.62 491.079C1118.17 491.236 1116.7 491.065 1115.32 490.577C1113.94 490.09 1112.69 489.298 1111.65 488.26C1110.62 487.222 1109.83 485.965 1109.35 484.582C1108.86 483.198 1108.69 481.722 1108.85 480.264C1109.01 478.806 1109.49 477.402 1110.26 476.155C1111.03 474.909 1112.07 473.851 1113.3 473.061L1110.24 469.977L1113.64 459.876C1113.22 460.034 1112.77 460.114 1112.33 460.112C1111.57 460.112 1110.83 459.886 1110.2 459.465C1109.58 459.043 1109.09 458.443 1108.8 457.743C1108.52 457.042 1108.44 456.271 1108.59 455.529C1108.75 454.787 1109.11 454.106 1109.65 453.574C1110.19 453.042 1110.87 452.682 1111.61 452.54C1112.35 452.398 1113.12 452.48 1113.82 452.776C1114.51 453.073 1115.1 453.57 1115.51 454.204C1115.93 454.838 1116.14 455.582 1116.13 456.339C1116.13 456.78 1116.06 457.217 1115.91 457.631L1126.04 454.217L1147.33 475.476L1131.51 491.34L1126.81 486.615Z" fill="white"/>
<path id="Vector_207" d="M1112.28 452.943C1113.16 452.943 1114.01 453.296 1114.64 453.924C1115.26 454.552 1115.62 455.403 1115.62 456.291C1115.62 456.963 1115.43 457.621 1115.05 458.178L1115.21 458.329L1125.91 454.754L1126.22 455.056L1146.67 475.476L1131.51 490.67L1126.71 485.86C1126.01 487.121 1125.03 488.202 1123.84 489.018C1122.65 489.833 1121.29 490.361 1119.86 490.559C1118.43 490.757 1116.98 490.621 1115.62 490.16C1114.25 489.7 1113.01 488.928 1111.99 487.905C1110.98 486.882 1110.21 485.637 1109.75 484.267C1109.3 482.896 1109.16 481.439 1109.36 480.008C1109.57 478.578 1110.09 477.213 1110.91 476.022C1111.73 474.832 1112.81 473.847 1114.06 473.146L1110.82 469.854L1114.26 459.347L1114.05 459.13C1113.61 459.405 1113.11 459.574 1112.6 459.624C1112.08 459.674 1111.56 459.603 1111.08 459.417C1110.6 459.232 1110.16 458.936 1109.82 458.553C1109.47 458.171 1109.21 457.712 1109.07 457.214C1108.93 456.715 1108.9 456.19 1108.99 455.68C1109.09 455.17 1109.3 454.689 1109.61 454.275C1109.92 453.861 1110.33 453.525 1110.79 453.294C1111.25 453.063 1111.76 452.943 1112.28 452.943ZM1112.28 452C1111.14 452 1110.06 452.452 1109.25 453.257C1108.45 454.062 1108 455.153 1108 456.291C1108 457.43 1108.45 458.521 1109.25 459.326C1110.06 460.131 1111.14 460.583 1112.28 460.583C1112.48 460.597 1112.67 460.597 1112.87 460.583L1109.88 469.552L1109.69 470.109L1110.11 470.514L1112.57 472.995C1111.37 473.869 1110.38 474.993 1109.65 476.29C1108.93 477.587 1108.49 479.025 1108.38 480.507C1108.26 481.989 1108.47 483.478 1108.98 484.872C1109.5 486.266 1110.3 487.532 1111.35 488.582C1112.4 489.633 1113.66 490.443 1115.05 490.957C1116.44 491.471 1117.93 491.676 1119.4 491.559C1120.88 491.442 1122.32 491.005 1123.61 490.278C1124.9 489.552 1126.02 488.553 1126.89 487.35L1130.86 491.34L1131.53 492L1132.19 491.34L1147.33 476.145L1148 475.476L1147.33 474.815L1126.88 454.386L1126.58 454.084L1126.17 453.669L1125.62 453.858L1116.52 456.876C1116.53 456.682 1116.53 456.486 1116.52 456.291C1116.52 455.16 1116.07 454.074 1115.28 453.27C1114.49 452.466 1113.41 452.01 1112.28 452V452Z" fill="white"/>
<path id="Vector_208" d="M1146.67 475.475L1126.22 455.056L1125.91 454.754L1115.21 458.3L1115.05 458.149C1115.43 457.593 1115.62 456.935 1115.62 456.263C1115.62 455.52 1115.37 454.798 1114.92 454.21C1114.47 453.621 1113.84 453.2 1113.12 453.013C1112.41 452.825 1111.65 452.881 1110.97 453.173C1110.29 453.465 1109.72 453.975 1109.36 454.624C1109 455.272 1108.87 456.023 1108.98 456.757C1109.09 457.491 1109.44 458.167 1109.98 458.678C1110.51 459.19 1111.2 459.508 1111.94 459.583C1112.68 459.658 1113.42 459.486 1114.05 459.092L1114.26 459.309L1110.82 469.854L1113.28 472.372C1113.7 472.118 1114.13 471.894 1114.58 471.703L1112.38 469.467L1115.64 459.639L1125.54 456.367L1144.67 475.485L1131.51 488.689L1128.15 485.331C1127.96 485.788 1127.74 486.23 1127.48 486.652L1131.51 490.67L1146.67 475.475ZM1110.35 456.291C1110.35 455.906 1110.46 455.53 1110.68 455.211C1110.89 454.891 1111.19 454.642 1111.55 454.495C1111.9 454.348 1112.29 454.311 1112.67 454.386C1113.04 454.462 1113.39 454.648 1113.66 454.921C1113.93 455.193 1114.11 455.54 1114.19 455.918C1114.26 456.295 1114.22 456.686 1114.07 457.041C1113.93 457.396 1113.68 457.699 1113.36 457.911C1113.04 458.124 1112.66 458.236 1112.28 458.234C1112.02 458.234 1111.77 458.184 1111.54 458.086C1111.3 457.988 1111.09 457.845 1110.91 457.664C1110.73 457.484 1110.59 457.27 1110.49 457.034C1110.4 456.798 1110.35 456.546 1110.35 456.291Z" fill="#2D5967"/>
<path id="Vector_209" d="M1119.83 466.657L1121.25 466.28L1120.34 464.601L1122.3 465.129L1122.68 463.695L1120.8 463.648L1122.21 462.243L1121.15 461.177L1120.17 462.79L1119.66 460.856L1118.21 461.234L1119.12 462.894L1117.2 462.375L1116.81 463.827L1118.72 463.856L1117.28 465.299L1118.32 466.336L1119.31 464.704L1119.83 466.657Z" fill="#2D5967"/>
<path id="Vector_210" d="M1122.15 467.364L1121.77 468.816L1123.68 468.845L1122.24 470.288L1123.27 471.325L1124.27 469.694L1124.79 471.655L1126.2 471.269L1125.29 469.59L1127.26 470.118L1127.63 468.684L1125.75 468.637L1127.16 467.232L1126.1 466.166L1125.12 467.779L1124.62 465.845L1123.17 466.232L1124.08 467.883L1122.15 467.364Z" fill="#2D5967"/>
<path id="Vector_211" d="M1127.11 472.354L1126.72 473.807L1128.64 473.835L1127.19 475.278L1128.23 476.325L1129.22 474.684L1129.75 476.646L1131.16 476.259L1130.25 474.58L1132.21 475.108L1132.59 473.684L1130.71 473.637L1132.12 472.222L1131.06 471.156L1130.08 472.769L1129.58 470.836L1128.12 471.222L1129.03 472.873L1127.11 472.354Z" fill="#2D5967"/>
<path id="Vector_212" d="M1132.07 477.343L1131.68 478.796L1133.59 478.824L1132.15 480.267L1133.18 481.314L1134.18 479.682L1134.7 481.635L1136.11 481.248L1135.2 479.569L1137.17 480.097L1137.54 478.673L1135.66 478.626L1137.07 477.211L1136.01 476.146L1135.03 477.758L1134.53 475.825L1133.08 476.212L1133.99 477.862L1132.07 477.343Z" fill="#2D5967"/>
<path id="Vector_213" d="M1127.92 481.295C1127.92 479.447 1127.37 477.643 1126.34 476.11C1125.31 474.576 1123.86 473.383 1122.15 472.68C1120.45 471.976 1118.58 471.795 1116.77 472.159C1114.97 472.523 1113.31 473.415 1112.01 474.724C1110.71 476.032 1109.82 477.698 1109.47 479.51C1109.11 481.322 1109.29 483.2 1110 484.906C1110.71 486.613 1111.9 488.071 1113.43 489.097C1114.96 490.122 1116.76 490.67 1118.61 490.67C1119.83 490.669 1121.05 490.425 1122.18 489.953C1123.31 489.481 1124.34 488.79 1125.2 487.919C1126.07 487.049 1126.75 486.016 1127.22 484.879C1127.69 483.742 1127.93 482.524 1127.92 481.295ZM1118.61 489.236C1117.04 489.238 1115.51 488.774 1114.21 487.902C1112.9 487.031 1111.89 485.791 1111.29 484.34C1110.68 482.889 1110.53 481.292 1110.83 479.751C1111.14 478.21 1111.89 476.794 1113 475.683C1114.1 474.571 1115.51 473.814 1117.05 473.506C1118.59 473.199 1120.18 473.356 1121.62 473.957C1123.07 474.558 1124.31 475.575 1125.18 476.882C1126.05 478.188 1126.51 479.724 1126.51 481.295C1126.51 483.399 1125.68 485.418 1124.2 486.907C1122.72 488.396 1120.7 489.234 1118.61 489.236Z" fill="#2D5967"/>
<path id="Vector_214" d="M1124.59 480.446H1117.61C1117.44 479.805 1117.04 479.248 1116.49 478.879C1115.94 478.511 1115.28 478.355 1114.62 478.442C1113.96 478.528 1113.36 478.851 1112.93 479.35C1112.49 479.849 1112.25 480.49 1112.25 481.153C1112.25 481.817 1112.49 482.458 1112.93 482.957C1113.36 483.456 1113.96 483.779 1114.62 483.865C1115.28 483.952 1115.94 483.796 1116.49 483.427C1117.04 483.059 1117.44 482.502 1117.61 481.861H1120.22V483.625H1121.63V481.861H1123.21V484.322H1124.62L1124.59 480.446ZM1115.01 482.559C1114.74 482.559 1114.49 482.481 1114.27 482.336C1114.06 482.191 1113.89 481.985 1113.79 481.744C1113.69 481.502 1113.66 481.237 1113.71 480.981C1113.76 480.725 1113.89 480.489 1114.07 480.305C1114.26 480.12 1114.49 479.994 1114.75 479.943C1115 479.892 1115.27 479.918 1115.51 480.018C1115.75 480.118 1115.96 480.288 1116.1 480.505C1116.24 480.722 1116.32 480.977 1116.32 481.238C1116.32 481.589 1116.18 481.924 1115.94 482.172C1115.69 482.42 1115.35 482.559 1115.01 482.559Z" fill="#2D5967"/>
</g>
</g>
<g id="Icon Text Label_27">
<text id="IconLabel_40" fill="black" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" letter-spacing="0em"><tspan x="1108.12" y="509.816">ETCD</tspan></text>
</g>
</g>
<g id="Container_5">
<g id="OCI-Containers_5">
<g id="Group_87">
<g id="Group_88">
<path id="Vector_215" d="M98.8806 513.254C97.0896 513.254 95.7463 511.91 95.7463 510.119V457.881C95.7463 456.09 97.0896 454.746 98.8806 454.746H151.119C152.91 454.746 154.254 456.09 154.254 457.881V510.119C154.254 511.91 152.91 513.254 151.119 513.254H98.8806Z" fill="white"/>
<path id="Vector_216" d="M151.119 455.493C152.463 455.493 153.507 456.537 153.507 457.881V510.119C153.507 511.463 152.463 512.507 151.119 512.507H98.8806C97.5373 512.507 96.4925 511.463 96.4925 510.119V457.881C96.4925 456.537 97.5373 455.493 98.8806 455.493H151.119ZM151.119 454H98.8806C96.791 454 95 455.791 95 457.881V510.119C95 512.209 96.791 514 98.8806 514H151.119C153.209 514 155 512.209 155 510.119V457.881C155 455.791 153.358 454 151.119 454Z" fill="white"/>
</g>
<g id="Group_89">
<path id="Vector_217" d="M151.119 455.493H98.8806C97.5373 455.493 96.4926 456.537 96.4926 457.881V510.119C96.4926 511.463 97.5373 512.507 98.8806 512.507H151.119C152.463 512.507 153.507 511.463 153.507 510.119V457.881C153.507 456.537 152.463 455.493 151.119 455.493ZM151.418 510.119C151.418 510.269 151.269 510.418 151.119 510.418H98.8806C98.7314 510.418 98.5821 510.269 98.5821 510.119V457.881C98.5821 457.731 98.7314 457.582 98.8806 457.582H151.119C151.269 457.582 151.418 457.731 151.418 457.881V510.119Z" fill="#2D5967"/>
<path id="Vector_218" d="M102.761 505.94H147.239V493.254H102.761V505.94ZM105 495.343H145.149V503.851H105V495.343Z" fill="#2D5967"/>
<path id="Vector_219" d="M140.373 501.313C141.28 501.313 142.015 500.578 142.015 499.672C142.015 498.765 141.28 498.03 140.373 498.03C139.466 498.03 138.731 498.765 138.731 499.672C138.731 500.578 139.466 501.313 140.373 501.313Z" fill="#2D5967"/>
<path id="Vector_220" d="M123.508 461.761H102.761V474.448H123.358V461.761H123.508ZM112.314 464H113.955V472.507H112.314V464ZM110.224 472.358H108.582V464H110.224V472.358ZM116.045 464H117.687V472.507H116.045V464ZM105 464H106.642V472.507H105V464ZM121.269 472.358H119.627V464H121.269V472.358Z" fill="#2D5967"/>
<path id="Vector_221" d="M126.642 474.448H147.239V461.761H126.642V474.448ZM137.687 472.358H136.045V464H137.687V472.358ZM139.776 464H141.418V472.507H139.776V464ZM133.955 472.358H132.314V464H133.955V472.358ZM145.149 472.358H143.508V464H145.149V472.358ZM128.732 464H130.373V472.507H128.732V464Z" fill="#2D5967"/>
<path id="Vector_222" d="M123.508 477.731H102.761V490.418H123.358V477.731H123.508ZM112.314 479.821H113.955V488.328H112.314V479.821ZM110.224 488.179H108.582V479.672H110.224V488.179ZM116.045 479.821H117.687V488.328H116.045V479.821ZM105 479.821H106.642V488.328H105V479.821ZM121.269 488.179H119.627V479.672H121.269V488.179Z" fill="#2D5967"/>
<path id="Vector_223" d="M126.642 490.418H147.239V477.731H126.642V490.418ZM137.687 488.179H136.045V479.672H137.687V488.179ZM139.776 479.821H141.418V488.328H139.776V479.821ZM133.955 488.179H132.314V479.672H133.955V488.179ZM145.149 488.179H143.508V479.672H145.149V488.179ZM128.732 479.821H130.373V488.328H128.732V479.821Z" fill="#2D5967"/>
</g>
</g>
</g>
<g id="Icon Text Label_28">
<text id="IconLabel_41" fill="black" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" letter-spacing="0em"><tspan x="105.875" y="531.816">ci-w2</tspan></text>
</g>
</g>
<g id="Container_6">
<g id="OCI-Containers_6">
<g id="Group_90">
<g id="Group_91">
<path id="Vector_224" d="M811.881 513.254C810.089 513.254 808.746 511.91 808.746 510.119V457.881C808.746 456.09 810.089 454.746 811.881 454.746H864.119C865.91 454.746 867.254 456.09 867.254 457.881V510.119C867.254 511.91 865.91 513.254 864.119 513.254H811.881Z" fill="white"/>
<path id="Vector_225" d="M864.119 455.493C865.463 455.493 866.507 456.537 866.507 457.881V510.119C866.507 511.463 865.463 512.507 864.119 512.507H811.881C810.537 512.507 809.493 511.463 809.493 510.119V457.881C809.493 456.537 810.537 455.493 811.881 455.493H864.119ZM864.119 454H811.881C809.791 454 808 455.791 808 457.881V510.119C808 512.209 809.791 514 811.881 514H864.119C866.209 514 868 512.209 868 510.119V457.881C868 455.791 866.358 454 864.119 454Z" fill="white"/>
</g>
<g id="Group_92">
<path id="Vector_226" d="M864.119 455.493H811.881C810.537 455.493 809.493 456.537 809.493 457.881V510.119C809.493 511.463 810.537 512.507 811.881 512.507H864.119C865.463 512.507 866.507 511.463 866.507 510.119V457.881C866.507 456.537 865.463 455.493 864.119 455.493ZM864.418 510.119C864.418 510.269 864.269 510.418 864.119 510.418H811.881C811.731 510.418 811.582 510.269 811.582 510.119V457.881C811.582 457.731 811.731 457.582 811.881 457.582H864.119C864.269 457.582 864.418 457.731 864.418 457.881V510.119Z" fill="#2D5967"/>
<path id="Vector_227" d="M815.761 505.94H860.239V493.254H815.761V505.94ZM818 495.343H858.149V503.851H818V495.343Z" fill="#2D5967"/>
<path id="Vector_228" d="M853.373 501.313C854.28 501.313 855.015 500.578 855.015 499.672C855.015 498.765 854.28 498.03 853.373 498.03C852.466 498.03 851.731 498.765 851.731 499.672C851.731 500.578 852.466 501.313 853.373 501.313Z" fill="#2D5967"/>
<path id="Vector_229" d="M836.508 461.761H815.761V474.448H836.358V461.761H836.508ZM825.314 464H826.955V472.507H825.314V464ZM823.224 472.358H821.582V464H823.224V472.358ZM829.045 464H830.687V472.507H829.045V464ZM818 464H819.642V472.507H818V464ZM834.269 472.358H832.627V464H834.269V472.358Z" fill="#2D5967"/>
<path id="Vector_230" d="M839.642 474.448H860.239V461.761H839.642V474.448ZM850.687 472.358H849.045V464H850.687V472.358ZM852.776 464H854.418V472.507H852.776V464ZM846.955 472.358H845.314V464H846.955V472.358ZM858.149 472.358H856.508V464H858.149V472.358ZM841.732 464H843.373V472.507H841.732V464Z" fill="#2D5967"/>
<path id="Vector_231" d="M836.508 477.731H815.761V490.418H836.358V477.731H836.508ZM825.314 479.821H826.955V488.328H825.314V479.821ZM823.224 488.179H821.582V479.672H823.224V488.179ZM829.045 479.821H830.687V488.328H829.045V479.821ZM818 479.821H819.642V488.328H818V479.821ZM834.269 488.179H832.627V479.672H834.269V488.179Z" fill="#2D5967"/>
<path id="Vector_232" d="M839.642 490.418H860.239V477.731H839.642V490.418ZM850.687 488.179H849.045V479.672H850.687V488.179ZM852.776 479.821H854.418V488.328H852.776V479.821ZM846.955 488.179H845.314V479.672H846.955V488.179ZM858.149 488.179H856.508V479.672H858.149V488.179ZM841.732 479.821H843.373V488.328H841.732V479.821Z" fill="#2D5967"/>
</g>
</g>
</g>
<g id="Icon Text Label_29">
<text id="IconLabel_42" fill="black" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" letter-spacing="0em"><tspan x="818.875" y="531.816">ci-w2</tspan></text>
</g>
</g>
<g id="Container_7">
<g id="OCI-Containers_7">
<g id="Group_93">
<g id="Group_94">
<path id="Vector_233" d="M320.881 427.254C319.09 427.254 317.746 425.91 317.746 424.119V371.881C317.746 370.09 319.09 368.746 320.881 368.746H373.119C374.91 368.746 376.254 370.09 376.254 371.881V424.119C376.254 425.91 374.91 427.254 373.119 427.254H320.881Z" fill="white"/>
<path id="Vector_234" d="M373.119 369.493C374.463 369.493 375.507 370.537 375.507 371.881V424.119C375.507 425.463 374.463 426.507 373.119 426.507H320.881C319.537 426.507 318.493 425.463 318.493 424.119V371.881C318.493 370.537 319.537 369.493 320.881 369.493H373.119ZM373.119 368H320.881C318.791 368 317 369.791 317 371.881V424.119C317 426.209 318.791 428 320.881 428H373.119C375.209 428 377 426.209 377 424.119V371.881C377 369.791 375.358 368 373.119 368Z" fill="white"/>
</g>
<g id="Group_95">
<path id="Vector_235" d="M373.119 369.493H320.881C319.537 369.493 318.493 370.537 318.493 371.881V424.119C318.493 425.463 319.537 426.507 320.881 426.507H373.119C374.463 426.507 375.507 425.463 375.507 424.119V371.881C375.507 370.537 374.463 369.493 373.119 369.493ZM373.418 424.119C373.418 424.269 373.269 424.418 373.119 424.418H320.881C320.731 424.418 320.582 424.269 320.582 424.119V371.881C320.582 371.731 320.731 371.582 320.881 371.582H373.119C373.269 371.582 373.418 371.731 373.418 371.881V424.119Z" fill="#2D5967"/>
<path id="Vector_236" d="M324.761 419.94H369.239V407.254H324.761V419.94ZM327 409.343H367.149V417.851H327V409.343Z" fill="#2D5967"/>
<path id="Vector_237" d="M362.373 415.313C363.28 415.313 364.015 414.578 364.015 413.672C364.015 412.765 363.28 412.03 362.373 412.03C361.466 412.03 360.731 412.765 360.731 413.672C360.731 414.578 361.466 415.313 362.373 415.313Z" fill="#2D5967"/>
<path id="Vector_238" d="M345.508 375.761H324.761V388.448H345.358V375.761H345.508ZM334.314 378H335.955V386.507H334.314V378ZM332.224 386.358H330.582V378H332.224V386.358ZM338.045 378H339.687V386.507H338.045V378ZM327 378H328.642V386.507H327V378ZM343.269 386.358H341.627V378H343.269V386.358Z" fill="#2D5967"/>
<path id="Vector_239" d="M348.642 388.448H369.239V375.761H348.642V388.448ZM359.687 386.358H358.045V378H359.687V386.358ZM361.776 378H363.418V386.507H361.776V378ZM355.955 386.358H354.314V378H355.955V386.358ZM367.149 386.358H365.508V378H367.149V386.358ZM350.732 378H352.373V386.507H350.732V378Z" fill="#2D5967"/>
<path id="Vector_240" d="M345.508 391.731H324.761V404.418H345.358V391.731H345.508ZM334.314 393.821H335.955V402.328H334.314V393.821ZM332.224 402.179H330.582V393.672H332.224V402.179ZM338.045 393.821H339.687V402.328H338.045V393.821ZM327 393.821H328.642V402.328H327V393.821ZM343.269 402.179H341.627V393.672H343.269V402.179Z" fill="#2D5967"/>
<path id="Vector_241" d="M348.642 404.418H369.239V391.731H348.642V404.418ZM359.687 402.179H358.045V393.672H359.687V402.179ZM361.776 393.821H363.418V402.328H361.776V393.821ZM355.955 402.179H354.314V393.672H355.955V402.179ZM367.149 402.179H365.508V393.672H367.149V402.179ZM350.732 393.821H352.373V402.328H350.732V393.821Z" fill="#2D5967"/>
</g>
</g>
</g>
<g id="Icon Text Label_30">
<text id="IconLabel_43" fill="black" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" letter-spacing="0em"><tspan x="325.195" y="445.816">ci-cp2</tspan></text>
</g>
</g>
<g id="Container_8">
<g id="OCI-Containers_8">
<g id="Group_96">
<g id="Group_97">
<path id="Vector_242" d="M1033.88 427.254C1032.09 427.254 1030.75 425.91 1030.75 424.119V371.881C1030.75 370.09 1032.09 368.746 1033.88 368.746H1086.12C1087.91 368.746 1089.25 370.09 1089.25 371.881V424.119C1089.25 425.91 1087.91 427.254 1086.12 427.254H1033.88Z" fill="white"/>
<path id="Vector_243" d="M1086.12 369.493C1087.46 369.493 1088.51 370.537 1088.51 371.881V424.119C1088.51 425.463 1087.46 426.507 1086.12 426.507H1033.88C1032.54 426.507 1031.49 425.463 1031.49 424.119V371.881C1031.49 370.537 1032.54 369.493 1033.88 369.493H1086.12ZM1086.12 368H1033.88C1031.79 368 1030 369.791 1030 371.881V424.119C1030 426.209 1031.79 428 1033.88 428H1086.12C1088.21 428 1090 426.209 1090 424.119V371.881C1090 369.791 1088.36 368 1086.12 368Z" fill="white"/>
</g>
<g id="Group_98">
<path id="Vector_244" d="M1086.12 369.493H1033.88C1032.54 369.493 1031.49 370.537 1031.49 371.881V424.119C1031.49 425.463 1032.54 426.507 1033.88 426.507H1086.12C1087.46 426.507 1088.51 425.463 1088.51 424.119V371.881C1088.51 370.537 1087.46 369.493 1086.12 369.493ZM1086.42 424.119C1086.42 424.269 1086.27 424.418 1086.12 424.418H1033.88C1033.73 424.418 1033.58 424.269 1033.58 424.119V371.881C1033.58 371.731 1033.73 371.582 1033.88 371.582H1086.12C1086.27 371.582 1086.42 371.731 1086.42 371.881V424.119Z" fill="#2D5967"/>
<path id="Vector_245" d="M1037.76 419.94H1082.24V407.254H1037.76V419.94ZM1040 409.343H1080.15V417.851H1040V409.343Z" fill="#2D5967"/>
<path id="Vector_246" d="M1075.37 415.313C1076.28 415.313 1077.01 414.578 1077.01 413.672C1077.01 412.765 1076.28 412.03 1075.37 412.03C1074.47 412.03 1073.73 412.765 1073.73 413.672C1073.73 414.578 1074.47 415.313 1075.37 415.313Z" fill="#2D5967"/>
<path id="Vector_247" d="M1058.51 375.761H1037.76V388.448H1058.36V375.761H1058.51ZM1047.31 378H1048.96V386.507H1047.31V378ZM1045.22 386.358H1043.58V378H1045.22V386.358ZM1051.04 378H1052.69V386.507H1051.04V378ZM1040 378H1041.64V386.507H1040V378ZM1056.27 386.358H1054.63V378H1056.27V386.358Z" fill="#2D5967"/>
<path id="Vector_248" d="M1061.64 388.448H1082.24V375.761H1061.64V388.448ZM1072.69 386.358H1071.04V378H1072.69V386.358ZM1074.78 378H1076.42V386.507H1074.78V378ZM1068.96 386.358H1067.31V378H1068.96V386.358ZM1080.15 386.358H1078.51V378H1080.15V386.358ZM1063.73 378H1065.37V386.507H1063.73V378Z" fill="#2D5967"/>
<path id="Vector_249" d="M1058.51 391.731H1037.76V404.418H1058.36V391.731H1058.51ZM1047.31 393.821H1048.96V402.328H1047.31V393.821ZM1045.22 402.179H1043.58V393.672H1045.22V402.179ZM1051.04 393.821H1052.69V402.328H1051.04V393.821ZM1040 393.821H1041.64V402.328H1040V393.821ZM1056.27 402.179H1054.63V393.672H1056.27V402.179Z" fill="#2D5967"/>
<path id="Vector_250" d="M1061.64 404.418H1082.24V391.731H1061.64V404.418ZM1072.69 402.179H1071.04V393.672H1072.69V402.179ZM1074.78 393.821H1076.42V402.328H1074.78V393.821ZM1068.96 402.179H1067.31V393.672H1068.96V402.179ZM1080.15 402.179H1078.51V393.672H1080.15V402.179ZM1063.73 393.821H1065.37V402.328H1063.73V393.821Z" fill="#2D5967"/>
</g>
</g>
</g>
<g id="Icon Text Label_31">
<text id="IconLabel_44" fill="black" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" letter-spacing="0em"><tspan x="1038.2" y="445.816">ci-cp2</tspan></text>
</g>
</g>
<g id="Container_9">
<g id="OCI-Containers_9">
<g id="Group_99">
<g id="Group_100">
<path id="Vector_251" d="M166.881 513.254C165.09 513.254 163.746 511.91 163.746 510.119V457.881C163.746 456.09 165.09 454.746 166.881 454.746H219.119C220.91 454.746 222.254 456.09 222.254 457.881V510.119C222.254 511.91 220.91 513.254 219.119 513.254H166.881Z" fill="white"/>
<path id="Vector_252" d="M219.119 455.493C220.463 455.493 221.507 456.537 221.507 457.881V510.119C221.507 511.463 220.463 512.507 219.119 512.507H166.881C165.537 512.507 164.493 511.463 164.493 510.119V457.881C164.493 456.537 165.537 455.493 166.881 455.493H219.119ZM219.119 454H166.881C164.791 454 163 455.791 163 457.881V510.119C163 512.209 164.791 514 166.881 514H219.119C221.209 514 223 512.209 223 510.119V457.881C223 455.791 221.358 454 219.119 454Z" fill="white"/>
</g>
<g id="Group_101">
<path id="Vector_253" d="M219.119 455.493H166.881C165.537 455.493 164.493 456.537 164.493 457.881V510.119C164.493 511.463 165.537 512.507 166.881 512.507H219.119C220.463 512.507 221.507 511.463 221.507 510.119V457.881C221.507 456.537 220.463 455.493 219.119 455.493ZM219.418 510.119C219.418 510.269 219.269 510.418 219.119 510.418H166.881C166.731 510.418 166.582 510.269 166.582 510.119V457.881C166.582 457.731 166.731 457.582 166.881 457.582H219.119C219.269 457.582 219.418 457.731 219.418 457.881V510.119Z" fill="#2D5967"/>
<path id="Vector_254" d="M170.761 505.94H215.239V493.254H170.761V505.94ZM173 495.343H213.149V503.851H173V495.343Z" fill="#2D5967"/>
<path id="Vector_255" d="M208.373 501.313C209.28 501.313 210.015 500.578 210.015 499.672C210.015 498.765 209.28 498.03 208.373 498.03C207.466 498.03 206.731 498.765 206.731 499.672C206.731 500.578 207.466 501.313 208.373 501.313Z" fill="#2D5967"/>
<path id="Vector_256" d="M191.508 461.761H170.761V474.448H191.358V461.761H191.508ZM180.314 464H181.955V472.507H180.314V464ZM178.224 472.358H176.582V464H178.224V472.358ZM184.045 464H185.687V472.507H184.045V464ZM173 464H174.642V472.507H173V464ZM189.269 472.358H187.627V464H189.269V472.358Z" fill="#2D5967"/>
<path id="Vector_257" d="M194.642 474.448H215.239V461.761H194.642V474.448ZM205.687 472.358H204.045V464H205.687V472.358ZM207.776 464H209.418V472.507H207.776V464ZM201.955 472.358H200.314V464H201.955V472.358ZM213.149 472.358H211.508V464H213.149V472.358ZM196.732 464H198.373V472.507H196.732V464Z" fill="#2D5967"/>
<path id="Vector_258" d="M191.508 477.731H170.761V490.418H191.358V477.731H191.508ZM180.314 479.821H181.955V488.328H180.314V479.821ZM178.224 488.179H176.582V479.672H178.224V488.179ZM184.045 479.821H185.687V488.328H184.045V479.821ZM173 479.821H174.642V488.328H173V479.821ZM189.269 488.179H187.627V479.672H189.269V488.179Z" fill="#2D5967"/>
<path id="Vector_259" d="M194.642 490.418H215.239V477.731H194.642V490.418ZM205.687 488.179H204.045V479.672H205.687V488.179ZM207.776 479.821H209.418V488.328H207.776V479.821ZM201.955 488.179H200.314V479.672H201.955V488.179ZM213.149 488.179H211.508V479.672H213.149V488.179ZM196.732 479.821H198.373V488.328H196.732V479.821Z" fill="#2D5967"/>
</g>
</g>
</g>
<g id="Icon Text Label_32">
<text id="IconLabel_45" fill="black" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" letter-spacing="0em"><tspan x="173.828" y="531.816">ci-w3</tspan></text>
</g>
</g>
<g id="Container_10">
<g id="OCI-Containers_10">
<g id="Group_102">
<g id="Group_103">
<path id="Vector_260" d="M879.881 513.254C878.089 513.254 876.746 511.91 876.746 510.119V457.881C876.746 456.09 878.089 454.746 879.881 454.746H932.119C933.91 454.746 935.254 456.09 935.254 457.881V510.119C935.254 511.91 933.91 513.254 932.119 513.254H879.881Z" fill="white"/>
<path id="Vector_261" d="M932.119 455.493C933.463 455.493 934.507 456.537 934.507 457.881V510.119C934.507 511.463 933.463 512.507 932.119 512.507H879.881C878.537 512.507 877.493 511.463 877.493 510.119V457.881C877.493 456.537 878.537 455.493 879.881 455.493H932.119ZM932.119 454H879.881C877.791 454 876 455.791 876 457.881V510.119C876 512.209 877.791 514 879.881 514H932.119C934.209 514 936 512.209 936 510.119V457.881C936 455.791 934.358 454 932.119 454Z" fill="white"/>
</g>
<g id="Group_104">
<path id="Vector_262" d="M932.119 455.493H879.881C878.537 455.493 877.493 456.537 877.493 457.881V510.119C877.493 511.463 878.537 512.507 879.881 512.507H932.119C933.463 512.507 934.507 511.463 934.507 510.119V457.881C934.507 456.537 933.463 455.493 932.119 455.493ZM932.418 510.119C932.418 510.269 932.269 510.418 932.119 510.418H879.881C879.731 510.418 879.582 510.269 879.582 510.119V457.881C879.582 457.731 879.731 457.582 879.881 457.582H932.119C932.269 457.582 932.418 457.731 932.418 457.881V510.119Z" fill="#2D5967"/>
<path id="Vector_263" d="M883.761 505.94H928.239V493.254H883.761V505.94ZM886 495.343H926.149V503.851H886V495.343Z" fill="#2D5967"/>
<path id="Vector_264" d="M921.373 501.313C922.28 501.313 923.015 500.578 923.015 499.672C923.015 498.765 922.28 498.03 921.373 498.03C920.466 498.03 919.731 498.765 919.731 499.672C919.731 500.578 920.466 501.313 921.373 501.313Z" fill="#2D5967"/>
<path id="Vector_265" d="M904.508 461.761H883.761V474.448H904.358V461.761H904.508ZM893.314 464H894.955V472.507H893.314V464ZM891.224 472.358H889.582V464H891.224V472.358ZM897.045 464H898.687V472.507H897.045V464ZM886 464H887.642V472.507H886V464ZM902.269 472.358H900.627V464H902.269V472.358Z" fill="#2D5967"/>
<path id="Vector_266" d="M907.642 474.448H928.239V461.761H907.642V474.448ZM918.687 472.358H917.045V464H918.687V472.358ZM920.776 464H922.418V472.507H920.776V464ZM914.955 472.358H913.314V464H914.955V472.358ZM926.149 472.358H924.508V464H926.149V472.358ZM909.732 464H911.373V472.507H909.732V464Z" fill="#2D5967"/>
<path id="Vector_267" d="M904.508 477.731H883.761V490.418H904.358V477.731H904.508ZM893.314 479.821H894.955V488.328H893.314V479.821ZM891.224 488.179H889.582V479.672H891.224V488.179ZM897.045 479.821H898.687V488.328H897.045V479.821ZM886 479.821H887.642V488.328H886V479.821ZM902.269 488.179H900.627V479.672H902.269V488.179Z" fill="#2D5967"/>
<path id="Vector_268" d="M907.642 490.418H928.239V477.731H907.642V490.418ZM918.687 488.179H917.045V479.672H918.687V488.179ZM920.776 479.821H922.418V488.328H920.776V479.821ZM914.955 488.179H913.314V479.672H914.955V488.179ZM926.149 488.179H924.508V479.672H926.149V488.179ZM909.732 479.821H911.373V488.328H909.732V479.821Z" fill="#2D5967"/>
</g>
</g>
</g>
<g id="Icon Text Label_33">
<text id="IconLabel_46" fill="black" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" letter-spacing="0em"><tspan x="886.828" y="531.816">ci-w3</tspan></text>
</g>
</g>
<g id="Container_11">
<g id="OCI-Containers_11">
<g id="Group_105">
<g id="Group_106">
<path id="Vector_269" d="M388.881 427.254C387.09 427.254 385.746 425.91 385.746 424.119V371.881C385.746 370.09 387.09 368.746 388.881 368.746H441.119C442.91 368.746 444.254 370.09 444.254 371.881V424.119C444.254 425.91 442.91 427.254 441.119 427.254H388.881Z" fill="white"/>
<path id="Vector_270" d="M441.119 369.493C442.463 369.493 443.507 370.537 443.507 371.881V424.119C443.507 425.463 442.463 426.507 441.119 426.507H388.881C387.537 426.507 386.493 425.463 386.493 424.119V371.881C386.493 370.537 387.537 369.493 388.881 369.493H441.119ZM441.119 368H388.881C386.791 368 385 369.791 385 371.881V424.119C385 426.209 386.791 428 388.881 428H441.119C443.209 428 445 426.209 445 424.119V371.881C445 369.791 443.358 368 441.119 368Z" fill="white"/>
</g>
<g id="Group_107">
<path id="Vector_271" d="M441.119 369.493H388.881C387.537 369.493 386.493 370.537 386.493 371.881V424.119C386.493 425.463 387.537 426.507 388.881 426.507H441.119C442.463 426.507 443.507 425.463 443.507 424.119V371.881C443.507 370.537 442.463 369.493 441.119 369.493ZM441.418 424.119C441.418 424.269 441.269 424.418 441.119 424.418H388.881C388.731 424.418 388.582 424.269 388.582 424.119V371.881C388.582 371.731 388.731 371.582 388.881 371.582H441.119C441.269 371.582 441.418 371.731 441.418 371.881V424.119Z" fill="#2D5967"/>
<path id="Vector_272" d="M392.761 419.94H437.239V407.254H392.761V419.94ZM395 409.343H435.149V417.851H395V409.343Z" fill="#2D5967"/>
<path id="Vector_273" d="M430.373 415.313C431.28 415.313 432.015 414.578 432.015 413.672C432.015 412.765 431.28 412.03 430.373 412.03C429.466 412.03 428.731 412.765 428.731 413.672C428.731 414.578 429.466 415.313 430.373 415.313Z" fill="#2D5967"/>
<path id="Vector_274" d="M413.508 375.761H392.761V388.448H413.358V375.761H413.508ZM402.314 378H403.955V386.507H402.314V378ZM400.224 386.358H398.582V378H400.224V386.358ZM406.045 378H407.687V386.507H406.045V378ZM395 378H396.642V386.507H395V378ZM411.269 386.358H409.627V378H411.269V386.358Z" fill="#2D5967"/>
<path id="Vector_275" d="M416.642 388.448H437.239V375.761H416.642V388.448ZM427.687 386.358H426.045V378H427.687V386.358ZM429.776 378H431.418V386.507H429.776V378ZM423.955 386.358H422.314V378H423.955V386.358ZM435.149 386.358H433.508V378H435.149V386.358ZM418.732 378H420.373V386.507H418.732V378Z" fill="#2D5967"/>
<path id="Vector_276" d="M413.508 391.731H392.761V404.418H413.358V391.731H413.508ZM402.314 393.821H403.955V402.328H402.314V393.821ZM400.224 402.179H398.582V393.672H400.224V402.179ZM406.045 393.821H407.687V402.328H406.045V393.821ZM395 393.821H396.642V402.328H395V393.821ZM411.269 402.179H409.627V393.672H411.269V402.179Z" fill="#2D5967"/>
<path id="Vector_277" d="M416.642 404.418H437.239V391.731H416.642V404.418ZM427.687 402.179H426.045V393.672H427.687V402.179ZM429.776 393.821H431.418V402.328H429.776V393.821ZM423.955 402.179H422.314V393.672H423.955V402.179ZM435.149 402.179H433.508V393.672H435.149V402.179ZM418.732 393.821H420.373V402.328H418.732V393.821Z" fill="#2D5967"/>
</g>
</g>
</g>
<g id="Icon Text Label_34">
<text id="IconLabel_47" fill="black" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" letter-spacing="0em"><tspan x="393.148" y="445.816">ci-cp3</tspan></text>
</g>
</g>
<g id="Container_12">
<g id="OCI-Containers_12">
<g id="Group_108">
<g id="Group_109">
<path id="Vector_278" d="M1101.88 427.254C1100.09 427.254 1098.75 425.91 1098.75 424.119V371.881C1098.75 370.09 1100.09 368.746 1101.88 368.746H1154.12C1155.91 368.746 1157.25 370.09 1157.25 371.881V424.119C1157.25 425.91 1155.91 427.254 1154.12 427.254H1101.88Z" fill="white"/>
<path id="Vector_279" d="M1154.12 369.493C1155.46 369.493 1156.51 370.537 1156.51 371.881V424.119C1156.51 425.463 1155.46 426.507 1154.12 426.507H1101.88C1100.54 426.507 1099.49 425.463 1099.49 424.119V371.881C1099.49 370.537 1100.54 369.493 1101.88 369.493H1154.12ZM1154.12 368H1101.88C1099.79 368 1098 369.791 1098 371.881V424.119C1098 426.209 1099.79 428 1101.88 428H1154.12C1156.21 428 1158 426.209 1158 424.119V371.881C1158 369.791 1156.36 368 1154.12 368Z" fill="white"/>
</g>
<g id="Group_110">
<path id="Vector_280" d="M1154.12 369.493H1101.88C1100.54 369.493 1099.49 370.537 1099.49 371.881V424.119C1099.49 425.463 1100.54 426.507 1101.88 426.507H1154.12C1155.46 426.507 1156.51 425.463 1156.51 424.119V371.881C1156.51 370.537 1155.46 369.493 1154.12 369.493ZM1154.42 424.119C1154.42 424.269 1154.27 424.418 1154.12 424.418H1101.88C1101.73 424.418 1101.58 424.269 1101.58 424.119V371.881C1101.58 371.731 1101.73 371.582 1101.88 371.582H1154.12C1154.27 371.582 1154.42 371.731 1154.42 371.881V424.119Z" fill="#2D5967"/>
<path id="Vector_281" d="M1105.76 419.94H1150.24V407.254H1105.76V419.94ZM1108 409.343H1148.15V417.851H1108V409.343Z" fill="#2D5967"/>
<path id="Vector_282" d="M1143.37 415.313C1144.28 415.313 1145.01 414.578 1145.01 413.672C1145.01 412.765 1144.28 412.03 1143.37 412.03C1142.47 412.03 1141.73 412.765 1141.73 413.672C1141.73 414.578 1142.47 415.313 1143.37 415.313Z" fill="#2D5967"/>
<path id="Vector_283" d="M1126.51 375.761H1105.76V388.448H1126.36V375.761H1126.51ZM1115.31 378H1116.96V386.507H1115.31V378ZM1113.22 386.358H1111.58V378H1113.22V386.358ZM1119.04 378H1120.69V386.507H1119.04V378ZM1108 378H1109.64V386.507H1108V378ZM1124.27 386.358H1122.63V378H1124.27V386.358Z" fill="#2D5967"/>
<path id="Vector_284" d="M1129.64 388.448H1150.24V375.761H1129.64V388.448ZM1140.69 386.358H1139.04V378H1140.69V386.358ZM1142.78 378H1144.42V386.507H1142.78V378ZM1136.96 386.358H1135.31V378H1136.96V386.358ZM1148.15 386.358H1146.51V378H1148.15V386.358ZM1131.73 378H1133.37V386.507H1131.73V378Z" fill="#2D5967"/>
<path id="Vector_285" d="M1126.51 391.731H1105.76V404.418H1126.36V391.731H1126.51ZM1115.31 393.821H1116.96V402.328H1115.31V393.821ZM1113.22 402.179H1111.58V393.672H1113.22V402.179ZM1119.04 393.821H1120.69V402.328H1119.04V393.821ZM1108 393.821H1109.64V402.328H1108V393.821ZM1124.27 402.179H1122.63V393.672H1124.27V402.179Z" fill="#2D5967"/>
<path id="Vector_286" d="M1129.64 404.418H1150.24V391.731H1129.64V404.418ZM1140.69 402.179H1139.04V393.672H1140.69V402.179ZM1142.78 393.821H1144.42V402.328H1142.78V393.821ZM1136.96 402.179H1135.31V393.672H1136.96V402.179ZM1148.15 402.179H1146.51V393.672H1148.15V402.179ZM1131.73 393.821H1133.37V402.328H1131.73V393.821Z" fill="#2D5967"/>
</g>
</g>
</g>
<g id="Icon Text Label_35">
<text id="IconLabel_48" fill="black" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" letter-spacing="0em"><tspan x="1106.15" y="445.816">ci-cp3</tspan></text>
</g>
</g>
<g id="Gateway">
<rect id="Rectangle 699" x="590" y="577" width="2" height="60" fill="#F5F4F2"/>
<g id="Icon Master">
<g id="Dynamic-Routing-Gateway-DRG">
<path id="Vector_287" d="M591 616.524C601.783 616.524 610.524 607.783 610.524 597C610.524 586.217 601.783 577.476 591 577.476C580.217 577.476 571.476 586.217 571.476 597C571.476 607.783 580.217 616.524 591 616.524Z" fill="white"/>
<path id="Vector_288" d="M591 577.952C594.767 577.952 598.45 579.07 601.582 581.162C604.715 583.255 607.156 586.23 608.598 589.711C610.039 593.191 610.417 597.021 609.682 600.716C608.947 604.411 607.133 607.805 604.469 610.469C601.805 613.133 598.411 614.947 594.716 615.682C591.021 616.417 587.191 616.039 583.711 614.598C580.23 613.156 577.255 610.715 575.162 607.582C573.07 604.45 571.952 600.767 571.952 597C571.952 591.948 573.959 587.103 577.531 583.531C581.103 579.959 585.948 577.952 591 577.952ZM591 577C587.044 577 583.178 578.173 579.889 580.371C576.6 582.568 574.036 585.692 572.522 589.346C571.009 593.001 570.613 597.022 571.384 600.902C572.156 604.781 574.061 608.345 576.858 611.142C579.655 613.939 583.219 615.844 587.098 616.616C590.978 617.387 594.999 616.991 598.654 615.478C602.308 613.964 605.432 611.4 607.629 608.111C609.827 604.822 611 600.956 611 597C611 591.696 608.893 586.609 605.142 582.858C601.391 579.107 596.304 577 591 577V577Z" fill="white"/>
<path id="Vector_289" d="M591 577.952C587.233 577.952 583.55 579.07 580.418 581.162C577.285 583.255 574.844 586.23 573.402 589.711C571.961 593.191 571.583 597.021 572.318 600.716C573.053 604.411 574.867 607.805 577.531 610.469C580.195 613.133 583.589 614.947 587.284 615.682C590.979 616.417 594.809 616.039 598.289 614.598C601.77 613.156 604.745 610.715 606.838 607.582C608.931 604.45 610.048 600.767 610.048 597C610.048 594.499 609.555 592.022 608.598 589.711C607.64 587.4 606.237 585.3 604.469 583.531C602.7 581.763 600.6 580.36 598.289 579.402C595.978 578.445 593.501 577.952 591 577.952ZM591 614.457C587.547 614.457 584.172 613.433 581.301 611.515C578.431 609.597 576.193 606.87 574.872 603.681C573.55 600.491 573.205 596.981 573.878 593.594C574.552 590.208 576.215 587.097 578.656 584.656C581.097 582.215 584.208 580.552 587.594 579.878C590.981 579.205 594.491 579.55 597.681 580.872C600.87 582.193 603.597 584.431 605.515 587.301C607.433 590.172 608.457 593.547 608.457 597C608.452 601.628 606.611 606.066 603.339 609.339C600.066 612.611 595.628 614.452 591 614.457Z" fill="#2D5967"/>
<path id="Vector_290" d="M591.791 608.181V586.019L594.21 588.438L595.333 587.314L591 582.981L586.667 587.314L587.791 588.438L590.21 586.019V608.181L587.791 605.762L586.667 606.886L591 611.219L595.333 606.886L594.21 605.762L591.791 608.181Z" fill="#2D5967"/>
<path id="Vector_291" d="M585.809 592.667L584.686 593.79L587.105 596.209H576.914V597.79H587.105L584.686 600.209L585.809 601.333L590.133 597L585.809 592.667Z" fill="#2D5967"/>
<path id="Vector_292" d="M594.895 596.209L597.314 593.79L596.191 592.667L591.867 597L596.191 601.333L597.314 600.209L594.895 597.79H605.086V596.209H594.895Z" fill="#2D5967"/>
</g>
<g id="Icon Text Label_36">
<text id="IconLabel_49" fill="black" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" letter-spacing="0em"><tspan x="574.836" y="634.816">DRG</tspan></text>
</g>
</g>
</g>
<g id="Gateway_2">
<rect id="Rectangle 699_2" x="690" y="577" width="2" height="60" fill="#F5F4F2"/>
<g id="Icon Master_2">
<g id="Dynamic-Routing-Gateway-DRG_2">
<path id="Vector_293" d="M691 616.524C701.783 616.524 710.524 607.783 710.524 597C710.524 586.217 701.783 577.476 691 577.476C680.217 577.476 671.476 586.217 671.476 597C671.476 607.783 680.217 616.524 691 616.524Z" fill="white"/>
<path id="Vector_294" d="M691 577.952C694.767 577.952 698.45 579.07 701.582 581.162C704.715 583.255 707.156 586.23 708.598 589.711C710.039 593.191 710.417 597.021 709.682 600.716C708.947 604.411 707.133 607.805 704.469 610.469C701.805 613.133 698.411 614.947 694.716 615.682C691.021 616.417 687.191 616.039 683.711 614.598C680.23 613.156 677.255 610.715 675.162 607.582C673.07 604.45 671.952 600.767 671.952 597C671.952 591.948 673.959 587.103 677.531 583.531C681.103 579.959 685.948 577.952 691 577.952ZM691 577C687.044 577 683.178 578.173 679.889 580.371C676.6 582.568 674.036 585.692 672.522 589.346C671.009 593.001 670.613 597.022 671.384 600.902C672.156 604.781 674.061 608.345 676.858 611.142C679.655 613.939 683.219 615.844 687.098 616.616C690.978 617.387 694.999 616.991 698.654 615.478C702.308 613.964 705.432 611.4 707.629 608.111C709.827 604.822 711 600.956 711 597C711 591.696 708.893 586.609 705.142 582.858C701.391 579.107 696.304 577 691 577V577Z" fill="white"/>
<path id="Vector_295" d="M691 577.952C687.233 577.952 683.55 579.07 680.418 581.162C677.285 583.255 674.844 586.23 673.402 589.711C671.961 593.191 671.583 597.021 672.318 600.716C673.053 604.411 674.867 607.805 677.531 610.469C680.195 613.133 683.589 614.947 687.284 615.682C690.979 616.417 694.809 616.039 698.289 614.598C701.77 613.156 704.745 610.715 706.838 607.582C708.931 604.45 710.048 600.767 710.048 597C710.048 594.499 709.555 592.022 708.598 589.711C707.64 587.4 706.237 585.3 704.469 583.531C702.7 581.763 700.6 580.36 698.289 579.402C695.978 578.445 693.501 577.952 691 577.952ZM691 614.457C687.547 614.457 684.172 613.433 681.301 611.515C678.431 609.597 676.193 606.87 674.872 603.681C673.55 600.491 673.205 596.981 673.878 593.594C674.552 590.208 676.215 587.097 678.656 584.656C681.097 582.215 684.208 580.552 687.594 579.878C690.981 579.205 694.491 579.55 697.681 580.872C700.87 582.193 703.597 584.431 705.515 587.301C707.433 590.172 708.457 593.547 708.457 597C708.452 601.628 706.611 606.066 703.339 609.339C700.066 612.611 695.628 614.452 691 614.457Z" fill="#2D5967"/>
<path id="Vector_296" d="M691.791 608.181V586.019L694.21 588.438L695.333 587.314L691 582.981L686.667 587.314L687.791 588.438L690.21 586.019V608.181L687.791 605.762L686.667 606.886L691 611.219L695.333 606.886L694.21 605.762L691.791 608.181Z" fill="#2D5967"/>
<path id="Vector_297" d="M685.809 592.667L684.686 593.79L687.105 596.209H676.914V597.79H687.105L684.686 600.209L685.809 601.333L690.133 597L685.809 592.667Z" fill="#2D5967"/>
<path id="Vector_298" d="M694.895 596.209L697.314 593.79L696.191 592.667L691.867 597L696.191 601.333L697.314 600.209L694.895 597.79H705.086V596.209H694.895Z" fill="#2D5967"/>
</g>
<g id="Icon Text Label_37">
<text id="IconLabel_50" fill="black" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="16" letter-spacing="0em"><tspan x="674.836" y="634.816">DRG</tspan></text>
</g>
</g>
</g>
<path id="Vector 57" d="M192 543V588" stroke="#312D2A" stroke-width="2"/>
<path id="Vector 62" d="M905 543V588" stroke="#312D2A" stroke-width="2"/>
<path id="Vector 60" d="M125 431L125 454" stroke="#312D2A" stroke-width="2"/>
<path id="Vector 67" d="M125.707 251.293C125.317 250.902 124.683 250.902 124.293 251.293L117.929 257.657C117.538 258.047 117.538 258.681 117.929 259.071C118.319 259.462 118.953 259.462 119.343 259.071L125 253.414L130.657 259.071C131.047 259.462 131.681 259.462 132.071 259.071C132.462 258.681 132.462 258.047 132.071 257.657L125.707 251.293ZM124 252L124 350L126 350L126 252L124 252Z" fill="#312D2A"/>
<path id="Vector 68" d="M838.707 251.293C838.317 250.902 837.683 250.902 837.293 251.293L830.929 257.657C830.538 258.047 830.538 258.681 830.929 259.071C831.319 259.462 831.953 259.462 832.343 259.071L838 253.414L843.657 259.071C844.047 259.462 844.681 259.462 845.071 259.071C845.462 258.681 845.462 258.047 845.071 257.657L838.707 251.293ZM837 252L837 350L839 350L839 252L837 252Z" fill="#312D2A"/>
<path id="Vector 63" d="M838 431L838 454" stroke="#312D2A" stroke-width="2"/>
<path id="Vector 58" d="M346.293 578.707C346.683 579.098 347.317 579.098 347.707 578.707L354.071 572.343C354.462 571.953 354.462 571.319 354.071 570.929C353.681 570.538 353.047 570.538 352.657 570.929L347 576.586L341.343 570.929C340.953 570.538 340.319 570.538 339.929 570.929C339.538 571.319 339.538 571.953 339.929 572.343L346.293 578.707ZM346 543V578H348V543H346Z" fill="#312D2A"/>
<path id="Vector 64" d="M1060.71 543.293C1060.32 542.902 1059.68 542.902 1059.29 543.293L1052.93 549.657C1052.54 550.047 1052.54 550.681 1052.93 551.071C1053.32 551.462 1053.95 551.462 1054.34 551.071L1060 545.414L1065.66 551.071C1066.05 551.462 1066.68 551.462 1067.07 551.071C1067.46 550.681 1067.46 550.047 1067.07 549.657L1060.71 543.293ZM1059 544V579H1061V544H1059Z" fill="#312D2A"/>
<path id="Vector 59" d="M56 454V444H194V454" stroke="#312D2A" stroke-width="2"/>
<path id="Vector 65" d="M769 454V444H907V454" stroke="#312D2A" stroke-width="2"/>
<path id="Vector 77" d="M992 368V335H1130V368" stroke="#312D2A" stroke-width="2"/>
<path id="Vector 78" d="M279 368V335H417V368" stroke="#312D2A" stroke-width="2"/>
<path id="Vector 61" d="M555 328H556V327H555V328ZM555 607V608H556V607H555ZM539.293 606.293C538.902 606.683 538.902 607.317 539.293 607.707L545.657 614.071C546.047 614.462 546.681 614.462 547.071 614.071C547.462 613.681 547.462 613.047 547.071 612.657L541.414 607L547.071 601.343C547.462 600.953 547.462 600.319 547.071 599.929C546.681 599.538 546.047 599.538 545.657 599.929L539.293 606.293ZM538 329H555V327H538V329ZM554 328V607H556V328H554ZM555 606H540V608H555V606Z" fill="#312D2A"/>
<path id="Vector 70" d="M301.293 19.2929C300.902 19.6834 300.902 20.3166 301.293 20.7071L307.657 27.0711C308.047 27.4616 308.681 27.4616 309.071 27.0711C309.462 26.6805 309.462 26.0474 309.071 25.6569L303.414 20L309.071 14.3431C309.462 13.9526 309.462 13.3195 309.071 12.9289C308.681 12.5384 308.047 12.5384 307.657 12.9289L301.293 19.2929ZM606 19H302V21H606V19Z" fill="#312D2A"/>
<path id="Vector 71" d="M606.707 44.7071C607.098 44.3166 607.098 43.6834 606.707 43.2929L600.343 36.9289C599.953 36.5384 599.319 36.5384 598.929 36.9289C598.538 37.3195 598.538 37.9526 598.929 38.3431L604.586 44L598.929 49.6569C598.538 50.0474 598.538 50.6805 598.929 51.0711C599.319 51.4616 599.953 51.4616 600.343 51.0711L606.707 44.7071ZM606 43H302V45H606V43Z" fill="#312D2A"/>
<path id="Vector 66" d="M1251.29 327.293C1250.9 327.683 1250.9 328.317 1251.29 328.707L1257.66 335.071C1258.05 335.462 1258.68 335.462 1259.07 335.071C1259.46 334.681 1259.46 334.047 1259.07 333.657L1253.41 328L1259.07 322.343C1259.46 321.953 1259.46 321.319 1259.07 320.929C1258.68 320.538 1258.05 320.538 1257.66 320.929L1251.29 327.293ZM1268 328H1269V327H1268V328ZM1268 607V608H1269V607H1268ZM1252 329H1268V327H1252V329ZM1267 328V607H1269V328H1267ZM1268 606H1252V608H1268V606Z" fill="#312D2A"/>
<path id="Vector 69" d="M115 168V32H248" stroke="black" stroke-width="2"/>
<path id="Vector 81" d="M274 80V101H828V168" stroke="#312D2A" stroke-width="2" stroke-dasharray="4 4"/>
<path id="Vector 79" d="M347 368V335H473" stroke="black" stroke-width="2"/>
<path id="Vector 80" d="M1060 368V335H1186" stroke="black" stroke-width="2"/>
<path id="Vector 72" d="M612.293 596.293C611.902 596.683 611.902 597.317 612.293 597.707L618.657 604.071C619.047 604.462 619.681 604.462 620.071 604.071C620.462 603.681 620.462 603.047 620.071 602.657L614.414 597L620.071 591.343C620.462 590.953 620.462 590.319 620.071 589.929C619.681 589.538 619.047 589.538 618.657 589.929L612.293 596.293ZM669.707 597.707C670.098 597.317 670.098 596.683 669.707 596.293L663.343 589.929C662.953 589.538 662.319 589.538 661.929 589.929C661.538 590.319 661.538 590.953 661.929 591.343L667.586 597L661.929 602.657C661.538 603.047 661.538 603.681 661.929 604.071C662.319 604.462 662.953 604.462 663.343 604.071L669.707 597.707ZM613 598H669V596H613V598Z" fill="#312D2A"/>
<path id="Vector 73" d="M191 708H190V709H191V708ZM905 708V709H906V708H905ZM905.707 674.173C905.317 673.782 904.683 673.782 904.293 674.173L897.929 680.537C897.538 680.927 897.538 681.561 897.929 681.951C898.319 682.342 898.953 682.342 899.343 681.951L905 676.294L910.657 681.951C911.047 682.342 911.681 682.342 912.071 681.951C912.462 681.561 912.462 680.927 912.071 680.537L905.707 674.173ZM190 672V708H192V672H190ZM191 709H905V707H191V709ZM906 708V674.88H904V708H906Z" fill="#312D2A"/>
<rect id="Rectangle 700" x="343" y="704" width="8" height="8" fill="white"/>
<rect id="Rectangle 701" x="503" y="704" width="8" height="8" fill="white"/>
<path id="Vector 74" d="M419 724V737H1140V725.04" stroke="#312D2A" stroke-width="2"/>
<path id="Vector 75" d="M347 672V724H507V676.16" stroke="#312D2A" stroke-width="2"/>
<path id="Vector 76" d="M1060.71 672.293C1060.32 671.902 1059.68 671.902 1059.29 672.293L1052.93 678.657C1052.54 679.047 1052.54 679.681 1052.93 680.071C1053.32 680.462 1053.95 680.462 1054.34 680.071L1060 674.414L1065.66 680.071C1066.05 680.462 1066.68 680.462 1067.07 680.071C1067.46 679.681 1067.46 679.047 1067.07 678.657L1060.71 672.293ZM1060 724H1059V725H1060V724ZM1220 724V725H1221V724H1220ZM1220.71 673.75C1220.32 673.36 1219.68 673.36 1219.29 673.75L1212.93 680.114C1212.54 680.505 1212.54 681.138 1212.93 681.528C1213.32 681.919 1213.95 681.919 1214.34 681.528L1220 675.871L1225.66 681.528C1226.05 681.919 1226.68 681.919 1227.07 681.528C1227.46 681.138 1227.46 680.505 1227.07 680.114L1220.71 673.75ZM1059 673V724H1061V673H1059ZM1060 725H1220V723H1060V725ZM1221 724V674.457H1219V724H1221Z" fill="#312D2A"/>
<g id="Connector Line Label">
<rect width="49" height="14" transform="translate(607 689)" fill="white"/>
<text id="Line Label" fill="#312D2A" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="14" letter-spacing="0em"><tspan x="611.32" y="701.089">Oracle</tspan></text>
</g>
<g id="Connector Line Label_2">
<rect width="80" height="14" transform="translate(591 703)" fill="white"/>
<text id="Line Label_2" fill="#312D2A" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="14" letter-spacing="0em"><tspan x="595.207" y="715.089">Data Guard</tspan></text>
</g>
<g id="Connector Line Label_3">
<rect width="181" height="14" transform="translate(691 730)" fill="white"/>
<text id="Line Label_3" fill="#312D2A" xml:space="preserve" style="white-space: pre" font-family="Oracle Sans" font-size="14" letter-spacing="0em"><tspan x="695.162" y="742.089">ETCD and YAML Snapshots</tspan></text>
</g>
</g>
</g>
<defs>
<clipPath id="clip0_9166_203344">
<rect width="1282" height="745" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 176 KiB

View File

@@ -0,0 +1,7 @@
The diagram you downloaded is available in these formats:
- DRAWIO
- SVG
You can customize them for your organization using the associated tools:
- For DRAWIO format, use draw.io for Confluence, online at diagrams.net, or the desktop app. Go to diagrams.net for more information.
- For SVG format, use an SVG editor such as Inkscape or Sketsa SVG Editor, which are free and available for Windows, macOS, Linux.