<!DOCTYPE html>

<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="noindex">
<title>Verifying your connection</title>
<style>
:root {
  --color-page:            #FDF2E0;
  --color-sheet:           #FFFFFF;
  --color-ink:             #16233D;
  --color-muted:           #5B6577;
  --color-line:            #E7E0D2;
  --color-accent:          #2B50D8;
  --color-accent-deep:     #1E3BAB;
  --color-accent-warm:     #FBBF3C;
  --link-ink:              var(--color-accent);
  --link-ink-hover:        var(--color-accent-deep);
  --danger:                #F55B4E;
  --warning:               #F97316;
  --success:               #22C55E;

  --font-body:             Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display:          Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono:             ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, monospace;
  --weight-display:        800;
  --tracking-display:      -0.02em;

  --size-display:          clamp(40px, 4.4vw, 52px);
  --size-lede:             18px;
  --size-body:             15px;
  --size-eyebrow:          13px;
  --size-micro:            12px;

  --logo-height:           30px;
  --logo-gap:              16px;
  --radius:                4px;
  --border-width:          1px;
  --sheet-border-color:    #EDE4D3;
  --sheet-shadow:          0 22px 55px -34px rgba(22, 35, 61, .45);
  --page-wash:             none;
  --dot-color:             rgba(22, 35, 61, .13);
  --dot-size:              14px;

  --eyebrow-family:        var(--font-body);
  --eyebrow-weight:        700;
  --eyebrow-tracking:      0.02em;
  --eyebrow-transform:     none;
  --eyebrow-ink:           var(--color-ink);
  --eyebrow-bg:            var(--color-accent-warm);
  --eyebrow-border:        transparent;
  --eyebrow-radius:        999px;
  --eyebrow-padding:       6px 12px;

  --button-bg:             var(--color-accent);
  --button-bg-hover:       var(--color-accent-deep);
  --button-ink:            #FFFFFF;
  --button-border:         transparent;
  --button-radius:         999px;
  --button-padding:        14px 26px;
  --button-weight:         700;
  --button-shadow:         none;

  --visual-bg:             #16233D;
  --visual-divider:        #16233D;
  --visual-ink:            #FFFFFF;
  --glyph-stroke:          var(--color-accent-warm);
  --footer-ink:            #16233D;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: var(--size-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
  background-color: var(--color-page);
  background-image:
    var(--page-wash),
    radial-gradient(var(--dot-color) 1px, transparent 1px);
  background-size: auto, var(--dot-size) var(--dot-size);
  background-repeat: no-repeat, repeat;
}
a { color: var(--link-ink); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--link-ink-hover); }

.page { min-height: 100%; display: grid; place-items: center; padding: clamp(18px, 3.5vw, 48px); }
.sheet {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  background: var(--color-sheet);
  border: var(--border-width) solid var(--sheet-border-color);
  border-radius: var(--radius);
  box-shadow: var(--sheet-shadow);
  overflow: hidden;
}
.content {
  display: flex; flex-direction: column;
  gap: 20px;
  padding: clamp(28px, 3.6vw, 54px);
}

.brand-logo {
  display: block; align-self: flex-start;
  height: var(--logo-height);
  width: auto;
  margin-bottom: var(--logo-gap);
}
.brand-logo path:not([fill]) { fill: var(--color-ink); }

.eyebrow {
  align-self: flex-start;
  display: inline-flex; align-items: center;
  margin: 0;
  padding: var(--eyebrow-padding);
  border: var(--border-width) solid var(--eyebrow-border);
  border-radius: var(--eyebrow-radius);
  background: var(--eyebrow-bg);
  font: var(--eyebrow-weight) var(--size-eyebrow)/1 var(--eyebrow-family);
  letter-spacing: var(--eyebrow-tracking);
  text-transform: var(--eyebrow-transform);
  color: var(--eyebrow-ink);
}
.title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: var(--weight-display);
  font-size: var(--size-display);
  line-height: 1.05;
  letter-spacing: var(--tracking-display);
}
.lede {
  text-wrap: pretty;
  margin: 0;
  font-size: var(--size-lede);
  line-height: 1.5;
  color: var(--color-muted);
  max-width: 52ch;
}

 
.cs-form { margin: 4px 0 0; min-height: 78px; }
.cs-form altcha-widget { --altcha-max-width: 340px; }
.status {
  display: flex; align-items: center; gap: 10px;
  margin: 2px 0 0;
  font-size: var(--size-body);
  color: var(--color-muted);
}
.spinner {
  width: 16px; height: 16px; flex: none;
  border: 2px solid rgba(91, 101, 119, .30);
  border-top-color: var(--color-accent);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .spinner { animation: none; } }
.err {
  margin: 2px 0 0;
  font-size: var(--size-body);
  color: var(--danger);
  font-weight: 700;
}
noscript .err { display: block; }
 
.err[hidden] { display: none; }

.powered {
  display: flex; align-items: center; gap: 3px;
  margin: 8px 0 0;
  padding-top: 20px;
  border-top: var(--border-width) solid var(--color-line);
  font-size: var(--size-micro);
  color: var(--color-muted);
}
.powered strong { color: var(--footer-ink); font-weight: 700; }

.visual {
  position: relative;
  display: grid; place-items: center;
  container-type: inline-size;
  border-left: var(--border-width) solid var(--visual-divider);
  background: var(--visual-bg);
  overflow: hidden;
  padding: 40px 32px;
}
.flow { width: 100%; height: auto; display: block; margin-inline: auto; }
.flow--vertical { max-width: 280px; }
.flow--horizontal { display: none; max-width: 640px; }
.flow .node-ring { fill: none; stroke: var(--glyph-stroke); stroke-width: 2; }
.flow .icon {
  fill: none; stroke: var(--glyph-stroke); stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}
.flow .link {
  fill: none; stroke: var(--glyph-stroke); stroke-width: 2; opacity: .55;
  stroke-linecap: round;
}
.flow .link--pending {
  stroke: var(--glyph-stroke); stroke-dasharray: 5 6; opacity: .9;
  stroke-linecap: round;
}
.flow .badge { fill: var(--success); stroke: none; }
.flow .badge--ok { fill: var(--success); stroke: none; }
.flow .node--check .node-ring { stroke: var(--warning); }
.flow .node--check .icon      { stroke: var(--warning); }
.flow .badge--pending { fill: var(--warning); stroke: none; }
.flow .badge-check {
  stroke: #FFFFFF; stroke-width: 2.5;
  stroke-linecap: round; stroke-linejoin: round; fill: none;
}
.flow .badge-clock {
  stroke: #FFFFFF; stroke-width: 2.5;
  stroke-linecap: round; stroke-linejoin: round; fill: none;
}
.flow .label {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  fill: var(--visual-ink);
}
.flow .label--sub {
  font-size: 16px;
  font-weight: 600;
  opacity: .95;
}
.flow .label--pending { fill: var(--warning); opacity: 1; }
.flow .label--ok { fill: var(--success); opacity: 1; }

@media (max-width: 900px) {
  .sheet { grid-template-columns: 1fr; }
  .visual {
    order: -1; padding: 28px 20px;
    border-left: 0; border-bottom: var(--border-width) solid var(--visual-divider);
  }
  .flow--vertical { display: none; }
  .flow--horizontal { display: block; }
  .flow--horizontal .label { font-size: 22px; }
  .flow--horizontal .label--sub { font-size: 18px; }
}
</style>
</head>
<body>
  <main class="page">
    <div class="sheet">
      <div class="content">
        <svg class="brand-logo" role="img" aria-label="MyHost" width="150" height="37" viewBox="0 0 150 37" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_940_10484)">
<path d="M65.5287 3.78897V3.59897C65.5289 2.99434 65.3767 2.39941 65.0862 1.86915C64.7956 1.33889 64.3762 0.890395 63.8665 0.565098C63.3568 0.239801 62.7734 0.0481916 62.1701 0.00797037C61.5668 -0.0322508 60.9631 0.0802132 60.4147 0.334973C59.7507 0.642973 59.4688 1.38797 59.4688 2.12097V28.221H59.4917C59.5826 28.9544 59.9385 29.6294 60.4923 30.1188C61.0461 30.6082 61.7597 30.8783 62.4987 30.8783C63.2378 30.8783 63.9514 30.6082 64.5052 30.1188C65.059 29.6294 65.4149 28.9544 65.5058 28.221H65.5287V16.978C65.5287 16.377 65.6337 15.764 65.9977 15.285C66.3861 14.7723 66.888 14.3567 67.4641 14.0708C68.0401 13.7848 68.6746 13.6363 69.3177 13.637C70.4677 13.637 71.5087 14.104 72.2627 14.857C72.5947 15.189 72.7257 15.659 72.7257 16.127V27.652C72.7257 28.4556 73.045 29.2263 73.6132 29.7945C74.1814 30.3627 74.9521 30.682 75.7558 30.682C76.5594 30.682 77.33 30.3627 77.8983 29.7945C78.4665 29.2263 78.7858 28.4556 78.7858 27.652V15.532H78.7838L78.7868 15.342C78.7873 13.7968 78.3033 12.2903 77.4027 11.0346C76.5021 9.77895 75.2304 8.83735 73.7666 8.34239C72.3028 7.84743 70.7207 7.82402 69.2429 8.27548C67.7651 8.72693 66.4661 9.6305 65.5287 10.859V3.78897Z" fill="#F4AE2B"></path>
<path d="M6.042 10.4215C5.97976 9.82391 5.76892 9.25144 5.4287 8.75626C5.08849 8.26109 4.62972 7.85896 4.09424 7.58654C3.55876 7.31413 2.96361 7.1801 2.36305 7.19668C1.76249 7.21326 1.17563 7.37992 0.656 7.68146C0.204 7.94246 0 8.46546 0 8.98846V28.0285H0.023C0.113891 28.7619 0.469724 29.4369 1.02353 29.9263C1.57734 30.4157 2.29093 30.6858 3.03 30.6858C3.76907 30.6858 4.48266 30.4157 5.03647 29.9263C5.59028 29.4369 5.94611 28.7619 6.037 28.0285H6.061V15.9065C6.061 14.7705 7.599 13.6335 9.47 13.6335C11.34 13.6335 12.879 14.7705 12.879 15.9065V27.6505C12.879 28.4541 13.1982 29.2248 13.7665 29.793C14.3347 30.3612 15.1054 30.6805 15.909 30.6805C16.7126 30.6805 17.4833 30.3612 18.0515 29.793C18.6198 29.2248 18.939 28.4541 18.939 27.6505V15.9075C18.939 14.7715 20.289 13.6345 22.349 13.6345C24.409 13.6345 25.758 14.7715 25.758 16.0075V27.6505C25.758 28.4541 26.0772 29.2248 26.6455 29.793C27.2137 30.3612 27.9844 30.6805 28.788 30.6805C29.5916 30.6805 30.3623 30.3612 30.9305 29.793C31.4988 29.2248 31.818 28.4541 31.818 27.6505V15.5285H31.816L31.818 15.3395C31.819 13.7056 31.2782 12.1176 30.2803 10.8239C29.2825 9.53022 27.8838 8.60391 26.3033 8.18998C24.7227 7.77604 23.0496 7.89785 21.5457 8.53632C20.0418 9.17479 18.792 10.2939 17.992 11.7185C17.3495 10.5758 16.4145 9.62484 15.2828 8.96316C14.1512 8.30149 12.8639 7.95299 11.553 7.95346C9.363 7.95346 7.394 8.90646 6.042 10.4215Z"></path>
<path d="M146.783 30.6822C148.561 30.6822 150.003 29.2405 150.003 27.4622C150.003 25.6838 148.561 24.2422 146.783 24.2422C145.004 24.2422 143.562 25.6838 143.562 27.4622C143.562 29.2405 145.004 30.6822 146.783 30.6822Z" fill="#F4AE2B"></path>
<path fill-rule="evenodd" clip-rule="evenodd" d="M92.2373 30.6817C97.9903 30.6817 102.653 26.0177 102.653 20.2647C102.653 14.5117 97.9903 9.84766 92.2373 9.84766C86.4843 9.84766 81.8203 14.5117 81.8203 20.2647C81.8203 26.0177 86.4843 30.6817 92.2373 30.6817ZM92.2373 26.1357C95.2703 26.1357 97.7293 23.5077 97.7293 20.2657C97.7293 17.0227 95.2703 14.3937 92.2373 14.3937C89.2033 14.3937 86.7443 17.0227 86.7443 20.2647C86.7443 23.5077 89.2043 26.1357 92.2373 26.1357Z" fill="#F4AE2B"></path>
<path d="M40.7611 10.2326C40.549 9.64928 40.1897 9.13068 39.7179 8.72722C39.2462 8.32377 38.6782 8.04917 38.069 7.93011C37.4598 7.81105 36.8302 7.85157 36.2413 8.04774C35.6524 8.2439 35.1242 8.58905 34.7081 9.04964C34.2181 9.59364 34.2491 10.3916 34.5351 11.0656L38.5501 20.5226L40.9591 26.1976L40.9801 26.1876C41.2261 26.6116 41.5631 26.9576 41.9561 27.2106L39.6321 33.5956C39.4521 34.0876 39.4661 34.6476 39.8011 35.0496C40.2168 35.5471 40.7591 35.923 41.3708 36.1376C41.9825 36.3522 42.6408 36.3976 43.2762 36.269C43.9116 36.1403 44.5004 35.8423 44.9803 35.4066C45.4603 34.9709 45.8137 34.4136 46.0031 33.7936L46.0081 33.7946L51.7081 18.1336L51.6861 18.1256C51.6961 18.0816 51.7061 18.0376 51.7131 17.9936L54.2741 10.9576C54.4531 10.4656 54.4401 9.90464 54.1051 9.50264C53.6894 9.00494 53.1469 8.62884 52.535 8.41412C51.9231 8.19939 51.2646 8.15402 50.629 8.28281C49.9935 8.4116 49.4045 8.70976 48.9245 9.14576C48.4445 9.58175 48.0912 10.1394 47.9021 10.7596L47.8971 10.7576L44.7071 19.5216L40.7641 10.2316L40.7611 10.2326Z"></path>
<path d="M128.79 23.5125V23.7015C128.79 23.8065 128.794 23.9115 128.803 24.0135C128.746 24.8925 128.87 25.7738 129.167 26.6029C129.464 27.4321 129.928 28.1915 130.53 28.8342C131.132 29.4769 131.86 29.9892 132.668 30.3394C133.476 30.6897 134.348 30.8704 135.229 30.8705C138.786 30.8705 140.911 28.9775 140.911 25.5685C140.911 24.7745 140.911 24.0535 140.153 24.0535C139.585 24.0535 139.585 24.4035 139.585 24.6215C139.396 25.3795 138.259 25.9475 137.123 25.9475C135.872 25.9475 134.858 25.1055 134.85 24.0645L134.851 16.3365V14.5835H138.706V14.5665C139.255 14.497 139.759 14.2296 140.125 13.8144C140.491 13.3993 140.693 12.8649 140.693 12.3115C140.693 11.7581 140.491 11.2237 140.125 10.8086C139.759 10.3934 139.255 10.126 138.706 10.0565V10.0385H134.851V5.68251H134.828C134.733 4.95174 134.376 4.28037 133.823 3.79388C133.269 3.30739 132.558 3.03906 131.821 3.03906C131.084 3.03906 130.372 3.30739 129.819 3.79388C129.265 4.28037 128.908 4.95174 128.814 5.68251H128.791L128.79 10.0385H126.991V10.0555C126.443 10.1268 125.94 10.3949 125.575 10.8098C125.211 11.2248 125.01 11.7582 125.01 12.3105C125.01 12.8628 125.211 13.3962 125.575 13.8112C125.94 14.2261 126.443 14.4943 126.991 14.5655V14.5835H128.79V23.5125ZM120.503 11.2085C118.931 10.1335 116.775 9.47051 114.396 9.47051C109.584 9.47051 105.684 12.1835 105.684 15.5305C105.684 19.9805 109.268 21.8735 113.26 22.5385C113.822 22.6325 116.182 23.1065 116.182 24.5525C116.182 25.9995 113.336 26.3265 112.502 26.3265C111.613 26.3301 110.734 26.1464 109.921 25.7873C109.109 25.4282 108.381 24.9018 107.786 24.2425C107.564 23.9955 107.389 23.8645 107.184 23.8645C106.385 24.2675 105.867 24.7645 105.549 25.3795C104.667 27.0835 106.419 28.7615 106.964 29.1335C108.536 30.2085 110.692 30.8715 113.071 30.8715C118.752 30.8715 122.54 28.1585 122.54 24.8115C122.54 19.8055 118.435 18.5735 114.117 17.8065C111.889 17.4115 111.192 16.5265 111.229 15.9095C111.313 14.5255 113.944 14.0155 114.964 14.0155C115.852 14.0119 116.731 14.1956 117.544 14.5547C118.356 14.9138 119.084 15.4402 119.68 16.0995C119.902 16.3465 120.078 16.4775 120.282 16.4775C121.081 16.0745 121.6 15.5775 121.918 14.9625C122.799 13.2585 121.047 11.5805 120.503 11.2085Z" fill="#F4AE2B"></path>
</g>
<defs>
<clipPath id="clip0_940_10484">
<rect width="150" height="37" fill="white"></rect>
</clipPath>
</defs>
</svg>

        <h1 class="title">Security Check</h1>
        <p class="lede">Before you continue, we're running a quick automated check to ensure this is a friendly request. It usually finishes on its own in a few seconds, you don't need to do anything.</p>
        <p class="lede">Once the check completes, you'll be taken straight to the page you asked for.</p>

        <form id="f" class="cs-form" method="POST" action="/myhost-verify">
          <input type="hidden" name="r" value="/sitemap.xml">
          <altcha-widget id="cs-widget" challenge="/myhost-verify/altcha-challenge" name="altcha" auto="onload" configuration="{&#34;hideFooter&#34;:true}"></altcha-widget>
        </form>
        
        <noscript><p class="err">JavaScript is required to complete this check. Please enable it and reload the page</p></noscript>
        <p class="err" id="captcha-unavailable" hidden>The security check couldn't load. Reload the page to try again, or <a href="https://myhost.nz/contact-us">get in touch</a> if it keeps happening.</p>

        <p class="lede" style="font-size:var(--size-body)">If this page doesn't continue on its own, complete the check above. Still stuck? <a href="https://myhost.nz/contact-us">Get in touch</a>.</p>

        <p class="powered">Security powered by <strong>MyHost</strong></p>
      </div>

      <aside class="visual" aria-hidden="true">
        <svg class="flow flow--vertical" viewBox="0 0 300 400" role="img">
          <g class="node node--source">
            <circle class="node-ring" cx="56" cy="60" r="36" />
            <g class="icon" transform="translate(35.6 39.6) scale(1.7)">
              <path d="M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2" />
              <circle cx="12" cy="7" r="4" />
            </g>
            <circle class="badge badge--ok" cx="85" cy="35" r="12" />
            <path class="badge-check" d="M80 35 L84 39 L90 31" />
            <text class="label" x="108" y="52" dominant-baseline="middle">You</text>
            <text class="label label--sub" x="108" y="70" dominant-baseline="middle">Connected</text>
          </g>

          <path class="link" d="M56 96 L56 158" />

          <g class="node node--check">
            <circle class="node-ring" cx="56" cy="200" r="42" />
            <g class="icon" transform="translate(35.6 179.6) scale(1.7)">
              <path d="M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z" />
              <path d="m9 12 2 2 4-4" />
            </g>
            <circle class="badge badge--pending" cx="88" cy="172" r="12" />
            <path class="badge-clock" d="M88 172 L88 167 M88 172 L92 172" />
            <text class="label" x="114" y="194" dominant-baseline="middle">MyHost Security</text>
            <text class="label label--sub label--pending" x="114" y="212" dominant-baseline="middle">Verifying…</text>
          </g>

          <path class="link link--pending" d="M56 242 L56 304" />

          <g class="node node--target">
            <circle class="node-ring" cx="56" cy="340" r="36" />
            <g class="icon" transform="translate(35.6 319.6) scale(1.7)">
              <circle cx="12" cy="12" r="10" />
              <path d="M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20" />
              <path d="M2 12h20" />
            </g>
            <circle class="badge badge--ok" cx="85" cy="315" r="12" />
            <path class="badge-check" d="M80 315 L84 319 L90 311" />
            <text class="label" x="108" y="332" dominant-baseline="middle">Website</text>
            <text class="label label--sub label--ok" x="108" y="350" dominant-baseline="middle">Online</text>
          </g>
        </svg>

        <svg class="flow flow--horizontal" viewBox="0 0 600 200" role="img">
          <g class="node node--source">
            <circle class="node-ring" cx="56" cy="80" r="36" />
            <g class="icon" transform="translate(35.6 59.6) scale(1.7)">
              <path d="M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2" />
              <circle cx="12" cy="7" r="4" />
            </g>
            <circle class="badge badge--ok" cx="85" cy="55" r="12" />
            <path class="badge-check" d="M80 55 L84 59 L90 51" />
            <text class="label" x="56" y="140" text-anchor="middle" dominant-baseline="middle">You</text>
            <text class="label label--sub" x="56" y="164" text-anchor="middle" dominant-baseline="middle">Connected</text>
          </g>

          <path class="link" d="M92 80 L258 80" />

          <g class="node node--check">
            <circle class="node-ring" cx="300" cy="80" r="42" />
            <g class="icon" transform="translate(279.6 59.6) scale(1.7)">
              <path d="M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z" />
              <path d="m9 12 2 2 4-4" />
            </g>
            <circle class="badge badge--pending" cx="332" cy="52" r="12" />
            <path class="badge-clock" d="M332 52 L332 47 M332 52 L336 52" />
            <text class="label" x="300" y="140" text-anchor="middle" dominant-baseline="middle">MyHost Security</text>
            <text class="label label--sub label--pending" x="300" y="164" text-anchor="middle" dominant-baseline="middle">Verifying…</text>
          </g>

          <path class="link link--pending" d="M342 80 L508 80" />

          <g class="node node--target">
            <circle class="node-ring" cx="544" cy="80" r="36" />
            <g class="icon" transform="translate(523.6 59.6) scale(1.7)">
              <circle cx="12" cy="12" r="10" />
              <path d="M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20" />
              <path d="M2 12h20" />
            </g>
            <circle class="badge badge--ok" cx="573" cy="55" r="12" />
            <path class="badge-check" d="M568 55 L572 59 L578 51" />
            <text class="label" x="544" y="140" text-anchor="middle" dominant-baseline="middle">Website</text>
            <text class="label label--sub label--ok" x="544" y="164" text-anchor="middle" dominant-baseline="middle">Online</text>
          </g>
        </svg>
      </aside>
    </div>
  </main>

  <script type="module" id="altcha-src" src="/myhost-assets/altcha-3.2.2.js" integrity="sha384-qV4Gl2o6J5/ZiK69wonhWSz6cXyNzg05mIKksGFv2oEnBAZGR1FgWMFrlYuqEznz" crossorigin="anonymous"></script>
  
  <script nomodule>document.getElementById("captcha-unavailable").hidden = false;</script>
  <script>
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    (function () {
      var notice = document.getElementById("captcha-unavailable");
      var script = document.getElementById("altcha-src");
      if (script && notice) {
        script.addEventListener("error", function () {
          notice.hidden = false;
        });
      }
      var widget = document.getElementById("cs-widget");
      var form = document.getElementById("f");
      if (widget && form) {
        widget.addEventListener("verified", function () {
          form.submit();
        });
      }
    })();
  </script>
<script type="module" src="https://static.cloudflareinsights.com/beacon.min.js/v31edd6df95cf4e85bb4c19e7a9bdbcba1788362987495" integrity="sha512-iIg7k2xntmwu6/uSb5tpc/hySgZc4eoL31yB29W6tJFo2akwjPWcEqnCEdJvGexCL0KEQwVYv5BlowfhVz26hg==" data-cf-beacon='{"version":"2024.11.0","token":"320f0486487b4dde9cd4994c7f6ec110","r":1,"spa":2}' crossorigin="anonymous"></script>
</body>
</html>
