|  |   | 
| (96 intermediate revisions by 2 users not shown) | 
| Line 1: | Line 1: | 
|  | <html> |  | <html> | 
|  | <style type="text/css"> |  | <style type="text/css"> | 
|  |          .mw-body-header{display:none !important} |  |     @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap'); | 
|  |          #contentSub{display:none} |  |     @import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400&display=swap'); | 
|  |         #bodyContent {
 |  |   | 
|  |  |   | 
|  |  |     /* Light Mode Styles (Default) */ | 
|  |  |     :root { | 
|  |  |         --bg-color: #ffffff; | 
|  |  |         --text-primary: #1a202c; | 
|  |  |         --text-secondary: #4a5568; | 
|  |  |          --section-bg: #f7fafc; | 
|  |  |         --input-bg: #fff; | 
|  |  |         --input-border: #e2e8f0; | 
|  |  |         --input-text: #2d3748; | 
|  |  |         --highlight-bg: #bee3f8; | 
|  |  |         --highlight-text: #2c5282; | 
|  |  |         --card-bg: #ffffff; | 
|  |  |         --card-text-primary: #1a202c; | 
|  |  |         --card-text-secondary: #4a5568; | 
|  |  |         --grid-line-color: rgba(0, 0, 0, 0.04); | 
|  |  |         --watermark-opacity: 0.05; | 
|  |  |     } | 
|  |  |   | 
|  |  |     .info { | 
|  |  |         background-color: var(--highlight-bg); | 
|  |  |         color: var(--highlight-text); | 
|  |  |         padding: 3px 5px; | 
|  |  |         font-weight: 500; | 
|  |  |         border-radius: 4px; | 
|  |  |         opacity: 0; | 
|  |  |         animation: fadeIn 0.5s ease forwards; | 
|  |  |     } | 
|  |  |   | 
|  |  |     #mw-content-text.mw-body-content.mw-content-ltr { | 
|  |  |         margin-left: auto !important; | 
|  |  |     } | 
|  |  |   | 
|  |  |     #bodyContent.citizen-body { | 
|  |  |          min-width: 0px !important; | 
|  |  |         max-width: 80vw; | 
|  |  |     } | 
|  |  |   | 
|  |  |     .mw-body-header, #contentSub { | 
|  |  |         display: none !important; | 
|  |  |     } | 
|  |  |   | 
|  |  |     #bodyContent { | 
|  |          min-width: 80vw !important; |  |          min-width: 80vw !important; | 
|  |  |     } | 
|  |  |  | 
|  |  |     main { | 
|  |  |         font-family: 'Inter', sans-serif; | 
|  |  |         -moz-osx-font-smoothing: grayscale; | 
|  |  |         -webkit-font-smoothing: antialiased; | 
|  |  |         display: flex; | 
|  |  |         margin: auto; | 
|  |  |         font-size: 16px; | 
|  |  |         align-content: center; | 
|  |  |         flex-direction: column; | 
|  |  |         background-color: var(--bg-color); | 
|  |  |         color: var(--text-secondary); | 
|  |  |     } | 
|  |  |  | 
|  |  |     #mega { | 
|  |  |         position: relative; | 
|  |  |         padding: 15vh 2vw; | 
|  |  |         text-align: center; | 
|  |  |         border-radius: 12px; | 
|  |  |         margin-top: 2rem; | 
|  |  |         background: linear-gradient(315deg, rgba(45, 55, 72, 0.9), rgba(74, 85, 104, 0.9), rgba(43, 108, 176, 0.9)); | 
|  |  |         background-size: 400% 400%; | 
|  |  |         animation: gradient-animation 20s ease infinite; | 
|  |  |         overflow: hidden; | 
|  |  |     } | 
|  |  |      | 
|  |  |     #code-background { | 
|  |  |         position: absolute; | 
|  |  |         top: 0; | 
|  |  |         left: 0; | 
|  |  |         width: 100%; | 
|  |  |         height: 100%; | 
|  |  |         z-index: 0; | 
|  |  |     } | 
|  |  |      | 
|  |  |     .code-snippet { | 
|  |  |         position: absolute; | 
|  |  |         color: rgba(255, 255, 255, 0.15); | 
|  |  |         font-family: 'Fira Code', monospace; | 
|  |  |         font-size: 14px; | 
|  |  |         white-space: nowrap; | 
|  |  |         animation: slide-code linear infinite; | 
|  |  |         user-select: none; | 
|  |  |     } | 
|  |  |  | 
|  |  |     @keyframes slide-code { | 
|  |  |         from { transform: translateY(100vh); } | 
|  |  |         to { transform: translateY(-20vh); } | 
|  |  |     } | 
|  |  |  | 
|  |  |  | 
|  |  |     #mega .title { | 
|  |  |         position: relative; | 
|  |  |         z-index: 1; | 
|  |  |     } | 
|  |  |  | 
|  |  |     #mega h1 { | 
|  |  |         font-size: 4.5em; | 
|  |  |         font-weight: 700; | 
|  |  |         margin-top: 0px; | 
|  |  |         margin-bottom: 2vh; | 
|  |  |         color: #fff; | 
|  |  |     } | 
|  |  |  | 
|  |  |     main h1 { | 
|  |  |         font-size: 2.5em; | 
|  |  |         font-weight: 700; | 
|  |  |     } | 
|  |  |  | 
|  |  |     #mega h2 { | 
|  |  |         font-weight: 300; | 
|  |  |         font-size: 1.5em; | 
|  |  |         color: rgba(255, 255, 255, 0.85); | 
|  |  |         max-width: 550px; | 
|  |  |         margin-left: auto; | 
|  |  |         margin-right: auto; | 
|  |  |     } | 
|  |  |  | 
|  |  |     #mega>.title { | 
|  |  |         padding-right: 0; | 
|  |  |         flex: 1; | 
|  |  |     } | 
|  |  |  | 
|  |  |     main #mega .links a { | 
|  |  |         padding: 12px 28px; | 
|  |  |         border-radius: 8px; | 
|  |  |         background: linear-gradient(90deg, #4a90e2, #50e3c2); | 
|  |  |         box-shadow: 0 4px 14px 0 rgba(0, 118, 255, 0.39); | 
|  |  |         text-decoration: none; | 
|  |  |         color: #fff; | 
|  |  |         font-weight: 600; | 
|  |  |         display: inline-block; | 
|  |  |         transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out; | 
|  |  |     } | 
|  |  |  | 
|  |  |     main #mega .links a:hover { | 
|  |  |         transform: translateY(-2px); | 
|  |  |         opacity: .85; | 
|  |  |     } | 
|  |  |  | 
|  |  |     main #mega .links { | 
|  |  |         display: flex; | 
|  |  |         margin-top: 5vh; | 
|  |  |         margin-bottom: 0; | 
|  |  |         justify-content: center; | 
|  |  |     } | 
|  |  |  | 
|  |  |     main .row { | 
|  |  |         flex-direction: row; | 
|  |  |         display: flex; | 
|  |  |         align-items: stretch; | 
|  |  |         padding-top: 2vh; | 
|  |  |     } | 
|  |  |      | 
|  |  |     @keyframes gradient-animation { | 
|  |  |         0% { background-position: 0% 50%; } | 
|  |  |         50% { background-position: 100% 50%; } | 
|  |  |         100% { background-position: 0% 50%; } | 
|  |  |     } | 
|  |  |  | 
|  |  |     main .card { | 
|  |  |         position: relative; | 
|  |  |         flex-direction: column; | 
|  |  |         border-radius: 14px; | 
|  |  |         box-shadow: 0 10px 20px rgba(0,0,0,0.1), 0 6px 6px rgba(0,0,0,0.1); | 
|  |  |         font-size: 18px; | 
|  |  |         overflow: hidden; | 
|  |  |         margin: 1vw; | 
|  |  |         flex: 1; | 
|  |  |         display: flex; | 
|  |  |         transition: transform 0.3s ease, box-shadow 0.3s ease; | 
|  |  |         background-color: var(--card-bg); | 
|  |  |         padding: 2px; | 
|  |  |         text-decoration: none; | 
|  |  |     } | 
|  |  |      | 
|  |  |     main .card::before { | 
|  |  |         content: ''; | 
|  |  |         position: absolute; | 
|  |  |         top: 0; right: 0; bottom: 0; left: 0; | 
|  |  |         z-index: 0; | 
|  |  |         margin: -2px; | 
|  |  |         border-radius: inherit; | 
|  |  |         background-size: 200% 200%; | 
|  |  |         animation: gradient-animation 10s ease infinite; | 
|  |  |     } | 
|  |  |      | 
|  |  |     .card.purple::before { background-image: linear-gradient(135deg, #667eea 0%, #764ba2 100%); } | 
|  |  |     .card.red::before { background-image: linear-gradient(135deg, #ff8177 0%, #ff867a 0%, #ff8c7f 21%, #f99185 52%, #cf556c 78%, #b12a5b 100%); } | 
|  |  |     .card.orange::before { background-image: linear-gradient(135deg, #f6d365 0%, #fda085 100%); } | 
|  |  |     .card.blue::before { background-image: linear-gradient(135deg, #89f7fe 0%, #66a6ff 100%); } | 
|  |  |      | 
|  |  |     main .card:hover { | 
|  |  |         transform: translateY(-5px); | 
|  |  |         box-shadow: 0 20px 30px rgba(0,0,0,0.15), 0 10px 10px rgba(0,0,0,0.1); | 
|  |  |     } | 
|  |  |  | 
|  |  |     main .card p { | 
|  |  |         color: var(--card-text-secondary); | 
|  |  |         line-height: 1.6; | 
|  |  |     } | 
|  |  |  | 
|  |  |     main .card h1 { | 
|  |  |         margin: 0 0 1rem 0; | 
|  |  |         font-size: 2em; | 
|  |  |         font-weight: 600; | 
|  |  |         color: var(--card-text-primary); | 
|  |  |     } | 
|  |  |      | 
|  |  |     .card-footer { | 
|  |  |         text-align: center; | 
|  |  |         padding: 1.5vh; | 
|  |  |         background-color: rgba(0, 0, 0, .05); | 
|  |  |         font-weight: 600; | 
|  |  |         margin-top: auto; | 
|  |  |         border-bottom-left-radius: 12px; | 
|  |  |         border-bottom-right-radius: 12px; | 
|  |  |         color: var(--card-text-primary); | 
|  |  |     } | 
|  |  |      | 
|  |  |     main .card-inner-content { | 
|  |  |         position: relative; | 
|  |  |         z-index: 1; | 
|  |  |         background-color: var(--card-bg); | 
|  |  |         border-radius: 12px; | 
|  |  |         height: 100%; | 
|  |  |         display: flex; | 
|  |  |         flex-direction: column; | 
|  |  |         overflow: hidden; | 
|  |  |     } | 
|  |  |      | 
|  |  |     main .card-inner-content::after { | 
|  |  |         content: ''; | 
|  |  |         position: absolute; | 
|  |  |         bottom: 20px; | 
|  |  |         right: 20px; | 
|  |  |         width: 90px; | 
|  |  |         height: 90px; | 
|  |  |         z-index: 0; | 
|  |  |         background-repeat: no-repeat; | 
|  |  |         background-position: center; | 
|  |  |         background-size: contain; | 
|  |  |         opacity: var(--watermark-opacity); | 
|  |  |         transition: opacity 0.3s ease; | 
|  |  |     } | 
|  |  |      | 
|  |  |     .card.purple .card-inner-content::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2' stroke='%231a202c'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M4 5a1 1 0 011-1h14a1 1 0 011 1v2a1 1 0 01-1 1H5a1 1 0 01-1-1V5zM4 13a1 1 0 011-1h6a1 1 0 011 1v6a1 1 0 01-1 1H5a1 1 0 01-1-1v-6zM16 13a1 1 0 011-1h2a1 1 0 011 1v6a1 1 0 01-1 1h-2a1 1 0 01-1-1v-6z' /%3E%3C/svg%3E"); } | 
|  |  |     .card.red .card-inner-content::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2' stroke='%231a202c'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M10 20l4-16m4 4l4 4-4 4M6 16l-4-4 4-4' /%3E%3C/svg%3E"); } | 
|  |  |     .card.blue .card-inner-content::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2' stroke='%231a202c'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M6.72 13.829c-.24.03-.48.062-.72.096m.72-.096a42.415 42.415 0 0110.56 0m-10.56 0L6 18.233m10.56-4.404L18 18.233m-12-4.404h12m-12 0a9 9 0 019-9h.096c.5 0 .905.405.905.905 0 .714-.211 1.412-.608 2.006L7.394 13.83c-.397.594-.908 1.05-1.482 1.342a9.058 9.058 0 01-1.212.323' /%3E%3C/svg%3E"); } | 
|  |  |     .card.orange .card-inner-content::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2' stroke='%231a202c'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M8 12h.01M12 12h.01M16 12h.01M21 12c0 4.418-4.03 8-9 8a9.863 9.863 0 01-4.255-.949L3 20l1.395-3.72C3.512 15.042 3 13.574 3 12c0-4.418 4.03-8 9-8s9 3.582 9 8z' /%3E%3C/svg%3E"); } | 
|  |  |  | 
|  |  |  | 
|  |  |     main .card>.card-inner-content>.content { | 
|  |  |         position: relative; | 
|  |  |         z-index: 1; | 
|  |  |         padding: 2vw; | 
|  |  |         padding-bottom: 0px; | 
|  |  |         min-height: 250px; | 
|  |  |         display: flex; | 
|  |  |         flex-direction: column; | 
|  |  |         text-align: left; | 
|  |  |     } | 
|  |  |  | 
|  |  |     #classify { | 
|  |  |         position: relative; | 
|  |  |         display: flex; | 
|  |  |         justify-content: center; | 
|  |  |         align-items: center; | 
|  |  |         margin: 4rem 0; | 
|  |  |         padding: 40px; | 
|  |  |         background-color: var(--section-bg); | 
|  |  |         border-radius: 12px; | 
|  |  |         gap: 5vw; | 
|  |  |         border: 1px solid var(--input-border); | 
|  |  |         box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03); | 
|  |  |     } | 
|  |  |      | 
|  |  |     #classify h1 { | 
|  |  |         color: var(--text-primary); | 
|  |  |         margin-top: 0; | 
|  |  |     } | 
|  |  |      | 
|  |  |     #classify p { | 
|  |  |         color: var(--text-secondary); | 
|  |  |         line-height: 1.7; | 
|  |  |     } | 
|  |  |  | 
|  |  |     #classify .try { | 
|  |  |         display: flex; | 
|  |  |         flex-direction: column; | 
|  |  |         min-width: 350px; | 
|  |  |     } | 
|  |  |  | 
|  |  |     #classify .try #tryData { | 
|  |  |         background-color: var(--input-bg); | 
|  |  |         padding: 18px; | 
|  |  |         border-radius: 8px; | 
|  |  |         height: 130px; | 
|  |  |         color: var(--input-text); | 
|  |  |         border: 1px solid var(--input-border); | 
|  |  |         box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06); | 
|  |  |         font-size: 1.05em; | 
|  |  |         line-height: 1.6; | 
|  |  |     } | 
|  |  |  | 
|  |  |     #classify .try button { | 
|  |  |         padding: 12px 24px; | 
|  |  |         border-radius: 8px; | 
|  |  |         background: #2b6cb0; | 
|  |  |         box-shadow: 0 4px 14px 0 rgba(43, 108, 176, 0.39); | 
|  |  |         font-weight: 600; | 
|  |  |         color: #fff; | 
|  |  |         border: 0px; | 
|  |  |         width: 100%; | 
|  |  |         margin-top: 1.5vh; | 
|  |  |         cursor: pointer; | 
|  |  |         transition: all 0.2s ease; | 
|  |  |         position: relative; | 
|  |  |     } | 
|  |  |      | 
|  |  |     #classify .try button:hover { | 
|  |  |         transform: translateY(-2px); | 
|  |  |         background: #2c5282; | 
|  |  |     } | 
|  |  |      | 
|  |  |     #classify .try button.processing { | 
|  |  |         background: #2c5282; | 
|  |  |         cursor: not-allowed; | 
|  |  |     } | 
|  |  |      | 
|  |  |     /* Dark Mode Styles */ | 
|  |  |     .skin-citizen-dark { | 
|  |  |         --bg-color: #1a202c; | 
|  |  |         --text-primary: #f7fafc; | 
|  |  |         --text-secondary: #a0aec0; | 
|  |  |         --section-bg: #2d3748; | 
|  |  |         --input-bg: #4a5568; | 
|  |  |         --input-border: #4a5568; | 
|  |  |         --input-text: #f7fafc; | 
|  |  |         --highlight-bg: #2b6cb0; | 
|  |  |         --highlight-text: #bee3f8; | 
|  |  |         --card-bg: #1A202C; | 
|  |  |         --card-text-primary: #ffffff; | 
|  |  |         --card-text-secondary: rgba(255, 255, 255, 0.8); | 
|  |  |         --grid-line-color: rgba(255, 255, 255, 0.06); | 
|  |  |         --watermark-opacity: 0.1; | 
|  |  |     } | 
|  |  |      | 
|  |  |     .skin-citizen-dark #classify { | 
|  |  |         background-image: none; | 
|  |  |         border: 1px solid var(--input-border); | 
|  |  |         box-shadow: none; | 
|  |  |     } | 
|  |  |      | 
|  |  |     .skin-citizen-dark main .card { | 
|  |  |          box-shadow: 0 10px 20px rgba(0,0,0,0.4), 0 6px 6px rgba(0,0,0,0.4); | 
|  |  |     } | 
|  |  |  | 
|  |  |     .skin-citizen-dark main .card .card-footer { | 
|  |  |         background-color: rgba(255, 255, 255, .1); | 
|  |  |     } | 
|  |  |  | 
|  |  |     .skin-citizen-dark main .card p, | 
|  |  |     .skin-citizen-dark main .card h1 { | 
|  |  |         text-shadow: 0 1px 3px rgba(0,0,0,0.2); | 
|  |  |     } | 
|  |  |      | 
|  |  |     .skin-citizen-dark .card.purple .card-inner-content::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2' stroke='%23fff'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M4 5a1 1 0 011-1h14a1 1 0 011 1v2a1 1 0 01-1 1H5a1 1 0 01-1-1V5zM4 13a1 1 0 011-1h6a1 1 0 011 1v6a1 1 0 01-1 1H5a1 1 0 01-1-1v-6zM16 13a1 1 0 011-1h2a1 1 0 011 1v6a1 1 0 01-1 1h-2a1 1 0 01-1-1v-6z' /%3E%3C/svg%3E"); } | 
|  |  |     .skin-citizen-dark .card.red .card-inner-content::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2' stroke='%23fff'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M10 20l4-16m4 4l4 4-4 4M6 16l-4-4 4-4' /%3E%3C/svg%3E"); } | 
|  |  |     .skin-citizen-dark .card.blue .card-inner-content::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2' stroke='%23fff'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M6.72 13.829c-.24.03-.48.062-.72.096m.72-.096a42.415 42.415 0 0110.56 0m-10.56 0L6 18.233m10.56-4.404L18 18.233m-12-4.404h12m-12 0a9 9 0 019-9h.096c.5 0 .905.405.905.905 0 .714-.211 1.412-.608 2.006L7.394 13.83c-.397.594-.908 1.05-1.482 1.342a9.058 9.058 0 01-1.212.323' /%3E%3C/svg%3E"); } | 
|  |  |     .skin-citizen-dark .card.orange .card-inner-content::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2' stroke='%23fff'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M8 12h.01M12 12h.01M16 12h.01M21 12c0 4.418-4.03 8-9 8a9.863 9.863 0 01-4.255-.949L3 20l1.395-3.72C3.512 15.042 3 13.574 3 12c0-4.418 4.03-8 9-8s9 3.582 9 8z' /%3E%3C/svg%3E"); } | 
|  |  |  | 
|  |  |  | 
|  |  |     /* Scroll Animations */ | 
|  |  |     .animate-on-scroll { | 
|  |  |         opacity: 0; | 
|  |  |         transform: translateY(50px); | 
|  |  |         transition: opacity 0.8s ease-out, transform 0.8s ease-out; | 
|  |  |     } | 
|  |  |  | 
|  |  |     .animate-on-scroll.is-visible { | 
|  |  |         opacity: 1; | 
|  |  |         transform: translateY(0); | 
|  |  |     } | 
|  |  |      | 
|  |  |     @keyframes fadeIn { | 
|  |  |         from { opacity: 0; } | 
|  |  |         to { opacity: 1; } | 
|  |  |     } | 
|  |  |  | 
|  |  |  | 
|  |  |     @media only screen and (max-width: 768px) { | 
|  |  |         #mega, #classify.row { | 
|  |  |             text-align: center; | 
|  |  |             flex-direction: column; | 
|  |          } |  |          } | 
|  |          #why h2 {margin:0px;} |  |   | 
|  |         main {
 |  |          #getStarted .row { | 
|  |             font-family: 'Archivo', sans-serif;
 |  | 
|  |             -moz-osx-font-smoothing: grayscale;
 |  | 
|  |             -webkit-font-smoothing: antialiased;
 |  | 
|  |             display: flex;
 |  | 
|  |             margin: auto;
 |  | 
|  |             font-size: 16px;
 |  | 
|  |             align-content: center;
 |  | 
|  |              flex-direction: column; |  |              flex-direction: column; | 
|  |         }
 |  | 
|  |         
 |  | 
|  |         #mega {
 |  | 
|  |             margin: auto;
 |  | 
|  |              align-items: center; |  |              align-items: center; | 
|  |             justify-content: center;
 |  | 
|  |          } |  |          } | 
|  |            |  |            | 
|  |          #mega h1 { |  |          #mega .title, #classify .try { | 
|  |              font-size:5em; |  |              padding: 0; | 
|  |             margin-top: 0px;
 |  | 
|  |             margin-bottom: 3vh;
 |  | 
|  |          } |  |          } | 
|  |         
 |  |   | 
|  |         main h1 {
 |  | 
|  |             font-size: 2.5em;
 |  | 
|  |         }
 |  | 
|  |         
 |  | 
|  |          #mega h2 { |  |          #mega h2 { | 
|  |              font-weight:300; |  |              margin-left: auto; | 
|  |              font-size:1.20em; |  |              margin-right: auto; | 
|  |          } |  |          } | 
|  |            |  |            | 
|  |          #mega>.title { |  |          #mega .links { | 
|  |              padding-right:2vw; |  |              justify-content: center; | 
|  |             flex: .4
 |  | 
|  |         }
 |  | 
|  |         
 |  | 
|  |         main section a:link {
 |  | 
|  |             text-decoration: none;
 |  | 
|  |             color: #fff;
 |  | 
|  |             font-weight: 600;
 |  | 
|  |             display: inline-block;
 |  | 
|  |         }
 |  | 
|  |         
 |  | 
|  |         main section a:visited {
 |  | 
|  |             color: inherit;
 |  | 
|  |         }
 |  | 
|  |         
 |  | 
|  |         main section a:hover {
 |  | 
|  |             opacity: .7;
 |  | 
|  |          } |  |          } | 
|  |         
 |  | 
|  |         main #mega .links {
 |  | 
|  |             display: flex;
 |  | 
|  |             margin-top: 4vh;
 |  | 
|  |             width: 80%;
 |  | 
|  |             margin-bottom: 8vh;
 |  | 
|  |         }
 |  | 
|  |         main #mega .links a {
 |  | 
|  |             padding: 10px 20px;
 |  | 
|  |             border-radius: 10px;
 |  | 
|  |             background: #4bb6e8;
 |  | 
|  | 
 |  | 
 | 
|  |         }
 |  | 
|  |         
 |  | 
|  |         main #headerimg {
 |  | 
|  |             width: 35vw;
 |  | 
|  |         }
 |  | 
|  |         
 |  | 
|  |         main #why svg {
 |  | 
|  |             width: 7vw;
 |  | 
|  |             margin: 2vh 2vw;
 |  | 
|  |         }
 |  | 
|  |         
 |  | 
|  |         main #why {
 |  | 
|  |             font-size: 18px;
 |  | 
|  |         }
 |  | 
|  |         
 |  | 
|  |         main .row {
 |  | 
|  |             flex-direction: row;
 |  | 
|  |             display: flex;
 |  | 
|  |             align-items: center;
 |  | 
|  |         }
 |  | 
|  |         
 |  | 
|  |         main .column {
 |  | 
|  |             flex-direction: column;
 |  | 
|  |             display: flex;
 |  | 
|  |         }
 |  | 
|  |         
 |  | 
|  |         main #getStarted>h1 {
 |  | 
|  |             text-align: center;
 |  | 
|  |         }
 |  | 
|  |         
 |  | 
|  |         main .card.purple {
 |  | 
|  |             background-image: linear-gradient( 124deg, rgb(215, 10, 132), rgb(81, 18, 127));
 |  | 
|  |         }
 |  | 
|  |         
 |  | 
|  |         main .card.red {
 |  | 
|  |             background-image: linear-gradient( 124deg, rgb(200, 56, 53), rgb(155, 35, 85));
 |  | 
|  |         }
 |  | 
|  |         
 |  | 
|  |         main .card.orange {
 |  | 
|  |             background-image: linear-gradient( 124deg, rgb(255, 163, 55), rgb(188, 67, 34));
 |  | 
|  |         }
 |  | 
|  |         
 |  | 
|  |         main .card.blue {
 |  | 
|  |             background-image: linear-gradient( 124deg, rgb(78, 194, 135), rgb(41, 151, 239));
 |  | 
|  |         }
 |  | 
|  |         
 |  | 
|  |          main .card { |  |          main .card { | 
|  |              flex-direction: column; |  |              margin: 15px 0; | 
|  |             border-radius:10px;
 |  |              width: 95%; | 
|  |             box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.18);
 |  |              max-width: 450px; | 
|  |              color:#fff; |  | 
|  |              font-size: 18px; |  | 
|  |             overflow: hidden;
 |  | 
|  |             margin: 1vw;
 |  | 
|  |             flex:1;
 |  | 
|  |          } |  |          } | 
|  |         
 |  |   | 
|  |          main .card p { |  |          main .card>.card-inner-content>.content { | 
|  |              color:#fff |  |              padding: 24px; | 
|  |  |             min-height: auto; | 
|  |          } |  |          } | 
|  |  |     } | 
|  |  | </style> | 
|  |  | <main> | 
|  |  |     <section id="mega"> | 
|  |  |         <div id="code-background"></div> | 
|  |  |         <div class="title"> | 
|  |  |             <h1>Discover</h1> | 
|  |  |             <h2>Bring enterprise-scale data intelligence to your application</h2> | 
|  |  |             <p class="links"><a href="Get_Started">Get Started</a></p> | 
|  |  |         </div> | 
|  |  |     </section> | 
|  |  |     <section id="classify" class="row custom_bigid_notes"> | 
|  |  |         <div> | 
|  |  |             <h1>See into your data</h1> | 
|  |  |             <p>BigID allows you to sort through large swaths of data to see what really matters. Using hundreds of | 
|  |  |                 machine learning, NLP and regex classifiers, you can classify any data, anywhere. Try it on the right. | 
|  |  |             </p> | 
|  |  |         </div> | 
|  |  |         <div class="try"> | 
|  |  |             <div contenteditable="true" id="tryData">Hello! Can you please process payment for [email protected] to | 
|  |  |                 4199006507426062? Thank you!</div> | 
|  |  |             <button id="discoverBtn" onclick="discover()">Discover</button> | 
|  |  |         </div> | 
|  |  |     </section> | 
|  |  |     <section id="getStarted"> | 
|  |  |         <div class="row"> | 
|  |  |             <a href="Apps" class="card purple animate-on-scroll"> | 
|  |  |                 <div class="card-inner-content"> | 
|  |  |                     <div class="content"> | 
|  |  |                         <h1>Apps</h1> | 
|  |  |                         <p>Add custom logic and screens to your BigID system.</p> | 
|  |  |                     </div> | 
|  |  |                     <div class="card-footer"> | 
|  |  |                         Learn more | 
|  |  |                     </div> | 
|  |  |                 </div> | 
|  |  |             </a> | 
|  |  |             <a href="BigID_API" class="card red animate-on-scroll"> | 
|  |  |                 <div class="card-inner-content"> | 
|  |  |                     <div class="content"> | 
|  |  |                         <h1>REST API</h1> | 
|  |  |                         <p>Manage BigID programmatically. Scan data, run SARs, and more through code.</p> | 
|  |  |                     </div> | 
|  |  |                     <div class="card-footer"> | 
|  |  |                         Learn more | 
|  |  |                     </div> | 
|  |  |                 </div> | 
|  |  |             </a> | 
|  |  |             <a href="Connectors" class="card blue animate-on-scroll"> | 
|  |  |                 <div class="card-inner-content"> | 
|  |  |                     <div class="content"> | 
|  |  |                         <h1>Connectors</h1> | 
|  |  |                         <p>Scan any system, anywhere. Write your own connector in any programming language.</p> | 
|  |  |                     </div> | 
|  |  |                     <div class="card-footer"> | 
|  |  |                         Learn more | 
|  |  |                     </div> | 
|  |  |                 </div> | 
|  |  |             </a> | 
|  |  |              <a href="LLMs" class="card orange animate-on-scroll"> | 
|  |  |                 <div class="card-inner-content"> | 
|  |  |                     <div class="content"> | 
|  |  |                         <h1>LLMs</h1> | 
|  |  |                         <p>Interacting with BigID using MCP.</p> | 
|  |  |                     </div> | 
|  |  |                     <div class="card-footer"> | 
|  |  |                         Learn more | 
|  |  |                     </div> | 
|  |  |                 </div> | 
|  |  |             </a> | 
|  |  |         </div> | 
|  |  |     </section> | 
|  |  | </main> | 
|  |  | <script> | 
|  |  |     async function discover() { | 
|  |  |         const button = document.getElementById('discoverBtn'); | 
|  |  |         const originalText = button.innerText; | 
|  |            |  |            | 
|  |          main .card h1 { |  |          button.innerText = 'Processing...'; | 
|  |              margin:0px; |  |         button.classList.add('processing'); | 
|  |              font-size:2em; |  |         button.disabled = true; | 
|  |              color:#fff; |  |   | 
|  |  |         try { | 
|  |  |              let req = await window.fetch('https://classify.bigid.tools', { | 
|  |  |                 method: 'POST', | 
|  |  |                 headers: { | 
|  |  |                     'content-type': 'application/json' | 
|  |  |                 }, | 
|  |  |                 body: JSON.stringify({ text: document.getElementById('tryData').innerText }) | 
|  |  |             }); | 
|  |  |              let json = await req.json(); | 
|  |  |             let highlighter = json.map((item) => { | 
|  |  |                 return { start: item.pos - 1, end: item.end - 1, word: item.word } | 
|  |  |             }); | 
|  |  |             highlighter = highlighter.reduce(function (p, c) { | 
|  |  |                 if (!p.some(function (el) { return el.end === c.end; })) p.push(c); | 
|  |  |                 return p; | 
|  |  |             }, []); | 
|  |  |              highlighter = highlighter.reduce(function (p, c) { | 
|  |  |                 if (!p.some(function (el) { return el.start === c.start; })) p.push(c); | 
|  |  |                 return p; | 
|  |  |             }, []); | 
|  |  |             highlighter = highlighter.sort((a, b) => b.end - a.end); | 
|  |  |              | 
|  |  |             let text = document.getElementById('tryData').innerText; | 
|  |  |             for (high of highlighter) { | 
|  |  |                 text = text.substring(0, high.start) + "<span class='info' title='" + high.word + "'>" + text.substring(high.start, high.end) + "</span>" + text.substring(high.end); | 
|  |  |             } | 
|  |  |             document.getElementById('tryData').innerHTML = text; | 
|  |  |         } catch (error) { | 
|  |  |             console.error("Discovery failed:", error); | 
|  |  |         } finally { | 
|  |  |             button.innerText = originalText; | 
|  |  |             button.classList.remove('processing'); | 
|  |  |             button.disabled = false; | 
|  |          } |  |          } | 
|  |  |     } | 
|  |  |  | 
|  |  |     const scrollElements = document.querySelectorAll(".animate-on-scroll"); | 
|  |  |  | 
|  |  |     const elementInView = (el, dividend = 1) => { | 
|  |  |         const elementTop = el.getBoundingClientRect().top; | 
|  |  |         return ( | 
|  |  |             elementTop <= (window.innerHeight || document.documentElement.clientHeight) / dividend | 
|  |  |         ); | 
|  |  |     }; | 
|  |  |  | 
|  |  |     const displayScrollElement = (element) => { | 
|  |  |         element.classList.add("is-visible"); | 
|  |  |     }; | 
|  |  |  | 
|  |  |     const hideScrollElement = (element) => { | 
|  |  |         element.classList.remove("is-visible"); | 
|  |  |     }; | 
|  |  |  | 
|  |  |     const handleScrollAnimation = () => { | 
|  |  |         scrollElements.forEach((el) => { | 
|  |  |             if (elementInView(el, 1.25)) { | 
|  |  |                 displayScrollElement(el); | 
|  |  |             } | 
|  |  |         }); | 
|  |  |     } | 
|  |  |  | 
|  |  |     window.addEventListener("scroll", () => { | 
|  |  |         handleScrollAnimation(); | 
|  |  |     }); | 
|  |  |      | 
|  |  |     // Trigger on load as well | 
|  |  |     handleScrollAnimation(); | 
|  |  |  | 
|  |  |     function createCodeBackground() { | 
|  |  |         const container = document.getElementById('code-background'); | 
|  |  |         if (!container) return; | 
|  |            |  |            | 
|  |          main .card a:link { |  |          const snippets = [ | 
|  |              display: block; |  |             "const classify = () => {}", | 
|  |              text-align: center; |  |             "import { BigID } from 'bigid-sdk';", | 
|  |              padding:2vh; |  |             "let api_token = '...';", | 
|  |              background-color:rgba(0, 0, 0, .4); |  |             "discover.scan({ target: 's3' });", | 
|  |              font-weight: 600; |  |             "function onResult(data) { console.log(data); }", | 
|  |  |             "new Connector('kafka');", | 
|  |  |              "fetch('/api/v1/dsar')", | 
|  |  |             "// Initialize the application", | 
|  |  |             "const port = 3000;", | 
|  |  |              "app.listen(port);", | 
|  |  |              "main.card { display: flex; }", | 
|  |  |              "opacity: 1; transform: translateY(0);" | 
|  |  |         ]; | 
|  |  |   | 
|  |  |         const snippetCount = 30; | 
|  |  |   | 
|  |  |         for (let i = 0; i < snippetCount; i++) { | 
|  |  |             const snippetEl = document.createElement('div'); | 
|  |  |              snippetEl.classList.add('code-snippet'); | 
|  |  |             snippetEl.innerText = snippets[Math.floor(Math.random() * snippets.length)]; | 
|  |  |              | 
|  |  |             snippetEl.style.left = `${Math.random() * 100}%`; | 
|  |  |             snippetEl.style.top = `${Math.random() * 100}%`; | 
|  |  |             snippetEl.style.animationDuration = `${10 + Math.random() * 15}s`; | 
|  |  |             snippetEl.style.animationDelay = `${Math.random() * 10}s`; | 
|  |  |              | 
|  |  |             container.appendChild(snippetEl); | 
|  |          } |  |          } | 
|  |         
 |  |     } | 
|  |         main .card a:hover {
 |  |   | 
|  |             opacity: .8;
 |  |      createCodeBackground(); | 
|  |         }
 |  |   | 
|  |         
 |  | </script> | 
|  |         main .card>.content {
 |  |   | 
|  |             padding: 1.5vw;
 |  |   | 
|  |             padding-bottom: 0px;
 |  | 
|  |             min-height: 250px;
 |  | 
|  |         }
 |  | 
|  |         
 |  | 
|  |         @media only screen and (max-width: 600px) {
 |  | 
|  |             #mega {
 |  | 
|  |                 text-align: center;
 |  | 
|  |                 flex-direction: column-reverse;
 |  | 
|  |             }
 |  | 
|  |             #mega .links {
 |  | 
|  |                 margin: auto;
 |  | 
|  |                 text-align: center;
 |  | 
|  |                 align-content: center;
 |  | 
|  |                 justify-content: space-evenly;
 |  | 
|  |                 padding-bottom: 20px
 |  | 
|  |             }
 |  | 
|  |             #mega .title {
 |  | 
|  |                 padding: 0px;
 |  | 
|  |             }
 |  | 
|  |             main {
 |  | 
|  |                 width: auto;
 |  | 
|  |                 text-align: center;
 |  | 
|  |             }
 |  | 
|  |             main .row {
 |  | 
|  |                 flex-direction: column;
 |  | 
|  |             }
 |  | 
|  |             main .chevron {
 |  | 
|  |                 display: none;
 |  | 
|  |             }
 |  | 
|  |             main .card>.content {
 |  | 
|  |                 padding: 20px;
 |  | 
|  |                 min-height:0px;
 |  | 
|  |             }
 |  | 
|  |             main .card {
 |  | 
|  |                 margin: 10px 0px;
 |  | 
|  |                 box-shadow: none;
 |  | 
|  |             }
 |  | 
|  |             main #why svg {
 |  | 
|  |                 width: 30vw;
 |  | 
|  |             }
 |  | 
|  |         }
 |  | 
|  |      </style> |  | 
|  | <main>
 |  | 
|  | <section id="mega" class="row">
 |  | 
|  | <div class="title">
 |  | 
|  | <h1>Discover</h1>
 |  | 
|  | <h2>Bring enterprise-scale data intelligence to your application</h2>
 |  | 
|  | <p class="links"><a href="Get_Started" style="color:#fff;">Get Started</a></p>
 |  | 
|  | </div>
 |  | 
|  | <div><img id="headerimg" src="https://developer-wiki.s3.amazonaws.com/THG_M78_010.svg" /></div>
 |  | 
|  | </section>
 |  | 
|  | <section id="why">
 |  | 
|  | <h1>Why BigID?</h1>
 |  | 
|  | <div class="row " style="width: 90%; margin: auto; justify-content: space-between;">
 |  | 
|  | <div class="row "><svg enable-background="new 0 0 512 512" viewbox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><radialgradient id="a" cx="256" cy="256" gradientunits="userSpaceOnUse" r="256"><stop offset=".0051" stop-color="#e94b35"></stop><stop offset="1" stop-color="#c23824"></stop></radialgradient><path d="m512 256c0 141.385-114.615 256-256 256-12.695 0-25.172-.924-37.371-2.708-36.57-5.349-57.125-64.858-86.961-83.958-30.234-19.354-69.637 1.537-89.416-28.398-26.704-40.422-42.252-88.864-42.252-140.936 0-141.385 114.615-256 256-256s256 114.615 256 256z" fill="url(#a)"></path><path d="m308.352 189.855c-5.873-2.658-10.568-7.809-12.42-14.509-3.311-11.978 3.717-24.37 15.693-27.682l112.92-31.212c11.975-3.31 24.369 3.716 27.681 15.693 3.31 11.977-3.716 24.371-15.692 27.682l-112.92 31.211c-5.278 1.46-10.637.911-15.262-1.183z" fill="#bfa072"></path><path d="m114.102 323.107-18.557 40.996 123.897 56.084 16.495-36.44s100.047 1.433 116.357-74.608l-213.784-95.127-54.326 29.693z" fill="#e5bf88"></path><path d="m152.094 220.055-4.637-.346-12.725 11.751 62.792 38.303 3.412 65.21 51.919-34.675s19.76 48.183 83.207 43.259c7.458-9.207 13.248-20.512 16.232-34.418z" fill="#bfa072"></path><circle cx="263.422" cy="206.616" fill="#33495f" r="113.244"></circle><circle cx="259.298" cy="215.727" fill="#2a3e4f" r="113.244"></circle><path d="m219.816 302.951c-48.098-21.771-69.514-78.612-47.742-126.709 21.771-48.096 78.611-69.513 126.709-47.741 48.096 21.771 69.512 78.612 47.74 126.709-21.771 48.096-78.611 69.513-126.707 47.741z" fill="#ecf0f1"></path><g fill="#32acfc"><path d="m222.312 297.449c-2.012-.911-2.904-3.281-1.994-5.294l9.484-20.953c.912-2.013 3.281-2.905 5.294-1.995 2.013.912 2.905 3.281 1.995 5.295l-9.485 20.953c-.911 2.012-3.28 2.904-5.294 1.994z"></path><path d="m283.346 162.619c-2.012-.91-2.906-3.281-1.994-5.293l9.484-20.953c.91-2.014 3.281-2.906 5.293-1.995 2.014.911 2.906 3.281 1.996 5.294l-9.486 20.953c-.91 2.012-3.282 2.905-5.293 1.994z"></path><path d="m316.771 194.23c-.389-1.034.133-2.188 1.166-2.578l19.652-7.403c1.033-.39 2.186.132 2.576 1.166.389 1.034-.133 2.187-1.166 2.577l-19.652 7.404c-1.033.391-2.187-.132-2.576-1.166z"></path><path d="m178.275 246.412c-.389-1.033.135-2.188 1.167-2.576l19.651-7.404c1.033-.39 2.188.133 2.576 1.166.391 1.033-.133 2.188-1.166 2.578l-19.65 7.402c-1.035.391-2.187-.133-2.578-1.166z"></path><path d="m280.906 273.465c1.033-.389 2.188.134 2.578 1.168l7.402 19.65c.389 1.034-.133 2.188-1.166 2.576-1.035.391-2.188-.132-2.576-1.166l-7.404-19.651c-.39-1.032.131-2.187 1.166-2.577z"></path><path d="m228.725 134.971c1.031-.389 2.187.134 2.576 1.166l7.404 19.651c.389 1.033-.135 2.188-1.166 2.577-1.033.389-2.188-.134-2.578-1.166l-7.403-19.65c-.39-1.034.133-2.19 1.167-2.578z"></path><path d="m312.31 240.494c.911-2.014 3.28-2.906 5.294-1.996l20.953 9.486c2.012.91 2.904 3.28 1.994 5.293-.911 2.012-3.281 2.905-5.294 1.994l-20.953-9.484c-2.013-.911-2.906-3.281-1.994-5.293z"></path><path d="m177.48 179.461c.91-2.013 3.28-2.906 5.293-1.994l20.953 9.484c2.012.91 2.905 3.281 1.994 5.293-.91 2.013-3.281 2.906-5.293 1.995l-20.953-9.485c-2.013-.91-2.906-3.281-1.994-5.293z"></path></g><path d="m139.855 120.719-55.671 122.986 63.273-23.996s52.75-71.672-7.602-98.99z" fill="#e5bf88"></path><path d="m119.895 164.812c1.67 1.875 3.74 3.447 6.175 4.549 9.308 4.213 20.271.083 24.483-9.225s.082-20.27-9.225-24.482c-2.435-1.102-4.982-1.621-7.492-1.638z" fill="#ecf0f1"></path><path d="m327.01 238.367c-6.734-3.049-12.059-9.042-13.973-16.777-3.316-13.402 4.859-26.957 18.264-30.273l64.279-15.907c13.398-3.317 26.957 4.858 30.273 18.263 3.317 13.402-4.859 26.957-18.262 30.273l-64.281 15.907c-5.667 1.403-11.363.75-16.3-1.486z" fill="#e5bf88"></path><path d="m326.795 284.922c-6.256-2.832-11.141-8.48-12.719-15.705-2.652-12.141 5.039-24.132 17.181-26.783l57.251-12.504c12.137-2.65 24.131 5.041 26.782 17.182s-5.04 24.131-17.181 26.782l-57.251 12.503c-4.915 1.074-9.807.451-14.063-1.475z" fill="#e5bf88"></path><path d="m337.488 324.339c-5.492-2.486-9.803-7.415-11.256-13.745-2.477-10.765 4.244-21.498 15.008-23.973l25.729-5.916c10.766-2.477 21.5 4.244 23.975 15.008 2.475 10.766-4.244 21.5-15.01 23.974l-25.729 5.917c-4.435 1.019-8.867.478-12.717-1.265z" fill="#e5bf88"></path><circle cx="340.365" cy="213.676" fill="#ecf0f1" r="14"></circle><circle cx="339.04" cy="266.314" fill="#ecf0f1" r="11.5"></circle><circle cx="346.385" cy="305.862" fill="#ecf0f1" r="9.499"></circle><path d="m56.413 389.322h182.999v31.001h-182.999z" fill="#ecf0f1" transform="matrix(.911 .4124 -.4124 .911 180.1019 -24.9721)"></path><path d="m144.32 408.292h91v31.001h-91z" fill="#bdc3c7" transform="matrix(.911 .4124 -.4124 .911 191.649 -40.5655)"></path><path d="m42.27 396.926c39.293 59.474 102.734 101.581 176.361 112.351l20.824-46.002-188.578-85.363z" fill="#33495f"></path><path d="m118.162 471.759c29.836 19.101 63.898 32.169 100.469 37.518l20.824-46.002-97.479-44.124z" fill="#2b3e51"></path><path d="m319.604 111.621c-1.233 2.723-4.439 3.932-7.162 2.699l-12.916-5.848c-2.723-1.232-3.932-4.438-2.697-7.162l14.506-32.045c1.232-2.723 4.439-3.932 7.16-2.699l12.916 5.848c2.723 1.231 3.932 4.438 2.699 7.161z" fill="#2a3e4f"></path><path d="m332.648 69.68-12.916-5.846c-2.723-1.232-5.93-.024-7.162 2.699l-11.557 25.529c3.025 2.109 6.766 4.23 10.949 6.125 4.184 1.893 8.246 3.303 11.826 4.186l11.557-25.531c1.233-2.723.026-5.93-2.697-7.162z" fill="#33495f"></path><path d="m349.688 72.062c.01-.02.023-.037.032-.059.01-.021.015-.046.024-.068.01-.021.025-.041.035-.062s.014-.043.021-.063c.012-.023.027-.044.039-.068.012-.026.018-.054.027-.079.01-.018.021-.033.03-.053s-.09.186-.081.166c.012-.024-.064.158-.064.158 1.648-3.645-9.213-5.268-21.088-10.643-11.873-5.375-20.262-12.465-21.912-8.821 0 0 .09-.182.079-.159-.011.021.026-.072.017-.051s.012-.011.001.012c-.009.021-.013.012-.022.033-.01.023-.008.032-.018.055-.01.021-.021.033-.031.057-.01.021-.014.042-.023.064-.01.021-.023.039-.034.062-.011.024-.017.048-.025.073-.011.02-.022.037-.032.059-.01.021-.016.044-.023.066-.012.021-.027.041-.037.063-.008.021-.014.042-.021.063-.012.023-.027.044-.037.068-.012.021-.016.045-.025.066-.01.023-.025.041-.035.064-.01.02-.014.041-.021.062-.012.022-.027.043-.038.067s-.017.05-.026.073c-.01.021-.023.039-.033.059-.01.022-.014.047-.023.068-.012.022-.025.041-.035.063-.01.021-.014.042-.022.063-.013.023-.027.044-.038.068-.011.023-.018.049-.027.074-.01.02-.022.037-.031.057-.012.023-.016.047-.025.068-.01.023-.025.041-.035.064-.01.021-.014.045-.023.066-.01.023-.025.041-.035.064-.01.021-.015.045-.025.068-.01.021-.024.041-.035.062-.008.021-.014.043-.021.062-.012.023-.027.045-.037.068-.012.023-.018.049-.027.074-.01.02-.023.038-.033.059s-.014.046-.023.068c-.01.021-.025.04-.035.062-.01.021-.014.046-.024.068-.011.021-.024.041-.035.062-.011.025-.017.051-.026.074-.01.021-.023.038-.032.059s-.015.042-.022.062c-.012.023-.027.043-.037.068-.011.021-.016.045-.025.068-.01.021-.025.041-.035.062-.01.022-.014.047-.023.068-.011.022-.025.041-.035.063-.011.022-.016.046-.025.068-.01.021-.024.04-.035.062-.01.024-.016.05-.025.074-.01.021-.023.038-.033.058-.01.021-.014.043-.021.062-.012.024-.027.045-.039.068-.01.023-.014.047-.023.068s-.025.041-.035.062c-.01.023-.015.047-.024.068-.011.023-.025.043-.036.064-.01.022-.014.047-.023.068s-.025.041-.035.062c-.01.022-.015.047-.024.068-.011.022-.024.041-.035.063s-.015.046-.024.068c-.01.021-.025.04-.035.062-.01.021-.014.042-.021.063-.012.023-.027.044-.039.068-.01.023-.016.049-.025.073-.01.021-.023.038-.033.06s-.016.045-.025.068c-.009.021-.023.039-.033.062-.011.021-.016.045-.025.068-.01.021-.025.041-.035.062-.01.022-.014.047-.023.068-.011.022-.025.041-.036.063-.01.022-.015.046-.024.067-.01.022-.023.041-.035.063-.01.022-.014.046-.023.068-.011.022-.025.041-.035.063-.011.021-.016.046-.025.068-.01.021-.025.041-.035.062-.01.023-.014.047-.023.068s-.025.041-.035.062c-.01.023-.016.047-.024.068-.011.023-.026.041-.036.064-.01.021-.014.045-.023.068-.01.021-.025.041-.035.062-.01.022-.016.047-.023.068-.011.021-.025.041-.036.062-.01.022-.015.047-.024.068-.01.022-.025.041-.035.063s-.014.046-.024.068-.024.041-.036.063c-.01.021-.014.046-.023.068-.01.021-.025.041-.035.062-.01.023-.014.047-.025.068-.01.023-.023.041-.035.064-.008.02-.014.041-.021.062-.012.022-.027.043-.037.067-.012.024-.017.05-.026.073-.011.021-.022.039-.032.059-.011.022-.016.047-.025.068-.01.022-.025.041-.035.063s-.014.046-.023.067c-.01.022-.025.041-.035.063s-.016.046-.025.068-.025.041-.035.063c-.01.021-.014.046-.023.068-.01.021-.025.041-.035.062-.01.023-.016.047-.025.068-.01.023-.025.041-.035.064-.01.021-.014.045-.023.068-.01.021-.025.039-.035.062-.01.021-.014.045-.025.068-.01.021-.023.041-.035.062-.01.022-.014.047-.023.069-.01.021-.025.041-.035.063-.012.021-.016.046-.025.068-.01.021-.023.04-.035.062-.01.021-.014.046-.023.067-.01.022-.025.041-.035.063-.01.021-.014.046-.023.068-.012.021-.025.041-.037.062-.01.023-.014.047-.023.068-.01.023-.025.041-.035.064-.01.021-.014.045-.025.068-.01.021-.023.041-.034.062-.011.022-.015.047-.024.068s-.025.041-.035.062c-.01.022-.014.047-.023.068-.012.022-.025.041-.035.063-.012.022-.016.046-.025.068s-.025.041-.035.063c-.01.021-.014.046-.023.068-.012.021-.025.041-.035.062-.012.023-.016.047-.025.068s-.024.041-.035.062c-.01.023-.014.047-.023.068-.01.023-.025.041-.035.064-.012.023-.016.049-.025.074-.011.02-.023.037-.033.057-.01.021-.014.043-.022.064-.012.023-.028.043-.038.067-.01.022-.015.046-.025.068-.01.021-.023.04-.034.062-.009.022-.015.046-.024.068s-.025.041-.035.063c-.011.023-.016.049-.025.074-.011.02-.023.037-.033.058s-.014.042-.021.063c-.012.022-.027.043-.039.066-.01.021-.014.043-.021.063-.012.023-.027.044-.038.068s-.017.05-.026.073c-.01.021-.023.039-.033.059-.01.022-.014.047-.023.068-.012.022-.025.041-.035.063-.012.022-.016.046-.025.068s-.025.041-.035.063c-.008.021-.014.042-.021.062-.012.023-.027.044-.038.068-.011.023-.017.049-.026.074-.01.02-.023.037-.033.057-.01.023-.014.047-.023.068-.01.023-.025.041-.035.064-.01.021-.015.045-.024.066-.011.023-.024.041-.035.064-.011.021-.015.045-.024.068-.01.021-.025.041-.035.062-.01.022-.014.047-.024.068-.011.022-.024.041-.035.063s-.015.046-.024.068-.025.041-.035.063c-.01.021-.015.046-.024.068-.011.021-.024.041-.035.062-.011.023-.015.047-.024.068s-.025.041-.035.062c-.01.023-.014.047-.024.068-.01.023-.024.041-.035.064-.01.021-.015.045-.024.068-.01.021-.025.041-.035.062-.01.022-.014.047-.023.068s-.025.041-.035.062c-.01.022-.015.047-.025.068-.01.022-.024.041-.035.063-.01.022-.014.046-.023.068-.011.022-.025.041-.035.063-.01.021-.016.046-.025.068-.01.021-.025.041-.035.062-.01.023-.014.047-.023.068-.011.023-.025.041-.035.064-.011.021-.016.045-.025.068-.01.021-.024.039-.034.062-.011.021-.015.045-.024.066-.01.023-.025.041-.035.064-.01.021-.015.047-.024.068-.011.022-.026.041-.036.063s-.014.046-.023.067c-.01.022-.025.041-.035.063s-.014.046-.024.068-.024.041-.035.063c-.011.021-.015.046-.024.068-.01.021-.025.041-.035.062-.01.023-.014.047-.024.068-.011.023-.024.041-.035.064-.011.021-.015.045-.024.068-.01.021-.025.039-.035.062-.01.021-.014.045-.023.068-.011.021-.025.041-.035.062-.011.022-.016.047-.025.068-.01.022-.025.041-.035.063s-.014.046-.023.067c-.01.022-.025.041-.035.063s-.016.046-.025.068-.025.041-.035.063c-.01.021-.014.046-.023.068-.01.021-.025.041-.035.062-.01.023-.016.047-.025.068-.01.023-.025.041-.035.064-.01.021-.014.045-.023.068-.01.021-.025.041-.035.062-.01.022-.016.047-.025.068s-.023.041-.035.062c-.01.022-.014.047-.023.068-.01.022-.025.041-.035.063s-.016.046-.025.068-.025.041-.035.063c-.01.021-.014.046-.023.067-.01.022-.025.041-.035.063-.01.021-.014.046-.023.068-.011.021-.025.041-.035.062-.011.023-.016.047-.025.068-.01.023-.025.041-.035.064-.01.021-.014.045-.025.068-.01.021-.023.041-.035.062-.01.022-.014.047-.023.068-.01.022-.025.041-.035.063s-.014.046-.025.068c-.008.021-.023.04-.033.062-.012.022-.016.046-.025.068s-.025.041-.035.063c-.01.021-.014.046-.023.068-.012.021-.025.041-.035.062-.01.023-.016.047-.025.068-.01.023-.025.041-.035.064-.01.021-.014.045-.023.066-.01.023-.025.041-.035.064-.01.021-.014.045-.025.068-.01.021-.025.041-.035.062-.01.022-.014.047-.023.068-.01.022-.025.041-.035.063s-.015.046-.025.068c-.01.021-.023.04-.035.062-.01.022-.014.046-.023.068s-.025.041-.035.063c-.01.021-.014.046-.025.068-.01.021-.023.041-.035.062-.01.023-.014.047-.023.068s-.025.041-.035.062c-.01.023-.014.047-.023.068-.01.023-.025.041-.035.064-.012.021-.016.045-.025.068-.01.021-.025.041-.035.062-.01.022-.014.047-.023.068-.012.022-.025.041-.035.063-.012.022-.016.046-.025.068s-.025.041-.035.063c-.01.021-.014.046-.023.068-.01.021-.025.04-.035.062-.01.021-.015.046-.025.068-.01.021-.024.041-.035.062-.01.023-.014.047-.023.068-.01.023-.025.041-.035.064-.01.021-.015.045-.024.066-.011.023-.024.041-.035.064-.011.021-.015.045-.024.068-.01.021-.025.041-.035.062-.01.022-.014.047-.025.068-.01.022-.023.041-.034.063s-.015.046-.024.068-.025.041-.035.063c-.01.021-.015.046-.024.068-.011.021-.025.041-.035.062-.011.023-.015.047-.024.068s-.025.041-.035.062c-.01.023-.014.047-.023.068-.012.023-.025.041-.036.064-.011.021-.015.045-.024.068-.01.021-.025.041-.035.062-.01.022-.014.047-.023.068s-.025.041-.035.062c-.01.022-.015.047-.025.068-.01.022-.024.041-.035.063-.01.022-.014.046-.023.068-.011.022-.025.041-.035.063-.011.021-.015.046-.025.068-.01.021-.025.041-.035.062-.01.023-.014.047-.023.068-.011.023-.025.042-.035.064-.01.021-.016.045-.025.068-.01.021-.024.039-.034.062-.011.021-.015.045-.024.068-.01.021-.025.041-.035.062-.01.022-.015.047-.025.068-.01.022-.024.041-.035.063-.01.022-.014.046-.023.068s-.025.042-.035.063-.015.046-.024.067c-.01.022-.024.041-.035.063-.011.021-.015.046-.024.068-.01.021-.025.041-.035.062-.01.023-.014.047-.024.068s-.024.041-.034.062c-.01.023-.016.047-.025.068-.01.023-.025.041-.035.064-.01.021-.014.045-.023.068-.01.021-.025.041-.035.062-.011.022-.016.047-.025.068-.01.022-.025.041-.035.063s-.014.046-.023.067c-.01.022-.025.041-.035.063s-.015.046-.025.068-.024.041-.035.063c-.01.021-.014.046-.023.068-.01.021-.025.041-.035.062-.01.023-.016.047-.025.068-.01.023-.025.041-.035.064-.01.021-.014.045-.023.068-.01.021-.025.041-.035.062-.01.022-.016.047-.025.068s-.023.041-.034.062c-.011.022-.015.047-.024.068-.01.022-.025.041-.035.063s-.014.046-.024.068-.026.042-.036.063-.014.046-.023.067c-.01.022-.025.041-.035.063-.01.021-.014.046-.023.068-.011.021-.025.041-.035.062-.011.023-.016.047-.025.068-.01.023-.025.041-.035.064-.01.021-.014.045-.025.068-.009.021-.023.041-.035.062-.009.022-.014.047-.023.068-.01.022-.025.041-.035.064-.01.021-.014.045-.025.067-.008.021-.023.04-.033.062s-.016.046-.025.068-.025.041-.035.063c-.01.021-.014.046-.023.068-.012.021-.025.041-.035.062-.012.023-.016.047-.025.068s-.025.041-.035.062c-.01.023-.014.047-.023.068-.01.023-.025.041-.035.064-.01.021-.016.045-.025.068-.01.021-.025.041-.035.062-.01.022-.014.047-.023.068-.01.022-.025.041-.035.064-.01.021-.016.045-.025.067s-.024.042-.035.063c-.01.021-.014.046-.023.068-.01.021-.025.04-.035.062-.01.021-.014.046-.023.068-.012.021-.025.041-.037.062-.01.023-.014.047-.023.068-.01.023-.025.042-.035.064-.01.021-.014.045-.025.068-.01.021-.023.041-.035.062-.01.023-.014.047-.023.068s-.025.041-.035.062c-.01.022-.014.047-.023.068-.01.022-.025.041-.035.063-.012.022-.016.046-.025.068-.01.021-.024.04-.035.062-.01.022-.014.046-.023.068s-.025.041-.035.063c-.01.021-.016.046-.025.068-.01.021-.025.041-.035.062-.01.023-.014.047-.023.068-.01.023-.025.041-.035.064-.01.021-.015.045-.025.066-.01.023-.023.041-.035.064-.01.021-.014.045-.023.068-.01.021-.025.041-.035.062-.01.022-.014.047-.025.068-.01.022-.023.041-.035.063-.01.022-.014.046-.023.068s-.025.042-.035.063-.015.046-.024.068c-.011.021-.024.04-.034.062-.012.021-.016.046-.025.068-.01.021-.025.041-.035.062-.01.023-.014.047-.023.068-.012.023-.025.041-.035.064-.012.021-.016.045-.025.068-.01.021-.025.041-.035.062-.01.022-.014.047-.023.068s-.025.041-.035.062c-.01.022-.015.047-.025.068-.01.022-.024.041-.035.063-.01.022-.014.046-.023.068-.012.022-.025.042-.035.063-1.594 3.521 6.738 10.734 18.611 16.109 11.877 5.375 22.793 6.876 24.387 3.355.011-.023.015-.047.025-.068.01-.023.025-.042.035-.064.01-.021.014-.045.023-.068.011-.021.025-.041.035-.062.011-.023.016-.047.025-.068s.025-.041.034-.062c.011-.022.015-.047.024-.068.01-.022.025-.041.035-.063s.016-.046.025-.068.024-.042.035-.063c.01-.021.014-.046.023-.068.01-.021.025-.041.035-.063s.015-.046.024-.067.024-.041.036-.062c.01-.023.014-.047.023-.068.01-.023.025-.041.035-.064.01-.021.014-.045.025-.068.01-.021.023-.041.034-.062.011-.023.015-.047.024-.068.01-.022.025-.041.035-.064.01-.021.014-.045.024-.067.01-.021.024-.04.034-.062.011-.022.016-.046.025-.068s.025-.042.035-.063.014-.046.023-.068c.011-.021.025-.041.035-.063.011-.022.016-.046.025-.067.01-.023.025-.042.035-.064.01-.021.014-.045.023-.066.01-.023.025-.041.035-.064.01-.021.015-.045.025-.068.01-.021.024-.041.035-.062.01-.022.014-.047.023-.068s.025-.041.035-.062c.01-.022.014-.047.024-.068.011-.022.024-.041.035-.063s.015-.046.024-.068.025-.042.035-.063.014-.046.024-.068c.011-.021.024-.041.035-.062.011-.023.015-.047.024-.068s.025-.041.035-.062c.01-.023.014-.047.023-.068.011-.023.025-.041.035-.064.011-.021.016-.045.025-.068.01-.021.025-.041.035-.062.01-.022.014-.047.024-.068.01-.022.024-.041.036-.064.009-.021.014-.045.023-.067s.025-.042.035-.063c.01-.022.014-.046.023-.068.01-.021.025-.041.035-.062s.015-.046.025-.068c.01-.021.023-.041.035-.062.01-.023.014-.047.023-.068.011-.023.025-.042.035-.064.011-.021.016-.045.024-.066.011-.023.024-.041.034-.064.012-.021.016-.045.025-.068.01-.021.025-.041.035-.062.01-.022.014-.047.024-.068.011-.022.026-.041.036-.064.01-.021.014-.045.023-.067s.025-.042.035-.063.016-.046.025-.068c.01-.021.023-.041.035-.063.01-.022.014-.046.023-.067s.025-.041.035-.062c.01-.023.014-.047.023-.068.012-.023.025-.042.035-.064.012-.021.016-.045.025-.068.01-.021.025-.041.035-.062.01-.023.014-.047.023-.068s.025-.041.035-.062c.011-.022.016-.047.025-.068.01-.022.025-.041.035-.063s.014-.046.023-.068.025-.042.035-.063.016-.046.025-.068c.01-.021.025-.041.035-.063s.014-.046.023-.067c.01-.023.025-.042.035-.064.01-.021.016-.046.025-.068.01-.021.023-.04.035-.062.01-.021.014-.045.023-.068.01-.021.025-.041.035-.062.01-.023.014-.047.025-.068.01-.022.024-.041.035-.064.01-.021.014-.045.023-.067s.025-.042.035-.063c.01-.022.015-.047.023-.067.012-.022.025-.042.035-.063.012-.021.016-.046.025-.068.01-.021.025-.041.035-.063s.015-.046.023-.067c.01-.021.025-.041.035-.062.01-.023.016-.047.025-.068.01-.023.025-.041.035-.064.01-.021.014-.045.023-.068.01-.021.025-.041.035-.062.01-.022.016-.047.025-.068.01-.022.025-.041.035-.064.01-.021.014-.045.023-.066.01-.022.025-.041.035-.063s.015-.046.025-.068.024-.042.035-.063c.01-.021.014-.046.023-.068.01-.021.025-.041.035-.063s.015-.046.025-.067c.01-.023.024-.042.035-.064.01-.021.014-.045.023-.068.01-.021.025-.041.035-.062.011-.023.016-.047.025-.068s.024-.041.034-.062c.011-.022.015-.047.024-.068.01-.022.025-.041.035-.064.01-.021.015-.045.025-.067s.025-.042.035-.063c.01-.022.014-.047.023-.067.01-.022.025-.042.035-.063s.014-.046.024-.068c.009-.021.024-.041.035-.062.009-.023.015-.047.024-.068.01-.023.025-.042.035-.064.01-.021.014-.045.024-.068.011-.021.024-.041.035-.062.011-.023.015-.047.024-.068.01-.022.025-.041.035-.064.01-.021.014-.045.024-.068.01-.021.024-.039.034-.062.012-.021.016-.045.025-.067s.025-.042.035-.063c.01-.022.014-.046.023-.068.011-.021.025-.041.035-.063.011-.022.016-.046.025-.067s.024-.041.035-.062c.01-.023.014-.047.023-.068.01-.023.025-.042.035-.064.01-.021.015-.045.025-.068.01-.021.024-.041.035-.062.01-.023.014-.047.023-.068.01-.022.025-.041.035-.064.01-.021.015-.045.025-.068.01-.021.024-.041.035-.062.01-.022.014-.047.023-.068s.025-.041.035-.062.014-.046.024-.068c.011-.021.024-.041.035-.063s.015-.046.024-.067c.01-.023.025-.042.035-.064.01-.021.014-.046.023-.066.011-.023.025-.042.035-.064.011-.021.016-.045.025-.068.01-.021.025-.041.035-.062.01-.023.014-.047.024-.068.01-.022.024-.041.035-.064.01-.021.015-.045.024-.067.01-.021.024-.04.035-.062.01-.022.014-.046.023-.068s.025-.042.035-.063.015-.046.025-.068c.01-.021.024-.041.035-.063.01-.022.014-.046.023-.067.011-.023.025-.042.035-.064.011-.021.016-.045.024-.066.011-.023.024-.042.035-.064.011-.021.015-.045.024-.068.01-.021.025-.041.035-.062.01-.023.014-.047.024-.068.011-.022.024-.041.035-.064.011-.021.015-.045.024-.067s.025-.042.035-.063c.01-.022.014-.047.025-.068.01-.021.025-.041.035-.063s.014-.046.023-.068c.01-.021.025-.04.035-.062s.014-.046.024-.067c.01-.023.024-.042.034-.064.012-.021.016-.045.025-.068.01-.021.025-.041.035-.062.01-.023.014-.047.023-.068.011-.021.025-.041.035-.062.011-.022.016-.047.025-.068.01-.022.025-.041.035-.064.01-.021.014-.045.023-.067.011-.022.025-.042.035-.063.012-.022.016-.047.025-.068s.025-.041.035-.063.014-.046.023-.067c.012-.023.025-.042.035-.064.01-.021.016-.046.025-.068.01-.021.023-.04.035-.062.01-.021.014-.045.023-.068.01-.021.025-.041.035-.062.01-.023.014-.047.025-.068.01-.022.023-.041.035-.064.01-.021.014-.045.023-.066.01-.022.025-.041.035-.064.01-.021.014-.045.023-.067.012-.022.025-.042.035-.063.012-.022.016-.047.025-.068s.025-.041.035-.063.014-.046.023-.067c.012-.023.026-.042.035-.064.012-.021.016-.046.025-.068.01-.021.025-.04.035-.062.01-.021.014-.045.023-.068.01-.021.026-.041.035-.064.012-.021.016-.045.025-.068.01-.021.025-.039.035-.062.01-.021.014-.045.023-.066.01-.022.025-.041.035-.064.01-.021.014-.045.025-.067.01-.022.023-.042.035-.063.01-.021.014-.046.023-.068.01-.021.025-.041.035-.063s.014-.046.025-.067c.01-.023.024-.042.035-.064.01-.021.014-.046.023-.068.01-.021.025-.041.035-.062.01-.023.016-.047.025-.068s.024-.041.033-.062c.012-.023.016-.047.025-.068.01-.022.025-.041.035-.064.01-.021.015-.045.023-.067.012-.022.026-.042.037-.063.01-.022.014-.047.023-.067.01-.022.025-.042.035-.063s.014-.046.023-.068c.01-.021.025-.041.036-.063.009-.022.015-.046.024-.067.01-.023.025-.042.035-.064.01-.021.014-.046.024-.068.011-.021.024-.041.035-.062.011-.023.015-.047.024-.068.01-.023.025-.041.035-.064.01-.021.014-.045.024-.068.009-.021.024-.039.034-.062.01-.021.016-.045.025-.067s.025-.042.035-.063c.01-.022.014-.047.023-.068.011-.021.025-.041.035-.063.012-.022.016-.046.025-.067s.024-.041.035-.063c.01-.022.014-.046.023-.067.01-.023.025-.042.035-.064.01-.021.015-.045.025-.068.01-.021.024-.041.035-.062.01-.023.014-.047.023-.068.01-.022.025-.041.035-.064.01-.021.015-.045.025-.068.01-.021.024-.041.035-.062.01-.022.014-.047.023-.068s.025-.041.035-.062c.01-.022.014-.047.024-.068s.024-.041.035-.063c.011-.024.017-.05.026-.073.01-.021.023-.038.033-.059.008-.021.012-.043.021-.062.012-.023.027-.044.037-.068.01-.02.014-.041.023-.062.012-.023.027-.045.037-.068.012-.023.017-.049.027-.074.01-.02.023-.037.031-.059.011-.021.016-.045.025-.068.01-.021.025-.041.035-.062.01-.022.014-.047.024-.068.009-.021.024-.041.034-.062.01-.022.015-.047.025-.068s.024-.041.035-.063c.01-.022.014-.046.023-.067.011-.023.025-.042.035-.064.011-.021.015-.046.025-.068.01-.021.025-.041.035-.062.01-.023.014-.047.023-.068s.025-.041.035-.062c.01-.023.015-.047.024-.068.011-.022.025-.041.035-.064.011-.021.015-.045.024-.068.01-.021.025-.041.035-.062.012-.023.016-.05.025-.074.01-.02.025-.037.033-.059.01-.02.014-.041.023-.062.01-.022.025-.043.037-.067.01-.021.014-.042.021-.063.012-.021.027-.043.039-.066.01-.024.016-.051.025-.074.01-.02.023-.039.033-.059.01-.023.014-.047.023-.068.012-.023.025-.041.037-.064.01-.021.014-.045.023-.066.01-.022.025-.041.035-.064.01-.021.014-.045.023-.068.011-.021.025-.041.035-.062.011-.022.016-.047.025-.068s.025-.041.035-.063.014-.046.023-.068c.011-.022.025-.041.035-.063.012-.021.016-.046.025-.068.01-.021.023-.04.035-.062.01-.021.014-.046.023-.068.01-.021.025-.041.035-.062.01-.023.014-.047.025-.068.01-.023.023-.041.035-.064.01-.023.016-.049.025-.072.01-.02.023-.037.033-.059.009-.02.013-.041.021-.062.012-.023.027-.045.037-.068.012-.022.016-.047.025-.068s.025-.041.035-.063.014-.046.023-.068c.012-.022.025-.041.035-.063.012-.021.016-.046.025-.068.01-.021.025-.041.035-.062.01-.023.014-.047.023-.068.012-.021.025-.041.035-.062.011-.023.016-.047.025-.068.01-.023.025-.041.035-.064.01-.021.014-.045.023-.068.01-.021.025-.041.035-.062.01-.022.016-.047.025-.067.01-.022.023-.042.035-.063.01-.022.014-.047.023-.068s.025-.041.035-.063.014-.046.025-.068c.01-.022.023-.041.035-.063.009-.02.014-.041.021-.062.012-.023.027-.043.038-.067s.017-.05.026-.074c.01-.021.023-.038.031-.058.012-.023.016-.047.025-.068.01-.022.025-.041.035-.064.01-.02.014-.041.021-.062.012-.022.027-.043.039-.066.012-.026.018-.055.027-.08.01-.02.022-.035.031-.055.01-.02.014-.041.021-.062.012-.023.027-.045.039-.068.01-.021.014-.046.023-.066.01-.023.025-.042.035-.064.01-.021.014-.046.023-.068.01-.021.025-.041.036-.062.009-.021.013-.043.022-.063.011-.022.027-.044.037-.067.012-.023.018-.049.026-.074.011-.02.024-.039.034-.059.01-.022.014-.047.023-.068s.025-.041.035-.062c.01-.022.014-.047.023-.068.01-.022.025-.041.035-.063s.016-.046.025-.068.025-.041.035-.063c.01-.021.014-.046.023-.066.01-.023.025-.042.035-.064.01-.021.015-.046.025-.068.01-.021.024-.041.035-.062.01-.023.014-.047.023-.068.01-.023.025-.041.035-.064.01-.021.015-.045.025-.068.01-.021.023-.039.035-.062.01-.021.014-.045.023-.068.01-.021.025-.041.035-.062.01-.022.014-.047.025-.068.01-.021.023-.041.034-.063s.015-.046.024-.067.025-.041.035-.063.015-.047.023-.067c.012-.023.026-.043.036-.064.011-.025.017-.051.026-.074.01-.02.023-.037.033-.057.008-.021.012-.043.021-.064.012-.023.027-.043.037-.068.011-.021.016-.045.025-.068.01-.021.024-.039.035-.062.01-.021.014-.045.023-.068.01-.021.025-.041.035-.062.01-.022.015-.047.025-.068s.024-.041.035-.063c.01-.022.014-.046.023-.068s.025-.041.035-.063c.011-.021.015-.046.025-.068.01-.021.024-.041.035-.062.01-.023.014-.047.023-.068.011-.023.025-.041.035-.064.011-.021.016-.045.024-.066.011-.023.025-.041.035-.064.011-.021.015-.045.024-.068.01-.021.025-.039.035-.062.01-.021.014-.045.024-.067s.024-.042.035-.063c.009-.021.014-.042.022-.062.012-.023.027-.045.037-.068.011-.027.016-.053.027-.077z" fill="#2a3e4f"></path><path d="m349.957 71.479c1.595-3.521-6.736-10.734-18.612-16.109-11.874-5.375-22.792-6.877-24.386-3.355-.604 1.332.217 3.193 2.109 5.283l-11.959 26.419c.645.712 1.414 1.45 2.295 2.202l11.959-26.42c1.389 1.189 3.056 2.414 4.943 3.629l-11.958 26.42c.819.527 1.683 1.053 2.581 1.572l11.959-26.42c1.656.959 3.439 1.896 5.322 2.791l-11.959 26.42c.447.213.901.425 1.359.633.461.207.918.408 1.374.604l11.96-26.419c1.916.825 3.795 1.545 5.609 2.157l-11.959 26.42c.982.332 1.947.634 2.885.902l11.959-26.42c2.16.617 4.178 1.061 5.988 1.321l-11.96 26.419c1.147.165 2.21.257 3.171.271l11.959-26.42c2.82.043 4.759-.568 5.361-1.9z" fill="#33495f"></path><path d="m215.801 106.938c.525 1.404-.187 2.971-1.592 3.496l-6.662 2.498c-1.404.527-2.971-.184-3.496-1.59l-6.197-16.531c-.527-1.405.185-2.971 1.59-3.497l6.662-2.499c1.404-.525 2.971.186 3.496 1.59z" fill="#2a3e4f"></path><path d="m212.478 82.215c-.003-.012-.005-.021-.009-.033s-.012-.021-.016-.032-.006-.023-.01-.034c-.004-.012-.01-.021-.014-.031-.002-.012-.006-.025-.011-.038s-.013-.024-.019-.038c-.003-.01-.004-.018-.008-.029-.003-.01.033.099.029.088-.004-.013.033.078.033.078-.703-1.879-5.141 1.393-11.266 3.691-6.127 2.295-11.621 2.746-10.916 4.627 0 0-.033-.096-.029-.086.004.012-.016-.033-.012-.023.005.012 0-.008.004.004.005.011.001.008.005.021.003.012.009.014.014.024.003.013.004.02.009.031.002.014.01.02.014.031.005.012.006.021.008.034.006.013.014.024.02.036.002.01.004.021.008.031.004.012.012.021.016.033s.008.023.01.035c.004.01.011.02.015.029.004.013.005.026.011.038.004.012.012.021.016.032.002.012.006.025.01.035s.01.02.014.031.006.023.012.037c.005.012.011.021.016.034.004.011.006.022.008.032.006.014.013.023.016.033.006.012.008.025.012.037.002.01.01.019.014.029.006.012.007.025.012.037.005.014.012.023.016.036.004.011.006.021.01.032s.012.021.016.032c.004.012.006.024.01.034.004.014.012.023.016.033.004.012.006.023.009.037.005.01.011.02.015.031.006.012.008.023.012.035.005.012.01.02.016.029.002.014.006.027.008.037.006.014.014.024.018.036.004.011.006.022.01.034s.012.021.016.031c.004.012.004.023.01.035.004.012.012.021.016.033s.006.023.01.035c.005.012.012.021.018.035.002.01.004.021.01.033.004.01.008.018.012.029.006.012.006.025.012.037.004.012.011.021.017.033.003.012.005.023.009.035s.012.021.016.033c.004.011.006.021.011.033.003.013.011.023.015.034s.007.023.01.034c.004.014.014.023.016.035.004.012.006.022.01.033s.01.02.016.029c.005.014.006.027.01.039.006.012.012.021.016.031.004.012.006.023.01.035s.012.023.016.033c.004.012.006.025.01.037.006.012.011.02.016.031.004.012.006.023.01.035s.012.021.016.033.006.023.01.034c.005.012.012.022.016.032.004.012.006.025.01.035s.011.02.014.031c.006.012.006.025.012.037.006.014.012.023.016.035.006.012.008.023.012.033.002.012.01.021.014.033.004.011.006.021.011.034.004.011.011.021.015.034.004.01.007.023.01.033.006.012.012.023.016.033.004.012.007.023.012.035.004.012.009.021.014.033.004.012.006.023.012.033.004.014.011.023.016.035.002.01.004.021.008.034.006.013.012.021.016.032.006.012.006.025.012.037.003.01.01.02.016.031.002.012.004.023.008.035.004.01.012.021.017.031.003.012.005.024.009.036.006.012.012.022.016.032.006.012.006.025.01.036.004.012.012.021.016.032.006.012.004.023.01.035.004.012.012.021.016.032.005.013.006.024.012.036.004.011.01.02.016.031.003.013.004.023.01.036.003.011.01.021.014.031.004.013.008.026.012.036.004.014.011.021.014.034.004.011.008.022.011.034.003.011.011.02.015.029.004.014.006.025.012.037.004.014.01.025.016.037.002.01.004.021.008.032.005.011.012.021.018.032.004.012.005.023.009.035.005.012.011.021.017.033.004.012.005.021.008.035.004.011.012.021.018.032.004.011.004.024.01.036.004.011.012.021.015.031.005.012.007.025.009.036.006.011.01.021.016.032s.008.023.01.035c.004.012.012.021.016.033s.007.022.012.035c.004.011.01.021.014.031.005.014.006.023.012.037.004.01.01.02.016.031.004.012.006.025.01.035.006.014.012.021.016.033.002.012.006.023.01.035.002.012.01.021.014.032.006.012.007.022.012.034s.01.022.016.033c.002.012.006.023.008.037.006.01.013.02.018.031.004.012.005.023.01.035.004.012.01.021.014.033.006.012.006.023.012.035.004.011.01.021.016.032.004.011.006.024.01.036.004.01.012.021.016.031.004.012.006.023.01.036.004.011.01.021.016.032.004.012.006.023.01.035.002.012.012.021.014.033.006.01.007.023.012.034.004.012.01.022.014.032.006.012.008.024.01.035.006.012.013.021.018.033.004.012.006.023.01.035s.012.023.017.035c.004.01.005.022.009.031.004.012.01.021.014.032.006.013.008.024.012.036s.012.021.016.033c.003.012.006.024.01.035.004.012.012.021.016.033s.006.023.01.035c.006.012.012.022.018.035.002.011.004.021.008.031.004.012.01.021.016.031.004.012.006.025.01.037s.01.02.014.03c.005.013.006.026.012.038.004.013.012.023.016.035s.006.021.01.033c.004.01.012.021.016.031.004.012.006.023.01.036.005.012.01.022.014.032.007.012.008.024.012.037.005.01.01.019.016.027.003.014.004.027.008.039.006.013.014.023.02.035.002.01.004.023.008.032.004.011.011.022.016.032.004.012.006.023.01.035s.012.021.014.033c.006.012.008.023.012.035s.012.021.016.033.006.023.01.035.012.021.016.033c.004.011.006.021.01.033s.012.021.016.035c.004.01.006.021.01.033s.01.021.016.033c.004.012.006.023.011.035.003.012.01.021.015.033.004.012.004.022.01.034.004.011.012.022.016.032.004.012.006.023.01.037.006.011.012.021.016.031.006.012.006.024.01.035.005.012.012.021.016.033s.006.023.01.035c.005.011.011.021.016.031.004.012.006.023.011.037.003.01.011.021.015.031.006.012.006.023.01.035s.012.021.014.033c.006.011.008.024.012.035.005.012.012.021.018.033.002.012.004.023.008.035.006.012.012.021.016.033.004.01.006.021.012.033.002.012.01.021.014.031.004.014.006.025.01.036.004.013.012.021.016.034.004.012.006.023.01.034.004.013.01.022.016.033.004.011.006.022.011.034.003.012.011.022.015.033.004.012.006.023.01.036.004.011.012.021.016.032.006.012.008.023.01.035.006.012.012.021.016.033.006.012.006.023.01.035.006.012.012.021.016.033.004.01.006.021.012.035.003.01.01.02.014.031.005.011.006.024.01.035.006.012.011.021.016.032.004.012.006.024.01.036.006.012.013.021.018.031.002.014.004.023.009.035s.011.022.015.033c.004.012.006.024.01.035.004.012.012.021.016.033.006.012.006.023.01.035.006.012.012.021.016.033.005.012.006.023.01.035s.012.021.018.032c.002.011.004.023.01.034.002.013.012.022.014.035.004.01.006.021.01.034.006.012.01.021.016.032s.006.023.01.035c.006.012.013.021.017.033.005.012.005.023.009.033.006.013.012.023.016.033.004.012.006.024.012.037.004.01.01.02.014.031.006.012.006.023.012.036.004.011.01.02.014.031.005.012.006.024.012.036.004.012.012.021.016.033.004.01.004.023.009.033.003.012.012.023.015.033.006.012.008.024.012.036.004.011.01.021.014.032.006.012.007.023.01.035.004.011.012.021.018.032.003.013.004.024.01.034.004.014.01.021.016.034.004.011.004.023.01.034.004.012.011.021.016.033.002.012.006.023.01.035s.012.021.014.033c.004.012.008.023.012.034.005.013.012.021.015.032.005.013.007.023.009.036.006.011.012.022.016.033.005.011.007.022.012.034.004.013.012.021.016.033s.004.023.008.035c.006.012.012.021.016.032.006.012.006.022.012.036.004.011.012.021.016.031.004.012.004.023.01.035.003.012.011.021.016.032.004.012.004.024.01.036.004.012.01.021.016.032.004.013.006.024.009.036.005.012.013.021.017.032.004.012.004.024.01.034.004.012.01.022.016.033.004.012.004.023.01.035.004.012.012.021.014.033.006.01.008.023.012.035s.01.021.016.032c.004.013.006.024.01.035.005.013.012.021.015.034.004.01.007.023.011.033.005.012.01.023.015.033.005.012.007.023.011.035.004.013.011.021.015.032.005.013.007.024.011.034.004.013.01.023.014.034.006.012.007.022.012.034.005.013.01.023.016.033.004.012.004.023.01.035.004.012.011.021.016.033.004.011.004.023.01.035.004.012.012.021.016.032.004.013.006.024.01.036s.012.021.016.033c.004.01.006.021.01.033.005.012.01.022.016.033.004.012.006.023.01.035s.011.021.014.033c.006.01.008.023.012.035.004.011.01.02.016.032.002.013.006.024.01.034.006.012.01.021.016.033.004.012.006.023.01.035s.012.021.015.033c.005.012.007.023.013.035.002.013.01.021.012.033.006.012.008.023.012.033.004.014.012.023.016.035s.006.021.01.035c.004.01.013.021.016.033.003.01.006.021.01.033s.012.021.016.033.006.021.01.035c.004.012.012.021.016.032.004.012.006.024.01.036s.012.021.016.033c.006.01.006.023.01.033.005.012.012.021.016.033.004.011.006.023.01.035.004.011.011.021.016.031.004.012.006.025.01.035.004.013.011.021.016.034.004.013.006.023.01.034.004.012.01.021.016.033.004.012.006.023.01.035s.012.021.016.033.006.023.01.035c.005.011.012.021.016.033s.006.023.01.033c.004.013.012.021.016.033s.006.023.01.035.01.023.014.033c.006.011.008.023.013.035.003.012.011.021.015.033.006.012.006.022.01.035.006.012.014.02.016.033.005.011.006.021.01.033.006.012.012.023.018.033.004.012.004.024.008.036.006.011.012.021.016.032.006.012.006.023.01.035s.012.021.016.031c.006.013.006.025.01.035.005.014.012.021.016.034.005.011.008.024.01.034.006.012.01.021.017.033.004.01.005.023.009.035.005.011.013.021.016.032.004.013.006.023.01.035.004.011.012.021.016.032.006.013.006.025.011.035.005.013.011.021.015.033.006.012.006.024.01.035.006.012.012.021.018.033.002.012.004.023.01.035.003.012.01.021.014.033.006.012.006.021.012.034.004.012.012.021.014.034.004.01.006.021.01.033.006.012.012.023.018.035.004.01.004.022.008.033.004.012.012.021.016.032.006.012.006.024.01.036.005.012.012.021.016.031.006.013.006.025.01.036.006.011.012.021.018.032.004.012.006.023.01.035s.01.021.016.033c.004.01.004.023.01.035.002.012.011.021.016.033.004.01.005.023.009.034.003.011.012.021.015.032.004.012.008.025.011.035.005.012.011.022.017.033.004.012.005.023.01.035.004.012.01.021.014.032.004.012.006.024.012.036.004.012.012.021.016.031.004.014.004.025.009.035.005.013.013.021.015.034.004.011.006.023.012.034.002.012.01.023.014.033.006.012.006.023.012.035.004.012.011.021.014.033.006.011.006.021.01.033.006.012.013.023.016.033.006.014.007.023.01.035.006.012.012.022.018.033.004.012.006.023.01.035s.01.021.014.033c.006.01.006.023.012.035.004.011.011.021.016.032.004.011.006.024.01.036.004.01.01.02.016.031.004.012.006.023.01.035s.01.022.014.033c.006.012.008.023.012.035s.01.021.014.033c.006.01.006.023.012.034.004.012.012.021.016.033.004.013.004.022.01.034.004.012.01.021.016.033.004.012.004.023.01.035.004.012.012.021.014.033.006.011.008.023.012.035s.012.02.016.033c.004.011.004.023.01.033.004.014.011.023.015.034.005.011.007.023.011.034.004.012.011.021.016.033.004.012.006.023.01.035s.01.021.014.031c.006.012.007.023.012.037.682 1.816 6.199 1.428 12.324-.869 6.127-2.296 10.539-5.631 9.858-7.449-.005-.01-.011-.02-.015-.031-.006-.012-.006-.023-.012-.035-.004-.012-.01-.022-.016-.033-.004-.012-.006-.023-.008-.035-.005-.012-.014-.021-.017-.033-.004-.01-.007-.023-.011-.034-.004-.012-.01-.021-.016-.032-.004-.012-.006-.023-.01-.036-.004-.011-.01-.021-.016-.032-.003-.012-.004-.023-.01-.035-.004-.012-.012-.021-.016-.033-.004-.01-.006-.023-.01-.035s-.01-.021-.015-.031c-.005-.013-.006-.023-.01-.035-.005-.012-.011-.021-.017-.033-.004-.012-.004-.023-.01-.035-.004-.011-.012-.021-.016-.033s-.006-.023-.01-.035c-.004-.01-.012-.021-.015-.032-.005-.012-.007-.024-.01-.035-.005-.013-.013-.021-.017-.034-.002-.01-.006-.021-.01-.033-.002-.012-.01-.021-.014-.033-.006-.012-.008-.023-.012-.035s-.012-.022-.016-.033c-.004-.012-.006-.022-.01-.035-.004-.01-.012-.021-.016-.033-.004-.01-.006-.021-.01-.034-.004-.012-.012-.021-.016-.032-.004-.012-.005-.023-.009-.036-.005-.011-.011-.021-.015-.032-.006-.012-.008-.022-.012-.035-.004-.012-.012-.021-.016-.033-.003-.01-.006-.023-.01-.034s-.011-.021-.016-.032c-.004-.012-.006-.023-.01-.035s-.01-.021-.016-.033c-.004-.012-.004-.023-.01-.035-.004-.012-.012-.021-.016-.032-.004-.012-.006-.024-.01-.036s-.012-.021-.016-.032c-.003-.011-.006-.022-.01-.034-.004-.011-.011-.021-.016-.033-.002-.012-.005-.023-.01-.034-.002-.013-.012-.022-.016-.034s-.006-.023-.012-.035c-.002-.012-.01-.022-.014-.033-.004-.01-.006-.022-.01-.035-.004-.01-.01-.021-.016-.033-.004-.01-.007-.021-.01-.033-.006-.013-.012-.022-.016-.033-.004-.012-.006-.023-.01-.035s-.012-.021-.016-.033-.006-.022-.01-.035c-.004-.01-.012-.021-.016-.033-.006-.01-.006-.023-.01-.035-.004-.01-.012-.02-.016-.031s-.004-.023-.01-.035c-.004-.012-.012-.021-.018-.033-.002-.011-.004-.023-.01-.035-.002-.012-.01-.021-.014-.033-.004-.01-.006-.023-.01-.035-.006-.01-.01-.02-.016-.031-.004-.012-.006-.024-.01-.035-.006-.012-.012-.021-.016-.033-.003-.012-.006-.023-.01-.034-.003-.013-.012-.022-.014-.034-.006-.012-.008-.023-.014-.035-.004-.01-.01-.021-.014-.033-.005-.01-.006-.023-.012-.033-.002-.012-.01-.021-.014-.033s-.006-.023-.011-.035-.011-.021-.015-.033-.006-.021-.01-.034-.011-.022-.016-.034c-.004-.012-.006-.022-.01-.035-.005-.011-.012-.021-.016-.033-.004-.01-.006-.021-.01-.033s-.012-.021-.016-.033c-.006-.012-.006-.024-.01-.035-.006-.012-.012-.021-.016-.033-.006-.011-.006-.023-.012-.035-.004-.012-.01-.021-.014-.033-.004-.01-.006-.023-.011-.035-.003-.01-.011-.021-.016-.031-.003-.012-.006-.024-.01-.035-.003-.012-.009-.021-.015-.033-.004-.012-.006-.023-.01-.035-.004-.011-.012-.021-.016-.031-.006-.014-.006-.025-.012-.037-.004-.012-.011-.021-.014-.031-.005-.012-.006-.023-.01-.035-.006-.012-.012-.021-.016-.033s-.006-.023-.012-.035c-.004-.011-.01-.022-.016-.033-.002-.012-.004-.022-.01-.035-.002-.012-.01-.021-.014-.033-.005-.01-.006-.022-.012-.033-.004-.013-.01-.022-.014-.033-.004-.012-.008-.023-.01-.035-.006-.012-.012-.021-.016-.033-.006-.012-.006-.021-.01-.035-.005-.012-.012-.021-.016-.032-.006-.013-.006-.024-.012-.036-.002-.01-.01-.021-.014-.032-.005-.011-.006-.024-.01-.034-.004-.012-.012-.021-.017-.033-.003-.012-.006-.024-.01-.035s-.011-.021-.015-.033c-.004-.01-.006-.022-.011-.035-.003-.011-.011-.021-.015-.033-.006-.012-.007-.023-.012-.035-.004-.012-.01-.021-.014-.031-.004-.012-.008-.023-.01-.035-.006-.012-.012-.021-.016-.033-.005-.012-.006-.023-.012-.035-.004-.012-.01-.021-.016-.032-.004-.013-.004-.023-.01-.036-.004-.01-.01-.021-.014-.031-.004-.012-.007-.024-.012-.035-.004-.012-.01-.021-.014-.033s-.008-.023-.012-.035-.01-.021-.016-.033c-.004-.012-.004-.022-.009-.035-.004-.012-.011-.021-.017-.033-.004-.012-.005-.022-.01-.034-.004-.012-.01-.022-.014-.033-.006-.011-.008-.022-.012-.034s-.01-.021-.016-.033c-.003-.012-.004-.023-.009-.035s-.011-.021-.017-.033c-.004-.01-.004-.022-.009-.035-.004-.011-.013-.021-.017-.032-.004-.013-.005-.024-.011-.036-.003-.01-.009-.021-.015-.031-.002-.012-.006-.023-.008-.035-.006-.012-.012-.021-.018-.032-.004-.013-.006-.024-.01-.036s-.01-.021-.016-.033c-.004-.01-.005-.022-.01-.035-.004-.011-.012-.021-.016-.031-.004-.012-.005-.025-.01-.036-.004-.011-.012-.021-.014-.032-.004-.012-.008-.023-.012-.035-.005-.012-.012-.021-.016-.033s-.004-.022-.009-.035c-.005-.01-.012-.021-.015-.032-.006-.011-.007-.023-.012-.035-.004-.011-.01-.022-.016-.034-.004-.01-.005-.021-.01-.033-.004-.012-.01-.021-.016-.033-.004-.012-.006-.023-.01-.035s-.01-.021-.016-.033c-.004-.011-.004-.021-.01-.035-.004-.01-.012-.021-.016-.032s-.006-.024-.009-.036c-.005-.01-.011-.02-.017-.031-.004-.012-.006-.023-.01-.035s-.012-.021-.016-.033c-.004-.011-.006-.023-.01-.035s-.011-.021-.014-.031c-.006-.012-.007-.025-.012-.037-.004-.01-.012-.021-.016-.031-.004-.012-.006-.023-.01-.035s-.01-.021-.016-.033c-.004-.012-.006-.021-.01-.033s-.012-.023-.016-.033c-.004-.014-.006-.024-.01-.036s-.012-.021-.015-.034c-.005-.01-.007-.022-.011-.033-.004-.012-.012-.021-.014-.033-.006-.012-.008-.023-.012-.035-.005-.011-.012-.021-.016-.033-.004-.011-.006-.021-.01-.033-.004-.014-.01-.022-.016-.035-.004-.01-.006-.021-.01-.035-.004-.01-.012-.021-.016-.032s-.006-.022-.01-.034-.01-.021-.016-.033c-.004-.012-.006-.023-.01-.035-.006-.012-.012-.021-.016-.031-.004-.012-.006-.025-.01-.037-.006-.01-.012-.021-.015-.031-.005-.012-.007-.025-.013-.037-.002-.01-.009-.02-.014-.031-.004-.012-.005-.023-.01-.035-.004-.012-.01-.021-.016-.033-.004-.012-.005-.023-.01-.033-.004-.012-.012-.023-.018-.034-.004-.013-.004-.023-.008-.035s-.012-.021-.016-.034c-.004-.01-.006-.021-.01-.034-.004-.011-.012-.021-.016-.032s-.006-.023-.01-.035-.012-.021-.016-.033-.006-.022-.01-.033c-.004-.014-.012-.022-.016-.035-.006-.01-.006-.021-.012-.033-.002-.012-.008-.022-.014-.033-.004-.012-.006-.023-.01-.035-.004-.011-.01-.021-.016-.033-.004-.012-.008-.022-.01-.035-.006-.012-.012-.021-.016-.033-.005-.011-.006-.023-.01-.035-.005-.012-.012-.021-.016-.031-.004-.012-.006-.023-.012-.036-.004-.011-.01-.021-.015-.032-.004-.012-.005-.023-.009-.035-.006-.012-.012-.021-.016-.033-.005-.01-.006-.022-.01-.034-.004-.011-.012-.022-.016-.032-.004-.012-.006-.024-.01-.036-.006-.011-.012-.021-.018-.032-.002-.012-.004-.023-.008-.035-.006-.012-.012-.021-.016-.033-.006-.012-.006-.023-.01-.034-.006-.012-.012-.022-.016-.034-.006-.01-.006-.022-.011-.034s-.011-.022-.015-.032c-.006-.012-.006-.023-.011-.036-.004-.011-.011-.021-.015-.034-.004-.01-.006-.021-.01-.033s-.012-.021-.016-.033c-.004-.011-.008-.023-.012-.035-.004-.011-.01-.021-.014-.032-.004-.012-.008-.023-.01-.034-.006-.012-.012-.023-.016-.033-.004-.012-.006-.023-.01-.035-.006-.011-.012-.021-.016-.033-.005-.012-.006-.023-.01-.035-.006-.012-.012-.021-.016-.033-.005-.01-.006-.022-.01-.034-.005-.012-.012-.021-.017-.033-.005-.011-.005-.024-.01-.035s-.011-.021-.015-.032c-.006-.012-.006-.023-.011-.035s-.013-.021-.015-.033c-.006-.012-.008-.023-.012-.034-.004-.012-.01-.022-.015-.032-.005-.012-.007-.024-.009-.036-.006-.012-.012-.021-.016-.032-.006-.012-.006-.023-.012-.037-.004-.01-.01-.02-.016-.03-.002-.013-.004-.024-.008-.034-.006-.014-.012-.022-.018-.035-.002-.011-.006-.023-.01-.033-.004-.013-.01-.023-.014-.034-.006-.011-.008-.023-.012-.034-.002-.012-.01-.023-.014-.033-.006-.012-.008-.023-.01-.035-.006-.012-.012-.021-.018-.033-.004-.012-.005-.023-.008-.033-.006-.014-.012-.023-.016-.035-.006-.01-.008-.021-.01-.035-.006-.01-.012-.021-.018-.032-.004-.011-.004-.024-.01-.036-.003-.01-.011-.021-.016-.033-.004-.012-.006-.021-.009-.033-.005-.01-.011-.02-.015-.029-.006-.013-.006-.025-.011-.038-.005-.011-.011-.02-.014-.03-.005-.014-.007-.025-.013-.037-.002-.012-.011-.023-.016-.037-.004-.01-.004-.021-.01-.031-.004-.012-.01-.021-.014-.032-.006-.013-.006-.024-.01-.034-.006-.014-.012-.022-.018-.035-.004-.011-.006-.023-.01-.033-.004-.012-.012-.021-.014-.033-.005-.012-.006-.023-.012-.035-.004-.011-.011-.021-.015-.033-.005-.012-.007-.023-.011-.035-.004-.01-.011-.021-.016-.033-.004-.011-.006-.021-.01-.033-.004-.014-.01-.023-.016-.034-.004-.011-.005-.022-.01-.036-.004-.01-.01-.02-.014-.031-.006-.012-.008-.023-.012-.035s-.012-.021-.016-.033-.004-.023-.008-.035c-.008-.012-.014-.023-.02-.035-.004-.011-.006-.021-.008-.032-.004-.011-.01-.021-.014-.029-.006-.013-.008-.026-.012-.039-.004-.009-.01-.02-.014-.03-.004-.012-.006-.023-.011-.037-.005-.012-.012-.023-.017-.035-.004-.01-.006-.022-.009-.031-.005-.012-.011-.022-.017-.035-.004-.011-.008-.023-.01-.034-.006-.013-.012-.021-.014-.03-.006-.014-.008-.025-.012-.037-.004-.011-.011-.021-.016-.033-.004-.012-.006-.023-.01-.035-.006-.012-.012-.021-.016-.033-.005-.012-.006-.023-.01-.033-.005-.014-.012-.023-.016-.034-.004-.012-.006-.022-.01-.034s-.012-.023-.016-.034-.006-.022-.008-.034c-.006-.012-.014-.021-.018-.033s-.006-.021-.01-.034c-.004-.011-.01-.022-.016-.034-.004-.01-.006-.023-.01-.034-.006-.013-.012-.024-.017-.034-.003-.012-.005-.021-.009-.033-.004-.01-.01-.02-.016-.029-.004-.013-.004-.025-.01-.039-.006-.011-.012-.021-.014-.032-.006-.011-.008-.023-.012-.034-.004-.013-.011-.023-.016-.035-.004-.011-.008-.023-.012-.034-.002-.011-.008-.021-.012-.032-.006-.012-.006-.023-.012-.035-.004-.012-.012-.021-.016-.032-.006-.012-.006-.024-.01-.034-.004-.012-.012-.023-.016-.034s-.006-.023-.01-.034c-.006-.014-.012-.021-.016-.033s-.006-.023-.01-.035c-.005-.012-.012-.021-.016-.033s-.006-.023-.01-.035-.012-.021-.016-.033c-.004-.01-.006-.021-.01-.034-.004-.012-.011-.022-.016-.033-.004-.011-.008-.022-.01-.034-.004-.012-.011-.021-.016-.03-.002-.013-.005-.026-.01-.038-.004-.013-.012-.023-.016-.035s-.006-.023-.01-.032c-.004-.012-.012-.022-.016-.033-.006-.011-.006-.023-.01-.034-.004-.012-.01-.02-.016-.031-.002-.012-.004-.024-.009-.037-.007-.014-.013-.025-.019-.039-.003-.008-.006-.02-.009-.029s-.011-.02-.015-.029c-.004-.013-.006-.025-.011-.037s-.011-.023-.015-.034-.007-.023-.01-.034c-.006-.012-.012-.021-.016-.033s-.006-.023-.012-.035c-.002-.01-.01-.021-.012-.03-.006-.011-.007-.024-.012-.037-.006-.013-.012-.023-.018-.036-.002-.011-.006-.021-.008-.031-.006-.012-.011-.023-.016-.035-.006-.01-.006-.021-.01-.033s-.012-.022-.016-.033c-.005-.012-.006-.023-.012-.035-.004-.012-.01-.021-.014-.033-.006-.012-.008-.023-.01-.034-.004-.012-.012-.022-.016-.032-.006-.012-.007-.023-.01-.035-.006-.012-.012-.021-.016-.033-.006-.012-.006-.024-.012-.037-.002-.01-.01-.02-.014-.03-.005-.013-.006-.024-.012-.036-.003-.012-.01-.021-.015-.033-.004-.01-.006-.022-.011-.033-.003-.012-.01-.022-.016-.033-.002-.012-.005-.024-.008-.035-.006-.012-.012-.021-.016-.033-.006-.011-.006-.023-.012-.035-.004-.012-.01-.021-.014-.031-.004-.014-.006-.023-.01-.035-.005-.013-.012-.022-.017-.033-.005-.014-.005-.025-.01-.035-.005-.014-.013-.024-.017-.035-.004-.012-.005-.021-.01-.033-.004-.011-.01-.02-.014-.03-.005-.013-.006-.024-.012-.038-.004-.012-.012-.021-.014-.033-.006-.011-.008-.021-.012-.033-.002-.012-.01-.023-.014-.033-.006-.011-.008-.023-.01-.036-.006-.011-.012-.021-.016-.032-.006-.012-.008-.022-.01-.035-.006-.012-.012-.021-.016-.032-.006-.013-.006-.024-.012-.036-.004-.01-.01-.021-.016-.033-.003-.01-.004-.022-.01-.034-.003-.011-.01-.021-.015-.034-.005-.01-.007-.022-.01-.033-.007-.013-.013-.021-.015-.033-.006-.011-.007-.023-.012-.035-.004-.012-.011-.021-.014-.032-.006-.011-.006-.022-.012-.034-.004-.012-.011-.021-.014-.033-.004-.012-.007-.023-.012-.035-.006-.01-.008-.021-.014-.031-.004-.012-.006-.024-.01-.037-.005-.013-.013-.024-.017-.036z" fill="#2a3e4f"></path><path d="m212.367 81.91c-.682-1.815-6.197-1.428-12.324.869-6.125 2.296-10.539 5.631-9.857 7.449.258.688 1.207 1.057 2.621 1.129l5.109 13.629c.48.025 1.017.014 1.598-.029l-5.111-13.629c.915-.07 1.941-.225 3.043-.463l5.109 13.629c.48-.102.971-.221 1.477-.355l-5.112-13.629c.93-.246 1.895-.545 2.883-.895l5.109 13.63c.234-.083.471-.169.707-.257.238-.09.472-.18.703-.271l-5.111-13.629c.975-.386 1.898-.797 2.76-1.221l5.109 13.629c.469-.23.918-.465 1.346-.701l-5.109-13.631c.986-.545 1.861-1.102 2.596-1.65l5.109 13.629c.467-.348.877-.691 1.223-1.027l-5.109-13.629c1.018-.984 1.489-1.889 1.231-2.577z" fill="#33495f"></path><path d="m248.293 240.055c-2.516-1.139-3.633-4.1-2.493-6.616l29.278-64.683c1.139-2.516 4.102-3.631 6.617-2.492 2.517 1.139 3.633 4.101 2.494 6.617l-29.279 64.682c-1.139 2.515-4.101 3.63-6.617 2.492z" fill="#2a3e4f"></path><path d="m291.658 238.829-52.84-23.919c-3.773-1.707-5.447-6.15-3.738-9.925 1.707-3.774 6.15-5.448 9.924-3.739l52.84 23.918c3.773 1.708 5.447 6.15 3.74 9.926-1.709 3.773-6.152 5.447-9.926 3.739z" fill="#2a3e4f"></path><circle cx="259.299" cy="215.726" fill="#33495f" r="19.501"></circle><circle cx="259.299" cy="215.726" fill="#ecf0f1" r="11.5"></circle></svg>
 |  | 
|  | <div style="max-width: 300px;">
 |  | 
|  | <h2>Hours, not months</h2>
 |  | 
|  | <p>Leverage cross platform data discovery and intelligence in your application in hours.</p>
 |  | 
|  | </div>
 |  | 
|  | </div>
 |  | 
|  | <div class="row "><svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewbox="0 0 512 512" enable-background="new 0 0 512 512" xml:space="preserve"> <g id="Palette" display="none"> <rect x="-4549" y="-3127" display="inline" fill="#FFFFFF" width="9201" height="7668"></rect> </g> <g id="Others"> <g id="files"> </g> <g id="pencil_rocket"> </g> <g id="magic_hat__x26__rabbit"> </g> <g id="phone__x26__target"> </g> <g id="toast"> </g> <g id="coffee"> </g> <g id="suit"> </g> <g id="DNA_tube"> </g> <g id="clapper"> </g> <g id="stopwatch"> </g> <g id="map__x26__locator"> </g> <g id="envelope"> </g> <g id="phone__x26__megaphone"> </g> <g id="speech_bubble"> </g> <g id="medal"> </g> </g> <g id="Design"> <g id="blueprint"> </g> <g id="computer__x26__pencil__x26__ruker"> </g> <g id="pencil__x26__ruler__x26__eraser"> </g> <g id="paint_brush"> </g> <g id="eraser"> </g> <g id="round_brush"> </g> <g id="scissor"> </g> <g id="wacom"> </g> <g id="vector"> </g> <g id="lightbulb"> </g> <g id="lamp"> </g> <g id="pencil__x26__brush"> </g> <g id="laptop__x26__brush"> </g> <g id="paint"> </g> <g id="magic_wand"> </g> </g> <g id="SEO_x2F__Web"> <g id="W_key"> </g> <g id="link_plus"> </g> <g id="website__x26__lock"> </g> <g id="video"> </g> <g id="maginifier__x26__target"> </g> <g id="website__x26__setting_1_"> </g> <g id="website__x26__code"> <radialgradient id="SVGID_1_" cx="256" cy="256" r="256" gradientunits="userSpaceOnUse"> <stop offset="0.0051" style="stop-color: #33495F;"></stop> <stop offset="1" style="stop-color: #2B3E51;"></stop> </radialgradient> <circle fill="url(#SVGID_1_)" cx="256" cy="256" r="256"></circle> <g> <path fill="#BDC3C7" d="M434,361.728c0,11.047-9.647,20.272-20.693,20.272h-315C87.261,382,79,372.774,79,361.728v-222
 |  | 
|  | 				C79,128.683,87.261,120,98.307,120h315c11.046,0,20.693,8.683,20.693,19.728V361.728z"></path> <path fill="#FFFFFF" d="M417,350c0,5.523-4.477,10-10,10H105c-5.523,0-10-4.477-10-10V178c0-5.523,4.477-10,10-10h302
 |  | 
|  | 				c5.523,0,10,4.477,10,10V350z"></path> <circle fill="#FFFFFF" cx="106.337" cy="144.396" r="9.666"></circle> <circle fill="#EE483C" cx="106.337" cy="144.396" r="9.666"></circle> <circle fill="#F4C342" cx="136.337" cy="144.396" r="9.666"></circle> <circle fill="#00CA77" cx="166.337" cy="144.396" r="9.666"></circle> <path fill="#1C99D8" d="M216.88,289.033c1.8,0.709,3.271,2.869,3.271,4.803v19.385c0,1.934-1.451,2.887-3.226,2.117
 |  | 
|  | 				l-87.447-37.898c-1.774-0.77-3.226-2.98-3.226-4.914v-15.557c0-1.934,1.451-4.145,3.226-4.914l87.447-37.898
 |  | 
|  | 				c1.774-0.77,3.226,0.184,3.226,2.117v19.57c0,1.934-1.477,4.084-3.28,4.777l-58.869,22.676c-1.804,0.693-1.809,1.842-0.01,2.551
 |  | 
|  | 				L216.88,289.033z"></path> <path fill="#1C99D8" d="M278.208,212.197l-26.135,107.619c-0.872,3.547-1.634,6.348-2.288,8.4
 |  | 
|  | 				c-0.653,2.053-1.648,3.656-2.986,4.807s-3.282,1.727-5.833,1.727c-6.348,0-9.521-2.738-9.521-8.213
 |  | 
|  | 				c0-1.432,0.622-5.008,1.867-10.734l26.041-107.619c1.368-5.725,2.676-9.645,3.921-11.76c1.243-2.115,3.671-3.174,7.28-3.174
 |  | 
|  | 				c3.11,0,5.491,0.746,7.14,2.24c1.648,1.492,2.474,3.547,2.474,6.16C280.167,203.58,279.515,207.096,278.208,212.197z"></path> <path fill="#1380B6" d="M385.267,272.525c0,1.934-1.451,4.146-3.223,4.918l-87.453,38.076c-1.772,0.771-3.223-0.178-3.223-2.111
 |  | 
|  | 				v-19.385c0-1.934,1.473-4.094,3.272-4.801l59.071-23.191c1.801-0.705,1.798-1.855-0.006-2.553l-59.06-22.852
 |  | 
|  | 				c-1.804-0.697-3.278-2.85-3.278-4.783v-19.197c0-1.934,1.453-2.889,3.228-2.123l87.442,37.725
 |  | 
|  | 				c1.775,0.766,3.229,2.973,3.229,4.906V272.525z"></path> <path fill="#F4C342" d="M377.259,210.268c0-40.544,19.478-60.02,60.021-60.02c-40.543,0-60.021-19.479-60.021-60.021
 |  | 
|  | 				c0,40.543-19.478,60.021-60.02,60.021C357.781,150.248,377.259,169.724,377.259,210.268z"></path> <path fill="#F4C342" d="M422.038,243.063c0-23.779,11.425-35.202,35.202-35.202c-23.777,0-35.202-11.423-35.202-35.201
 |  | 
|  | 				c0,23.778-11.423,35.201-35.201,35.201C410.615,207.861,422.038,219.284,422.038,243.063z"></path> <path fill="#F4C342" d="M313.376,149.714c0-23.577,11.327-34.903,34.902-34.903c-23.575,0-34.902-11.326-34.902-34.902
 |  | 
|  | 				c0,23.576-11.327,34.902-34.903,34.902C302.049,114.811,313.376,126.137,313.376,149.714z"></path> </g> </g> <g id="SEO_tag"> </g> <g id="website__x26__wrench"> </g> <g id="crown"> </g> <g id="eye"> </g> <g id="website__x26__clock"> </g> <g id="spider"> </g> <g id="website__x26__medal"> </g> <g id="graph"> </g> </g> <g id="Finance__x2F__Money"> <g id="diamond"> </g> <g id="calculating"> </g> <g id="calculator"> </g> <g id="auction_hammer"> </g> <g id="bag_of_money"> </g> <g id="piggy_bank"> </g> <g id="bank"> </g> <g id="umbrella__x26__coins"> </g> <g id="safe"> </g> <g id="treasure"> </g> <g id="cash__x26__card"> </g> <g id="coins__x26__cash"> </g> <g id="coins__x26__card"> </g> <g id="briefcase"> </g> <g id="cash"> </g> </g> <g id="E-Commerce__x2F__Shopping"> <g id="New_Symbol"> </g> <g id="mobile__x26__finger"> </g> <g id="price_tag"> </g> <g id="website__x26__magnifier"> </g> <g id="hand_to_ahnd_delivery"> </g> <g id="hand__x26__credit_card"> </g> <g id="hand__x26__iPad"> </g> <g id="empty_basket"> </g> <g id="full_basket"> </g> <g id="trolley"> </g> <g id="wallet"> </g> <g id="truck"> </g> <g id="delivery"> </g> <g id="gift"> </g> <g id="hand__x26__shopping_bag"> </g> <g id="iMac_with_products"> </g> <g id="laptop_store"> </g> <g id="shopping_bag_with_mouse"> </g> <g id="mobile_store"> </g> <g id="store"> </g> <g id="laptop_with_money"> </g> </g> <g id="Strategy"> <g id="money_palnt"> </g> <g id="contract"> </g> <g id="trophy"> </g> <g id="graph_paper"> </g> <g id="competition"> </g> <g id="checklist"> </g> <g id="megaphone"> </g> <g id="paper_airplane"> </g> <g id="mission_1"> </g> <g id="graph_board"> </g> <g id="mission_2"> </g> <g id="strategy"> </g> <g id="target"> </g> <g id="partnership"> </g> <g id="chess"> </g> </g> </svg>
 |  | 
|  | <div style="max-width: 300px;">
 |  | 
|  | <h2>Open for code</h2>
 |  | 
|  | <p>Open-source documentation and tools in your programming language of choice.</p>
 |  | 
|  | </div>
 |  | 
|  | </div>
 |  | 
|  | </div>
 |  | 
|  | </section>
 |  | 
|  | <section id="getStarted">
 |  | 
|  | <h1></h1>
 |  | 
|  | <div class="row">
 |  | 
|  | <div class="card purple ">
 |  | 
|  | <div class="content ">
 |  | 
|  | <h1>Learn</h1>
 |  | 
|  | <p>Complete interactive tutorials, watch video demos, and talk to BigID experts.</p>
 |  | 
|  | </div>
 |  | 
|  | <a href="Learn">Start Learning</a></div>
 |  | 
|  | <div class="card red ">
 |  | 
|  | <div class="content ">
 |  | 
|  | <h1>Create</h1>
 |  | 
|  | <p>Download our sample applications or an SDK for NodeJS, Java, or Python to get started quickly.</p>
 |  | 
|  | </div>
 |  | 
|  | <a href="Create">Create Your App</a></div>
 |  | 
|  | <div class="card blue ">
 |  | 
|  | <div class="content ">
 |  | 
|  | <h1>Publish</h1>
 |  | 
|  | <p>Publish your application on the BigID marketplace for download.</p>
 |  | 
|  | </div>
 |  | 
|  | <a href="Publish">Publish Your App</a></div>
 |  | 
|  | </div>
 |  | 
|  | </section>
 |  | 
|  | </main>
 |  | 
|  | </html> |  | </html> | 
|  |  | {{#description2:Get started adding BigID's data discovery to your application with tutorials, samples, and | 
|  |  | documentation}} |