/* Reset de estilos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    /* background-color: #000b1b; */
    margin: 0;
    padding: 0;
    font-family: 'Exo 2', sans-serif; 
      
}

body {
    font-family: 'Exo 2', sans-serif; 
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}


/* HEADER */
header {
    position: fixed;
    top: 0;
    width: 100%;
    /* background-color: #ffffff; */
    padding: 20px 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    margin-left: 20px;
}
.logo img {
    width: 35px;
    /* opacity: 55%; */
}
.logotrans img {
    margin-right: 20px;
    opacity: 0;
}
.logo img:hover {
    transform: scale(1.1); /* Aumenta el tamaño del ícono al 110% en el hover */
}
.nav-links {
    flex-grow: 1; /* Añadido para ocupar todo el espacio restante */
    
}
.nav-links ul {
    list-style: none;
    display: flex;
    justify-content: center; /* Centramos los elementos en el eje horizontal */
    margin: 0;
    padding: 0;
}
.nav-links ul li {
    margin: 0 20px; /* Espacio entre los elementos de la lista */
    /* opacity: 55%; */
}
.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
}
.nav-links a:hover {
    color: rgb(0, 58, 146);
    text-decoration: none;
    font-weight: bold;
    /* font-size: 14px; */
}
.social-links {
    display: flex;
    align-items: center;
    /* opacity: 55%; */
}
.social-icon {
    margin-right: 10px;
    transition: transform 0.3s ease; /* Agrega una transición suave para el efecto de hover */
}
.social-icon:hover {
    transform: scale(1.1); /* Aumenta el tamaño del ícono al 110% en el hover */
}
.social-icon img {
    width: 30px;
    height: 30px;
}
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 20px;
    cursor: pointer;
    margin-right: 20px;
    transition: all 0.3s ease;
}
.hamburger-menu.active .line:nth-child(1) {
    transform: rotate(45deg);
    position: relative;
    top: 6px;
}
.hamburger-menu.active .line:nth-child(2) {
    opacity: 0;
}
.hamburger-menu.active .line:nth-child(3) {
    transform: rotate(-45deg);
    position: relative;
    top: -6px;
}
.line {
    width: 100%;
    height: 2px;
    background-color: #ffffff;
}

/* BACKGROUND IMAGEN INICIAL */
.background-section {
    background-image: url('banner.webp');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    opacity: 95%;
    position: relative; /* Asegúrate de que el contenedor padre tenga una posición relativa */
    animation: increaseBrightness 2s ease-in-out forwards;
    /* animation: easeOutQuad 2s ease-out forwards; */
}
/* Define la animación de aumento de brillo */
@keyframes increaseBrightness {
    from {
        filter: brightness(1%);
    }
    to {
        filter: brightness(100%);
    }
}

/* EFECTO DE TIPEO */
.main-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh; /* Altura completa de la ventana gráfica */
    text-align: center;
    color: rgb(0, 11, 27);
}
.typing-title-container {
    text-align: center;
    margin-bottom: 300px;
}



/* CONTENEDOR ROBOT */
.floating-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: auto;
    animation: move-up 1s ease-out forwards;
    overflow: hidden;
    cursor: pointer; /* Cambia el cursor para indicar que es interactivo */
}
@keyframes move-up {
    from {
        transform: translate(-50%, 100%); /* Empieza desde abajo */
    }
    to {
        transform: translate(-50%, -50%); /* Se mueve al centro */
    }
}
/* Imagen flotante */
.floating-image {
    width: 250px;
    height: auto;
    animation: float 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
    opacity: 0; /* La imagen inicia oculta */
    transition: opacity 0.5s ease-in-out; /* Efecto de aparición */
}
body.loaded .floating-image {
    opacity: 1; /* Se muestra la imagen cuando el body tiene la clase 'loaded' */
}
/* Efecto de luz */
.light-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(76, 255, 85, 0.6) 0%, rgba(255, 255, 255, 0) 50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.1s ease-in-out;
    z-index: 0; /* Asegura que el efecto de luz esté detrás de la imagen */
}
/* Efecto al pasar el mouse */
.floating-container:hover .light-effect {
    opacity: 1; /* Efecto de hover */
}
/* Efecto de luz constante cuando el diálogo está abierto */
.floating-container.active .light-effect {
    opacity: 1; /* Luz constante */
}

/* BOTON PROYECTATE */

/* Estilo para el botón flotante en pantallas grandes */
.floating-button {
    position: fixed;
    right: 20px; /* Coloca el botón a la derecha */
    bottom: 20px; /* Colócalo en la parte inferior */
    z-index: 9999; /* Asegura que esté por encima de otros elementos */
    padding: 10px; /* Ajusta el padding si es necesario */
    border-radius: 12px; /* Bordes redondeados */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, opacity 0.3s ease; /* Transición suave para efectos */
}
/* Ajusta el tamaño del logo dentro del botón */
.floating-button-logo {
    width: 250px;
    height: auto;
}
/* Efecto hover */
.floating-button:hover {
    transform: scale(1.1); /* Efecto de agrandamiento */
}
/* Media query para pantallas pequeñas */
@media (max-width: 768px) {
    .floating-button {
        right: 10px;
        bottom: 10px;
        padding: 8px;
    }

    .floating-button-logo {
        width: 120px; /* Reduce el tamaño del logo */
    }
}
@media (max-width: 480px) {
    .floating-button {
        right: 5px;
        bottom: 10px;
        padding: 6px;
    }

    .floating-button-logo {
        width: 100px; /* Ajusta el tamaño del logo */
    }
}

/* Diálogo del robot borre*/
/* BORRE LO DEL POP UP */
/* OFERTA LABORAL BORRADO*/

/* CONTADOR */
.counter-container {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    color: #ffffff;
    text-align: center;
    background: rgba(0, 11, 27, 0.5);
    padding: 10px 20px;
    border-radius: 10px;
}
#company-counter {
    font-size: 48px;
    font-weight: bold;
    color: #24993d;
}

/*SECCION EMPRESAS */
.empresas-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 18px;
    color: #ffffff;
    background-color: #000b1b; /* Color del botón */
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    width: 150px;
    margin-bottom: 40px;
    box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.75);
}
.empresas-button:hover {
    background-color:  #76B82A; /* Color del botón al pasar el ratón */
}

/* SECCION RADICACION */
.button-container {
    display: flex;
    justify-content: center;
}  
.radicacion-button {
    padding: 10px 20px; /* Espaciado interno del botón */
    font-size: 18px; /* Tamaño del texto del botón */
    color: #ffffff; /* Color del texto */
    background-color: #000b1b; /* Color de fondo */
    text-decoration: none; /* Quita el subrayado de los enlaces */
    border: none; /* Quita el borde */
    border-radius: 5px; /* Borde redondeado */
    cursor: pointer; /* Cambia el cursor al pasar por encima */
    transition: background-color 0.3s ease; /* Transición suave para el cambio de color de fondo */
    margin-bottom: 150px;
    font-family: 'Kodchasan', sans-serif; /* Agrega la fuente deseada */
    width: 150px;
}  
.radicacion-button:hover {
    background-color:  #a82ab8; /* Cambia el color de fondo al pasar el ratón */
}
.radicacion-section {
    text-align: center;
    justify-content: center;
    background-color: #ffffff; /* Fondo para diferenciarla */
    color: #ffffff; /* Color del texto */
    min-height: 5vh; /* Ajusta esto según tus necesidades */
    background-color: #005D89;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.dev/svgjs' width='1900' height='414' preserveAspectRatio='none' viewBox='0 0 1900 414'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1032%26quot%3b)' fill='none'%3e%3cpath d='M-79.58 411.62L-79.58 411.62' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-79.58 411.62L40.04 553.17' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-79.58 411.62L195.63 346.69' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-79.58 411.62L226.24 521.45' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-79.58 411.62L345.71 410.89' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-79.58 411.62L362.61 259.56' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-79.58 411.62L373.63 560.74' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M40.04 553.17L40.04 553.17' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M40.04 553.17L226.24 521.45' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M40.04 553.17L195.63 346.69' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M40.04 553.17L373.63 560.74' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M40.04 553.17L345.71 410.89' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M40.04 553.17L362.61 259.56' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M195.63 346.69L195.63 346.69' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M195.63 346.69L345.71 410.89' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M195.63 346.69L226.24 521.45' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M195.63 346.69L362.61 259.56' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M226.24 521.45L226.24 521.45' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M226.24 521.45L373.63 560.74' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M226.24 521.45L345.71 410.89' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M226.24 521.45L362.61 259.56' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M362.61 259.56L362.61 259.56' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M362.61 259.56L345.71 410.89' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M362.61 259.56L547.55 399.49' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M362.61 259.56L642.53 250.42' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M345.71 410.89L345.71 410.89' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M345.71 410.89L373.63 560.74' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M373.63 560.74L373.63 560.74' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M373.63 560.74L523.07 511.98' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M373.63 560.74L547.55 399.49' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M373.63 560.74L195.63 346.69' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M373.63 560.74L665.76 498.84' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M547.55 399.49L547.55 399.49' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M547.55 399.49L523.07 511.98' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M523.07 511.98L523.07 511.98' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M523.07 511.98L665.76 498.84' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M523.07 511.98L345.71 410.89' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M642.53 250.42L642.53 250.42' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M642.53 250.42L707.65 379.48' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M642.53 250.42L547.55 399.49' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M642.53 250.42L849.02 206.89' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M642.53 250.42L665.76 498.84' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M707.65 379.48L707.65 379.48' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M707.65 379.48L665.76 498.84' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M707.65 379.48L547.55 399.49' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M707.65 379.48L829.47 536.81' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M707.65 379.48L849.02 206.89' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M707.65 379.48L523.07 511.98' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M665.76 498.84L665.76 498.84' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M665.76 498.84L547.55 399.49' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M665.76 498.84L829.47 536.81' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M849.02 206.89L849.02 206.89' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M849.02 206.89L1001.64 251.25' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M849.02 206.89L975.84 377.48' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M829.47 536.81L829.47 536.81' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M829.47 536.81L962.52 542.03' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M829.47 536.81L975.84 377.48' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M829.47 536.81L1123.01 495.04' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1001.64 251.25L1001.64 251.25' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1001.64 251.25L975.84 377.48' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1001.64 251.25L1128.59 221.38' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1001.64 251.25L1116.47 353.63' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1001.64 251.25L1162.01 59.75' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M975.84 377.48L975.84 377.48' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M975.84 377.48L1116.47 353.63' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M975.84 377.48L962.52 542.03' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M975.84 377.48L1123.01 495.04' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M962.52 542.03L962.52 542.03' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M962.52 542.03L1123.01 495.04' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M962.52 542.03L1116.47 353.63' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M962.52 542.03L1237.81 504.16' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1162.01 59.75L1162.01 59.75' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1162.01 59.75L1294.23 82.37' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1162.01 59.75L1128.59 221.38' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1162.01 59.75L1260.83 194.33' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1162.01 59.75L1256.56 -93.01' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1128.59 221.38L1128.59 221.38' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1128.59 221.38L1116.47 353.63' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1128.59 221.38L1260.83 194.33' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1128.59 221.38L1294.23 82.37' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1128.59 221.38L975.84 377.48' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1116.47 353.63L1116.47 353.63' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1116.47 353.63L1123.01 495.04' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1123.01 495.04L1123.01 495.04' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1123.01 495.04L1237.81 504.16' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1123.01 495.04L1273.81 410.36' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1123.01 495.04L1001.64 251.25' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1256.56 -93.01L1256.56 -93.01' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1256.56 -93.01L1431.83 -84.21' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1256.56 -93.01L1294.23 82.37' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1256.56 -93.01L1434.5 105.31' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1256.56 -93.01L1260.83 194.33' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1294.23 82.37L1294.23 82.37' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1294.23 82.37L1260.83 194.33' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1294.23 82.37L1434.5 105.31' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1260.83 194.33L1260.83 194.33' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1273.81 410.36L1273.81 410.36' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1273.81 410.36L1237.81 504.16' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1273.81 410.36L1406 355.96' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1273.81 410.36L1116.47 353.63' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1237.81 504.16L1237.81 504.16' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1237.81 504.16L1116.47 353.63' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1237.81 504.16L1448.39 516.12' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1237.81 504.16L1406 355.96' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1431.83 -84.21L1431.83 -84.21' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1431.83 -84.21L1541.36 54.07' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1431.83 -84.21L1608.11 -68.39' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1431.83 -84.21L1434.5 105.31' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1431.83 -84.21L1294.23 82.37' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1434.5 105.31L1434.5 105.31' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1434.5 105.31L1541.36 54.07' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1434.5 105.31L1458.41 255.65' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1434.5 105.31L1260.83 194.33' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1434.5 105.31L1608.11 -68.39' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1458.41 255.65L1458.41 255.65' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1458.41 255.65L1406 355.96' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1458.41 255.65L1581.82 396.6' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1458.41 255.65L1260.83 194.33' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1406 355.96L1406 355.96' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1406 355.96L1448.39 516.12' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1406 355.96L1581.82 396.6' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1406 355.96L1260.83 194.33' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1448.39 516.12L1448.39 516.12' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1448.39 516.12L1583.22 509.43' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1608.11 -68.39L1608.11 -68.39' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1608.11 -68.39L1541.36 54.07' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1541.36 54.07L1541.36 54.07' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1541.36 54.07L1704.32 86.11' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1581.82 396.6L1581.82 396.6' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1581.82 396.6L1583.22 509.43' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1581.82 396.6L1733.81 369.6' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1581.82 396.6L1448.39 516.12' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1581.82 396.6L1693.92 558.64' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1583.22 509.43L1583.22 509.43' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1583.22 509.43L1693.92 558.64' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1583.22 509.43L1733.81 369.6' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1583.22 509.43L1406 355.96' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1756 -43.82L1756 -43.82' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1756 -43.82L1872.61 -74.37' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1756 -43.82L1704.32 86.11' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1704.32 86.11L1704.32 86.11' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1695.1 233.78L1695.1 233.78' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1695.1 233.78L1733.81 369.6' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1695.1 233.78L1704.32 86.11' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1695.1 233.78L1581.82 396.6' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1733.81 369.6L1733.81 369.6' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1733.81 369.6L1869.42 393.45' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1733.81 369.6L1693.92 558.64' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1733.81 369.6L1898.69 246.63' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1693.92 558.64L1693.92 558.64' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1872.61 -74.37L1872.61 -74.37' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1872.61 -74.37L1864.15 71.67' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1864.15 71.67L1864.15 71.67' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1864.15 71.67L1756 -43.82' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1864.15 71.67L1704.32 86.11' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1864.15 71.67L2028.86 63.39' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1864.15 71.67L1898.69 246.63' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1864.15 71.67L2015.44 231.83' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1898.69 246.63L1898.69 246.63' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1898.69 246.63L2015.44 231.83' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1898.69 246.63L1869.42 393.45' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1898.69 246.63L2006.48 392.4' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1898.69 246.63L1695.1 233.78' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1869.42 393.45L1869.42 393.45' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1869.42 393.45L2006.48 392.4' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1869.42 393.45L1910.32 536.93' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1910.32 536.93L1910.32 536.93' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1910.32 536.93L1996.56 555.77' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1910.32 536.93L2006.48 392.4' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1910.32 536.93L1693.92 558.64' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2028.86 63.39L2028.86 63.39' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2028.86 63.39L2015.44 231.83' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2028.86 63.39L1872.61 -74.37' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2015.44 231.83L2015.44 231.83' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2015.44 231.83L2006.48 392.4' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2015.44 231.83L1869.42 393.45' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2015.44 231.83L1733.81 369.6' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2006.48 392.4L2006.48 392.4' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1996.56 555.77L1996.56 555.77' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1996.56 555.77L2006.48 392.4' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1996.56 555.77L1869.42 393.45' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1996.56 555.77L1693.92 558.64' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1996.56 555.77L1733.81 369.6' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1996.56 555.77L1898.69 246.63' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3ccircle r='5' cx='-79.58' cy='411.62' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='40.04' cy='553.17' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='195.63' cy='346.69' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='226.24' cy='521.45' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='362.61' cy='259.56' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='345.71' cy='410.89' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='373.63' cy='560.74' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='547.55' cy='399.49' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='523.07' cy='511.98' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='642.53' cy='250.42' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='707.65' cy='379.48' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='665.76' cy='498.84' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='849.02' cy='206.89' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='829.47' cy='536.81' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1001.64' cy='251.25' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='975.84' cy='377.48' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='962.52' cy='542.03' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1162.01' cy='59.75' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1128.59' cy='221.38' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1116.47' cy='353.63' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1123.01' cy='495.04' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1256.56' cy='-93.01' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1294.23' cy='82.37' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1260.83' cy='194.33' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1273.81' cy='410.36' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1237.81' cy='504.16' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1431.83' cy='-84.21' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1434.5' cy='105.31' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1458.41' cy='255.65' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1406' cy='355.96' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1448.39' cy='516.12' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1608.11' cy='-68.39' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1541.36' cy='54.07' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1581.82' cy='396.6' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1583.22' cy='509.43' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1756' cy='-43.82' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1704.32' cy='86.11' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1695.1' cy='233.78' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1733.81' cy='369.6' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1693.92' cy='558.64' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1872.61' cy='-74.37' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1864.15' cy='71.67' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1898.69' cy='246.63' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1869.42' cy='393.45' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1910.32' cy='536.93' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='2028.86' cy='63.39' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='2015.44' cy='231.83' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='2006.48' cy='392.4' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1996.56' cy='555.77' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3cpath d='M-88.58 359.33L-88.58 359.33' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-88.58 359.33L40.85 359.27' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-88.58 359.33L-41.66 503.5' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-88.58 359.33L56.36 544.38' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-88.58 359.33L224.55 348.17' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M224.55 348.17L224.55 348.17' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M224.55 348.17L40.85 359.27' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M224.55 348.17L257.88 551.49' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M224.55 348.17L352.09 516.05' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M224.55 348.17L56.36 544.38' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M352.09 516.05L352.09 516.05' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M352.09 516.05L257.88 551.49' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M352.09 516.05L492.96 523.01' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M710.64 349.31L710.64 349.31' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M710.64 349.31L853.66 388.11' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M710.64 349.31L562.16 390.31' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M710.64 349.31L788.52 507.89' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M710.64 349.31L964.97 343.05' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M710.64 349.31L492.96 523.01' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1161.92 366.76L1161.92 366.76' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1161.92 366.76L1246.86 511.27' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1851.1 110.89L1851.1 110.89' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1851.1 110.89L1743.9 40.84' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1851.1 110.89L1897.61 -44.03' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1851.1 110.89L1724.86 225.04' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1851.1 110.89L2035.48 230.39' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-41.66 503.5L-41.66 503.5' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-41.66 503.5L56.36 544.38' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M40.85 359.27L40.85 359.27' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M40.85 359.27L-41.66 503.5' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M56.36 544.38L56.36 544.38' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M257.88 551.49L257.88 551.49' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M257.88 551.49L56.36 544.38' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M562.16 390.31L562.16 390.31' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M562.16 390.31L492.96 523.01' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M492.96 523.01L492.96 523.01' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M853.66 388.11L853.66 388.11' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M853.66 388.11L964.97 343.05' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M853.66 388.11L788.52 507.89' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M853.66 388.11L979.18 542.52' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M853.66 388.11L1090.05 549.66' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M788.52 507.89L788.52 507.89' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M964.97 343.05L964.97 343.05' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M964.97 343.05L1161.92 366.76' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M964.97 343.05L979.18 542.52' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M964.97 343.05L788.52 507.89' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M964.97 343.05L1090.05 549.66' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M979.18 542.52L979.18 542.52' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M979.18 542.52L1090.05 549.66' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M979.18 542.52L788.52 507.89' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1090.05 549.66L1090.05 549.66' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1090.05 549.66L1246.86 511.27' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1090.05 549.66L1161.92 366.76' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1090.05 549.66L788.52 507.89' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1274.6 225.52L1274.6 225.52' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1274.6 225.52L1393.94 261.85' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1246.86 511.27L1246.86 511.27' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1246.86 511.27L1454.59 527.28' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1246.86 511.27L1393.48 358.39' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1246.86 511.27L979.18 542.52' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1393.94 261.85L1393.94 261.85' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1393.94 261.85L1393.48 358.39' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1393.94 261.85L1573.51 242.76' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1393.48 358.39L1393.48 358.39' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1393.48 358.39L1274.6 225.52' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1393.48 358.39L1454.59 527.28' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1393.48 358.39L1582.84 394.64' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1454.59 527.28L1454.59 527.28' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1454.59 527.28L1606.38 515.07' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1554.6 -57.64L1554.6 -57.64' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1554.6 -57.64L1592.46 77.18' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1554.6 -57.64L1701.51 -82.28' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1592.46 77.18L1592.46 77.18' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1592.46 77.18L1743.9 40.84' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1573.51 242.76L1573.51 242.76' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1573.51 242.76L1582.84 394.64' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1573.51 242.76L1724.86 225.04' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1573.51 242.76L1592.46 77.18' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1573.51 242.76L1743.87 343.65' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1582.84 394.64L1582.84 394.64' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1582.84 394.64L1606.38 515.07' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1582.84 394.64L1743.87 343.65' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1582.84 394.64L1454.59 527.28' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1582.84 394.64L1724.86 225.04' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1606.38 515.07L1606.38 515.07' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1606.38 515.07L1751.02 547.45' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1701.51 -82.28L1701.51 -82.28' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1701.51 -82.28L1743.9 40.84' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1701.51 -82.28L1592.46 77.18' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1743.9 40.84L1743.9 40.84' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1743.9 40.84L1897.61 -44.03' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1743.9 40.84L1724.86 225.04' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1724.86 225.04L1724.86 225.04' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1724.86 225.04L1743.87 343.65' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1724.86 225.04L1592.46 77.18' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1743.87 343.65L1743.87 343.65' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1743.87 343.65L1894.42 400.73' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1751.02 547.45L1751.02 547.45' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1751.02 547.45L1885.28 501.03' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1751.02 547.45L1743.87 343.65' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1751.02 547.45L1894.42 400.73' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1751.02 547.45L1582.84 394.64' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1751.02 547.45L1993.41 503.74' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1897.61 -44.03L1897.61 -44.03' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1897.61 -44.03L2049.37 -108.79' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1897.61 -44.03L1701.51 -82.28' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1894.42 400.73L1894.42 400.73' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1894.42 400.73L1885.28 501.03' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1894.42 400.73L1999.62 381.95' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1894.42 400.73L1993.41 503.74' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1885.28 501.03L1885.28 501.03' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1885.28 501.03L1993.41 503.74' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1885.28 501.03L1999.62 381.95' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2049.37 -108.79L2049.37 -108.79' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2049.37 -108.79L1851.1 110.89' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2049.37 -108.79L2035.48 230.39' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2049.37 -108.79L1743.9 40.84' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2049.37 -108.79L1701.51 -82.28' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2035.48 230.39L2035.48 230.39' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2035.48 230.39L1999.62 381.95' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2035.48 230.39L1894.42 400.73' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1999.62 381.95L1999.62 381.95' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1999.62 381.95L1993.41 503.74' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1993.41 503.74L1993.41 503.74' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3ccircle r='25' cx='-88.58' cy='359.33' fill='url(%26quot%3b%23SvgjsRadialGradient1033%26quot%3b)'%3e%3c/circle%3e%3ccircle r='25' cx='224.55' cy='348.17' fill='url(%26quot%3b%23SvgjsRadialGradient1033%26quot%3b)'%3e%3c/circle%3e%3ccircle r='25' cx='352.09' cy='516.05' fill='url(%26quot%3b%23SvgjsRadialGradient1033%26quot%3b)'%3e%3c/circle%3e%3ccircle r='25' cx='710.64' cy='349.31' fill='url(%26quot%3b%23SvgjsRadialGradient1033%26quot%3b)'%3e%3c/circle%3e%3ccircle r='25' cx='1161.92' cy='366.76' fill='url(%26quot%3b%23SvgjsRadialGradient1033%26quot%3b)'%3e%3c/circle%3e%3ccircle r='25' cx='1851.1' cy='110.89' fill='url(%26quot%3b%23SvgjsRadialGradient1033%26quot%3b)'%3e%3c/circle%3e%3ccircle r='5' cx='-41.66' cy='503.5' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='40.85' cy='359.27' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='56.36' cy='544.38' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='257.88' cy='551.49' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='562.16' cy='390.31' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='492.96' cy='523.01' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='853.66' cy='388.11' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='788.52' cy='507.89' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='964.97' cy='343.05' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='979.18' cy='542.52' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='1090.05' cy='549.66' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='1274.6' cy='225.52' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='1246.86' cy='511.27' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='1393.94' cy='261.85' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='1393.48' cy='358.39' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='1454.59' cy='527.28' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='1554.6' cy='-57.64' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='1592.46' cy='77.18' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='1573.51' cy='242.76' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='1582.84' cy='394.64' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='1606.38' cy='515.07' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='1701.51' cy='-82.28' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='1743.9' cy='40.84' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='1724.86' cy='225.04' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='1743.87' cy='343.65' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='1751.02' cy='547.45' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='1897.61' cy='-44.03' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='1894.42' cy='400.73' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='1885.28' cy='501.03' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='2049.37' cy='-108.79' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='2035.48' cy='230.39' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='1999.62' cy='381.95' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='1993.41' cy='503.74' fill='white'%3e%3c/circle%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1032'%3e%3crect width='1900' height='414' fill='white'%3e%3c/rect%3e%3c/mask%3e%3cradialGradient id='SvgjsRadialGradient1033'%3e%3cstop stop-color='white' offset='0.1'%3e%3c/stop%3e%3cstop stop-color='rgba(255%2c 255%2c 255%2c 1)' offset='0.2'%3e%3c/stop%3e%3cstop stop-color='rgba(255%2c 255%2c 255%2c 0)' offset='1'%3e%3c/stop%3e%3c/radialGradient%3e%3c/defs%3e%3c/svg%3e");
    
}
.radicacion-section h2 {
    font-size: 38px;
    padding-top: 80px;
    margin-bottom: 10px;
}
.radicacion-section p {
    font-size: 24px;
    margin-bottom: 50px;
}
.radicacion-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 18px;
    color: #ffffff;
    background-color: #000b1b; /* Color del botón */
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    width: 150px;
    box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.75);
    animation: latido 1.5s infinite; /* Añadir animación de latido */
}
.radicacion-button:hover {
    background-color:  #76B82A; /* Color del botón al pasar el ratón */
}
@keyframes latido {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* SLIDER INFINITO DE LOGOS*/
.container {
    text-align: center; /* Centra el contenido horizontalmente */
}  
.page-section {
    padding: 50px 0;
    background-color: #fff;
    overflow: hidden; /* Oculta cualquier desbordamiento */
}
.centered-container {
    max-width: 1200px; /* Ajusta el ancho máximo según sea necesario */
    margin: 0 auto; /* Centra el contenedor horizontalmente */
    padding: 0 20px; /* Añade padding a los lados */
}
.brand-container {
    width: 100%;
    overflow: hidden;
}
.brand-slider {
    overflow: hidden;
    position: relative;
}
.brand-track {
    display: flex;
    animation: scroll 20s linear infinite;
}
.brand-track img {
    width: 150px; /* Ajusta el tamaño de las marcas según sea necesario */
    margin: 0 15px; /* Espacio entre las marcas */
}
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
/* Estilos para el rango específico */
@media (min-width: 375px) and (max-width: 1080px) {
    #historia {
        flex-direction: column; /* Coloca la imagen y el texto en columna */
    }

    #historia .foto, 
    #historia .textohistoria {
        flex: none; /* Evita que las secciones ocupen tamaños proporcionales */
        width: 100%; /* Ocupa todo el ancho disponible */
    }
}


/* SECCION TEXTO*/
.puertoposadas {
    color: inherit;
}
.titcol h1 {
    font-size: 30px;
    padding: 50px;
    text-align: left;
    background-color: #000b1b;
    color: #7B95B5;
    margin-bottom: -50px; /* Ajusta este valor según sea necesario */
}
.titcol p {
    flex: 1;
    font-size: 20px;
    padding: 50px;
    margin-bottom: -50px; /* Ajusta el espacio entre párrafos */
    line-height: 1.6; /* Mejora la legibilidad del texto */
}
.titcol2 {
    font-size: 24px;
    margin-top: -50px;
    margin-bottom: 50px;
}
.wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    text-align: left ;
    background-color: #000b1b;
    color: #7B95B5    
}  
.column {
    flex: 1;   
    padding: 50px;
    
}
.column h2 {
    margin-bottom: 20px;
    font-size: 30px;
}
.column ul {
    font-size: 20px;
}
.column:not(:last-child)::after {
    /* Línea vertical entre columnas */
    max-height: 500px;
    min-height: 372px;
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 1px;
    background-color:#7B95B5;    
}


/* SECCION ODS */
.titods {
    margin: 0;
    text-align: left;    
    /* margin: 3px; */
   /*  margin-top: -20px; */
    margin-bottom: 40px;
    font-size: 22px;
    
}
.ods-container {
    text-align: center; /* Alinea el contenido al centro horizontalmente */
    padding: 50px;
    background-color: #000b1b;
    margin-bottom: 0px;
}
.ods-slider {
    display: inline-block; /* Permite que el contenedor se ajuste al tamaño del contenido */
}
.ods-track {
    display: flex; /* Usa flexbox para alinear las imágenes */
    justify-content: center; /* Centra horizontalmente las imágenes */
    align-items: center; /* Centra verticalmente las imágenes (opcional) */
    flex-wrap: wrap; /* Permite que las imágenes se envuelvan en pantallas más pequeñas */
    gap: 180px; /* Espacio entre las imágenes (opcional) */    
}
.ods-track img {
    max-width: 100%; /* Asegura que las imágenes no excedan su contenedor */
    height: auto; /* Mantiene la proporción de la imagen */
    margin-bottom: 20px; /* Espacio opcional entre las imágenes */
    /* border-radius: 25px; */
    transition: transform 0.1s ease; /* Añade una transición suave */
}
.ods-track img:hover {
    transform: scale(1.1); /* Aumenta el tamaño del ícono al 110% en el hover */
    border-radius: 15px;
}
[data-aos="fade-up"] .ods-track img:hover {
    transform: scale(1.1); /* Aumentar tamaño en hover */

}

/* SECCION VIDEO */
.video-section {
    display: flex;
    justify-content: center; /* Centrar el video horizontalmente */
    padding: 100px; /* Añadir padding alrededor del video */
    background-color: #000b1b; /* Fondo para la sección */
  /* margin-bottom: 150px; */
}
.video-container {
    position: relative; /* Necesario para posicionar el botón de forma absoluta */
    width: 100%; /* Ancho del 88% de la pantalla */
    max-width: 1200px; /* Ancho máximo opcional */
   /*  border-radius: 8px; */ /* Bordes redondeados */
    overflow: hidden; /* Esconder los bordes salientes del video */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra para darle profundidad */
}
video {
    width: 100%; /* El video ocupa todo el ancho del contenedor */
    display: block; /* Elimina espacios en blanco debajo del video */
}
.play-button {
    position: absolute; /* Posicionar el botón de forma absoluta en el contenedor del video */
    top: 50%; /* Centrar verticalmente */
    left: 50%; /* Centrar horizontalmente */
    transform: translate(-50%, -50%); /* Ajustar la posición centrada */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.6); /* Fondo semi-transparente */
    border-radius: 50%; /* Forma circular */
    cursor: pointer; /* Cambiar el cursor al pasar sobre el botón */
}
.play-button button {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

/* VISITA EL PARQUE */
.proyect-section {
    padding: 80px 20px;
    text-align: center;
    background: #002233	;/* linear-gradient(135deg, #004D40, #6C8EBF,  #D6C6C2); */
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.dev/svgjs' width='2000' height='315' preserveAspectRatio='none' viewBox='0 0 2000 315'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1052%26quot%3b)' fill='none'%3e%3cpath d='M-71.02 350.16L-71.02 350.16' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-71.02 350.16L57.59 368.62' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-71.02 350.16L52.38 498.53' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-71.02 350.16L-51.63 549.36' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-71.02 350.16L77.05 203.43' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-71.02 350.16L234.72 396.11' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-71.02 350.16L232.18 228.58' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-51.63 549.36L-51.63 549.36' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-51.63 549.36L52.38 498.53' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-51.63 549.36L57.59 368.62' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-51.63 549.36L260.23 539.04' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-51.63 549.36L234.72 396.11' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-51.63 549.36L77.05 203.43' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M77.05 203.43L77.05 203.43' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M77.05 203.43L232.18 228.58' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M77.05 203.43L57.59 368.62' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M77.05 203.43L234.72 396.11' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M77.05 203.43L52.38 498.53' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M77.05 203.43L409.66 193.34' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M57.59 368.62L57.59 368.62' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M57.59 368.62L52.38 498.53' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M57.59 368.62L234.72 396.11' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M52.38 498.53L52.38 498.53' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M52.38 498.53L234.72 396.11' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M232.18 228.58L232.18 228.58' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M232.18 228.58L234.72 396.11' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M232.18 228.58L409.66 193.34' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M234.72 396.11L234.72 396.11' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M234.72 396.11L364.13 403.98' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M234.72 396.11L260.23 539.04' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M234.72 396.11L393.37 494.78' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M260.23 539.04L260.23 539.04' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M260.23 539.04L393.37 494.78' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M409.66 193.34L409.66 193.34' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M409.66 193.34L516.89 237.45' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M364.13 403.98L364.13 403.98' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M364.13 403.98L393.37 494.78' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M364.13 403.98L503.79 342.34' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M393.37 494.78L393.37 494.78' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M393.37 494.78L503.79 342.34' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M393.37 494.78L653.77 528.88' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M393.37 494.78L516.89 237.45' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M516.89 237.45L516.89 237.45' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M516.89 237.45L503.79 342.34' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M503.79 342.34L503.79 342.34' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M503.79 342.34L669.16 387' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M503.79 342.34L409.66 193.34' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M503.79 342.34L683.1 245.15' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M683.1 245.15L683.1 245.15' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M683.1 245.15L669.16 387' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M683.1 245.15L516.89 237.45' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M683.1 245.15L857.84 210.25' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M669.16 387L669.16 387' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M669.16 387L653.77 528.88' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M669.16 387L814.99 382.06' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M669.16 387L516.89 237.45' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M669.16 387L832.91 537.43' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M653.77 528.88L653.77 528.88' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M653.77 528.88L832.91 537.43' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M653.77 528.88L814.99 382.06' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M857.84 210.25L857.84 210.25' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M857.84 210.25L996.63 222.68' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M857.84 210.25L814.99 382.06' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M814.99 382.06L814.99 382.06' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M814.99 382.06L832.91 537.43' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M814.99 382.06L972 407.49' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M832.91 537.43L832.91 537.43' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M832.91 537.43L1006.19 539.45' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M832.91 537.43L972 407.49' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M996.63 222.68L996.63 222.68' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M996.63 222.68L1144.69 235.92' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M996.63 222.68L1124.92 356.53' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M996.63 222.68L972 407.49' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M972 407.49L972 407.49' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M972 407.49L1006.19 539.45' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M972 407.49L1124.92 356.53' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1006.19 539.45L1006.19 539.45' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1144.69 235.92L1144.69 235.92' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1144.69 235.92L1249.07 227.21' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1144.69 235.92L1124.92 356.53' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1144.69 235.92L1263.9 110.38' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1144.69 235.92L1284.04 402.57' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1144.69 235.92L972 407.49' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1124.92 356.53L1124.92 356.53' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1124.92 356.53L1284.04 402.57' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1124.92 356.53L1249.07 227.21' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1124.92 356.53L1006.19 539.45' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1286.07 -57.11L1286.07 -57.11' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1286.07 -57.11L1433.27 -110.52' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1286.07 -57.11L1263.9 110.38' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1263.9 110.38L1263.9 110.38' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1263.9 110.38L1249.07 227.21' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1249.07 227.21L1249.07 227.21' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1249.07 227.21L1284.04 402.57' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1249.07 227.21L1449.13 233.29' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1249.07 227.21L1443.93 346.15' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1284.04 402.57L1284.04 402.57' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1284.04 402.57L1276.18 548.36' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1284.04 402.57L1443.93 346.15' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1276.18 548.36L1276.18 548.36' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1276.18 548.36L1442.07 513.68' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1276.18 548.36L1124.92 356.53' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1276.18 548.36L1443.93 346.15' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1276.18 548.36L1006.19 539.45' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1433.27 -110.52L1433.27 -110.52' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1433.27 -110.52L1590.96 -45.75' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1431.93 82.93L1431.93 82.93' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1431.93 82.93L1449.13 233.29' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1431.93 82.93L1263.9 110.38' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1431.93 82.93L1611.17 73.01' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1431.93 82.93L1433.27 -110.52' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1431.93 82.93L1286.07 -57.11' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1449.13 233.29L1449.13 233.29' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1449.13 233.29L1443.93 346.15' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1449.13 233.29L1563.99 239.67' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1449.13 233.29L1603.85 376.76' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1443.93 346.15L1443.93 346.15' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1442.07 513.68L1442.07 513.68' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1442.07 513.68L1608.94 515.99' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1442.07 513.68L1443.93 346.15' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1590.96 -45.75L1590.96 -45.75' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1590.96 -45.75L1611.17 73.01' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1590.96 -45.75L1713.53 -66.03' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1590.96 -45.75L1753.56 55.32' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1611.17 73.01L1611.17 73.01' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1611.17 73.01L1753.56 55.32' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1611.17 73.01L1713.53 -66.03' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1611.17 73.01L1563.99 239.67' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1563.99 239.67L1563.99 239.67' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1563.99 239.67L1702.48 262.06' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1603.85 376.76L1603.85 376.76' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1603.85 376.76L1730.74 377.03' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1603.85 376.76L1608.94 515.99' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1603.85 376.76L1563.99 239.67' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1608.94 515.99L1608.94 515.99' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1608.94 515.99L1716.09 513.48' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1608.94 515.99L1730.74 377.03' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1608.94 515.99L1443.93 346.15' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1608.94 515.99L1702.48 262.06' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1713.53 -66.03L1713.53 -66.03' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1713.53 -66.03L1753.56 55.32' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1713.53 -66.03L1846.34 -47.58' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1713.53 -66.03L1848.81 85.07' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1713.53 -66.03L1433.27 -110.52' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1753.56 55.32L1753.56 55.32' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1753.56 55.32L1848.81 85.07' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1753.56 55.32L1846.34 -47.58' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1702.48 262.06L1702.48 262.06' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1702.48 262.06L1730.74 377.03' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1702.48 262.06L1603.85 376.76' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1702.48 262.06L1886.76 248.96' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1730.74 377.03L1730.74 377.03' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1730.74 377.03L1716.09 513.48' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1716.09 513.48L1716.09 513.48' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1716.09 513.48L1603.85 376.76' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1716.09 513.48L1898.12 515.23' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1716.09 513.48L1911.7 377.24' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1846.34 -47.58L1846.34 -47.58' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1846.34 -47.58L1848.81 85.07' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1846.34 -47.58L2052.16 -54' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1848.81 85.07L1848.81 85.07' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1886.76 248.96L1886.76 248.96' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1886.76 248.96L2006.57 224.63' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1886.76 248.96L1911.7 377.24' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1886.76 248.96L2009.42 337.86' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1911.7 377.24L1911.7 377.24' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1911.7 377.24L2009.42 337.86' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1911.7 377.24L1898.12 515.23' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1911.7 377.24L2006.57 224.63' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1911.7 377.24L1730.74 377.03' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1911.7 377.24L2056.93 547.79' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1898.12 515.23L1898.12 515.23' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1898.12 515.23L2056.93 547.79' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1898.12 515.23L2009.42 337.86' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2052.16 -54L2052.16 -54' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2052.16 -54L2210.79 -56.22' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2052.16 -54L2168.51 101.88' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2052.16 -54L1848.81 85.07' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2052.16 -54L2006.57 224.63' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2052.16 -54L1753.56 55.32' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2006.57 224.63L2006.57 224.63' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2006.57 224.63L2009.42 337.86' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2006.57 224.63L2151.12 258.17' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2009.42 337.86L2009.42 337.86' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2056.93 547.79L2056.93 547.79' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2056.93 547.79L2149.19 534.12' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2056.93 547.79L2009.42 337.86' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2210.79 -56.22L2210.79 -56.22' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2210.79 -56.22L2168.51 101.88' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2168.51 101.88L2168.51 101.88' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2168.51 101.88L2151.12 258.17' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2168.51 101.88L2006.57 224.63' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2168.51 101.88L2180.14 358.56' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2168.51 101.88L2009.42 337.86' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2151.12 258.17L2151.12 258.17' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2151.12 258.17L2180.14 358.56' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2151.12 258.17L2009.42 337.86' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2151.12 258.17L1886.76 248.96' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2180.14 358.56L2180.14 358.56' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2180.14 358.56L2009.42 337.86' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2180.14 358.56L2149.19 534.12' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2180.14 358.56L2006.57 224.63' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2180.14 358.56L2056.93 547.79' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2149.19 534.12L2149.19 534.12' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2149.19 534.12L2009.42 337.86' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2149.19 534.12L1898.12 515.23' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2149.19 534.12L2151.12 258.17' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2149.19 534.12L1911.7 377.24' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3ccircle r='5' cx='-71.02' cy='350.16' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='-51.63' cy='549.36' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='77.05' cy='203.43' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='57.59' cy='368.62' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='52.38' cy='498.53' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='232.18' cy='228.58' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='234.72' cy='396.11' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='260.23' cy='539.04' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='409.66' cy='193.34' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='364.13' cy='403.98' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='393.37' cy='494.78' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='516.89' cy='237.45' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='503.79' cy='342.34' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='683.1' cy='245.15' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='669.16' cy='387' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='653.77' cy='528.88' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='857.84' cy='210.25' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='814.99' cy='382.06' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='832.91' cy='537.43' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='996.63' cy='222.68' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='972' cy='407.49' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1006.19' cy='539.45' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1144.69' cy='235.92' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1124.92' cy='356.53' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1286.07' cy='-57.11' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1263.9' cy='110.38' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1249.07' cy='227.21' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1284.04' cy='402.57' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1276.18' cy='548.36' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1433.27' cy='-110.52' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1431.93' cy='82.93' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1449.13' cy='233.29' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1443.93' cy='346.15' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1442.07' cy='513.68' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1590.96' cy='-45.75' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1611.17' cy='73.01' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1563.99' cy='239.67' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1603.85' cy='376.76' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1608.94' cy='515.99' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1713.53' cy='-66.03' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1753.56' cy='55.32' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1702.48' cy='262.06' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1730.74' cy='377.03' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1716.09' cy='513.48' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1846.34' cy='-47.58' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1848.81' cy='85.07' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1886.76' cy='248.96' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1911.7' cy='377.24' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1898.12' cy='515.23' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='2052.16' cy='-54' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='2006.57' cy='224.63' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='2009.42' cy='337.86' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='2056.93' cy='547.79' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='2210.79' cy='-56.22' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='2168.51' cy='101.88' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='2151.12' cy='258.17' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='2180.14' cy='358.56' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='2149.19' cy='534.12' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3cpath d='M227.23 356.27L227.23 356.27' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M227.23 356.27L231.46 251.68' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M227.23 356.27L362.94 409.76' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M227.23 356.27L84.65 404.22' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M227.23 356.27L354.37 497.73' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M839.11 557.65L839.11 557.65' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M839.11 557.65L943.29 562.27' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M839.11 557.65L854.51 375.16' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M839.11 557.65L639.06 506.95' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M839.11 557.65L712.01 355.78' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M839.11 557.65L1003.59 375.16' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1145.27 260.19L1145.27 260.19' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1145.27 260.19L1259.78 258.51' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1145.27 260.19L1093.19 383.36' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1145.27 260.19L1003.59 375.16' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1455.47 230.73L1455.47 230.73' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1455.47 230.73L1552.82 213.59' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1455.47 230.73L1430.51 391.55' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1455.47 230.73L1559.28 82.51' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1455.47 230.73L1600.23 354.95' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1413.44 559.36L1413.44 559.36' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1413.44 559.36L1277.8 491.88' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1413.44 559.36L1430.51 391.55' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1413.44 559.36L1607.61 550.27' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1413.44 559.36L1281.74 404.24' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1413.44 559.36L1151.9 494.79' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1690.72 -40.84L1690.72 -40.84' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1690.72 -40.84L1700.03 78.44' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1690.72 -40.84L1857.27 -108.13' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1868.75 560.23L1868.75 560.23' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1868.75 560.23L1742.45 551.51' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1868.75 560.23L2013.83 523.85' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1868.75 560.23L1854.86 384.99' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1868.75 560.23L1753.88 408.48' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1868.75 560.23L2044.06 390.6' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1868.75 560.23L1607.61 550.27' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2039.84 -87.75L2039.84 -87.75' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2039.84 -87.75L2023.68 47.41' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2039.84 -87.75L2208.85 -89.67' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2039.84 -87.75L1857.27 -108.13' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2039.84 -87.75L2211.28 105.1' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2039.84 -87.75L1845.89 87.52' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2039.84 -87.75L2062.19 232.91' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2023.68 47.41L2023.68 47.41' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2023.68 47.41L1845.89 87.52' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2023.68 47.41L2062.19 232.91' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2023.68 47.41L2211.28 105.1' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-75 354.83L-75 354.83' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-75 354.83L84.65 404.22' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-75 354.83L-71.91 533.78' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-75 354.83L40 548.14' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-71.91 533.78L-71.91 533.78' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-71.91 533.78L40 548.14' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-71.91 533.78L84.65 404.22' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-71.91 533.78L206.71 547.69' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-71.91 533.78L227.23 356.27' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M84.65 404.22L84.65 404.22' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M84.65 404.22L40 548.14' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M84.65 404.22L206.71 547.69' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M84.65 404.22L231.46 251.68' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M40 548.14L40 548.14' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M40 548.14L206.71 547.69' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M231.46 251.68L231.46 251.68' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M231.46 251.68L362.94 409.76' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M231.46 251.68L354.37 497.73' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M206.71 547.69L206.71 547.69' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M206.71 547.69L354.37 497.73' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M362.94 409.76L362.94 409.76' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M362.94 409.76L354.37 497.73' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M354.37 497.73L354.37 497.73' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M354.37 497.73L548.34 557.78' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M561.37 410.47L561.37 410.47' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M561.37 410.47L639.06 506.95' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M561.37 410.47L548.34 557.78' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M548.34 557.78L548.34 557.78' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M548.34 557.78L639.06 506.95' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M548.34 557.78L362.94 409.76' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M548.34 557.78L712.01 355.78' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M654.37 235.64L654.37 235.64' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M654.37 235.64L712.01 355.78' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M654.37 235.64L561.37 410.47' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M712.01 355.78L712.01 355.78' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M712.01 355.78L854.51 375.16' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M712.01 355.78L561.37 410.47' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M639.06 506.95L639.06 506.95' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M639.06 506.95L712.01 355.78' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M639.06 506.95L854.51 375.16' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M639.06 506.95L654.37 235.64' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M860.15 216.21L860.15 216.21' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M860.15 216.21L938.51 240.36' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M860.15 216.21L854.51 375.16' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M860.15 216.21L712.01 355.78' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M860.15 216.21L654.37 235.64' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M854.51 375.16L854.51 375.16' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M854.51 375.16L1003.59 375.16' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M854.51 375.16L938.51 240.36' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M938.51 240.36L938.51 240.36' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M938.51 240.36L1003.59 375.16' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M938.51 240.36L1145.27 260.19' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M938.51 240.36L1093.19 383.36' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1003.59 375.16L1003.59 375.16' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1003.59 375.16L1093.19 383.36' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M943.29 562.27L943.29 562.27' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M943.29 562.27L1003.59 375.16' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M943.29 562.27L854.51 375.16' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M943.29 562.27L1151.9 494.79' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M943.29 562.27L1093.19 383.36' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M943.29 562.27L639.06 506.95' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1093.19 383.36L1093.19 383.36' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1093.19 383.36L1151.9 494.79' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1093.19 383.36L1281.74 404.24' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1093.19 383.36L1259.78 258.51' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1151.9 494.79L1151.9 494.79' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1151.9 494.79L1277.8 491.88' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1151.9 494.79L1281.74 404.24' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1151.9 494.79L1003.59 375.16' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1151.9 494.79L1145.27 260.19' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1259.78 258.51L1259.78 258.51' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1281.74 404.24L1281.74 404.24' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1281.74 404.24L1277.8 491.88' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1281.74 404.24L1259.78 258.51' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1281.74 404.24L1430.51 391.55' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1277.8 491.88L1277.8 491.88' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1277.8 491.88L1430.51 391.55' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1277.8 491.88L1093.19 383.36' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1430.51 391.55L1430.51 391.55' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1430.51 391.55L1600.23 354.95' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1559.28 82.51L1559.28 82.51' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1559.28 82.51L1552.82 213.59' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1559.28 82.51L1700.03 78.44' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1559.28 82.51L1690.72 -40.84' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1552.82 213.59L1552.82 213.59' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1600.23 354.95L1600.23 354.95' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1600.23 354.95L1552.82 213.59' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1600.23 354.95L1753.88 408.48' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1600.23 354.95L1720.85 239.77' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1607.61 550.27L1607.61 550.27' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1607.61 550.27L1742.45 551.51' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1607.61 550.27L1600.23 354.95' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1607.61 550.27L1753.88 408.48' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1607.61 550.27L1430.51 391.55' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1700.03 78.44L1700.03 78.44' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1700.03 78.44L1845.89 87.52' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1700.03 78.44L1720.85 239.77' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1720.85 239.77L1720.85 239.77' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1753.88 408.48L1753.88 408.48' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1753.88 408.48L1854.86 384.99' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1753.88 408.48L1742.45 551.51' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1742.45 551.51L1742.45 551.51' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1742.45 551.51L1854.86 384.99' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1857.27 -108.13L1857.27 -108.13' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1845.89 87.52L1845.89 87.52' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1845.89 87.52L1887.43 224.97' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1845.89 87.52L1857.27 -108.13' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1887.43 224.97L1887.43 224.97' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1887.43 224.97L1854.86 384.99' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1887.43 224.97L1720.85 239.77' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1887.43 224.97L2062.19 232.91' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1887.43 224.97L2023.68 47.41' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1887.43 224.97L1753.88 408.48' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1854.86 384.99L1854.86 384.99' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1854.86 384.99L2044.06 390.6' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1854.86 384.99L1720.85 239.77' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2062.19 232.91L2062.19 232.91' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2062.19 232.91L2196.83 250.66' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2062.19 232.91L2044.06 390.6' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2044.06 390.6L2044.06 390.6' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2044.06 390.6L2159.29 379.69' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2044.06 390.6L2013.83 523.85' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2044.06 390.6L2167.53 512.58' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2044.06 390.6L2196.83 250.66' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2013.83 523.85L2013.83 523.85' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2013.83 523.85L2167.53 512.58' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2208.85 -89.67L2208.85 -89.67' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2208.85 -89.67L2211.28 105.1' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2208.85 -89.67L2023.68 47.41' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2208.85 -89.67L2196.83 250.66' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2211.28 105.1L2211.28 105.1' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2211.28 105.1L2196.83 250.66' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2211.28 105.1L2062.19 232.91' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2211.28 105.1L2159.29 379.69' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2196.83 250.66L2196.83 250.66' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2196.83 250.66L2159.29 379.69' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2196.83 250.66L2167.53 512.58' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2159.29 379.69L2159.29 379.69' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2159.29 379.69L2167.53 512.58' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2167.53 512.58L2167.53 512.58' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2167.53 512.58L2062.19 232.91' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3ccircle r='25' cx='227.23' cy='356.27' fill='url(%26quot%3b%23SvgjsRadialGradient1053%26quot%3b)'%3e%3c/circle%3e%3ccircle r='25' cx='839.11' cy='557.65' fill='url(%26quot%3b%23SvgjsRadialGradient1053%26quot%3b)'%3e%3c/circle%3e%3ccircle r='25' cx='1145.27' cy='260.19' fill='url(%26quot%3b%23SvgjsRadialGradient1053%26quot%3b)'%3e%3c/circle%3e%3ccircle r='25' cx='1455.47' cy='230.73' fill='url(%26quot%3b%23SvgjsRadialGradient1053%26quot%3b)'%3e%3c/circle%3e%3ccircle r='25' cx='1413.44' cy='559.36' fill='url(%26quot%3b%23SvgjsRadialGradient1053%26quot%3b)'%3e%3c/circle%3e%3ccircle r='25' cx='1690.72' cy='-40.84' fill='url(%26quot%3b%23SvgjsRadialGradient1053%26quot%3b)'%3e%3c/circle%3e%3ccircle r='25' cx='1868.75' cy='560.23' fill='url(%26quot%3b%23SvgjsRadialGradient1053%26quot%3b)'%3e%3c/circle%3e%3ccircle r='25' cx='2039.84' cy='-87.75' fill='url(%26quot%3b%23SvgjsRadialGradient1053%26quot%3b)'%3e%3c/circle%3e%3ccircle r='25' cx='2023.68' cy='47.41' fill='url(%26quot%3b%23SvgjsRadialGradient1053%26quot%3b)'%3e%3c/circle%3e%3ccircle r='5' cx='-75' cy='354.83' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='-71.91' cy='533.78' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='84.65' cy='404.22' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='40' cy='548.14' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='231.46' cy='251.68' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='206.71' cy='547.69' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='362.94' cy='409.76' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='354.37' cy='497.73' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='561.37' cy='410.47' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='548.34' cy='557.78' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='654.37' cy='235.64' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='712.01' cy='355.78' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='639.06' cy='506.95' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='860.15' cy='216.21' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='854.51' cy='375.16' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='938.51' cy='240.36' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='1003.59' cy='375.16' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='943.29' cy='562.27' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='1093.19' cy='383.36' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='1151.9' cy='494.79' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='1259.78' cy='258.51' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='1281.74' cy='404.24' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='1277.8' cy='491.88' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='1430.51' cy='391.55' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='1559.28' cy='82.51' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='1552.82' cy='213.59' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='1600.23' cy='354.95' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='1607.61' cy='550.27' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='1700.03' cy='78.44' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='1720.85' cy='239.77' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='1753.88' cy='408.48' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='1742.45' cy='551.51' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='1857.27' cy='-108.13' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='1845.89' cy='87.52' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='1887.43' cy='224.97' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='1854.86' cy='384.99' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='2062.19' cy='232.91' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='2044.06' cy='390.6' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='2013.83' cy='523.85' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='2208.85' cy='-89.67' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='2211.28' cy='105.1' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='2196.83' cy='250.66' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='2159.29' cy='379.69' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='2167.53' cy='512.58' fill='white'%3e%3c/circle%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1052'%3e%3crect width='2000' height='315' fill='white'%3e%3c/rect%3e%3c/mask%3e%3cradialGradient id='SvgjsRadialGradient1053'%3e%3cstop stop-color='white' offset='0.1'%3e%3c/stop%3e%3cstop stop-color='rgba(255%2c 255%2c 255%2c 1)' offset='0.2'%3e%3c/stop%3e%3cstop stop-color='rgba(255%2c 255%2c 255%2c 0)' offset='1'%3e%3c/stop%3e%3c/radialGradient%3e%3c/defs%3e%3c/svg%3e");
    height: 315px;;
    color: #F5F5F5; /* Color del texto */
}
.proyect-section h2 {
    font-size: 30px;
    margin-bottom: 10px;
    
}
.proyect-section p {
    font-size: 16px;
    margin-bottom: 50px;
}
.proyect-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 18px;
    color: #002233;;
    font-weight: bolder;
    background-color:  #ffffff; /* Color del botón */
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s ease;
    width: 200px;
    box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.75);
}
.proyect-button:hover {
    background-color:  #386cdb; /* Color del botón al pasar el ratón */
    color: white;
}
.service-divider{
    border-bottom: 1px solid #537ab4;
    margin: 20px 0;
}

/* SECCION PROYECTATE U OTRO */
 .proyectate-section {
    display: flex; /* Habilita flexbox */
    justify-content: center; /* Centra horizontalmente */
    align-items: center; /* Centra verticalmente */
    height: 315px;
    padding: 0 20px; /* Ajusta el padding según sea necesario */
    background:#001B2E  ;/* linear-gradient(135deg, #252F61, #005D89, #76B82A);  */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.dev/svgjs' width='3098' height='320' preserveAspectRatio='none' viewBox='0 0 3098 320'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1018%26quot%3b)' fill='none'%3e%3cpath d='M-74.09 202.38L-74.09 202.38' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-74.09 202.38L77.34 257.07' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-74.09 202.38L-98.47 364.38' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-74.09 202.38L74.55 368.3' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-74.09 202.38L241.45 204.06' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-74.09 202.38L-97.86 561.97' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-98.47 364.38L-98.47 364.38' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-98.47 364.38L74.55 368.3' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-98.47 364.38L-97.86 561.97' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-97.86 561.97L-97.86 561.97' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-97.86 561.97L74.55 368.3' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-97.86 561.97L77.34 257.07' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M77.34 257.07L77.34 257.07' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M77.34 257.07L74.55 368.3' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M77.34 257.07L241.45 204.06' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M74.55 368.3L74.55 368.3' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M241.45 204.06L241.45 204.06' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M241.45 204.06L74.55 368.3' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M241.45 204.06L409.63 403.38' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M241.45 204.06L508.74 220.11' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M241.45 204.06L515.78 395.73' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M409.63 403.38L409.63 403.38' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M409.63 403.38L515.78 395.73' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M409.63 403.38L387.05 534.96' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M409.63 403.38L530.33 487.52' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M409.63 403.38L508.74 220.11' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M387.05 534.96L387.05 534.96' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M387.05 534.96L530.33 487.52' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M387.05 534.96L515.78 395.73' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M508.74 220.11L508.74 220.11' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M508.74 220.11L659.18 232.57' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M515.78 395.73L515.78 395.73' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M515.78 395.73L530.33 487.52' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M530.33 487.52L530.33 487.52' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M659.18 232.57L659.18 232.57' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M659.18 232.57L818.83 246.34' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M659.18 232.57L515.78 395.73' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M686.3 537.47L686.3 537.47' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M686.3 537.47L821.59 535.92' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M686.3 537.47L530.33 487.52' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M818.83 246.34L818.83 246.34' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M818.83 246.34L840.28 357.81' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M818.83 246.34L943.46 258.02' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M818.83 246.34L972.08 375.81' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M840.28 357.81L840.28 357.81' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M840.28 357.81L972.08 375.81' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M840.28 357.81L943.46 258.02' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M840.28 357.81L821.59 535.92' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M821.59 535.92L821.59 535.92' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M821.59 535.92L954.14 558.46' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M821.59 535.92L972.08 375.81' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M821.59 535.92L1111.15 534.4' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M943.46 258.02L943.46 258.02' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M943.46 258.02L972.08 375.81' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M972.08 375.81L972.08 375.81' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M972.08 375.81L1100.13 399.31' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M972.08 375.81L954.14 558.46' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M972.08 375.81L1104.37 225.07' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M954.14 558.46L954.14 558.46' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M954.14 558.46L1111.15 534.4' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1104.37 225.07L1104.37 225.07' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1104.37 225.07L943.46 258.02' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1104.37 225.07L1100.13 399.31' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1104.37 225.07L1286.99 214.69' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1100.13 399.31L1100.13 399.31' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1100.13 399.31L1111.15 534.4' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1100.13 399.31L1262.27 369.36' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1100.13 399.31L1266.17 490.61' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1100.13 399.31L943.46 258.02' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1111.15 534.4L1111.15 534.4' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1111.15 534.4L1266.17 490.61' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1111.15 534.4L972.08 375.81' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1111.15 534.4L1262.27 369.36' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1286.99 214.69L1286.99 214.69' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1286.99 214.69L1432.65 225.61' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1286.99 214.69L1262.27 369.36' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1262.27 369.36L1262.27 369.36' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1262.27 369.36L1266.17 490.61' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1262.27 369.36L1404.15 382.29' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1262.27 369.36L1104.37 225.07' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1262.27 369.36L1432.65 225.61' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1266.17 490.61L1266.17 490.61' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1266.17 490.61L1404.15 382.29' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1266.17 490.61L1446.78 523.56' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1266.17 490.61L1286.99 214.69' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1432.65 225.61L1432.65 225.61' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1432.65 225.61L1567.33 220.22' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1432.65 225.61L1404.15 382.29' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1404.15 382.29L1404.15 382.29' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1404.15 382.29L1541.24 367.85' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1446.78 523.56L1446.78 523.56' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1446.78 523.56L1541.91 528.41' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1446.78 523.56L1404.15 382.29' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1446.78 523.56L1541.24 367.85' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1567.33 220.22L1567.33 220.22' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1567.33 220.22L1541.24 367.85' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1567.33 220.22L1746.55 250.81' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1541.24 367.85L1541.24 367.85' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1541.24 367.85L1541.91 528.41' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1541.91 528.41L1541.91 528.41' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1541.91 528.41L1730.97 520.36' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1541.91 528.41L1699.18 404.68' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1541.91 528.41L1404.15 382.29' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1722.15 79.68L1722.15 79.68' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1722.15 79.68L1857.05 54.38' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1722.15 79.68L1746.55 250.81' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1722.15 79.68L1849.89 210.03' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1722.15 79.68L1567.33 220.22' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1722.15 79.68L1848.04 340.56' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1722.15 79.68L2018.27 76.89' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1746.55 250.81L1746.55 250.81' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1746.55 250.81L1849.89 210.03' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1746.55 250.81L1848.04 340.56' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1746.55 250.81L1699.18 404.68' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1746.55 250.81L1857.05 54.38' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1699.18 404.68L1699.18 404.68' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1699.18 404.68L1730.97 520.36' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1730.97 520.36L1730.97 520.36' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1730.97 520.36L1843.31 546.62' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1730.97 520.36L1848.04 340.56' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1730.97 520.36L1541.24 367.85' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1730.97 520.36L2000.09 499.56' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1857.05 54.38L1857.05 54.38' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1857.05 54.38L1849.89 210.03' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1857.05 54.38L2018.27 76.89' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1857.05 54.38L2008.34 -101.55' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1857.05 54.38L2013.74 208.36' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1849.89 210.03L1849.89 210.03' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1849.89 210.03L1848.04 340.56' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1849.89 210.03L2013.74 208.36' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1849.89 210.03L2018.27 76.89' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1848.04 340.56L1848.04 340.56' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1848.04 340.56L1699.18 404.68' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1848.04 340.56L2022.89 405.35' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1848.04 340.56L1843.31 546.62' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1848.04 340.56L2013.74 208.36' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1843.31 546.62L1843.31 546.62' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1843.31 546.62L2000.09 499.56' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2008.34 -101.55L2008.34 -101.55' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2008.34 -101.55L2176.78 -103.34' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2008.34 -101.55L2018.27 76.89' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2008.34 -101.55L2178.47 62.4' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2008.34 -101.55L2013.74 208.36' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2018.27 76.89L2018.27 76.89' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2018.27 76.89L2013.74 208.36' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2018.27 76.89L2178.47 62.4' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2018.27 76.89L2192.25 190.81' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2013.74 208.36L2013.74 208.36' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2013.74 208.36L2192.25 190.81' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2013.74 208.36L2022.89 405.35' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2022.89 405.35L2022.89 405.35' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2022.89 405.35L2000.09 499.56' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2022.89 405.35L2206.17 388.11' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2000.09 499.56L2000.09 499.56' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2000.09 499.56L1848.04 340.56' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2000.09 499.56L2206.17 388.11' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2176.78 -103.34L2176.78 -103.34' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2176.78 -103.34L2178.47 62.4' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2176.78 -103.34L2362.17 -54.3' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2178.47 62.4L2178.47 62.4' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2178.47 62.4L2291.84 100.73' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2192.25 190.81L2192.25 190.81' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2192.25 190.81L2317.28 201.47' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2192.25 190.81L2178.47 62.4' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2192.25 190.81L2291.84 100.73' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2206.17 388.11L2206.17 388.11' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2206.17 388.11L2325.41 411.76' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2206.17 388.11L2356.66 509.39' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2206.17 388.11L2192.25 190.81' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2206.17 388.11L2317.28 201.47' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2362.17 -54.3L2362.17 -54.3' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2362.17 -54.3L2497.44 -71.88' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2362.17 -54.3L2442.4 95.46' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2362.17 -54.3L2291.84 100.73' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2291.84 100.73L2291.84 100.73' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2291.84 100.73L2317.28 201.47' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2291.84 100.73L2442.4 95.46' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2317.28 201.47L2317.28 201.47' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2317.28 201.47L2458.03 224.23' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2317.28 201.47L2442.4 95.46' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2317.28 201.47L2178.47 62.4' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2317.28 201.47L2458.99 338.84' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2325.41 411.76L2325.41 411.76' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2325.41 411.76L2356.66 509.39' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2325.41 411.76L2458.99 338.84' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2325.41 411.76L2480.81 517.38' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2325.41 411.76L2317.28 201.47' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2325.41 411.76L2458.03 224.23' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2356.66 509.39L2356.66 509.39' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2356.66 509.39L2480.81 517.38' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2497.44 -71.88L2497.44 -71.88' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2497.44 -71.88L2619.91 -41.37' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2497.44 -71.88L2442.4 95.46' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2497.44 -71.88L2653.28 58.12' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2497.44 -71.88L2751.71 -47.24' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2497.44 -71.88L2291.84 100.73' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2442.4 95.46L2442.4 95.46' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2442.4 95.46L2458.03 224.23' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2458.03 224.23L2458.03 224.23' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2458.03 224.23L2458.99 338.84' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2458.03 224.23L2593.03 200.42' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2458.03 224.23L2291.84 100.73' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2458.99 338.84L2458.99 338.84' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2458.99 338.84L2480.81 517.38' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2458.99 338.84L2646.63 370.26' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2458.99 338.84L2593.03 200.42' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2480.81 517.38L2480.81 517.38' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2480.81 517.38L2629.18 518.6' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2619.91 -41.37L2619.91 -41.37' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2619.91 -41.37L2653.28 58.12' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2653.28 58.12L2653.28 58.12' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2653.28 58.12L2751.71 -47.24' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2593.03 200.42L2593.03 200.42' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2593.03 200.42L2653.28 58.12' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2593.03 200.42L2749.54 232.31' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2593.03 200.42L2646.63 370.26' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2646.63 370.26L2646.63 370.26' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2646.63 370.26L2629.18 518.6' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2646.63 370.26L2793.01 403.5' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2629.18 518.6L2629.18 518.6' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2629.18 518.6L2767.56 520.81' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2629.18 518.6L2793.01 403.5' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2751.71 -47.24L2751.71 -47.24' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2751.71 -47.24L2619.91 -41.37' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2751.71 -47.24L2911.65 -60.73' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2749.54 232.31L2749.54 232.31' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2749.54 232.31L2646.63 370.26' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2749.54 232.31L2793.01 403.5' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2793.01 403.5L2793.01 403.5' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2793.01 403.5L2767.56 520.81' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2793.01 403.5L2929.81 374.7' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2767.56 520.81L2767.56 520.81' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2911.65 -60.73L2911.65 -60.73' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2911.65 -60.73L2957.08 94.28' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2911.65 -60.73L3053.5 42.96' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2911.65 -60.73L3090.09 -112.39' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2911.65 -60.73L3042.01 191.35' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2911.65 -60.73L2653.28 58.12' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2957.08 94.28L2957.08 94.28' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2957.08 94.28L3053.5 42.96' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2957.08 94.28L3042.01 191.35' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2957.08 94.28L3090.09 -112.39' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2957.08 94.28L2749.54 232.31' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2957.08 94.28L2751.71 -47.24' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2929.81 374.7L2929.81 374.7' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2929.81 374.7L3039.74 381.95' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2941.41 562.34L2941.41 562.34' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2941.41 562.34L3102.8 559.78' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2941.41 562.34L2767.56 520.81' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2941.41 562.34L2929.81 374.7' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2941.41 562.34L3039.74 381.95' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3090.09 -112.39L3090.09 -112.39' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3090.09 -112.39L3207.87 -49.49' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3090.09 -112.39L3053.5 42.96' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3053.5 42.96L3053.5 42.96' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3053.5 42.96L3042.01 191.35' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3053.5 42.96L3207.87 -49.49' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3053.5 42.96L3240.56 108.68' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3042.01 191.35L3042.01 191.35' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3042.01 191.35L3225.42 219.98' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3042.01 191.35L3039.74 381.95' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3042.01 191.35L2929.81 374.7' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3039.74 381.95L3039.74 381.95' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3039.74 381.95L3220.35 406.15' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3039.74 381.95L3102.8 559.78' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3102.8 559.78L3102.8 559.78' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3102.8 559.78L3220.35 406.15' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3102.8 559.78L2929.81 374.7' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3102.8 559.78L2767.56 520.81' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3207.87 -49.49L3207.87 -49.49' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3207.87 -49.49L3240.56 108.68' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3207.87 -49.49L3225.42 219.98' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3207.87 -49.49L2957.08 94.28' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3240.56 108.68L3240.56 108.68' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3240.56 108.68L3225.42 219.98' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3240.56 108.68L3042.01 191.35' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3240.56 108.68L3090.09 -112.39' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3225.42 219.98L3225.42 219.98' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3225.42 219.98L3220.35 406.15' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3225.42 219.98L3039.74 381.95' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3225.42 219.98L3053.5 42.96' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3220.35 406.15L3220.35 406.15' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3220.35 406.15L3042.01 191.35' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3220.35 406.15L2929.81 374.7' stroke='rgba(255%2c 255%2c 255%2c 1)' stroke-width='1.5'%3e%3c/path%3e%3ccircle r='5' cx='-74.09' cy='202.38' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='-98.47' cy='364.38' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='-97.86' cy='561.97' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='77.34' cy='257.07' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='74.55' cy='368.3' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='241.45' cy='204.06' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='409.63' cy='403.38' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='387.05' cy='534.96' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='508.74' cy='220.11' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='515.78' cy='395.73' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='530.33' cy='487.52' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='659.18' cy='232.57' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='686.3' cy='537.47' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='818.83' cy='246.34' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='840.28' cy='357.81' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='821.59' cy='535.92' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='943.46' cy='258.02' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='972.08' cy='375.81' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='954.14' cy='558.46' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1104.37' cy='225.07' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1100.13' cy='399.31' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1111.15' cy='534.4' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1286.99' cy='214.69' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1262.27' cy='369.36' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1266.17' cy='490.61' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1432.65' cy='225.61' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1404.15' cy='382.29' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1446.78' cy='523.56' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1567.33' cy='220.22' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1541.24' cy='367.85' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1541.91' cy='528.41' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1722.15' cy='79.68' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1746.55' cy='250.81' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1699.18' cy='404.68' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1730.97' cy='520.36' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1857.05' cy='54.38' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1849.89' cy='210.03' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1848.04' cy='340.56' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='1843.31' cy='546.62' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='2008.34' cy='-101.55' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='2018.27' cy='76.89' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='2013.74' cy='208.36' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='2022.89' cy='405.35' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='2000.09' cy='499.56' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='2176.78' cy='-103.34' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='2178.47' cy='62.4' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='2192.25' cy='190.81' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='2206.17' cy='388.11' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='2362.17' cy='-54.3' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='2291.84' cy='100.73' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='2317.28' cy='201.47' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='2325.41' cy='411.76' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='2356.66' cy='509.39' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='2497.44' cy='-71.88' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='2442.4' cy='95.46' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='2458.03' cy='224.23' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='2458.99' cy='338.84' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='2480.81' cy='517.38' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='2619.91' cy='-41.37' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='2653.28' cy='58.12' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='2593.03' cy='200.42' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='2646.63' cy='370.26' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='2629.18' cy='518.6' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='2751.71' cy='-47.24' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='2749.54' cy='232.31' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='2793.01' cy='403.5' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='2767.56' cy='520.81' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='2911.65' cy='-60.73' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='2957.08' cy='94.28' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='2929.81' cy='374.7' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='2941.41' cy='562.34' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='3090.09' cy='-112.39' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='3053.5' cy='42.96' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='3042.01' cy='191.35' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='3039.74' cy='381.95' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='3102.8' cy='559.78' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='3207.87' cy='-49.49' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='3240.56' cy='108.68' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='3225.42' cy='219.98' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3ccircle r='5' cx='3220.35' cy='406.15' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/circle%3e%3cpath d='M510.55 388.87L510.55 388.87' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M510.55 388.87L519.92 508.22' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M510.55 388.87L666.38 406.21' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M510.55 388.87L338.43 360.5' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M519.92 508.22L519.92 508.22' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M519.92 508.22L644.57 539.55' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M519.92 508.22L354.51 521.73' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M519.92 508.22L666.38 406.21' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M519.92 508.22L338.43 360.5' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M519.92 508.22L807.95 509.54' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M666.38 406.21L666.38 406.21' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M666.38 406.21L644.57 539.55' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M666.38 406.21L807.95 509.54' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M666.38 406.21L847.03 411.03' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M847.03 411.03L847.03 411.03' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M847.03 411.03L807.95 509.54' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M847.03 411.03L981.49 348.16' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M847.03 411.03L859.89 243.24' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M992.51 242.13L992.51 242.13' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M992.51 242.13L981.49 348.16' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M992.51 242.13L859.89 243.24' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M992.51 242.13L1134.54 410.23' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M992.51 242.13L847.03 411.03' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M992.51 242.13L1269.24 227.13' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M992.51 242.13L1242.52 391.86' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M977.57 548.8L977.57 548.8' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M977.57 548.8L1099.25 514.43' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M977.57 548.8L807.95 509.54' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M977.57 548.8L847.03 411.03' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M977.57 548.8L981.49 348.16' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M977.57 548.8L1134.54 410.23' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M977.57 548.8L992.51 242.13' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1242.52 391.86L1242.52 391.86' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1242.52 391.86L1134.54 410.23' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1242.52 391.86L1287.54 500.83' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1242.52 391.86L1269.24 227.13' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1242.52 391.86L1426.43 407.79' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1242.52 391.86L1099.25 514.43' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1242.52 391.86L1458.78 258.11' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1589.34 230.89L1589.34 230.89' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1589.34 230.89L1575.29 348.85' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1589.34 230.89L1458.78 258.11' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2043.2 352.58L2043.2 352.58' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2043.2 352.58L2178.93 337.96' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2043.2 352.58L2001.64 194.82' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2043.2 352.58L2030.69 522.71' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2043.2 352.58L1877.6 247.78' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2043.2 352.58L1843.09 359.3' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2488.08 390.54L2488.08 390.54' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2488.08 390.54L2359.22 388.21' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2488.08 390.54L2446.45 247.5' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2488.08 390.54L2605.94 524.98' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2488.08 390.54L2336.25 528.42' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2894.14 -87.91L2894.14 -87.91' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2894.14 -87.91L2745.58 -54.63' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2894.14 -87.91L2961.15 89.68' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2894.14 -87.91L2773.05 61.7' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2894.14 -87.91L3103.39 -65.38' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2894.14 -87.91L3074.78 44.79' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2894.14 -87.91L2661.79 -93.96' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3189.19 259.78L3189.19 259.78' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3189.19 259.78L3237.74 357.97' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3189.19 259.78L3074.61 232.1' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3189.19 259.78L3072.6 404.44' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3189.19 259.78L3197.44 72.7' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3189.19 259.78L3074.78 44.79' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3233.01 524.01L3233.01 524.01' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3233.01 524.01L3237.74 357.97' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3233.01 524.01L3059.92 535.16' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3233.01 524.01L3072.6 404.44' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3233.01 524.01L3189.19 259.78' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-48.74 386.88L-48.74 386.88' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-48.74 386.88L59.17 395.22' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-48.74 386.88L-72.59 522.28' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-48.74 386.88L43.42 526.31' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-48.74 386.88L200.72 504.5' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-72.59 522.28L-72.59 522.28' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-72.59 522.28L43.42 526.31' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-72.59 522.28L59.17 395.22' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-72.59 522.28L200.72 504.5' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M59.17 395.22L59.17 395.22' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M59.17 395.22L43.42 526.31' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M59.17 395.22L200.72 504.5' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M59.17 395.22L255 390.74' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M59.17 395.22L338.43 360.5' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M43.42 526.31L43.42 526.31' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M43.42 526.31L200.72 504.5' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M43.42 526.31L255 390.74' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M43.42 526.31L354.51 521.73' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M255 390.74L255 390.74' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M255 390.74L338.43 360.5' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M255 390.74L200.72 504.5' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M255 390.74L354.51 521.73' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M200.72 504.5L200.72 504.5' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M200.72 504.5L354.51 521.73' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M200.72 504.5L338.43 360.5' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M338.43 360.5L338.43 360.5' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M338.43 360.5L354.51 521.73' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M354.51 521.73L354.51 521.73' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M644.57 539.55L644.57 539.55' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M644.57 539.55L807.95 509.54' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M859.89 243.24L859.89 243.24' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M859.89 243.24L981.49 348.16' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M807.95 509.54L807.95 509.54' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M981.49 348.16L981.49 348.16' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M981.49 348.16L1134.54 410.23' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1134.54 410.23L1134.54 410.23' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1134.54 410.23L1099.25 514.43' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1134.54 410.23L1287.54 500.83' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1099.25 514.43L1099.25 514.43' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1269.24 227.13L1269.24 227.13' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1269.24 227.13L1458.78 258.11' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1269.24 227.13L1134.54 410.23' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1269.24 227.13L1426.43 407.79' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1287.54 500.83L1287.54 500.83' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1287.54 500.83L1426.43 407.79' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1287.54 500.83L1099.25 514.43' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1287.54 500.83L1269.24 227.13' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1458.78 258.11L1458.78 258.11' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1458.78 258.11L1575.29 348.85' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1458.78 258.11L1426.43 407.79' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1458.78 258.11L1709.03 399.22' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1426.43 407.79L1426.43 407.79' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1426.43 407.79L1575.29 348.85' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1575.29 348.85L1575.29 348.85' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1571.71 550.06L1571.71 550.06' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1571.71 550.06L1741.52 557.6' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1571.71 550.06L1575.29 348.85' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1760.38 204.45L1760.38 204.45' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1760.38 204.45L1877.6 247.78' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1760.38 204.45L1589.34 230.89' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1760.38 204.45L1843.09 359.3' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1760.38 204.45L1709.03 399.22' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1760.38 204.45L1575.29 348.85' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1760.38 204.45L2001.64 194.82' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1709.03 399.22L1709.03 399.22' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1709.03 399.22L1843.09 359.3' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1709.03 399.22L1575.29 348.85' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1709.03 399.22L1741.52 557.6' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1709.03 399.22L1839.15 542.36' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1741.52 557.6L1741.52 557.6' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1741.52 557.6L1839.15 542.36' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1741.52 557.6L1843.09 359.3' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1741.52 557.6L1575.29 348.85' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1877.6 247.78L1877.6 247.78' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1877.6 247.78L1843.09 359.3' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1877.6 247.78L2001.64 194.82' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1877.6 247.78L1709.03 399.22' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1843.09 359.3L1843.09 359.3' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1839.15 542.36L1839.15 542.36' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1839.15 542.36L1843.09 359.3' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1839.15 542.36L2030.69 522.71' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2001.64 194.82L2001.64 194.82' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2001.64 194.82L2180.83 189.68' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2001.64 194.82L2178.93 337.96' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2030.69 522.71L2030.69 522.71' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2030.69 522.71L2169.47 519.33' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2030.69 522.71L2178.93 337.96' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2030.69 522.71L1843.09 359.3' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2180.83 189.68L2180.83 189.68' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2180.83 189.68L2319.29 208' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2180.83 189.68L2178.93 337.96' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2180.83 189.68L2043.2 352.58' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2180.83 189.68L2359.22 388.21' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2178.93 337.96L2178.93 337.96' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2178.93 337.96L2169.47 519.33' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2178.93 337.96L2359.22 388.21' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2178.93 337.96L2319.29 208' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2169.47 519.33L2169.47 519.33' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2169.47 519.33L2336.25 528.42' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2319.29 208L2319.29 208' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2319.29 208L2446.45 247.5' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2319.29 208L2359.22 388.21' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2359.22 388.21L2359.22 388.21' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2336.25 528.42L2336.25 528.42' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2336.25 528.42L2359.22 388.21' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2484.56 -41.29L2484.56 -41.29' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2484.56 -41.29L2512.08 106.87' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2484.56 -41.29L2596.99 61.4' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2484.56 -41.29L2661.79 -93.96' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2484.56 -41.29L2745.58 -54.63' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2484.56 -41.29L2446.45 247.5' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2512.08 106.87L2512.08 106.87' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2512.08 106.87L2596.99 61.4' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2446.45 247.5L2446.45 247.5' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2446.45 247.5L2512.08 106.87' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2446.45 247.5L2359.22 388.21' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2446.45 247.5L2662.44 200.62' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2446.45 247.5L2596.99 61.4' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2661.79 -93.96L2661.79 -93.96' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2661.79 -93.96L2745.58 -54.63' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2661.79 -93.96L2596.99 61.4' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2661.79 -93.96L2773.05 61.7' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2596.99 61.4L2596.99 61.4' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2596.99 61.4L2662.44 200.62' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2596.99 61.4L2773.05 61.7' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2596.99 61.4L2745.58 -54.63' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2662.44 200.62L2662.44 200.62' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2662.44 200.62L2766.3 240' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2662.44 200.62L2512.08 106.87' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2662.44 200.62L2773.05 61.7' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2605.94 524.98L2605.94 524.98' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2605.94 524.98L2767.09 550.62' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2605.94 524.98L2336.25 528.42' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2605.94 524.98L2359.22 388.21' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2605.94 524.98L2446.45 247.5' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2745.58 -54.63L2745.58 -54.63' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2745.58 -54.63L2773.05 61.7' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2773.05 61.7L2773.05 61.7' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2773.05 61.7L2766.3 240' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2773.05 61.7L2961.15 89.68' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2766.3 240L2766.3 240' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2766.3 240L2917.05 249.87' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2766.3 240L2961.26 374.86' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2766.3 240L2961.15 89.68' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2767.09 550.62L2767.09 550.62' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2767.09 550.62L2928.03 526.69' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2767.09 550.62L2961.26 374.86' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2767.09 550.62L3059.92 535.16' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2961.15 89.68L2961.15 89.68' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2961.15 89.68L3074.78 44.79' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2961.15 89.68L2917.05 249.87' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2961.15 89.68L3074.61 232.1' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2917.05 249.87L2917.05 249.87' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2917.05 249.87L2961.26 374.86' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2961.26 374.86L2961.26 374.86' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2961.26 374.86L3072.6 404.44' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2961.26 374.86L2928.03 526.69' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2961.26 374.86L3074.61 232.1' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2961.26 374.86L3059.92 535.16' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2928.03 526.69L2928.03 526.69' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2928.03 526.69L3059.92 535.16' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2928.03 526.69L3072.6 404.44' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M2928.03 526.69L2917.05 249.87' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3103.39 -65.38L3103.39 -65.38' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3103.39 -65.38L3074.78 44.79' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3103.39 -65.38L3233.14 -111.62' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3103.39 -65.38L3197.44 72.7' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3103.39 -65.38L2961.15 89.68' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3074.78 44.79L3074.78 44.79' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3074.61 232.1L3074.61 232.1' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3074.61 232.1L2917.05 249.87' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3074.61 232.1L3072.6 404.44' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3074.61 232.1L3074.78 44.79' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3072.6 404.44L3072.6 404.44' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3072.6 404.44L3059.92 535.16' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3072.6 404.44L3237.74 357.97' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3059.92 535.16L3059.92 535.16' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3233.14 -111.62L3233.14 -111.62' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3233.14 -111.62L3197.44 72.7' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3233.14 -111.62L3074.78 44.79' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3233.14 -111.62L2961.15 89.68' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3233.14 -111.62L2894.14 -87.91' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3197.44 72.7L3197.44 72.7' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3197.44 72.7L3074.78 44.79' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3197.44 72.7L3074.61 232.1' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M3237.74 357.97L3237.74 357.97' stroke='hsl(0%2c 0%25%2c 100%25)' stroke-width='1.5'%3e%3c/path%3e%3ccircle r='25' cx='510.55' cy='388.87' fill='url(%26quot%3b%23SvgjsRadialGradient1019%26quot%3b)'%3e%3c/circle%3e%3ccircle r='25' cx='519.92' cy='508.22' fill='url(%26quot%3b%23SvgjsRadialGradient1019%26quot%3b)'%3e%3c/circle%3e%3ccircle r='25' cx='666.38' cy='406.21' fill='url(%26quot%3b%23SvgjsRadialGradient1019%26quot%3b)'%3e%3c/circle%3e%3ccircle r='25' cx='847.03' cy='411.03' fill='url(%26quot%3b%23SvgjsRadialGradient1019%26quot%3b)'%3e%3c/circle%3e%3ccircle r='25' cx='992.51' cy='242.13' fill='url(%26quot%3b%23SvgjsRadialGradient1019%26quot%3b)'%3e%3c/circle%3e%3ccircle r='25' cx='977.57' cy='548.8' fill='url(%26quot%3b%23SvgjsRadialGradient1019%26quot%3b)'%3e%3c/circle%3e%3ccircle r='25' cx='1242.52' cy='391.86' fill='url(%26quot%3b%23SvgjsRadialGradient1019%26quot%3b)'%3e%3c/circle%3e%3ccircle r='25' cx='1589.34' cy='230.89' fill='url(%26quot%3b%23SvgjsRadialGradient1019%26quot%3b)'%3e%3c/circle%3e%3ccircle r='25' cx='2043.2' cy='352.58' fill='url(%26quot%3b%23SvgjsRadialGradient1019%26quot%3b)'%3e%3c/circle%3e%3ccircle r='25' cx='2488.08' cy='390.54' fill='url(%26quot%3b%23SvgjsRadialGradient1019%26quot%3b)'%3e%3c/circle%3e%3ccircle r='25' cx='2894.14' cy='-87.91' fill='url(%26quot%3b%23SvgjsRadialGradient1019%26quot%3b)'%3e%3c/circle%3e%3ccircle r='25' cx='3189.19' cy='259.78' fill='url(%26quot%3b%23SvgjsRadialGradient1019%26quot%3b)'%3e%3c/circle%3e%3ccircle r='25' cx='3233.01' cy='524.01' fill='url(%26quot%3b%23SvgjsRadialGradient1019%26quot%3b)'%3e%3c/circle%3e%3ccircle r='5' cx='-48.74' cy='386.88' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='-72.59' cy='522.28' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='59.17' cy='395.22' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='43.42' cy='526.31' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='255' cy='390.74' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='200.72' cy='504.5' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='338.43' cy='360.5' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='354.51' cy='521.73' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='644.57' cy='539.55' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='859.89' cy='243.24' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='807.95' cy='509.54' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='981.49' cy='348.16' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='1134.54' cy='410.23' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='1099.25' cy='514.43' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='1269.24' cy='227.13' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='1287.54' cy='500.83' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='1458.78' cy='258.11' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='1426.43' cy='407.79' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='1575.29' cy='348.85' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='1571.71' cy='550.06' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='1760.38' cy='204.45' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='1709.03' cy='399.22' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='1741.52' cy='557.6' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='1877.6' cy='247.78' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='1843.09' cy='359.3' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='1839.15' cy='542.36' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='2001.64' cy='194.82' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='2030.69' cy='522.71' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='2180.83' cy='189.68' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='2178.93' cy='337.96' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='2169.47' cy='519.33' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='2319.29' cy='208' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='2359.22' cy='388.21' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='2336.25' cy='528.42' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='2484.56' cy='-41.29' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='2512.08' cy='106.87' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='2446.45' cy='247.5' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='2661.79' cy='-93.96' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='2596.99' cy='61.4' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='2662.44' cy='200.62' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='2605.94' cy='524.98' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='2745.58' cy='-54.63' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='2773.05' cy='61.7' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='2766.3' cy='240' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='2767.09' cy='550.62' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='2961.15' cy='89.68' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='2917.05' cy='249.87' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='2961.26' cy='374.86' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='2928.03' cy='526.69' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='3103.39' cy='-65.38' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='3074.78' cy='44.79' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='3074.61' cy='232.1' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='3072.6' cy='404.44' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='3059.92' cy='535.16' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='3233.14' cy='-111.62' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='3197.44' cy='72.7' fill='white'%3e%3c/circle%3e%3ccircle r='5' cx='3237.74' cy='357.97' fill='white'%3e%3c/circle%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1018'%3e%3crect width='3098' height='320' fill='white'%3e%3c/rect%3e%3c/mask%3e%3cradialGradient id='SvgjsRadialGradient1019'%3e%3cstop stop-color='white' offset='0.1'%3e%3c/stop%3e%3cstop stop-color='rgba(255%2c 255%2c 255%2c 1)' offset='0.2'%3e%3c/stop%3e%3cstop stop-color='rgba(255%2c 255%2c 255%2c 0)' offset='1'%3e%3c/stop%3e%3c/radialGradient%3e%3c/defs%3e%3c/svg%3e");

    color: #fff; /* Color del texto */
    max-width: 100%; /* Asegura que no se desborde horizontalmente */
    box-sizing: border-box; /* Incluye padding y border en el tamaño total */
    overflow: hidden; /* Oculta cualquier desbordamiento */
}
.logo-container {
    text-align: center; /* Centra el contenido dentro del contenedor */
}
.logo-container img {
    animation: latido 1.5s infinite; /* Añadir animación de latido */
    max-width: 100%; /* Asegura que la imagen no se desborde */
    height: auto;
}
@keyframes latido {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}


/* SECCION GALERIA */
.image-section {
    width: 100%;
    margin: 0 auto;
    margin-top: 40px;
    margin-bottom: 40px;
    text-align: center;
}  
  .image-section h2 {
    margin-top: 10px;
    margin-bottom: 40px;
    text-align: center;
    color: #005D89;
}  
  .image-slider {
    width: 63%; /* Ajusta el ancho del slider aquí */
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9; /* Ajusta el ratio según tus imágenes */
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.slide.active {
    opacity: 1;
}
.slide img {
    width: 100%;
    height: 100%; /* Ajusta las imágenes para cubrir el contenedor */
    object-fit: cover; /* Ajusta el contenido para cubrir el contenedor */
}  
.prev-button,
.next-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}  
.prev-button {
    left: 10px;
}  
.next-button {
    right: 10px;
}  
.prev-button:hover,
.next-button:hover {
    background-color: rgba(0, 0, 0, 0.7);
}
  
  
/* IMAGEN PRE-FOOTER */
.full-width {
    width: 100%;
    height: auto;
    margin-bottom: -20px; /* Ajusta este valor según sea necesario */
}

/* SECCION RADICACION FOOTER */
@keyframes latido {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}  
.radicacion-button2 {
        display: inline-block;
        padding: 10px 20px;
        font-size: 18px;
        color: #ffffff;
        background-color: #123c7c; /* Color del botón */
        text-decoration: none;
        border-radius: 5px;
        transition: background-color 0.3s ease;
        width: 150px;
        box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.75);
        animation: latido 1.5s infinite; /* Añadir animación de latido */
}    
.radicacion-button2:hover {
    background-color:  #76B82A; /* Color del botón al pasar el ratón */
}    
@keyframes latido {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* SECCION MAPA FOOTER*/
#map {
    width: 100%vh;
    height: 100%px;    
}
#framemap {
    width: 100%;
    height:300px;
}

/* FOOTER */
footer {
    background: #010010;
    color: white;
    padding: 20px;
    text-align: center;
}
.footer-divider {
    border-bottom: 1px solid #fff;
    margin: 20px 0;
}
.footer-columns {
    display:flex;
    justify-content: space-around;
    text-align: left;
    margin-bottom: 20px;
    gap: 50px;
}
.footer-columns div {
    max-width: 500px;
    
}
.footer-columns div h3 {
    font-size: 24px;
    margin-bottom: 10px;
}
.footer-columns div p {
    margin-bottom: 5px;
    line-height: 1.6;
}
.footer-center {
    margin-bottom: 20px;
}
.footer-center h3 {
    font-size: 24px;
    margin-bottom: 10px;
}
.footer-center p {
    margin-bottom: 50px;
}
.footer-contact {
    margin-bottom: 20px;
}
.footer-contact p {
    margin-bottom: 5px;
    line-height: 1.6;
}
.footer-contact a {
    text-decoration: none;
    color: inherit;
}
.footer-icons {
    margin: 20px 0;
}
.footer-icons a {
    margin: 0 10px;
    display: inline-block;
    transition: transform 0.3s ease;
    
}
.footer-icons a span {
    display: inline-block;
    transition: transform 0.3s ease;
}
.footer-icons a:hover span {
    transform: scale(1.2);
}
.footer-bottom {
    margin-top: 20px;
    margin-bottom: 90px;
    
}
.footer-bottom a {
    text-decoration: none; /* Quita la decoración subrayada */
    color: inherit; /* Mantiene el color original del texto */
   
}
.prov-icon img {
    margin-top: 50px;
    transition: transform 0.5s ease-in-out; /* Transición más larga y con easing más pronunciado */    
    
}
.prov-icon img:hover {
    transform: scale(1.1); /* Aumenta el tamaño del ícono al 110% en el hover */
}

/* BOTON VOLVER A SUBIR */
#back-to-top-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border: none;
    background-color: #007bff;
    color: white;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
#back-to-top-btn:hover {
    background-color: #0056b3;
}
#back-to-top-btn:active {
    transform: scale(0.95);
}

/* BOTON DE WHATSAPP */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}
.whatsapp-button img {
    width: 35px;
    height: 35px;
}
.whatsapp-button:hover {
    transform: scale(1.1);
}
.show {
    display: block !important;
}
.hide {
    display: none;
}


/* AJUSTES RESPONSIVE */
@media (max-width: 430px) {

    .dialog {
        top:230px; /* Coloca el diálogo sobre el robot */
        left: 50%; /* Centra horizontalmente respecto al robot */
        width: 360px;
        
    }


    .social-links {
        display: none; /* Oculta los iconos de redes sociales */
    }

    .inner-container {
        width:88%; /* Ajusta el ancho según tus necesidades */
    }    
     
    .column {
    flex: 1;   
    padding: 50px; 
    padding-bottom: 5px; 
    padding-top: 5px;  
  }    

  .image-slider {
    width: 100%; /* Ajusta el ancho del slider aquí */   
    
  }
     
}
@media screen and (max-width: 600px) {
    .wrapper {
      flex-direction: column;
    }
}
@media screen and (max-width: 600px) {
    .ods-track {
        gap: 20px; /* Reducir el espacio entre las imágenes en dispositivos móviles */
    }

    .ods-track img {
        margin-bottom: 10px; /* Reducir el espacio opcional entre las imágenes en dispositivos móviles */
    }
}
@media screen and (max-width: 600px) {
    .wrapper {
        flex-direction: column;
    }

    .column:not(:last-child)::after {
        display: none; /* Oculta la línea vertical en dispositivos móviles */
    }
    
}
@media (max-width: 768px) {
   

    .radicacion-section h2 {
        font-size: 28px;
    }

    .radicacion-section p {
        font-size: 18px;
    }

    .radicacion-button {
        font-size: 16px;
        padding: 8px 16px;
    }
    
}    
@media (max-width: 768px) {
.social-links {
        flex-direction: row; /* Cambia la dirección de flexión a horizontal */
        justify-content: center; /* Centra los íconos horizontalmente */
    }
.social-icon {
        margin-right: 10px; /* Agrega un margen derecho entre los íconos */
        margin-bottom: 0; /* Elimina el margen inferior */
    }
.social-icon:last-child {
        margin-right: 0; /* Elimina el margen derecho del último ícono */
    }
}
@media (max-width: 768px) {
    .section .content {
        padding: 0 20px;
    }
}
@media (max-width: 768px) {
    .logos-carousel {
        justify-content: center; /* Centramos los logos */
    }

    .logo-item {
        margin: 0 10px; /* Reducimos el espacio entre los logos */
    }

    .logo-item img {
        max-width: 100px; /* Reducimos el tamaño máximo del logo */
    }

    .ver-empresas-button {
        margin-top: 20px;
    }

    .footer-columns {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    
}
@media (min-width: 768px) {
    .column:not(:last-child)::after {
        height: 768px; /* Ajusta la altura según lo necesario para dispositivos menores a 768px */
    }
    
}

@media (min-width: 300px) and (max-width: 1080px) { 
.nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #000b1b;
    width: 100%;
    text-align: center;
    opacity: 55%;
}

.nav-links ul {
    display: block;
}

.nav-links ul li {
    display: block;
    margin: 15px 0;
}

.nav-links a {
    color: #fff; 
    text-decoration: none;
    font-size: 18px;
}

.hamburger-menu {
    display: flex;
}}


@media (min-width: 1024px) and (max-width: 1500px) {

    .image-slider {
        width: 100%; /* Ajusta el ancho del slider aquí */   
        
      }

      .dialog {
        
            top:500px; /* Coloca el diálogo sobre el robot */
            left: 50%; /* Centra horizontalmente respecto al robot */
            
        
      }
    
      }


/* RANGOS */
@media (min-width: 350px) and (max-width: 375px) {

    .logo-container img {
        width: 300px;
    }

    

}
@media (min-width: 200px) and (max-width: 1000px) {
    .ods-track {
        display: flex;
        flex-direction: column;
        align-items: center; /* Centra las imágenes horizontalmente */
        gap: 0; /* Elimina el espacio entre las imágenes */
    }
    .ods-track img {
        max-width: 100%; /* Ajusta el ancho de las imágenes al 100% */
        border-radius: 0; /* Elimina cualquier borde redondeado */
        margin: 0; /* Elimina cualquier margen */
        padding: 0; /* Elimina cualquier relleno */        
    }

    .ods-container {
        margin: 0;
    }    

    .inner-container h2 {
        padding: 5px;
    }

   
   

}
@media (min-width: 1000px) and (max-width: 1024px) {

    .titods {
        margin: 0 auto;        
        margin-bottom: 50px;
    }
    .ods-track {
        display: flex;
        flex-direction: column;
        align-items: center; /* Centra las imágenes horizontalmente */
        gap: 0; /* Elimina el espacio entre las imágenes */
    }
    .ods-track img {
        width: 100%; /* Ajusta el ancho de las imágenes al 100% del contenedor */
        height: auto; /* Mantiene la proporción de la imagen */
        border-radius: 0; /* Elimina cualquier borde redondeado */
        margin: 0; /* Elimina cualquier margen */
        padding: 0; /* Elimina cualquier relleno */
    }

    .ods-slider {
        width: 100%;
    }
    .ods-img {
        max-width: 100%; /* Ajusta el ancho máximo de las imágenes */
        height: auto; /* Mantiene la proporción de la imagen */
    }
    .ods-container { 
        width: 88%;       
        margin-bottom: 50px; /* Elimina cualquier margen en el contenedor */
        padding: 0; /* Elimina cualquier relleno en el contenedor */
    }
 
    
}


/* Media query para ocultar los íconos de redes sociales a partir de 820px */
@media (min-width: 769px) and (max-width: 907px) {
    .social-links {
        display: none;
    }
}
@media (min-width: 432px) and (max-width: 768px) {
    .social-links {
        display: none;
    }

    
}
@media (min-width: 430px) and (max-width: 1024px){
.video-section {
    padding: 0px; /* Añadir padding alrededor del video */
    padding-bottom: 25px;       
}
.video-container {
        width: 100%; /* Ancho del 88% de la pantalla */
        max-width: 1500px; /* Ancho máximo opcional */   
}   
video {
        width: 100%; /* El video ocupa todo el ancho del contenedor */
        display: block; /* Elimina espacios en blanco debajo del video */
}   


}
@media (min-width: 200px) and (max-width: 430px){
    .video-section {
        padding: 0px; /* Añadir padding alrededor del video */
        padding-bottom: 25px;       
    }
    .video-container {
            width: 100%; /* Ancho del 88% de la pantalla */
            max-width: 1500px; /* Ancho máximo opcional */   
    }   
    video {
            width: 100%; /* El video ocupa todo el ancho del contenedor */
            display: block; /* Elimina espacios en blanco debajo del video */
    }   
    }  
    
    
/* media query typing title */   
@media (min-width: 300px) and (max-width: 700px) {

    #typing-title {
        font-size: 12px;
        font-weight: bold;
        color: #ffffff;
        margin-top: 5px;
       
    }

    #typing-subtitle {
        /* margin-top: 2%; */
        font-size: 10px;
        font-weight: lighter;
        color: #fff;  
    }

    .column h2 {
        
        font-size: 22px;
        margin-bottom: 50px;
        margin-top: 25px;
    }

   #home p {
    text-align: justify;
   }
    
    li {
        text-align: left;
    }
    
}

/* media query typing title */   
@media (min-width: 700px) and (max-width: 3800px) {

    #typing-title {
        font-size: 25px;
        font-weight: bold;
        color: #ffffff;
        margin-top: 5px;
       
    }

    #typing-subtitle {
        /* margin-top: 2%; */
        font-size: 20px;
        font-weight: lighter;
        color: #fff;  
    }
}

