CSS animations

HTML
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Animations</title> <style> @-webkit-keyframes top { 0%, 10%, 20%, 30%, 40%, 60%, 70%, 90% { background: #01c103; } 50%, 80% { background: rgba(0, 0, 0, 0.1); } } @keyframes top { 0%, 10%, 20%, 30%, 40%, 60%, 70%, 90% { background: #01c103; } 50%, 80% { background: rgba(0, 0, 0, 0.1); } } @-webkit-keyframes topleft { 0%, 10%, 30%, 40%, 50%, 90% { background: #01c103; } 20%, 60%, 70%, 80% { background: rgba(0, 0, 0, 0.1); } } @keyframes topleft { 0%, 10%, 30%, 40%, 50%, 90% { background: #01c103; } 20%, 60%, 70%, 80% { background: rgba(0, 0, 0, 0.1); } } @-webkit-keyframes topright { 0%, 10%, 20%, 50%, 60%, 70%, 80%, 90% { background: #01c103; } 30%, 40% { background: rgba(0, 0, 0, 0.1); } } @keyframes topright { 0%, 10%, 20%, 50%, 60%, 70%, 80%, 90% { background: #01c103; } 30%, 40% { background: rgba(0, 0, 0, 0.1); } } @-webkit-keyframes center { 0%, 10%, 30%, 40%, 50%, 60%, 70% { background: #01c103; } 20%, 80%, 90% { background: rgba(0, 0, 0, 0.1); } } @keyframes center { 0%, 10%, 30%, 40%, 50%, 60%, 70% { background: #01c103; } 20%, 80%, 90% { background: rgba(0, 0, 0, 0.1); } } @-webkit-keyframes centerleft { 0%, 20%, 40%, 50%, 60%, 80% { background: rgba(0, 0, 0, 0.1); } 10%, 30%, 70%, 90% { background: #01c103; } } @keyframes centerleft { 0%, 20%, 40%, 50%, 60%, 80% { background: rgba(0, 0, 0, 0.1); } 10%, 30%, 70%, 90% { background: #01c103; } } @-webkit-keyframes centerright { 0%, 10%, 20%, 30%, 40%, 50%, 60%, 80%, 90% { background: #01c103; } 70% { background: rgba(0, 0, 0, 0.1); } } @keyframes centerright { 0%, 10%, 20%, 30%, 40%, 50%, 60%, 80%, 90% { background: #01c103; } 70% { background: rgba(0, 0, 0, 0.1); } } @-webkit-keyframes bottom { 0%, 10%, 30%, 40%, 60%, 70%, 90% { background: #01c103; } 20%, 50%, 80% { background: rgba(0, 0, 0, 0.1); } } @keyframes bottom { 0%, 10%, 30%, 40%, 60%, 70%, 90% { background: #01c103; } 20%, 50%, 80% { background: rgba(0, 0, 0, 0.1); } } @-webkit-keyframes bgs { 0% { opacity: 1; } 100% { opacity: 0; pointer-events: none; } } @keyframes bgs { 0% { opacity: 1; } 100% { opacity: 0; pointer-events: none; } } body, html { height: 100%; } body { font: 16px/1.5 "Courier New", Courier, monospace; background: #aaa; margin: 0; } @keyframes topl { to { transform: translateY(-50px) rotateX(90deg) rotateY(-220deg) } } @keyframes topr { to { transform: translateY(-50px) rotateX(90deg) rotateY(220deg) } } @keyframes topf { to { transform: translateZ(50px) rotateZ(90deg) rotateY(130deg) } } @keyframes topb { to { transform: translateZ(-50px) rotateZ(-90deg) rotateY(120deg) } } @keyframes rotate { to { transform: rotateX(-45deg) rotateY(385deg) } } body { margin: 0; overflow-x: hidden; } .boxwrp { perspective: 500px; margin: 0 auto; position: relative; font: 2.5em/1 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; color: #555; } .boxwrp span { position: absolute; transform: rotateY(-45deg); margin-left: -25%; } .box { position: relative; height: 100px; width: 100px; margin: 80px auto; transform-style: preserve-3d; transform: rotateX(-45deg) rotateY(25deg); text-align: center; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); user-select: none; animation: rotate 10s linear forwards infinite; animation-play-state: paused; pointer-events: none; } .fron { transform: translateZ(50px); } .back { transform: translateZ(-50px) } .left { transform: translateX(-50px) rotateY(-90deg); } .righ { transform: translateX(50px) rotateY(90deg) } .boto { transform: translateY(50px) rotateX(90deg); } .topl, .topr { transform: translateY(-50px) rotateX(90deg) } .topl { transform-origin: left center; animation: topl 2s forwards; animation-play-state: paused; z-index: 1; } .topr { transform-origin: right center; right: 0; animation: topr 2s forwards; animation-play-state: paused; z-index: 1; } .topf { transform-origin: 50px 0; right: 0; transform: translateZ(50px) rotateZ(90deg) rotateY(-90deg); animation: topf 2s 1s forwards; animation-play-state: paused; } .topb { transform: translateZ(-50px) rotateZ(-90deg) rotateY(-90deg); transform-origin: 0 0; animation: topb 2s 1s forwards; animation-play-state: paused; } .boto, .left, .righ, .back, .fron { overflow: hidden; width: 100%; height: 100%; position: absolute; background: #f7e66c; box-shadow: 0 0 1px 0 #55461f inset, 40px 2px 80px 2px rgba(90, 90, 90, .4) inset; box-sizing: border-box; } .topb, .topf, .topr, .topl { overflow: hidden; width: 50%; height: 100%; position: absolute; background: #fff080; box-shadow: 0 0 1px 0 #856d32 inset, 0 0 20px 2px rgba(90, 90, 90, .4) inset; outline: 1px solid transparent; box-sizing: border-box; } #banimation:checked~.boxwrp .box .topl { animation-play-state: running; } #banimation:checked~.boxwrp .box .topr { animation-play-state: running; } #banimation:checked~.boxwrp .box .topf { animation-play-state: running; } #banimation:checked~.boxwrp .box .topb { animation-play-state: running; } #banimation:checked~.boxwrp .box { animation-play-state: running; } /*this class for backface-visibility elements must to be not inside (but in top level) it coud be removed anyway only z-index is more important */ .backf { backface-visibility: hidden; z-index: 1; } @-webkit-keyframes scale { to { -webkit-transform: scale(1.02); transform: scale(1.02) } } @keyframes scale { to { -webkit-transform: scale(1.02); transform: scale(1.02) } } .speaker, .speaker::after, .speaker::before { border-radius: 50%; position: absolute; display: block } .speaker { height: 128px; width: 128px; top: 50%; left: 50%; margin-left: -64px; margin-top: -64px; -webkit-box-shadow: 0 0 0 4px #333; box-shadow: 0 0 0 4px #333; background: #333 } #spekeranim:checked~.speaker::after, #spekeranim:checked~.speaker::before { -webkit-animation: scale .2s steps(2, end) infinite; animation: scale .2s steps(2, end) infinite; } .speaker::after { background: #968989; color: #fff; text-shadow: 0 1px #000; line-height: 48px; left: 50%; margin-left: -24px; content: "Ω"; height: 48px; width: 48px; top: 40px; text-align: center; -webkit-box-shadow: 0 -20px 10px 2px #585151 inset, 0 0 20px 0 #000 inset, 0 0 0 2px #665c5c, 0 20px 40px 0 #d8c2c2; box-shadow: 0 -20px 10px 2px #585151 inset, 0 0 20px 0 #000 inset, 0 0 0 2px #665c5c, 0 20px 40px 0 #d8c2c2 } .speaker::before { content: ""; background: #363333; height: 128px; width: 128px; top: 0; -webkit-box-shadow: 0 2px 2px 0 #aaa inset, 0 -2px 2px 0 #aaa inset, 0 0 1px 8px #000 inset, 0 -1px 2px 9px #aaa inset, 0 1px 5px 9px #111 inset; box-shadow: 0 2px 2px 0 #aaa inset, 0 -2px 2px 0 #aaa inset, 0 0 1px 8px #000 inset, 0 -1px 2px 9px #aaa inset, 0 1px 5px 9px #111 inset } #metterinpput:checked~.wrapsvg svg #metter { -webkit-animation: met 2s alternate forwards; animation: met 2s alternate forwards; } #metter { position: absolute; top: 0; left: 0; } .wrapsvg { width: 100%; height: 100%; position: relative; background: #fff; /*same as #metterb fill with no transparency*/ } #metterb { fill: #fff; } @keyframes bcolor { to { border-top-color: #555 } } @keyframes fcolor { 50% { color: #fff } } .bands, .bands::after, .bands::before { margin: 0 auto; border-left: 6px solid transparent; border-right: 6px solid transparent; border-top: 6px solid #13ff26; border-bottom: 6px solid transparent; border-radius: 50% } .bands { position: relative; height: 84px; width: 84px; position: absolute; left: 50%; top: 50%; margin-left: -48px; margin-top: -48px; } .bands::after, .bands::before { content: ""; display: block } .bands::before { height: 58px; width: 58px; transform: translate(0, 7px); } .bands::after { transform: translate(0, -100px); height: 32px; width: 32px; } #cupinput:checked~.bands .cup { animation: fcolor 1s steps(1, end) infinite; } #cupinput:checked~.bands::before { animation: bcolor 1s .2s steps(7, end) forwards infinite } #cupinput:checked~.bands::after { animation: bcolor 1s .1s steps(5, end) forwards infinite } #cupinput:checked~.bands { animation: bcolor 1s .3s steps(10, end) forwards infinite } .cup, .cup::after { position: relative; margin: 0 auto } .cup { background: #555; border-radius: 4px; transform: translateY(-34px); color: #13ff26; text-align: center; font: 16px/1.5 Arial, sans-serif; width: 68px; height: 50px; font-weight: 700; text-transform: capitalize; word-spacing: 84px } .cup::before { content: ""; display: block; width: 30px; height: 25px; border: 6px solid #555; border-radius: 50%; position: absolute; transform: translate(40px, 4px); z-index: -1 } .cup::after { content: ""; width: 58px; height: 6px; background: #444; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; display: block; top: 2px } @keyframes rotatep { 0% { transform: rotate(45deg) translateX(10px) } 50% { transform: rotate(54deg) translateX(-10px) } to { transform: rotate(45deg) translateY(-150px) } } #pencilinput:checked~.pencil { animation: rotatep 1s alternate both infinite; } .pencil, .pencil::before { width: 14px; position: absolute } .pencil { margin-left: -7px; margin-top: -50px; background: linear-gradient(to right, #ffda45 0%, #ffea99 21%, #c09a00 36%, #c8a000 69%, #4a3d00 77%, #4d4210 100%); top: 50%; left: 50%; height: 100px; border-radius: 8px; transform: rotateZ(90deg); z-index: 2; } .pencil::before { content: ""; height: 25px; display: block; border-radius: 6px 6px 0 0; top: -10px; background: radial-gradient(circle at top, #f1b7b7 0, #856063 5px, #f36e77 12px, rgba(210, 98, 106, 0) 13px), repeating-radial-gradient(10px 2px, rgba(0, 0, 0, .2) 0 2px, rgba(121, 121, 121, 0) 2px 3px), linear-gradient(to right, #3b3b3b 0%, #aeaeae 21%, #fafafa 34%, #707070 55%, #2a2a2a 71%, #535353 92%, #5f5f5f 100%); left: 0 } .pencil::after { content: "-"; height: 18px; width: 14px; display: block; left: 0; font-size: 8px; line-height: 20px; position: absolute; top: 95px; border-radius: 14px; text-align: center; background: #567; color: transparent; text-shadow: 0 2px 0 #2c2c2c, 0 3px 0 #2a2a2a, 0 4px 0 #282828, 0 5px 0 #262626, 0 6px 0 #242424; background: radial-gradient(ellipse at top, #c19a6b 1px 2px, #7c6f6c 2px 3px, #c19a6b 3px 4px, #6b6862 4px 5px, rgba(0, 0, 0, 0) 6px); } @-webkit-keyframes met { to { -webkit-transform: matrix(1.4465, 0, 0, 1.4465, -135.26, -165.92); transform: matrix(1.4465, 0, 0, 1.4465, -135.26, -165.92); } } @keyframes met { 0% { -webkit-transform: matrix(1.4465, 0, 0, 1.4465, 27.031, -207.61); transform: matrix(1.4465, 0, 0, 1.4465, 27.031, -207.61); } 100% { -webkit-transform: matrix(1.4465, 0, 0, 1.4465, -135.26, -165.92); transform: matrix(1.4465, 0, 0, 1.4465, -135.26, -165.92); } } .gridelem { position: relative; width: 288px; height: 288px; display: block; margin: 0 auto; border: 1px solid #777; } .start { background: rgb(51 51 51); background: -o-radial-gradient(circle, rgb(30 30 30 / 1) 30%, rgb(0 0 0 / 1) 100%); background: radial-gradient(circle, rgb(30 30 30 / 1) 30%, rgb(0 0 0 / 1) 100%); height: 100%; width: 100%; display: block; position: fixed; overflow: hidden; top: 0; right: 0; -webkit-animation: bgs 0.1s 1s both; animation: bgs 0.1s 1s both; z-index: 99; } .digit, .digit:before { position: absolute; bottom: 0; display: block; } .digit { width: 200px; height: 200px; top: 0; left: 0; right: 0; margin: auto; pointer-events: none; -webkit-animation-duration: 1s; animation-duration: 1s; -webkit-animation-timing-function: steps(1); animation-timing-function: steps(1); } .digit div:nth-child(1), .digit div:nth-child(2) { display: block; height: 10%; width: 50%; position: relative; border-radius: 30%; margin: 0 auto; } .digit div:nth-child(1)::after, .digit div:nth-child(1)::before, .digit div:nth-child(2)::after, .digit div:nth-child(2)::before { height: 400%; width: 20%; position: absolute; content: ""; border-radius: 30%; margin-top: 15%; } .digit div:nth-child(1)::before, .digit div:nth-child(2)::before { left: 0; margin-left: -15%; } .digit div:nth-child(1)::after, .digit div:nth-child(2)::after { right: 0; margin-right: -15%; } .digit:before { content: ""; width: 50%; height: 10%; border-radius: 30%; margin: 0 0 0 25%; -webkit-animation-name: bottom; animation-name: bottom; -webkit-animation-duration: inherit; animation-duration: inherit; -webkit-animation-timing-function: inherit; animation-timing-function: inherit; } .digit div:nth-child(1) { -webkit-animation-name: top; animation-name: top; -webkit-animation-duration: inherit; animation-duration: inherit; -webkit-animation-timing-function: inherit; animation-timing-function: inherit; } .digit div:nth-child(2) { top: 35%; -webkit-animation-name: center; animation-name: center; -webkit-animation-duration: inherit; animation-duration: inherit; -webkit-animation-timing-function: inherit; animation-timing-function: inherit; } .digit div:nth-child(1)::before { -webkit-animation-name: topleft; animation-name: topleft; -webkit-animation-duration: inherit; animation-duration: inherit; -webkit-animation-timing-function: inherit; animation-timing-function: inherit; } .digit div:nth-child(1)::after { -webkit-animation-name: topright; animation-name: topright; -webkit-animation-duration: inherit; animation-duration: inherit; -webkit-animation-timing-function: inherit; animation-timing-function: inherit; } .digit div:nth-child(2)::before { -webkit-animation-name: centerleft; animation-name: centerleft; -webkit-animation-duration: inherit; animation-duration: inherit; -webkit-animation-timing-function: inherit; animation-timing-function: inherit; } .digit div:nth-child(2)::after { -webkit-animation-name: centerright; animation-name: centerright; -webkit-animation-duration: inherit; animation-duration: inherit; -webkit-animation-timing-function: inherit; animation-timing-function: inherit; } .duration { -webkit-animation-duration: 9s; animation-duration: 9s; } .text { color: transparent; } .digit div:nth-child(3) { text-align: center; position: relative; top: 90%; font-family: "Courier New", Courier, monospace; font-weight: 700; -webkit-animation: color 1s steps(2) forwards alternate; animation: color 1s steps(2) forwards alternate; } @-webkit-keyframes color { 1% { color: #02a102; } 50% { color: #333; } } @keyframes color { 1% { color: #02a102; } 50% { color: #333; } } .wrapper { max-width: 1080px; margin: 0 auto; position: relative; padding-bottom: 48px; display: block; } .grids { display: -ms-grid; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); position: relative; grid-gap: 48px 0; } .back-cubi { background: -o-repeating-linear-gradient(rgb(255 255 255 / 0.3) 0, rgb(255 255 255 / 0.3) 23px, rgb(105 155 197 / 0.3) 23px, rgb(105 155 197 / 0.3) 24px) 0% 0%, -o-repeating-linear-gradient(left, rgb(255 255 255 / 0.3) 0, rgb(255 255 255 / 0.3) 23px, rgb(105 155 197 / 0.3) 23px, rgb(105 155 197 / 0.3) 24px) 0% 0% #aaa; background: repeating-linear-gradient(rgb(255 255 255 / 0.3) 0, rgb(255 255 255 / 0.3) 23px, rgb(105 155 197 / 0.3) 23px, rgb(105 155 197 / 0.3) 24px) 0% 0%, repeating-linear-gradient(90deg, rgb(255 255 255 / 0.3) 0, rgb(255 255 255 / 0.3) 23px, rgb(105 155 197 / 0.3) 23px, rgb(105 155 197 / 0.3) 24px) 0% 0% #aaa; } @-webkit-keyframes lid { 0% { -webkit-transform: rotateX(180deg); transform: rotateX(180deg); } 100% { -webkit-transform: rotateX(0deg); transform: rotateX(0deg); } } @keyframes lid { 0% { -webkit-transform: rotateX(180deg); transform: rotateX(180deg); } 100% { -webkit-transform: rotateX(0deg); transform: rotateX(0deg); } } .uzu { height: 288px; width: 288px; margin: 0 auto; display: block; cursor: pointer; border: #699bc5 solid 1px; position: relative; background: -o-repeating-linear-gradient(bottom, #eee 0, #fff 13px, #333 14px, #333 14px); background: repeating-linear-gradient(0deg, #eee 0, #fff 13px, #333 14px, #333 14px); -webkit-box-sizing: border-box; box-sizing: border-box; } ul { list-style: none; margin: 0; padding: 0; } .uzu li { -webkit-perspective: 1000px; perspective: 1000px; } .uzu li a { background-image: url("data:image/jpeg;base64,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"); background-repeat: no-repeat; display: block; line-height: 14px; height: 14px; width: 100%; font-size: 10px; -webkit-box-shadow: 0 0 0 1px #333; box-shadow: 0 0 0 1px #333; position: relative; -webkit-backface-visibility: hidden; backface-visibility: hidden; -webkit-transform: rotateX(180deg); transform: rotateX(180deg); color: transparent; z-index: 1; -webkit-transition: color 0.2s; -o-transition: color 0.2s; transition: color 0.2s; background-size: cover; } #uzu li:nth-child(1) a { background-position: 0 0; -webkit-animation-delay: 0s; animation-delay: 0s; } #uzu li:nth-child(2) a { background-position: 0 -12px; -webkit-animation-delay: 0.1s; animation-delay: 0.1s; } #uzu li:nth-child(3) a { background-position: 0 -24px; -webkit-animation-delay: 0.2s; animation-delay: 0.2s; } #uzu li:nth-child(4) a { background-position: 0 -36px; -webkit-animation-delay: 0.3s; animation-delay: 0.3s; } #uzu li:nth-child(5) a { background-position: 0 -48px; -webkit-animation-delay: 0.4s; animation-delay: 0.4s; } #uzu li:nth-child(6) a { background-position: 0 -60px; -webkit-animation-delay: 0.5s; animation-delay: 0.5s; } #uzu li:nth-child(7) a { background-position: 0 -72px; -webkit-animation-delay: 0.6s; animation-delay: 0.6s; } #uzu li:nth-child(8) a { background-position: 0 -84px; -webkit-animation-delay: 0.7s; animation-delay: 0.7s; } #uzu li:nth-child(9) a { background-position: 0 -96px; -webkit-animation-delay: 0.8s; animation-delay: 0.8s; } #uzu li:nth-child(10) a { background-position: 0 -108px; -webkit-animation-delay: 0.9s; animation-delay: 0.9s; } #uzu li:nth-child(11) a { background-position: 0 -120px; -webkit-animation-delay: 1s; animation-delay: 1s; } #uzu li:nth-child(12) a { background-position: 0 -132px; -webkit-animation-delay: 1.1s; animation-delay: 1.1s; } #uzu li:nth-child(13) a { background-position: 0 -144px; -webkit-animation-delay: 1.2s; animation-delay: 1.2s; } #uzu li:nth-child(14) a { background-position: 0 -156px; -webkit-animation-delay: 1.3s; animation-delay: 1.3s; } #uzu li:nth-child(15) a { background-position: 0 -168px; -webkit-animation-delay: 1.4s; animation-delay: 1.4s; } #uzu li:nth-child(16) a { background-position: 0 -180px; -webkit-animation-delay: 1.5s; animation-delay: 1.5s; } #uzu li:nth-child(17) a { background-position: 0 -192px; -webkit-animation-delay: 1.6s; animation-delay: 1.6s; } #uzu li:nth-child(18) a { background-position: 0 -204px; -webkit-animation-delay: 1.7s; animation-delay: 1.7s; } #uzu li:nth-child(19) a { background-position: 0 -216px; -webkit-animation-delay: 1.8s; animation-delay: 1.8s; } #uzu li:nth-child(20) a { background-position: 0 -228px; -webkit-animation-delay: 1.9s; animation-delay: 1.9s; } .uzu li a:hover { background: #eee; color: #000; } .blinds:checked~ul li a { -webkit-animation: lid 3s both; animation: lid 3s both; } @-webkit-keyframes colors { 0% { background: #eee; } 50% { background: #ccc; } } @keyframes colors { 0% { background: #eee; } 50% { background: #ccc; } } @-webkit-keyframes rote { 0% { -webkit-transform: rotateZ(10deg); transform: rotateZ(10deg); } 50% { -webkit-transform: rotateZ(-10deg); transform: rotateZ(-10deg); } } @keyframes rote { 0% { -webkit-transform: rotateZ(10deg); transform: rotateZ(10deg); } 50% { -webkit-transform: rotateZ(-10deg); transform: rotateZ(-10deg); } } #drunktext { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; gap: 12px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; } #drunktext span { text-align: center; min-width: 48px; min-height: 48px; line-height: 48px; background: #eee; border-radius: 50%; margin: 24px 0; -webkit-box-shadow: 0 0 0 1px #699bc5 inset; box-shadow: 0 0 0 1px #699bc5 inset; } .drunked span { -webkit-animation: rote 1s ease-in-out infinite alternate both, colors 4s ease-in-out infinite alternate both; animation: rote 1s ease-in-out infinite alternate both, colors 4s ease-in-out infinite alternate both; } .drunked span:nth-child(1) { -webkit-animation-delay: 0.1s; animation-delay: 0.1s; } .drunked span:nth-child(2) { -webkit-animation-delay: 0.2s; animation-delay: 0.2s; } .drunked span:nth-child(3) { -webkit-animation-delay: 0.3s; animation-delay: 0.3s; } .drunked span:nth-child(4) { -webkit-animation-delay: 0.4s; animation-delay: 0.4s; } .drunked span:nth-child(5) { -webkit-animation-delay: 0.5s; animation-delay: 0.5s; } .drunked span:nth-child(6) { -webkit-animation-delay: 0.6s; animation-delay: 0.6s; } .drunked span:nth-child(7) { -webkit-animation-delay: 0.7s; animation-delay: 0.7s; } .tetris { display: block; position: relative; height: 288px; width: 288px; margin: 0 auto; overflow: hidden; background-color: rgb(0 0 0 / 0.5); -webkit-box-shadow: 0 0 0 1px #000 inset; box-shadow: 0 0 0 1px #000 inset; } .tetris span { position: absolute; top: -24px; left: 96px; height: 24px; width: 96px; -webkit-box-shadow: 1px -1px 0 0 #000; box-shadow: 1px -1px 0 0 #000; background: -o-repeating-linear-gradient(bottom, rgb(1, 1, 1) 0px 1px, rgba(0, 0, 0, 0) 1px 24px), -o-repeating-linear-gradient(left, rgb(1, 1, 1) 0px 1px, rgba(0, 0, 0, 0) 1px 24px) #eee; background: repeating-linear-gradient(0deg, rgb(1, 1, 1) 0px 1px, rgba(0, 0, 0, 0) 1px 24px), repeating-linear-gradient(90deg, rgb(1, 1, 1) 0px 1px, rgba(0, 0, 0, 0) 1px 24px) #eee; } .tetris .tetris-block { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: block; color: transparent; font-size: 1.5em; text-align: center; letter-spacing: 0.1em; line-height: 3; } .tetris .tetris-block::before { content: ""; height: 24px; width: 288px; position: absolute; bottom: 0; left: 0; z-index: 1; } .tetris span:nth-of-type(3) { width: 72px; } .tetris span:nth-of-type(4) { width: 48px; } .tetris span:nth-of-type(3):before { content: ""; width: 24px; height: 24px; position: absolute; top: -24px; right: 24px; background: inherit; -webkit-box-shadow: inherit; box-shadow: inherit; } .tetris span:nth-of-type(4):before { content: ""; width: 48px; height: 24px; position: absolute; top: -24px; left: 24px; background: inherit; -webkit-box-shadow: inherit; box-shadow: inherit; } #tetris:checked~.tetris .tetris-block span:nth-of-type(1) { -webkit-animation: movedown 1s steps(11, end) forwards; animation: movedown 1s steps(11, end) forwards; } #tetris:checked~.tetris .tetris-block span:nth-of-type(2) { -webkit-animation: movedown1 1s 1s steps(11, end) forwards; animation: movedown1 1s 1s steps(11, end) forwards; } #tetris:checked~.tetris .tetris-block span:nth-of-type(3) { -webkit-animation: movedown2 1s 2s steps(11, end) forwards; animation: movedown2 1s 2s steps(11, end) forwards; } #tetris:checked~.tetris .tetris-block span:nth-of-type(4) { -webkit-animation: movedown3 1s 3s steps(11, end) forwards; animation: movedown3 1s 3s steps(11, end) forwards; } #tetris:checked~.tetris .tetris-block::before { -webkit-animation: colortetris 0.4s 4s steps(4) infinite alternate; animation: colortetris 0.4s 4s steps(4) infinite alternate; } #tetris:checked~.tetris .tetris-block { -webkit-transform: translateY(24px); -ms-transform: translateY(24px); transform: translateY(24px); color: #333; -webkit-transition: color 1s 5s, -webkit-transform 0.5s 4.5s; transition: color 1s 5s, -webkit-transform 0.5s 4.5s; -o-transition: transform 0.5s 4.5s, color 1s 5s; transition: transform 0.5s 4.5s, color 1s 5s; transition: transform 0.5s 4.5s, color 1s 5s, -webkit-transform 0.5s 4.5s; } @-webkit-keyframes movedown { 0% { -webkit-transform: translate(0, 24px); transform: translate(0, 24px); } 100% { -webkit-transform: translate(96px, 288px); transform: translate(96px, 288px); } } @keyframes movedown { 0% { -webkit-transform: translate(0, 24px); transform: translate(0, 24px); } 100% { -webkit-transform: translate(96px, 288px); transform: translate(96px, 288px); } } @-webkit-keyframes movedown1 { 0% { -webkit-transform: translate(0, 24px); transform: translate(0, 24px); } 100% { -webkit-transform: translate(-96px, 288px); transform: translate(-96px, 288px); } } @keyframes movedown1 { 0% { -webkit-transform: translate(0, 24px); transform: translate(0, 24px); } 100% { -webkit-transform: translate(-96px, 288px); transform: translate(-96px, 288px); } } @-webkit-keyframes movedown2 { 0% { -webkit-transform: translate(0, 24px) rotateZ(90deg); transform: translate(0, 24px) rotateZ(90deg); } 100% { -webkit-transform: translate(24px, 288px) rotateZ(360deg); transform: translate(24px, 288px) rotateZ(360deg); } } @keyframes movedown2 { 0% { -webkit-transform: translate(0, 24px) rotateZ(90deg); transform: translate(0, 24px) rotateZ(90deg); } 100% { -webkit-transform: translate(24px, 288px) rotateZ(360deg); transform: translate(24px, 288px) rotateZ(360deg); } } @-webkit-keyframes movedown3 { 0% { -webkit-transform: translate(0, 24px) rotateZ(-270deg); transform: translate(0, 24px) rotateZ(-270deg); } 100% { -webkit-transform: translate(-11px, 276px) rotateZ(270deg); transform: translate(-11px, 276px) rotateZ(270deg); } } @keyframes movedown3 { 0% { -webkit-transform: translate(0, 24px) rotateZ(-270deg); transform: translate(0, 24px) rotateZ(-270deg); } 100% { -webkit-transform: translate(-11px, 276px) rotateZ(270deg); transform: translate(-11px, 276px) rotateZ(270deg); } } @-webkit-keyframes colortetris { 0% { background: #699bc5; } 50% { background: #fff; } } @keyframes colortetris { 0% { background: #699bc5; } 50% { background: #fff; } } #main { -webkit-perspective: 60px; perspective: 60px; width: 288px; height: 288px; overflow: hidden; background: #705591; margin: 0 auto; position: relative; } #fro { height: 48%; width: 100%; display: block; position: absolute; z-index: 1; background: repeating-linear-gradient(to top, rgb(235 233 289 / 053) 0%, rgb(193 191 234 / 0.199) 20%, rgb(235 233 249 / 053) 100%); text-align: center; -webkit-transition: color 1s 10s; -o-transition: color 1s 10s; transition: color 1s 10s; color: transparent; } #box { overflow: hidden; width: 40px; display: -ms-grid; display: grid; padding: 0; margin: 0 auto; position: relative; -webkit-transform: rotateX(80deg); transform: rotateX(80deg); background: #333; grid-template-columns: repeat(1, 1px 1px 1px); -webkit-align-content: center; -ms-flex-line-pack: center; align-content: center; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; height: 100%; } .center { width: 1px; height: 14px; } #cars:checked~#main #box .center:nth-of-type(2n+3) { -webkit-animation: fir 0.2s infinite; animation: fir 0.2s infinite; } #cars:checked~#main #box .center:nth-of-type(2n+6) { -webkit-animation: fir 0.2s infinite alternate; animation: fir 0.2s infinite alternate; } #cars:checked~#main #fro { -webkit-animation: bg 10s linear infinite forwards, fir 10s linear infinite alternate; animation: bg 10s linear infinite forwards, fir 10s linear infinite alternate; color: #705591; } @-webkit-keyframes bg { 0% { background-position: -300px 100px; } 100% { background-position: 300px -100px; } } @keyframes bg { 0% { background-position: -300px 100px; } 100% { background-position: 300px -100px; } } @-webkit-keyframes fir { 0% { background-color: #14142c; } 50% { background-color: #fffce1; } 100% { background-color: #9a9db8; } } @keyframes fir { 0% { background-color: #14142c; } 50% { background-color: #fffce1; } 100% { background-color: #9a9db8; } } @-webkit-keyframes backgrnd { 0% { background-color: #fff; } 100% { background-color: #aaa; } } @keyframes backgrnd { 0% { background-color: #fff; } 100% { background-color: #aaa; } } .item1, .item10, .item11, .item12, .item2, .item20, .item21, .item22, .item23, .item27, .item28, .item29, .item3, .item32, .item33, .item37, .item38, .item39, .item4, .item40, .item44, .item45, .item46, .item47, .item48, .item49, .item5, .item52, .item53, .item54, .item55, .item56, .item57, .item6, .item61, .item64, .item65, .item66, .item67, .item68, .item69, .item70, .item72, .item73, .item74, .item75, .item76, .item77, .item78, .item79, .item8, .item80, .item81, .item82, .item83, .item84, .item85, .item86, .item87, .item9 { background: 0 0 !important; } .item101, .item113, .item125, .item126, .item127 { background: #c1272d !important; } .item104, .item105, .item106, .item117, .item129 { background: #006a44 !important; } .item108, .item110, .item120, .item122, .item132, .item133, .item134 { background: #fdb913 !important; } .item7 { grid-area: 1 / 6 / 3 / 8; } .item13 { grid-area: 2 / 2 / 4 / 4; } .item14 { grid-area: 2 / 4 / 4 / 6; } .item15 { grid-area: 4 / 1 / 6 / 3; } .item16 { grid-area: 4 / 3 / 6 / 5; } .item17 { grid-area: 3 / 6 / 5 / 8; } .item18 { grid-area: 4 / 8 / 6 / 10; } .item35 { grid-area: 5 / 6 / 7 / 8; } .item42 { grid-area: 6 / 4 / 8 / 6; } .item63 { grid-area: 8 / 6 / 10 / 8; } .item43 { grid-area: 6 / 8 / 8 / 10; } .grid-container { width: 288px; height: 288px; display: -ms-grid; display: grid; gap: 2px; -ms-grid-columns: 1fr 2px 1fr 2px 1fr 2px 1fr 2px 1fr 2px 1fr 2px 1fr 2px 1fr 2px 1fr 2px 1fr 2px 1fr 2px 1fr; grid-template-columns: repeat(12, 1fr); margin: auto; position: relative; } .grid-container>div { text-align: center; padding: 6px; background: #eee; } .gridltu:checked~div { -webkit-animation-name: backgrnd; animation-name: backgrnd; -webkit-animation-timing-function: linear; animation-timing-function: linear; -webkit-animation-duration: 0.2s; animation-duration: 0.2s; -webkit-animation-iteration-count: infinite; animation-iteration-count: infinite; -webkit-animation-fill-mode: both; animation-fill-mode: both; } .item1 { -webkit-animation-delay: 0.87824s; animation-delay: 0.87824s; } .item2 { -webkit-animation-delay: 0.75531s; animation-delay: 0.75531s; } .item3 { -webkit-animation-delay: 1.5979s; animation-delay: 1.5979s; } .item4 { -webkit-animation-delay: 1.31908s; animation-delay: 1.31908s; } .item5 { -webkit-animation-delay: 0.22719s; animation-delay: 0.22719s; } .item6 { -webkit-animation-delay: 0.7209s; animation-delay: 0.7209s; } .item7 { -webkit-animation-delay: 0.97757s; animation-delay: 0.97757s; } .item8 { -webkit-animation-delay: 0.4763s; animation-delay: 0.4763s; } .item9 { -webkit-animation-delay: 1.80788s; animation-delay: 1.80788s; } .item10 { -webkit-animation-delay: 0.25576s; animation-delay: 0.25576s; } .item11 { -webkit-animation-delay: 0.24704s; animation-delay: 0.24704s; } .item12 { -webkit-animation-delay: 0.08126s; animation-delay: 0.08126s; } .item13 { -webkit-animation-delay: 1.69465s; animation-delay: 1.69465s; } .item14 { -webkit-animation-delay: 0.30881s; animation-delay: 0.30881s; } .item15 { -webkit-animation-delay: 0.9629s; animation-delay: 0.9629s; } .item16 { -webkit-animation-delay: 1.44257s; animation-delay: 1.44257s; } .item17 { -webkit-animation-delay: 1.04025s; animation-delay: 1.04025s; } .item18 { -webkit-animation-delay: 1.94551s; animation-delay: 1.94551s; } .item19 { -webkit-animation-delay: 1.13061s; animation-delay: 1.13061s; } .item20 { -webkit-animation-delay: 0.98286s; animation-delay: 0.98286s; } .item21 { -webkit-animation-delay: 0.76797s; animation-delay: 0.76797s; } .item22 { -webkit-animation-delay: 0.14232s; animation-delay: 0.14232s; } .item23 { -webkit-animation-delay: 0.20886s; animation-delay: 0.20886s; } .item24 { -webkit-animation-delay: 1.13692s; animation-delay: 1.13692s; } .item25 { -webkit-animation-delay: 0.95285s; animation-delay: 0.95285s; } .item26 { -webkit-animation-delay: 0.70947s; animation-delay: 0.70947s; } .item27 { -webkit-animation-delay: 1.85978s; animation-delay: 1.85978s; } .item28 { -webkit-animation-delay: 1.63992s; animation-delay: 1.63992s; } .item29 { -webkit-animation-delay: 0.12338s; animation-delay: 0.12338s; } .item30 { -webkit-animation-delay: 1.8663s; animation-delay: 1.8663s; } .item31 { -webkit-animation-delay: 0.46966s; animation-delay: 0.46966s; } .item32 { -webkit-animation-delay: 0.18117s; animation-delay: 0.18117s; } .item33 { -webkit-animation-delay: 0.51579s; animation-delay: 0.51579s; } .item34 { -webkit-animation-delay: 1.65212s; animation-delay: 1.65212s; } .item35 { -webkit-animation-delay: 1.10714s; animation-delay: 1.10714s; } .item36 { -webkit-animation-delay: 0.33938s; animation-delay: 0.33938s; } .item37 { -webkit-animation-delay: 0.65796s; animation-delay: 0.65796s; } .item38 { -webkit-animation-delay: 0.6947s; animation-delay: 0.6947s; } .item39 { -webkit-animation-delay: 0.62089s; animation-delay: 0.62089s; } .item40 { -webkit-animation-delay: 1.7828s; animation-delay: 1.7828s; } .item41 { -webkit-animation-delay: 1.07843s; animation-delay: 1.07843s; } .item42 { -webkit-animation-delay: 1.37329s; animation-delay: 1.37329s; } .item43 { -webkit-animation-delay: 0.82313s; animation-delay: 0.82313s; } .item44 { -webkit-animation-delay: 1.40656s; animation-delay: 1.40656s; } .item45 { -webkit-animation-delay: 1.23803s; animation-delay: 1.23803s; } .item46 { -webkit-animation-delay: 1.71629s; animation-delay: 1.71629s; } .item47 { -webkit-animation-delay: 1.73738s; animation-delay: 1.73738s; } .item48 { -webkit-animation-delay: 0.56049s; animation-delay: 0.56049s; } .item49 { -webkit-animation-delay: 1.60641s; animation-delay: 1.60641s; } .item50 { -webkit-animation-delay: 0.04854s; animation-delay: 0.04854s; } .item51 { -webkit-animation-delay: 1.91673s; animation-delay: 1.91673s; } .item52 { -webkit-animation-delay: 0.01372s; animation-delay: 0.01372s; } .item53 { -webkit-animation-delay: 0.70596s; animation-delay: 0.70596s; } .item54 { -webkit-animation-delay: 1.75374s; animation-delay: 1.75374s; } .item55 { -webkit-animation-delay: 1.37276s; animation-delay: 1.37276s; } .item56 { -webkit-animation-delay: 1.40142s; animation-delay: 1.40142s; } .item57 { -webkit-animation-delay: 1.73849s; animation-delay: 1.73849s; } .item58 { -webkit-animation-delay: 0.60495s; animation-delay: 0.60495s; } .item59 { -webkit-animation-delay: 0.57671s; animation-delay: 0.57671s; } .item60 { -webkit-animation-delay: 1.04777s; animation-delay: 1.04777s; } .item61 { -webkit-animation-delay: 1.15014s; animation-delay: 1.15014s; } .item62 { -webkit-animation-delay: 0.19938s; animation-delay: 0.19938s; } .item63 { -webkit-animation-delay: 1.73777s; animation-delay: 1.73777s; } .item64 { -webkit-animation-delay: 0.49918s; animation-delay: 0.49918s; } .item65 { -webkit-animation-delay: 0.25605s; animation-delay: 0.25605s; } .item66 { -webkit-animation-delay: 0.74035s; animation-delay: 0.74035s; } .item67 { -webkit-animation-delay: 0.06796s; animation-delay: 0.06796s; } .item68 { -webkit-animation-delay: 0.5305s; animation-delay: 0.5305s; } .item69 { -webkit-animation-delay: 1.76944s; animation-delay: 1.76944s; } .item70 { -webkit-animation-delay: 0.85123s; animation-delay: 0.85123s; } .item71 { -webkit-animation-delay: 1.049s; animation-delay: 1.049s; } .item72 { -webkit-animation-delay: 0.31909s; animation-delay: 0.31909s; } .item73 { -webkit-animation-delay: 1.90263s; animation-delay: 1.90263s; } .item74 { -webkit-animation-delay: 0.62925s; animation-delay: 0.62925s; } .item75 { -webkit-animation-delay: 1.22377s; animation-delay: 1.22377s; } .svg { margin: 0 auto; height: 288px; width: 288px; position: relative; } #water:checked~svg #waterdrop0 { -webkit-animation: moves 1s ease-in infinite both; animation: moves 1s ease-in infinite both; display: block; } @-webkit-keyframes moves { 0% { -webkit-transform: translateY(-100%); transform: translateY(-100%); opacity: 1; } 80% { -webkit-transform: translateY(100%); transform: translateY(100%); opacity: 1; } 100% { -webkit-transform: translateY(100%); transform: translateY(100%); opacity: 0; } } @keyframes moves { 0% { -webkit-transform: translateY(-100%); transform: translateY(-100%); opacity: 1; } 80% { -webkit-transform: translateY(100%); transform: translateY(100%); opacity: 1; } 100% { -webkit-transform: translateY(100%); transform: translateY(100%); opacity: 0; } } .classGridx { position: relative; margin: 0 auto; display: -ms-grid; display: grid; width: 288px; height: 288px; justify-items: center; -webkit-align-content: space-evenly; -ms-flex-line-pack: space-evenly; align-content: space-evenly; grid-gap: 2px; -ms-grid-columns: minmax(24px, 1fr) 2px minmax(24px, 1fr) 2px minmax(24px, 1fr) 2px minmax(24px, 1fr); grid-template-columns: repeat(4, minmax(24px, 1fr)); overflow: hidden; -webkit-perspective: 100px; perspective: 100px; } .classGridx>div { text-align: center; background: #333; cursor: pointer; overflow: hidden; height: 48px; width: 48px; } #longanim:checked~.classGridx div { -webkit-animation: infid 20s; animation: infid 20s; } @-webkit-keyframes infid { 0% { -webkit-transform: translate3d(10px, 20px, 10px) rotate(304deg); transform: translate3d(10px, 20px, 10px) rotate(304deg); } 1% { -webkit-transform: translate3d(2px, 0px, 10px) rotate(341deg); transform: translate3d(2px, 0px, 10px) rotate(341deg); } 2% { -webkit-transform: translate3d(4px, 1px, 20px) rotate(142deg); transform: translate3d(4px, 1px, 20px) rotate(142deg); } 3% { -webkit-transform: translate3d(5px, 15px, 15px) rotate(22deg); transform: translate3d(5px, 15px, 15px) rotate(22deg); } 4% { -webkit-transform: translate3d(23px, 17px, 10px) rotate(294deg); transform: translate3d(23px, 17px, 10px) rotate(294deg); } 5% { -webkit-transform: translate3d(22px, 9px, 14px) rotate(360deg); transform: translate3d(22px, 9px, 14px) rotate(360deg); } 6% { -webkit-transform: translate3d(21px, 11px, 11px) rotate(162deg); transform: translate3d(21px, 11px, 11px) rotate(162deg); } 7% { -webkit-transform: translate3d(2px, 16px, 0px) rotate(77deg); transform: translate3d(2px, 16px, 0px) rotate(77deg); } 8% { -webkit-transform: translate3d(1px, 6px, 2px) rotate(326deg); transform: translate3d(1px, 6px, 2px) rotate(326deg); } 9% { -webkit-transform: translate3d(20px, 10px, 11px) rotate(177deg); transform: translate3d(20px, 10px, 11px) rotate(177deg); } 10% { -webkit-transform: translate3d(17px, 0px, 17px) rotate(270deg); transform: translate3d(17px, 0px, 17px) rotate(270deg); } 11% { -webkit-transform: translate3d(16px, 7px, 21px) rotate(172deg); transform: translate3d(16px, 7px, 21px) rotate(172deg); } 12% { -webkit-transform: translate3d(3px, 1px, 2px) rotate(232deg); transform: translate3d(3px, 1px, 2px) rotate(232deg); } 13% { -webkit-transform: translate3d(14px, 22px, 12px) rotate(220deg); transform: translate3d(14px, 22px, 12px) rotate(220deg); } 14% { -webkit-transform: translate3d(5px, 15px, 6px) rotate(84deg); transform: translate3d(5px, 15px, 6px) rotate(84deg); } 15% { -webkit-transform: translate3d(23px, 8px, 11px) rotate(269deg); transform: translate3d(23px, 8px, 11px) rotate(269deg); } 16% { -webkit-transform: translate3d(9px, 21px, 15px) rotate(347deg); transform: translate3d(9px, 21px, 15px) rotate(347deg); } 17% { -webkit-transform: translate3d(23px, 2px, 1px) rotate(37deg); transform: translate3d(23px, 2px, 1px) rotate(37deg); } 18% { -webkit-transform: translate3d(13px, 7px, 2px) rotate(315deg); transform: translate3d(13px, 7px, 2px) rotate(315deg); } 19% { -webkit-transform: translate3d(24px, 12px, 17px) rotate(187deg); transform: translate3d(24px, 12px, 17px) rotate(187deg); } 20% { -webkit-transform: translate3d(14px, 6px, 6px) rotate(14deg); transform: translate3d(14px, 6px, 6px) rotate(14deg); } 21% { -webkit-transform: translate3d(23px, 20px, 3px) rotate(190deg); transform: translate3d(23px, 20px, 3px) rotate(190deg); } 22% { -webkit-transform: translate3d(4px, 9px, 14px) rotate(68deg); transform: translate3d(4px, 9px, 14px) rotate(68deg); } 23% { -webkit-transform: translate3d(11px, 19px, 17px) rotate(305deg); transform: translate3d(11px, 19px, 17px) rotate(305deg); } 24% { -webkit-transform: translate3d(10px, 20px, 1px) rotate(351deg); transform: translate3d(10px, 20px, 1px) rotate(351deg); } 25% { -webkit-transform: translate3d(5px, 2px, 3px) rotate(212deg); transform: translate3d(5px, 2px, 3px) rotate(212deg); } 26% { -webkit-transform: translate3d(22px, 10px, 5px) rotate(340deg); transform: translate3d(22px, 10px, 5px) rotate(340deg); } 27% { -webkit-transform: translate3d(18px, 1px, 11px) rotate(158deg); transform: translate3d(18px, 1px, 11px) rotate(158deg); } 28% { -webkit-transform: translate3d(15px, 19px, 10px) rotate(44deg); transform: translate3d(15px, 19px, 10px) rotate(44deg); } 29% { -webkit-transform: translate3d(3px, 7px, 16px) rotate(147deg); transform: translate3d(3px, 7px, 16px) rotate(147deg); } 30% { -webkit-transform: translate3d(7px, 24px, 18px) rotate(171deg); transform: translate3d(7px, 24px, 18px) rotate(171deg); } 31% { -webkit-transform: translate3d(12px, 15px, 14px) rotate(228deg); transform: translate3d(12px, 15px, 14px) rotate(228deg); } 32% { -webkit-transform: translate3d(18px, 19px, 8px) rotate(139deg); transform: translate3d(18px, 19px, 8px) rotate(139deg); } 33% { -webkit-transform: translate3d(12px, 8px, 14px) rotate(319deg); transform: translate3d(12px, 8px, 14px) rotate(319deg); } 34% { -webkit-transform: translate3d(1px, 19px, 21px) rotate(188deg); transform: translate3d(1px, 19px, 21px) rotate(188deg); } 35% { -webkit-transform: translate3d(14px, 17px, 2px) rotate(354deg); transform: translate3d(14px, 17px, 2px) rotate(354deg); } 36% { -webkit-transform: translate3d(16px, 11px, 17px) rotate(66deg); transform: translate3d(16px, 11px, 17px) rotate(66deg); } 37% { -webkit-transform: translate3d(1px, 20px, 15px) rotate(259deg); transform: translate3d(1px, 20px, 15px) rotate(259deg); } 38% { -webkit-transform: translate3d(15px, 21px, 16px) rotate(310deg); transform: translate3d(15px, 21px, 16px) rotate(310deg); } 39% { -webkit-transform: translate3d(17px, 15px, 8px) rotate(278deg); transform: translate3d(17px, 15px, 8px) rotate(278deg); } 40% { -webkit-transform: translate3d(7px, 6px, 7px) rotate(305deg); transform: translate3d(7px, 6px, 7px) rotate(305deg); } 41% { -webkit-transform: translate3d(7px, 5px, 19px) rotate(269deg); transform: translate3d(7px, 5px, 19px) rotate(269deg); } 42% { -webkit-transform: translate3d(19px, 20px, 20px) rotate(3deg); transform: translate3d(19px, 20px, 20px) rotate(3deg); } 43% { -webkit-transform: translate3d(3px, 16px, 16px) rotate(174deg); transform: translate3d(3px, 16px, 16px) rotate(174deg); } 44% { -webkit-transform: translate3d(20px, 3px, 6px) rotate(293deg); transform: translate3d(20px, 3px, 6px) rotate(293deg); } 45% { -webkit-transform: translate3d(8px, 8px, 21px) rotate(11deg); transform: translate3d(8px, 8px, 21px) rotate(11deg); } 46% { -webkit-transform: translate3d(23px, 11px, 16px) rotate(47deg); transform: translate3d(23px, 11px, 16px) rotate(47deg); } 47% { -webkit-transform: translate3d(21px, 4px, 0px) rotate(43deg); transform: translate3d(21px, 4px, 0px) rotate(43deg); } 48% { -webkit-transform: translate3d(4px, 11px, 23px) rotate(202deg); transform: translate3d(4px, 11px, 23px) rotate(202deg); } 49% { -webkit-transform: translate3d(2px, 6px, 17px) rotate(133deg); transform: translate3d(2px, 6px, 17px) rotate(133deg); } 50% { -webkit-transform: translate3d(19px, 8px, 20px) rotate(235deg); transform: translate3d(19px, 8px, 20px) rotate(235deg); } 51% { -webkit-transform: translate3d(18px, 2px, 18px) rotate(114deg); transform: translate3d(18px, 2px, 18px) rotate(114deg); } 52% { -webkit-transform: translate3d(24px, 8px, 4px) rotate(200deg); transform: translate3d(24px, 8px, 4px) rotate(200deg); } 53% { -webkit-transform: translate3d(24px, 5px, 20px) rotate(75deg); transform: translate3d(24px, 5px, 20px) rotate(75deg); } 54% { -webkit-transform: translate3d(19px, 0px, 11px) rotate(264deg); transform: translate3d(19px, 0px, 11px) rotate(264deg); } 55% { -webkit-transform: translate3d(19px, 14px, 23px) rotate(89deg); transform: translate3d(19px, 14px, 23px) rotate(89deg); } 56% { -webkit-transform: translate3d(13px, 3px, 24px) rotate(227deg); transform: translate3d(13px, 3px, 24px) rotate(227deg); } 57% { -webkit-transform: translate3d(9px, 24px, 18px) rotate(127deg); transform: translate3d(9px, 24px, 18px) rotate(127deg); } 58% { -webkit-transform: translate3d(15px, 22px, 12px) rotate(235deg); transform: translate3d(15px, 22px, 12px) rotate(235deg); } 59% { -webkit-transform: translate3d(14px, 9px, 13px) rotate(44deg); transform: translate3d(14px, 9px, 13px) rotate(44deg); } 60% { -webkit-transform: translate3d(14px, 5px, 10px) rotate(231deg); transform: translate3d(14px, 5px, 10px) rotate(231deg); } 61% { -webkit-transform: translate3d(19px, 2px, 1px) rotate(64deg); transform: translate3d(19px, 2px, 1px) rotate(64deg); } 62% { -webkit-transform: translate3d(12px, 19px, 9px) rotate(8deg); transform: translate3d(12px, 19px, 9px) rotate(8deg); } 63% { -webkit-transform: translate3d(3px, 14px, 20px) rotate(53deg); transform: translate3d(3px, 14px, 20px) rotate(53deg); } 64% { -webkit-transform: translate3d(8px, 2px, 9px) rotate(291deg); transform: translate3d(8px, 2px, 9px) rotate(291deg); } 65% { -webkit-transform: translate3d(18px, 20px, 16px) rotate(187deg); transform: translate3d(18px, 20px, 16px) rotate(187deg); } 66% { -webkit-transform: translate3d(11px, 1px, 22px) rotate(31deg); transform: translate3d(11px, 1px, 22px) rotate(31deg); } 67% { -webkit-transform: translate3d(20px, 10px, 10px) rotate(137deg); transform: translate3d(20px, 10px, 10px) rotate(137deg); } 68% { -webkit-transform: translate3d(22px, 1px, 23px) rotate(241deg); transform: translate3d(22px, 1px, 23px) rotate(241deg); } 69% { -webkit-transform: translate3d(21px, 19px, 18px) rotate(284deg); transform: translate3d(21px, 19px, 18px) rotate(284deg); } 70% { -webkit-transform: translate3d(15px, 7px, 14px) rotate(160deg); transform: translate3d(15px, 7px, 14px) rotate(160deg); } 71% { -webkit-transform: translate3d(10px, 9px, 9px) rotate(271deg); transform: translate3d(10px, 9px, 9px) rotate(271deg); } 72% { -webkit-transform: translate3d(0px, 0px, 10px) rotate(235deg); transform: translate3d(0px, 0px, 10px) rotate(235deg); } 73% { -webkit-transform: translate3d(19px, 20px, 7px) rotate(204deg); transform: translate3d(19px, 20px, 7px) rotate(204deg); } 74% { -webkit-transform: translate3d(3px, 4px, 4px) rotate(154deg); transform: translate3d(3px, 4px, 4px) rotate(154deg); } 75% { -webkit-transform: translate3d(10px, 17px, 0px) rotate(296deg); transform: translate3d(10px, 17px, 0px) rotate(296deg); } 76% { -webkit-transform: translate3d(12px, 10px, 16px) rotate(326deg); transform: translate3d(12px, 10px, 16px) rotate(326deg); } 77% { -webkit-transform: translate3d(13px, 10px, 24px) rotate(277deg); transform: translate3d(13px, 10px, 24px) rotate(277deg); } 78% { -webkit-transform: translate3d(8px, 7px, 18px) rotate(275deg); transform: translate3d(8px, 7px, 18px) rotate(275deg); } 79% { -webkit-transform: translate3d(0px, 5px, 5px) rotate(34deg); transform: translate3d(0px, 5px, 5px) rotate(34deg); } 80% { -webkit-transform: translate3d(20px, 14px, 7px) rotate(0deg); transform: translate3d(20px, 14px, 7px) rotate(0deg); } 81% { -webkit-transform: translate3d(11px, 23px, 3px) rotate(121deg); transform: translate3d(11px, 23px, 3px) rotate(121deg); } 82% { -webkit-transform: translate3d(14px, 3px, 0px) rotate(141deg); transform: translate3d(14px, 3px, 0px) rotate(141deg); } 83% { -webkit-transform: translate3d(18px, 15px, 8px) rotate(97deg); transform: translate3d(18px, 15px, 8px) rotate(97deg); } 84% { -webkit-transform: translate3d(16px, 24px, 20px) rotate(242deg); transform: translate3d(16px, 24px, 20px) rotate(242deg); } 85% { -webkit-transform: translate3d(5px, 20px, 17px) rotate(283deg); transform: translate3d(5px, 20px, 17px) rotate(283deg); } 86% { -webkit-transform: translate3d(8px, 9px, 17px) rotate(168deg); transform: translate3d(8px, 9px, 17px) rotate(168deg); } 87% { -webkit-transform: translate3d(8px, 4px, 3px) rotate(278deg); transform: translate3d(8px, 4px, 3px) rotate(278deg); } 88% { -webkit-transform: translate3d(23px, 20px, 13px) rotate(146deg); transform: translate3d(23px, 20px, 13px) rotate(146deg); } 89% { -webkit-transform: translate3d(23px, 0px, 8px) rotate(238deg); transform: translate3d(23px, 0px, 8px) rotate(238deg); } 90% { -webkit-transform: translate3d(12px, 21px, 17px) rotate(31deg); transform: translate3d(12px, 21px, 17px) rotate(31deg); } 91% { -webkit-transform: translate3d(8px, 9px, 9px) rotate(208deg); transform: translate3d(8px, 9px, 9px) rotate(208deg); } 92% { -webkit-transform: translate3d(23px, 8px, 0px) rotate(41deg); transform: translate3d(23px, 8px, 0px) rotate(41deg); } 93% { -webkit-transform: translate3d(24px, 6px, 11px) rotate(294deg); transform: translate3d(24px, 6px, 11px) rotate(294deg); } 94% { -webkit-transform: translate3d(6px, 18px, 18px) rotate(77deg); transform: translate3d(6px, 18px, 18px) rotate(77deg); } 95% { -webkit-transform: translate3d(14px, 3px, 24px) rotate(352deg); transform: translate3d(14px, 3px, 24px) rotate(352deg); } 96% { -webkit-transform: translate3d(9px, 24px, 0px) rotate(336deg); transform: translate3d(9px, 24px, 0px) rotate(336deg); } 97% { -webkit-transform: translate3d(8px, 19px, 10px) rotate(193deg); transform: translate3d(8px, 19px, 10px) rotate(193deg); } 98% { -webkit-transform: translate3d(9px, 21px, 2px) rotate(31deg); transform: translate3d(9px, 21px, 2px) rotate(31deg); } 99% { -webkit-transform: translate3d(14px, 18px, 19px) rotate(47deg); transform: translate3d(14px, 18px, 19px) rotate(47deg); } 100% { -webkit-transform: translate3d(11px, 22px, 3px) rotate(302deg); transform: translate3d(11px, 22px, 3px) rotate(302deg); } } @keyframes infid { 0% { -webkit-transform: translate3d(10px, 20px, 10px) rotate(304deg); transform: translate3d(10px, 20px, 10px) rotate(304deg); } 1% { -webkit-transform: translate3d(2px, 0px, 10px) rotate(341deg); transform: translate3d(2px, 0px, 10px) rotate(341deg); } 2% { -webkit-transform: translate3d(4px, 1px, 20px) rotate(142deg); transform: translate3d(4px, 1px, 20px) rotate(142deg); } 3% { -webkit-transform: translate3d(5px, 15px, 15px) rotate(22deg); transform: translate3d(5px, 15px, 15px) rotate(22deg); } 4% { -webkit-transform: translate3d(23px, 17px, 10px) rotate(294deg); transform: translate3d(23px, 17px, 10px) rotate(294deg); } 5% { -webkit-transform: translate3d(22px, 9px, 14px) rotate(360deg); transform: translate3d(22px, 9px, 14px) rotate(360deg); } 6% { -webkit-transform: translate3d(21px, 11px, 11px) rotate(162deg); transform: translate3d(21px, 11px, 11px) rotate(162deg); } 7% { -webkit-transform: translate3d(2px, 16px, 0px) rotate(77deg); transform: translate3d(2px, 16px, 0px) rotate(77deg); } 8% { -webkit-transform: translate3d(1px, 6px, 2px) rotate(326deg); transform: translate3d(1px, 6px, 2px) rotate(326deg); } 9% { -webkit-transform: translate3d(20px, 10px, 11px) rotate(177deg); transform: translate3d(20px, 10px, 11px) rotate(177deg); } 10% { -webkit-transform: translate3d(17px, 0px, 17px) rotate(270deg); transform: translate3d(17px, 0px, 17px) rotate(270deg); } 11% { -webkit-transform: translate3d(16px, 7px, 21px) rotate(172deg); transform: translate3d(16px, 7px, 21px) rotate(172deg); } 12% { -webkit-transform: translate3d(3px, 1px, 2px) rotate(232deg); transform: translate3d(3px, 1px, 2px) rotate(232deg); } 13% { -webkit-transform: translate3d(14px, 22px, 12px) rotate(220deg); transform: translate3d(14px, 22px, 12px) rotate(220deg); } 14% { -webkit-transform: translate3d(5px, 15px, 6px) rotate(84deg); transform: translate3d(5px, 15px, 6px) rotate(84deg); } 15% { -webkit-transform: translate3d(23px, 8px, 11px) rotate(269deg); transform: translate3d(23px, 8px, 11px) rotate(269deg); } 16% { -webkit-transform: translate3d(9px, 21px, 15px) rotate(347deg); transform: translate3d(9px, 21px, 15px) rotate(347deg); } 17% { -webkit-transform: translate3d(23px, 2px, 1px) rotate(37deg); transform: translate3d(23px, 2px, 1px) rotate(37deg); } 18% { -webkit-transform: translate3d(13px, 7px, 2px) rotate(315deg); transform: translate3d(13px, 7px, 2px) rotate(315deg); } 19% { -webkit-transform: translate3d(24px, 12px, 17px) rotate(187deg); transform: translate3d(24px, 12px, 17px) rotate(187deg); } 20% { -webkit-transform: translate3d(14px, 6px, 6px) rotate(14deg); transform: translate3d(14px, 6px, 6px) rotate(14deg); } 21% { -webkit-transform: translate3d(23px, 20px, 3px) rotate(190deg); transform: translate3d(23px, 20px, 3px) rotate(190deg); } 22% { -webkit-transform: translate3d(4px, 9px, 14px) rotate(68deg); transform: translate3d(4px, 9px, 14px) rotate(68deg); } 23% { -webkit-transform: translate3d(11px, 19px, 17px) rotate(305deg); transform: translate3d(11px, 19px, 17px) rotate(305deg); } 24% { -webkit-transform: translate3d(10px, 20px, 1px) rotate(351deg); transform: translate3d(10px, 20px, 1px) rotate(351deg); } 25% { -webkit-transform: translate3d(5px, 2px, 3px) rotate(212deg); transform: translate3d(5px, 2px, 3px) rotate(212deg); } 26% { -webkit-transform: translate3d(22px, 10px, 5px) rotate(340deg); transform: translate3d(22px, 10px, 5px) rotate(340deg); } 27% { -webkit-transform: translate3d(18px, 1px, 11px) rotate(158deg); transform: translate3d(18px, 1px, 11px) rotate(158deg); } 28% { -webkit-transform: translate3d(15px, 19px, 10px) rotate(44deg); transform: translate3d(15px, 19px, 10px) rotate(44deg); } 29% { -webkit-transform: translate3d(3px, 7px, 16px) rotate(147deg); transform: translate3d(3px, 7px, 16px) rotate(147deg); } 30% { -webkit-transform: translate3d(7px, 24px, 18px) rotate(171deg); transform: translate3d(7px, 24px, 18px) rotate(171deg); } 31% { -webkit-transform: translate3d(12px, 15px, 14px) rotate(228deg); transform: translate3d(12px, 15px, 14px) rotate(228deg); } 32% { -webkit-transform: translate3d(18px, 19px, 8px) rotate(139deg); transform: translate3d(18px, 19px, 8px) rotate(139deg); } 33% { -webkit-transform: translate3d(12px, 8px, 14px) rotate(319deg); transform: translate3d(12px, 8px, 14px) rotate(319deg); } 34% { -webkit-transform: translate3d(1px, 19px, 21px) rotate(188deg); transform: translate3d(1px, 19px, 21px) rotate(188deg); } 35% { -webkit-transform: translate3d(14px, 17px, 2px) rotate(354deg); transform: translate3d(14px, 17px, 2px) rotate(354deg); } 36% { -webkit-transform: translate3d(16px, 11px, 17px) rotate(66deg); transform: translate3d(16px, 11px, 17px) rotate(66deg); } 37% { -webkit-transform: translate3d(1px, 20px, 15px) rotate(259deg); transform: translate3d(1px, 20px, 15px) rotate(259deg); } 38% { -webkit-transform: translate3d(15px, 21px, 16px) rotate(310deg); transform: translate3d(15px, 21px, 16px) rotate(310deg); } 39% { -webkit-transform: translate3d(17px, 15px, 8px) rotate(278deg); transform: translate3d(17px, 15px, 8px) rotate(278deg); } 40% { -webkit-transform: translate3d(7px, 6px, 7px) rotate(305deg); transform: translate3d(7px, 6px, 7px) rotate(305deg); } 41% { -webkit-transform: translate3d(7px, 5px, 19px) rotate(269deg); transform: translate3d(7px, 5px, 19px) rotate(269deg); } 42% { -webkit-transform: translate3d(19px, 20px, 20px) rotate(3deg); transform: translate3d(19px, 20px, 20px) rotate(3deg); } 43% { -webkit-transform: translate3d(3px, 16px, 16px) rotate(174deg); transform: translate3d(3px, 16px, 16px) rotate(174deg); } 44% { -webkit-transform: translate3d(20px, 3px, 6px) rotate(293deg); transform: translate3d(20px, 3px, 6px) rotate(293deg); } 45% { -webkit-transform: translate3d(8px, 8px, 21px) rotate(11deg); transform: translate3d(8px, 8px, 21px) rotate(11deg); } 46% { -webkit-transform: translate3d(23px, 11px, 16px) rotate(47deg); transform: translate3d(23px, 11px, 16px) rotate(47deg); } 47% { -webkit-transform: translate3d(21px, 4px, 0px) rotate(43deg); transform: translate3d(21px, 4px, 0px) rotate(43deg); } 48% { -webkit-transform: translate3d(4px, 11px, 23px) rotate(202deg); transform: translate3d(4px, 11px, 23px) rotate(202deg); } 49% { -webkit-transform: translate3d(2px, 6px, 17px) rotate(133deg); transform: translate3d(2px, 6px, 17px) rotate(133deg); } 50% { -webkit-transform: translate3d(19px, 8px, 20px) rotate(235deg); transform: translate3d(19px, 8px, 20px) rotate(235deg); } 51% { -webkit-transform: translate3d(18px, 2px, 18px) rotate(114deg); transform: translate3d(18px, 2px, 18px) rotate(114deg); } 52% { -webkit-transform: translate3d(24px, 8px, 4px) rotate(200deg); transform: translate3d(24px, 8px, 4px) rotate(200deg); } 53% { -webkit-transform: translate3d(24px, 5px, 20px) rotate(75deg); transform: translate3d(24px, 5px, 20px) rotate(75deg); } 54% { -webkit-transform: translate3d(19px, 0px, 11px) rotate(264deg); transform: translate3d(19px, 0px, 11px) rotate(264deg); } 55% { -webkit-transform: translate3d(19px, 14px, 23px) rotate(89deg); transform: translate3d(19px, 14px, 23px) rotate(89deg); } 56% { -webkit-transform: translate3d(13px, 3px, 24px) rotate(227deg); transform: translate3d(13px, 3px, 24px) rotate(227deg); } 57% { -webkit-transform: translate3d(9px, 24px, 18px) rotate(127deg); transform: translate3d(9px, 24px, 18px) rotate(127deg); } 58% { -webkit-transform: translate3d(15px, 22px, 12px) rotate(235deg); transform: translate3d(15px, 22px, 12px) rotate(235deg); } 59% { -webkit-transform: translate3d(14px, 9px, 13px) rotate(44deg); transform: translate3d(14px, 9px, 13px) rotate(44deg); } 60% { -webkit-transform: translate3d(14px, 5px, 10px) rotate(231deg); transform: translate3d(14px, 5px, 10px) rotate(231deg); } 61% { -webkit-transform: translate3d(19px, 2px, 1px) rotate(64deg); transform: translate3d(19px, 2px, 1px) rotate(64deg); } 62% { -webkit-transform: translate3d(12px, 19px, 9px) rotate(8deg); transform: translate3d(12px, 19px, 9px) rotate(8deg); } 63% { -webkit-transform: translate3d(3px, 14px, 20px) rotate(53deg); transform: translate3d(3px, 14px, 20px) rotate(53deg); } 64% { -webkit-transform: translate3d(8px, 2px, 9px) rotate(291deg); transform: translate3d(8px, 2px, 9px) rotate(291deg); } 65% { -webkit-transform: translate3d(18px, 20px, 16px) rotate(187deg); transform: translate3d(18px, 20px, 16px) rotate(187deg); } 66% { -webkit-transform: translate3d(11px, 1px, 22px) rotate(31deg); transform: translate3d(11px, 1px, 22px) rotate(31deg); } 67% { -webkit-transform: translate3d(20px, 10px, 10px) rotate(137deg); transform: translate3d(20px, 10px, 10px) rotate(137deg); } 68% { -webkit-transform: translate3d(22px, 1px, 23px) rotate(241deg); transform: translate3d(22px, 1px, 23px) rotate(241deg); } 69% { -webkit-transform: translate3d(21px, 19px, 18px) rotate(284deg); transform: translate3d(21px, 19px, 18px) rotate(284deg); } 70% { -webkit-transform: translate3d(15px, 7px, 14px) rotate(160deg); transform: translate3d(15px, 7px, 14px) rotate(160deg); } 71% { -webkit-transform: translate3d(10px, 9px, 9px) rotate(271deg); transform: translate3d(10px, 9px, 9px) rotate(271deg); } 72% { -webkit-transform: translate3d(0px, 0px, 10px) rotate(235deg); transform: translate3d(0px, 0px, 10px) rotate(235deg); } 73% { -webkit-transform: translate3d(19px, 20px, 7px) rotate(204deg); transform: translate3d(19px, 20px, 7px) rotate(204deg); } 74% { -webkit-transform: translate3d(3px, 4px, 4px) rotate(154deg); transform: translate3d(3px, 4px, 4px) rotate(154deg); } 75% { -webkit-transform: translate3d(10px, 17px, 0px) rotate(296deg); transform: translate3d(10px, 17px, 0px) rotate(296deg); } 76% { -webkit-transform: translate3d(12px, 10px, 16px) rotate(326deg); transform: translate3d(12px, 10px, 16px) rotate(326deg); } 77% { -webkit-transform: translate3d(13px, 10px, 24px) rotate(277deg); transform: translate3d(13px, 10px, 24px) rotate(277deg); } 78% { -webkit-transform: translate3d(8px, 7px, 18px) rotate(275deg); transform: translate3d(8px, 7px, 18px) rotate(275deg); } 79% { -webkit-transform: translate3d(0px, 5px, 5px) rotate(34deg); transform: translate3d(0px, 5px, 5px) rotate(34deg); } 80% { -webkit-transform: translate3d(20px, 14px, 7px) rotate(0deg); transform: translate3d(20px, 14px, 7px) rotate(0deg); } 81% { -webkit-transform: translate3d(11px, 23px, 3px) rotate(121deg); transform: translate3d(11px, 23px, 3px) rotate(121deg); } 82% { -webkit-transform: translate3d(14px, 3px, 0px) rotate(141deg); transform: translate3d(14px, 3px, 0px) rotate(141deg); } 83% { -webkit-transform: translate3d(18px, 15px, 8px) rotate(97deg); transform: translate3d(18px, 15px, 8px) rotate(97deg); } 84% { -webkit-transform: translate3d(16px, 24px, 20px) rotate(242deg); transform: translate3d(16px, 24px, 20px) rotate(242deg); } 85% { -webkit-transform: translate3d(5px, 20px, 17px) rotate(283deg); transform: translate3d(5px, 20px, 17px) rotate(283deg); } 86% { -webkit-transform: translate3d(8px, 9px, 17px) rotate(168deg); transform: translate3d(8px, 9px, 17px) rotate(168deg); } 87% { -webkit-transform: translate3d(8px, 4px, 3px) rotate(278deg); transform: translate3d(8px, 4px, 3px) rotate(278deg); } 88% { -webkit-transform: translate3d(23px, 20px, 13px) rotate(146deg); transform: translate3d(23px, 20px, 13px) rotate(146deg); } 89% { -webkit-transform: translate3d(23px, 0px, 8px) rotate(238deg); transform: translate3d(23px, 0px, 8px) rotate(238deg); } 90% { -webkit-transform: translate3d(12px, 21px, 17px) rotate(31deg); transform: translate3d(12px, 21px, 17px) rotate(31deg); } 91% { -webkit-transform: translate3d(8px, 9px, 9px) rotate(208deg); transform: translate3d(8px, 9px, 9px) rotate(208deg); } 92% { -webkit-transform: translate3d(23px, 8px, 0px) rotate(41deg); transform: translate3d(23px, 8px, 0px) rotate(41deg); } 93% { -webkit-transform: translate3d(24px, 6px, 11px) rotate(294deg); transform: translate3d(24px, 6px, 11px) rotate(294deg); } 94% { -webkit-transform: translate3d(6px, 18px, 18px) rotate(77deg); transform: translate3d(6px, 18px, 18px) rotate(77deg); } 95% { -webkit-transform: translate3d(14px, 3px, 24px) rotate(352deg); transform: translate3d(14px, 3px, 24px) rotate(352deg); } 96% { -webkit-transform: translate3d(9px, 24px, 0px) rotate(336deg); transform: translate3d(9px, 24px, 0px) rotate(336deg); } 97% { -webkit-transform: translate3d(8px, 19px, 10px) rotate(193deg); transform: translate3d(8px, 19px, 10px) rotate(193deg); } 98% { -webkit-transform: translate3d(9px, 21px, 2px) rotate(31deg); transform: translate3d(9px, 21px, 2px) rotate(31deg); } 99% { -webkit-transform: translate3d(14px, 18px, 19px) rotate(47deg); transform: translate3d(14px, 18px, 19px) rotate(47deg); } 100% { -webkit-transform: translate3d(11px, 22px, 3px) rotate(302deg); transform: translate3d(11px, 22px, 3px) rotate(302deg); } } .caset { height: 158px; width: 248px; position: absolute; border-radius: 6px; overflow: hidden; box-shadow: 1px 1px 0 1px #777, -1px -1px 0 1px #fff; top: 50%; left: 50%; margin-left: -124px; margin-top: -79px; font-size: 14px; } .casetbot { transform: perspective(100px) rotateX(15deg); content: ""; height: 24%; width: 66%; background: #aaa; bottom: 0; left: 17%; box-shadow: inherit; border-radius: 3% 3% 0 0 } .casetsqu::after, .casetsqu::before { content: ""; border-radius: 30%; background: #333; bottom: 4%; box-shadow: -1px -1px 0 0 #eee inset; z-index: 1; position: absolute; display: block; height: 10px; width: 10px } .casetsqu::before { left: 34% } .casetsqu::after { right: 34% } .casetdot { position: absolute; top: 10%; left: 0; margin: auto; bottom: 0; right: 0; color: #000; text-indent: 8%; z-index: 1 } .casetdot span { background: red; padding: 1% 2%; position: relative; color: #fff; font-weight: 700; top: 5px; left: 2px; margin: 0 10px 0 0; } .casetdot::after, .casetdot::before { content: ""; position: absolute; width: 10px; height: 10px; border-radius: 50%; background: #333; bottom: 2%; box-shadow: -1px -1px 0 0 #eee inset; z-index: 1 } .casetdot::before { left: 23% } .casetdot::after { right: 23% } .caset::after { content: ""; clip-path: polygon(0 0, 0 100%, 22% 100%, 22% 33%, 78% 33%, 78% 58%, 22% 58%, 22% 100%, 100% 100%, 100% 0); height: 100%; width: 100%; position: absolute; left: 0; top: 0; background: #aaa } .caset::before, .casetbot, .casetcen { position: absolute; z-index: 1 } .caset::before { background: linear-gradient(transparent 0 10px, #080808 10px 11px, transparent 11px 20px, #080808 20px 21px, transparent 21px 30px, #080808 30px 31px, rgba(8, 0, 0, 0) 31px 40px, #ff0808 40px 51px, rgba(99, 0, 0, 0) 41px 50px, #080808 50px 62px, rgb(8, 8, 8, 0) 62px) no-repeat 100%/100% #eee; clip-path: polygon(0 0, 0 100%, 22% 100%, 22% 40%, 80% 40%, 80% 78%, 22% 78%, 22% 100%, 100% 100%, 100% 0); content: ""; width: 88%; background-clip: content-box; padding: 0 1%; height: 66%; top: 7%; left: 5%; overflow: hidden; border-radius: inherit; box-shadow: 1px 1px 0 #333 inset, -2px -1px 0 #fff inset, 0 0 0 10px #eee inset } .casetcen, .casetcen>div { display: flex; align-items: center } .casetcen { width: 60%; height: 26%; align-content: center; margin: 0 auto; left: 20%; border-radius: 4px; top: 32%; overflow: hidden; box-shadow: inherit; background: rgba(17, 17, 17, .3) } .casetcen>div { font: 6px Arial; height: 100%; flex-direction: row; justify-content: center; text-indent: 1em; letter-spacing: 1em } .casetcen div:nth-child(2) { background: linear-gradient(#eee 14%, transparent 14%, transparent 50%, #eee 80%); width: 44% } .casetcen div:nth-child(1), .casetcen div:nth-child(3) { background: radial-gradient(circle at center, #777 42%, #fff 43%, #fff 47%, #aaa 48%, #aaa 57%, #eee 60%); width: 28% } .casetcen div:nth-child(1)::after, .casetcen div:nth-child(3)::after { content: ""; background: #000; border-radius: 50%; box-sizing: border-box; margin: auto; width: 45%; height: 45%; box-shadow: 0 -12px 0 -8px #fff, 0 12px 0 -8px #fff, -10px -6px 0 -8px #fff, 10px -6px 0 -8px #fff, 10px 6px 0 -8px #fff, -10px 6px 0 -8px #fff; } .casetcen::after, .casetcen::before { content: ""; position: absolute; background: repeating-radial-gradient(#4d2410 0 1px, #000 1px 2px) center; height: 60px; width: 60px; z-index: -1; border-radius: 50%; } #anismsa:checked~.caset .casetcen::after, #anismsa:checked~.caset .casetcen::before, #anismsa:checked~.caset .casetcen div:nth-child(1)::after, #anismsa:checked~.caset .casetcen div:nth-child(3)::after { animation: rotatescaset 5s linear infinite } .casetcen::before { right: 0 } @keyframes rotatescaset { to { transform: rotateZ(360deg) } } #cloader { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); border: 1px solid #333; height: 100px; width: 100px; border-radius: 50%; overflow: hidden; background: repeating-radial-gradient(rgb(0, 0, 0, 0) 0px 3px, #254219 4px 4px), repeating-linear-gradient(90deg, rgb(0, 0, 0, 0) 0px 2px, rgb(42, 36, 51) 3px 3px), repeating-linear-gradient(180deg, rgb(0, 0, 0, 0) 0px 2px, rgb(42, 36, 51) 3px 3px) rgb(0, 0, 0); box-shadow: #333 0 0 6px 2px; } #cloader:before { content: ""; display: block; border: 1px solid #2a3; position: absolute; top: 50%; left: 50%; height: 0; transform-origin: 0 0; width: 50px; box-shadow: 0 -5px 10px 3px #3f4; margin: auto; } #cloader:after { content: "˙..."; font-size: 26px; line-height: 0; color: transparent; display: block; margin: auto; background: #3f4; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(-45deg); height: 4px; width: 4px; border-radius: 50%; } #cloaderc:checked~#cloader:before { animation: arr 1s linear infinite; } #cloaderc:checked~#cloader:after { animation: col 1s infinite; } @keyframes arr { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } @keyframes col { 50% { color: #3f4; } } #loader3d { box-sizing: border-box; display: block; margin: auto; position: absolute; top: 0; left: 0; right: 0; bottom: 0; height: 60px; width: 60px; border-bottom: 20px solid #234; border-top: 20px solid #567; border-radius: 4px; -webkit-perspective: 80px; perspective: 80px; border-radius: 50%; will-change: contents; } #loader3d:before { border-radius: 50%; content: ""; position: absolute; top: 0; left: 0; width: 20px; height: 20px; border-left: 20px solid #567; border-right: 20px solid #234; } #loader3d:after { content: ""; position: absolute; top: -40px; left: -20px; height: 80px; width: 80px; border: 10px solid #345; border-radius: 50%; } #loader3dc:checked~#loader3d:after { -webkit-animation: rok 1s linear infinite; animation: rok 1s linear infinite; } #loader3dc:checked~#loader3d:before, #loader3dc:checked~#loader3d { -webkit-animation: rot 2s linear infinite; animation: rot 2s linear infinite; } @-webkit-keyframes rot { 100% { -webkit-transform: rotateZ(360deg); transform: rotateZ(360deg); } } @keyframes rot { 100% { -webkit-transform: rotateZ(360deg); transform: rotateZ(360deg); } } @-webkit-keyframes rok { 100% { -webkit-transform: rotateY(360deg); transform: rotateY(360deg); } } @keyframes rok { 100% { -webkit-transform: rotateY(360deg); transform: rotateY(360deg); } } .loaderdots { height: 66px; width: 66px; top: 50%; left: 50%; margin-left: -33px; margin-top: -33px; position: relative; box-shadow: 40px 0 0 -30px #000, -40px 0 0 -30px #000, 0 -40px 0 -30px #000, 0 40px 0 -30px #000, 30px 28px 0 -30px #000, 30px -28px 0 -30px #000, -30px -28px 0 -30px #000, -30px 28px 0 -30px #000; border-radius: 50%; will-change: transform; } #loaderdotsc:checked~.loaderdots { animation: rotatescaset 2s linear infinite; } svg>path:nth-child(0) { transform: translate3d(159px, -216px, 116px) rotate(0deg); } svg>path:nth-child(1) { transform: translate3d(-167px, -252px, 114px) rotate(18deg); } svg>path:nth-child(2) { transform: translate3d(111px, 69px, -32px) rotate(3deg); } svg>path:nth-child(3) { transform: translate3d(-230px, 291px, 13px) rotate(33deg); } svg>path:nth-child(4) { transform: translate3d(-234px, -165px, -199px) rotate(37deg); } svg>path:nth-child(5) { transform: translate3d(252px, 15px, 105px) rotate(16deg); } svg>path:nth-child(6) { transform: translate3d(162px, -211px, 280px) rotate(220deg); } svg>path:nth-child(7) { transform: translate3d(26px, -299px, 153px) rotate(3deg); } svg>path:nth-child(8) { transform: translate3d(-208px, 155px, 101px) rotate(9deg); } svg>path:nth-child(9) { transform: translate3d(-6px, -53px, -125px) rotate(13deg); } svg>path:nth-child(10) { transform: translate3d(261px, 69px, -55px) rotate(1deg); } svg>path:nth-child(11) { transform: translate3d(225px, -20px, -220px) rotate(9deg); } svg>path:nth-child(12) { transform: translate3d(275px, -249px, 78px) rotate(10deg); } svg>path:nth-child(13) { transform: translate3d(172px, 99px, -256px) rotate(16deg); } svg>path:nth-child(14) { transform: translate3d(-141px, 225px, 180px) rotate(45deg); } svg>path:nth-child(15) { transform: translate3d(237px, -151px, 222px) rotate(7deg); } svg>path:nth-child(16) { transform: translate3d(77px, 154px, -237px) rotate(2deg); } svg>path:nth-child(17) { transform: translate3d(-65px, -24px, -14px) rotate(260deg); } svg>path:nth-child(18) { transform: translate3d(-39px, 233px, -116px) rotate(33deg); } svg>path:nth-child(19) { transform: translate3d(36px, 236px, 59px) rotate(44deg); } svg>path:nth-child(20) { transform: translate3d(-128px, 120px, -264px) rotate(1deg); } svg>path:nth-child(21) { transform: translate3d(-139px, -275px, -71px) rotate(6deg); } svg>path:nth-child(22) { transform: translate3d(140px, 100px, -34px) rotate(24deg); } svg>path:nth-child(23) { transform: translate3d(7px, -215px, 234px) rotate(19deg); } svg>path:nth-child(24) { transform: translate3d(-74px, 231px, -278px) rotate(22deg); } svg>path:nth-child(25) { transform: translate3d(37px, 128px, -254px) rotate(15deg); } svg>path:nth-child(26) { transform: translate3d(295px, -218px, -52px) rotate(43deg); } svg>path:nth-child(27) { transform: translate3d(236px, -278px, -148px) rotate(37deg); } svg>path:nth-child(28) { transform: translate3d(194px, 100px, 90px) rotate(5deg); } svg>path:nth-child(29) { transform: translate3d(-102px, 14px, -16px) rotate(25deg); } svg>path:nth-child(30) { transform: translate3d(-196px, 200px, -293px) rotate(26deg); } svg>path:nth-child(31) { transform: translate3d(-162px, 45px, -87px) rotate(4deg); } svg>path:nth-child(32) { transform: translate3d(37px, 48px, -39px) rotate(44deg); } svg>path:nth-child(33) { transform: translate3d(260px, 109px, 96px) rotate(340deg); } svg>path:nth-child(34) { transform: translate3d(-298px, 75px, 205px) rotate(34deg); } svg>path:nth-child(35) { transform: translate3d(-55px, 277px, 101px) rotate(18deg); } svg>path:nth-child(36) { transform: translate3d(203px, -212px, -265px) rotate(45deg); } svg>path:nth-child(37) { transform: translate3d(-183px, 131px, -27px) rotate(42deg); } svg>path:nth-child(38) { transform: translate3d(-237px, -106px, 14px) rotate(30deg); } svg>path:nth-child(39) { transform: translate3d(-148px, 26px, -219px) rotate(3deg); } svg>path:nth-child(40) { transform: translate3d(193px, -193px, -172px) rotate(23deg); } svg>path:nth-child(41) { transform: translate3d(-127px, 27px, 286px) rotate(28deg); } svg>path:nth-child(42) { transform: translate3d(71px, -8px, 297px) rotate(23deg); } svg>path:nth-child(43) { transform: translate3d(126px, 184px, -89px) rotate(28deg); } svg>path:nth-child(44) { transform: translate3d(159px, 200px, -292px) rotate(140deg); } svg>path:nth-child(45) { transform: translate3d(-188px, -272px, -47px) rotate(40deg); } svg>path:nth-child(46) { transform: translate3d(103px, -212px, -225px) rotate(6deg); } svg>path:nth-child(47) { transform: translate3d(-100px, 82px, -117px) rotate(38deg); } svg>path:nth-child(48) { transform: translate3d(-18px, 15px, 33px) rotate(29deg); } svg>path:nth-child(49) { transform: translate3d(-173px, 273px, 96px) rotate(30deg); } svg>path:nth-child(50) { transform: translate3d(-163px, -239px, 89px) rotate(44deg); } svg>path:nth-child(51) { transform: translate3d(38px, 161px, -161px) rotate(40deg); } svg>path:nth-child(52) { transform: translate3d(-238px, -239px, 294px) rotate(34deg); } svg>path:nth-child(53) { transform: translate3d(67px, 79px, 206px) rotate(34deg); } svg>path:nth-child(54) { transform: translate3d(199px, -105px, 198px) rotate(39deg); } svg>path:nth-child(55) { transform: translate3d(241px, -289px, 278px) rotate(39deg); } svg>path:nth-child(56) { transform: translate3d(149px, 275px, 55px) rotate(28deg); } svg>path:nth-child(57) { transform: translate3d(12px, -181px, -287px) rotate(2deg); } svg>path:nth-child(58) { transform: translate3d(-106px, 84px, -240px) rotate(41deg); } svg>path:nth-child(59) { transform: translate3d(144px, 289px, -286px) rotate(35deg); } svg>path:nth-child(60) { transform: translate3d(-196px, -97px, 68px) rotate(11deg); } svg>path:nth-child(61) { transform: translate3d(273px, 291px, 294px) rotate(16deg); } svg>path:nth-child(62) { transform: translate3d(196px, 200px, 29px) rotate(9deg); } svg>path:nth-child(63) { transform: translate3d(215px, 144px, 16px) rotate(13deg); } svg>path:nth-child(64) { transform: translate3d(-268px, -32px, 109px) rotate(39deg); } svg>path:nth-child(65) { transform: translate3d(-20px, -207px, -193px) rotate(41deg); } svg>path:nth-child(66) { transform: translate3d(-157px, 221px, 125px) rotate(36deg); } svg>path:nth-child(67) { transform: translate3d(259px, 203px, -221px) rotate(33deg); } svg>path:nth-child(68) { transform: translate3d(-172px, -170px, -99px) rotate(42deg); } svg>path:nth-child(69) { transform: translate3d(159px, -16px, -151px) rotate(30deg); } svg>path:nth-child(70) { transform: translate3d(217px, -155px, 169px) rotate(22deg); } svg>path:nth-child(71) { transform: translate3d(-17px, 227px, -229px) rotate(44deg); } svg>path:nth-child(72) { transform: translate3d(-102px, 40px, 15px) rotate(21deg); } svg>path:nth-child(73) { transform: translate3d(258px, -94px, 285px) rotate(13deg); } svg>path:nth-child(74) { transform: translate3d(277px, -246px, 218px) rotate(5deg); } svg>path:nth-child(75) { transform: translate3d(206px, -282px, -24px) rotate(26deg); } input:checked~#chp>path { transform: translate3d(0, 0, 0) rotate(0); transition: 5s transform; } .checkboxi { display: none; } .checkboxi+label { box-shadow: 0 1px 0 0 #ffffff inset; background-color: #f0f0f0; border: #9da3a1 solid 1px; color: #aaa; line-height: 1.5; border-radius: 3px; display: block; cursor: pointer; margin: 0 auto; font-weight: 700; position: absolute; width: 100%; top: 100%; z-index: 2; } .checkboxi+label:active, .checkboxi:checked+label:active { background-color: #c3c7c7; } .checkboxi:checked+label { color: #777; } .checkboxi:checked+label:after { content: "\2714"; font-size: 14px; position: absolute; top: 0; right: 3px; color: #777; } .animwrap { margin: 0 auto; overflow: hidden; height: 288px; } .sclassgrid { position: relative; margin: -100px 0 0 -100px; width: 200px; height: 200px; top: 50%; left: 50%; display: grid; gap: 1px; grid-template-columns: repeat(21, 1fr); grid-template-rows: repeat(21, 1fr); -ms-grid-columns: repeat(21, 1fr); -ms-grid-rows: repeat(21, 1fr); animation: mov 16.65s steps(4, end); animation-play-state: paused; } .sclassgrid i { height: 100%; width: 100%; } .blu { animation: blu 3s 1 steps(1, start) forwards; animation-play-state: paused; } .gre { animation: gre 3s 1 steps(1, start) forwards; animation-play-state: paused; } .yel { animation: yel 32s 1 steps(1, start) forwards; animation-play-state: paused; } .bla { animation: bla 32s 1 steps(1, start) forwards; animation-play-state: paused; } .red { animation: reds 32s 1 steps(1, start) forwards; animation-play-state: paused; } .whi { animation: whi 32s 1 steps(1, start) forwards; animation-play-state: paused; } #chrom7:checked~.sclassgrid { animation-play-state: running; } #chrom7:checked~.sclassgrid .blu { animation-play-state: running; } #chrom7:checked~.sclassgrid .gre { animation-play-state: running; } #chrom7:checked~.sclassgrid .yel { animation-play-state: running; } #chrom7:checked~.sclassgrid .bla { animation-play-state: running; } #chrom7:checked~.sclassgrid .red { animation-play-state: running; } #chrom7:checked~.sclassgrid .whi { animation-play-state: running; } @keyframes mov { to { transform: rotateZ(360deg); } } @keyframes whi { to { background: #1DA362; } } @keyframes reds { to { background: #DE5145; } } @keyframes bla { to { background: #000; } } @keyframes yel { to { background: #ffda37; } } @keyframes blu { to { background: #4C8BF5; } } @keyframes gre { to { background: #777; } } .s8 { animation-delay: 0.05s; } .s10 { animation-delay: 0.10s; } .s12 { animation-delay: 0.15s; } .s35 { animation-delay: 0.20s; } .s58 { animation-delay: 0.25s; } .s102 { animation-delay: 0.30s; } .s145 { animation-delay: 0.35s; } .s188 { animation-delay: 0.40s; } .s230 { animation-delay: 0.45s; } .s272 { animation-delay: 0.50s; } .s313 { animation-delay: 0.55s; } .s354 { animation-delay: 0.60s; } .s394 { animation-delay: 0.65s; } .s413 { animation-delay: 0.70s; } .s432 { animation-delay: 0.75s; } .s430 { animation-delay: 0.80s; } .s428 { animation-delay: 0.85s; } .s405 { animation-delay: 0.90s; } .s382 { animation-delay: 0.95s; } .s338 { animation-delay: 1.00s; } .s295 { animation-delay: 1.05s; } .s252 { animation-delay: 1.10s; } .s210 { animation-delay: 1.15s; } .s168 { animation-delay: 1.20s; } .s127 { animation-delay: 1.25s; } .s86 { animation-delay: 1.30s; } .s46 { animation-delay: 1.35s; } .s27 { animation-delay: 1.40s; } .s157 { animation-delay: 1.45s; } .s180 { animation-delay: 1.50s; } .s223 { animation-delay: 1.55s; } .s264 { animation-delay: 1.60s; } .s283 { animation-delay: 1.65s; } .s260 { animation-delay: 1.70s; } .s217 { animation-delay: 1.75s; } .s176 { animation-delay: 1.80s; } .s11 { animation-delay: 1.85s; } .s34 { animation-delay: 1.90s; } .s57 { animation-delay: 1.95s; } .s80 { animation-delay: 2.00s; } .s123 { animation-delay: 2.05s; } .s166 { animation-delay: 2.10s; } .s209 { animation-delay: 2.15s; } .s251 { animation-delay: 2.20s; } .s292 { animation-delay: 2.25s; } .s333 { animation-delay: 2.30s; } .s374 { animation-delay: 2.35s; } .s393 { animation-delay: 2.40s; } .s412 { animation-delay: 2.45s; } .s431 { animation-delay: 2.50s; } .s429 { animation-delay: 2.55s; } .s406 { animation-delay: 2.60s; } .s383 { animation-delay: 2.65s; } .s360 { animation-delay: 2.70s; } .s317 { animation-delay: 2.75s; } .s274 { animation-delay: 2.80s; } .s231 { animation-delay: 2.85s; } .s189 { animation-delay: 2.90s; } .s148 { animation-delay: 2.95s; } .s107 { animation-delay: 3.00s; } .s66 { animation-delay: 3.05s; } .s47 { animation-delay: 3.10s; } .s28 { animation-delay: 3.15s; } .s9 { animation-delay: 3.20s; } .s158 { animation-delay: 3.25s; } .s202 { animation-delay: 3.30s; } .s244 { animation-delay: 3.35s; } .s284 { animation-delay: 3.40s; } .s282 { animation-delay: 3.45s; } .s238 { animation-delay: 3.50s; } .s196 { animation-delay: 3.55s; } .s156 { animation-delay: 3.60s; } .s177 { animation-delay: 3.65s; } .s178 { animation-delay: 3.70s; } .s179 { animation-delay: 3.75s; } .s197 { animation-delay: 3.80s; } .s198 { animation-delay: 3.85s; } .s199 { animation-delay: 3.90s; } .s200 { animation-delay: 3.95s; } .s201 { animation-delay: 4.00s; } .s218 { animation-delay: 4.05s; } .s219 { animation-delay: 4.10s; } .s220 { animation-delay: 4.15s; } .s221 { animation-delay: 4.20s; } .s222 { animation-delay: 4.25s; } .s240 { animation-delay: 4.30s; } .s241 { animation-delay: 4.35s; } .s242 { animation-delay: 4.40s; } .s239 { animation-delay: 4.45s; } .s261 { animation-delay: 4.50s; } .s262 { animation-delay: 4.55s; } .s263 { animation-delay: 4.60s; } .s243 { animation-delay: 4.65s; } .s29 { animation-delay: 4.70s; } .s30 { animation-delay: 4.75s; } .s31 { animation-delay: 4.80s; } .s32 { animation-delay: 4.85s; } .s33 { animation-delay: 4.90s; } .s48 { animation-delay: 4.95s; } .s49 { animation-delay: 5.00s; } .s50 { animation-delay: 5.05s; } .s51 { animation-delay: 5.10s; } .s52 { animation-delay: 5.15s; } .s53 { animation-delay: 5.20s; } .s54 { animation-delay: 5.25s; } .s55 { animation-delay: 5.30s; } .s56 { animation-delay: 5.35s; } .s68 { animation-delay: 5.40s; } .s69 { animation-delay: 5.45s; } .s70 { animation-delay: 5.50s; } .s71 { animation-delay: 5.55s; } .s72 { animation-delay: 5.60s; } .s73 { animation-delay: 5.65s; } .s74 { animation-delay: 5.70s; } .s75 { animation-delay: 5.75s; } .s76 { animation-delay: 5.80s; } .s77 { animation-delay: 5.85s; } .s78 { animation-delay: 5.90s; } .s79 { animation-delay: 5.95s; } .s89 { animation-delay: 6.00s; } .s90 { animation-delay: 6.05s; } .s91 { animation-delay: 6.10s; } .s92 { animation-delay: 6.15s; } .s93 { animation-delay: 6.20s; } .s94 { animation-delay: 6.25s; } .s95 { animation-delay: 6.30s; } .s96 { animation-delay: 6.35s; } .s97 { animation-delay: 6.40s; } .s98 { animation-delay: 6.45s; } .s99 { animation-delay: 6.50s; } .s100 { animation-delay: 6.55s; } .s101 { animation-delay: 6.60s; } .s110 { animation-delay: 6.65s; } .s111 { animation-delay: 6.70s; } .s112 { animation-delay: 6.75s; } .s113 { animation-delay: 6.80s; } .s114 { animation-delay: 6.85s; } .s115 { animation-delay: 6.90s; } .s116 { animation-delay: 6.95s; } .s117 { animation-delay: 7.00s; } .s118 { animation-delay: 7.05s; } .s119 { animation-delay: 7.10s; } .s120 { animation-delay: 7.15s; } .s121 { animation-delay: 7.20s; } .s122 { animation-delay: 7.25s; } .s132 { animation-delay: 7.30s; } .s133 { animation-delay: 7.35s; } .s134 { animation-delay: 7.40s; } .s135 { animation-delay: 7.45s; } .s136 { animation-delay: 7.50s; } .s137 { animation-delay: 7.55s; } .s138 { animation-delay: 7.60s; } .s139 { animation-delay: 7.65s; } .s140 { animation-delay: 7.70s; } .s141 { animation-delay: 7.75s; } .s153 { animation-delay: 7.80s; } .s154 { animation-delay: 7.85s; } .s155 { animation-delay: 7.90s; } .s159 { animation-delay: 7.95s; } .s160 { animation-delay: 8.00s; } .s175 { animation-delay: 8.05s; } .s142 { animation-delay: 8.10s; } .s143 { animation-delay: 8.15s; } .s144 { animation-delay: 8.20s; } .s161 { animation-delay: 8.25s; } .s162 { animation-delay: 8.30s; } .s163 { animation-delay: 8.35s; } .s164 { animation-delay: 8.40s; } .s165 { animation-delay: 8.45s; } .s181 { animation-delay: 8.50s; } .s182 { animation-delay: 8.55s; } .s183 { animation-delay: 8.60s; } .s184 { animation-delay: 8.65s; } .s185 { animation-delay: 8.70s; } .s186 { animation-delay: 8.75s; } .s187 { animation-delay: 8.80s; } .s203 { animation-delay: 8.85s; } .s204 { animation-delay: 8.90s; } .s205 { animation-delay: 8.95s; } .s206 { animation-delay: 9.00s; } .s207 { animation-delay: 9.05s; } .s208 { animation-delay: 9.10s; } .s224 { animation-delay: 9.15s; } .s225 { animation-delay: 9.20s; } .s226 { animation-delay: 9.25s; } .s227 { animation-delay: 9.30s; } .s228 { animation-delay: 9.35s; } .s229 { animation-delay: 9.40s; } .s245 { animation-delay: 9.45s; } .s246 { animation-delay: 9.50s; } .s247 { animation-delay: 9.55s; } .s248 { animation-delay: 9.60s; } .s249 { animation-delay: 9.65s; } .s250 { animation-delay: 9.70s; } .s265 { animation-delay: 9.75s; } .s266 { animation-delay: 9.80s; } .s267 { animation-delay: 9.85s; } .s268 { animation-delay: 9.90s; } .s269 { animation-delay: 9.95s; } .s270 { animation-delay: 10.00s; } .s271 { animation-delay: 10.05s; } .s285 { animation-delay: 10.10s; } .s286 { animation-delay: 10.15s; } .s287 { animation-delay: 10.20s; } .s288 { animation-delay: 10.25s; } .s289 { animation-delay: 10.30s; } .s290 { animation-delay: 10.35s; } .s291 { animation-delay: 10.40s; } .s305 { animation-delay: 10.45s; } .s306 { animation-delay: 10.50s; } .s307 { animation-delay: 10.55s; } .s308 { animation-delay: 10.60s; } .s309 { animation-delay: 10.65s; } .s310 { animation-delay: 10.70s; } .s311 { animation-delay: 10.75s; } .s312 { animation-delay: 10.80s; } .s325 { animation-delay: 10.85s; } .s326 { animation-delay: 10.90s; } .s327 { animation-delay: 10.95s; } .s328 { animation-delay: 11.00s; } .s329 { animation-delay: 11.05s; } .s330 { animation-delay: 11.10s; } .s331 { animation-delay: 11.15s; } .s332 { animation-delay: 11.20s; } .s346 { animation-delay: 11.25s; } .s347 { animation-delay: 11.30s; } .s348 { animation-delay: 11.35s; } .s349 { animation-delay: 11.40s; } .s350 { animation-delay: 11.45s; } .s351 { animation-delay: 11.50s; } .s352 { animation-delay: 11.55s; } .s353 { animation-delay: 11.60s; } .s366 { animation-delay: 11.65s; } .s367 { animation-delay: 11.70s; } .s368 { animation-delay: 11.75s; } .s369 { animation-delay: 11.80s; } .s370 { animation-delay: 11.85s; } .s371 { animation-delay: 11.90s; } .s372 { animation-delay: 11.95s; } .s373 { animation-delay: 12.00s; } .s387 { animation-delay: 12.05s; } .s388 { animation-delay: 12.10s; } .s389 { animation-delay: 12.15s; } .s390 { animation-delay: 12.20s; } .s391 { animation-delay: 12.25s; } .s392 { animation-delay: 12.30s; } .s407 { animation-delay: 12.35s; } .s408 { animation-delay: 12.40s; } .s409 { animation-delay: 12.45s; } .s410 { animation-delay: 12.50s; } .s411 { animation-delay: 12.55s; } .s67 { animation-delay: 12.60s; } .s87 { animation-delay: 12.65s; } .s88 { animation-delay: 12.70s; } .s108 { animation-delay: 12.75s; } .s109 { animation-delay: 12.80s; } .s128 { animation-delay: 12.85s; } .s129 { animation-delay: 12.90s; } .s130 { animation-delay: 12.95s; } .s131 { animation-delay: 13.00s; } .s149 { animation-delay: 13.05s; } .s150 { animation-delay: 13.10s; } .s151 { animation-delay: 13.15s; } .s152 { animation-delay: 13.20s; } .s169 { animation-delay: 13.25s; } .s170 { animation-delay: 13.30s; } .s171 { animation-delay: 13.35s; } .s172 { animation-delay: 13.40s; } .s173 { animation-delay: 13.45s; } .s174 { animation-delay: 13.50s; } .s190 { animation-delay: 13.55s; } .s191 { animation-delay: 13.60s; } .s192 { animation-delay: 13.65s; } .s193 { animation-delay: 13.70s; } .s194 { animation-delay: 13.75s; } .s195 { animation-delay: 13.80s; } .s211 { animation-delay: 13.85s; } .s212 { animation-delay: 13.90s; } .s213 { animation-delay: 13.95s; } .s214 { animation-delay: 14.00s; } .s215 { animation-delay: 14.05s; } .s216 { animation-delay: 14.10s; } .s232 { animation-delay: 14.15s; } .s233 { animation-delay: 14.20s; } .s234 { animation-delay: 14.25s; } .s235 { animation-delay: 14.30s; } .s236 { animation-delay: 14.35s; } .s237 { animation-delay: 14.40s; } .s253 { animation-delay: 14.45s; } .s254 { animation-delay: 14.50s; } .s255 { animation-delay: 14.55s; } .s256 { animation-delay: 14.60s; } .s257 { animation-delay: 14.65s; } .s258 { animation-delay: 14.70s; } .s259 { animation-delay: 14.75s; } .s275 { animation-delay: 14.80s; } .s276 { animation-delay: 14.85s; } .s277 { animation-delay: 14.90s; } .s278 { animation-delay: 14.95s; } .s279 { animation-delay: 15.00s; } .s280 { animation-delay: 15.05s; } .s281 { animation-delay: 15.10s; } .s296 { animation-delay: 15.15s; } .s297 { animation-delay: 15.20s; } .s298 { animation-delay: 15.25s; } .s299 { animation-delay: 15.30s; } .s300 { animation-delay: 15.35s; } .s301 { animation-delay: 15.40s; } .s302 { animation-delay: 15.45s; } .s303 { animation-delay: 15.50s; } .s304 { animation-delay: 15.55s; } .s318 { animation-delay: 15.60s; } .s319 { animation-delay: 15.65s; } .s320 { animation-delay: 15.70s; } .s321 { animation-delay: 15.75s; } .s322 { animation-delay: 15.80s; } .s323 { animation-delay: 15.85s; } .s324 { animation-delay: 15.90s; } .s339 { animation-delay: 15.95s; } .s340 { animation-delay: 16.00s; } .s341 { animation-delay: 16.05s; } .s342 { animation-delay: 16.10s; } .s343 { animation-delay: 16.15s; } .s344 { animation-delay: 16.20s; } .s345 { animation-delay: 16.25s; } .s361 { animation-delay: 16.30s; } .s362 { animation-delay: 16.35s; } .s363 { animation-delay: 16.40s; } .s364 { animation-delay: 16.45s; } .s365 { animation-delay: 16.50s; } .s384 { animation-delay: 16.55s; } .s385 { animation-delay: 16.60s; } .s386 { animation-delay: 16.65s; } </style> </head> <body> <div class="start"> <div class="digit"> <div></div> <div></div> <div>Loading...</div> </div> </div> <div class="wrapper back-cubi"> <div id="drunktext" class="drunked"> <span>W</span><span>E</span><span>L</span><span>C</span><span>O</span><span>M</span><span>E</span> </div> <div class="grids"> <div class="uzu" id="uzu"> <input class="blinds checkboxi" id="blinds" type="checkbox" /> <label for="blinds" class="checkboxi-lab">Open blinds</label> <ul> <li> <a href="http://burundukas.lt/" target="_blank">http://burundukas.lt/</a> </li> <li> <a href="https://css.github.io/csso/csso.html" target="_blank">https://css.github.io/csso/csso.html</a> </li> <li> <a href=" https://www.codingame.com/playgrounds/9799/learn-solve-call-apply-and-bind-methods-in-javascript" target="_blank">https://www.codingame.com </a> </li> <li> <a href="https://glennmccomb.com/articles/creating-smooth-sequential-animations-with-sass/" target="_blank">https://glennmccomb.com/</a> </li> <li> <a href="https://appdividend.com/2019/07/11/javascript-constructor-tutorial-constructor-in-javascript-example/" target="_blank">https://appdividend.com/</a> </li> <li> <a href="https://www.keycdn.com/blog/javascript-performance" target="_blank">https://www.keycdn.com/blog/javascript-performance</a> </li> <li> <a href="https://jsoneditoronline.org/" target="_blank">https://jsoneditoronline.org/</a> </li> <li> <a href="https://html-css-js.com/css/generator/column/" target="_blank">https://html-css-js.com/css/generator/column/</a> </li> <li><a href="#"></a></li> <li><a href="#"></a></li> <li><a href="#"></a></li> <li><a href="#"></a></li> <li><a href="#"></a></li> <li><a href="#"></a></li> <li><a href="#"></a></li> <li><a href="#"></a></li> <li><a href="#"></a></li> <li><a href="#"></a></li> <li><a href="#"></a></li> <li><a href="#"></a></li> </ul> </div> <div class="gridelem"><input class="blinds checkboxi" id="tetris" type="checkbox" /> <label for="tetris" class="checkboxi-lab">Omg Tetris</label> <div class="tetris back-cubi"> <div class="tetris-block"> Thank you for watching <span></span><span></span><span></span><span></span> </div> </div> </div> <div class="gridelem"> <input class="cars checkboxi" id="cars" type="checkbox" /> <label for="cars" class="checkboxi-lab">Road to hill</label> <div id="main"> <div id="fro">Thank you</div> <div id="box"> <div class="center"></div> <div class="center"></div> <div class="center"></div> <div class="center"></div> <div class="center"></div> <div class="center"></div> <div class="center"></div> <div class="center"></div> <div class="center"></div> <div class="center"></div> <div class="center"></div> <div class="center"></div> <div class="center"></div> <div class="center"></div> <div class="center"></div> <div class="center"></div> <div class="center"></div> <div class="center"></div> <div class="center"></div> <div class="center"></div> <div class="center"></div> <div class="center"></div> <div class="center"></div> <div class="center"></div> <div class="center"></div> <div class="center"></div> <div class="center"></div> <div class="center"></div> <div class="center"></div> <div class="center"></div> <div class="center"></div> <div class="center"></div> <div class="center"></div> <div class="center"></div> </div> </div> </div> <div class="gridelem"> <div class="grid-container"> <input class="gridltu checkboxi" id="gridltu" type="checkbox" /> <label for="gridltu" class="checkboxi-lab">Show me magic</label> <div class="item1"></div> <div class="item2"></div> <div class="item3"></div> <div class="item4"></div> <div class="item5"></div> <div class="item6"></div> <div class="item7"></div> <div class="item8"></div> <div class="item9"></div> <div class="item10"></div> <div class="item11"></div> <div class="item12"></div> <div class="item13"></div> <div class="item14"></div> <div class="item15"></div> <div class="item16"></div> <div class="item17"></div> <div class="item18"></div> <div class="item19"></div> <div class="item20"></div> <div class="item21"></div> <div class="item22"></div> <div class="item23"></div> <div class="item24"></div> <div class="item25"></div> <div class="item26"></div> <div class="item27"></div> <div class="item28"></div> <div class="item29"></div> <div class="item30"></div> <div class="item31"></div> <div class="item32"></div> <div class="item33"></div> <div class="item34"></div> <div class="item35"></div> <div class="item36"></div> <div class="item37"></div> <div class="item38"></div> <div class="item39"></div> <div class="item40"></div> <div class="item41"></div> <div class="item42"></div> <div class="item43"></div> <div class="item44"></div> <div class="item45"></div> <div class="item46"></div> <div class="item47"></div> <div class="item48"></div> <div class="item49"></div> <div class="item50"></div> <div class="item51"></div> <div class="item52"></div> <div class="item53"></div> <div class="item54"></div> <div class="item55"></div> <div class="item56"></div> <div class="item57"></div> <div class="item58"></div> <div class="item59"></div> <div class="item60"></div> <div class="item61"></div> <div class="item62"></div> <div class="item63"></div> <div class="item64"></div> <div class="item65"></div> <div class="item66"></div> <div class="item67"></div> <div class="item68"></div> <div class="item69"></div> <div class="item70"></div> <div class="item71"></div> <div class="item72"></div> <div class="item73"></div> <div class="item74"></div> <div class="item75"></div> <div class="item76"></div> <div class="item77"></div> <div class="item78"></div> <div class="item79"></div> <div class="item80"></div> <div class="item81"></div> <div class="item82"></div> <div class="item83"></div> <div class="item84"></div> <div class="item85"></div> <div class="item86"></div> <div class="item87"></div> <div class="item88"></div> <div class="item89"></div> <div class="item90"></div> <div class="item91"></div> <div class="item92"></div> <div class="item93"></div> <div class="item94"></div> <div class="item95"></div> <div class="item96"></div> <div class="item97"></div> <div class="item98"></div> <div class="item99"></div> <div class="item100"></div> <div class="item101"></div> <div class="item102"></div> <div class="item103"></div> <div class="item104"></div> <div class="item105"></div> <div class="item106"></div> <div class="item107"></div> <div class="item108"></div> <div class="item109"></div> <div class="item110"></div> <div class="item111"></div> <div class="item112"></div> <div class="item113"></div> <div class="item114"></div> <div class="item115"></div> <div class="item116"></div> <div class="item117"></div> <div class="item118"></div> <div class="item119"></div> <div class="item120"></div> <div class="item121"></div> <div class="item122"></div> <div class="item123"></div> <div class="item124"></div> <div class="item125"></div> <div class="item126"></div> <div class="item127"></div> <div class="item128"></div> <div class="item129"></div> <div class="item130"></div> <div class="item131"></div> <div class="item132"></div> <div class="item133"></div> <div class="item134"></div> <div class="item135"></div> <div class="item136"></div> <div class="item137"></div> <div class="item138"></div> <div class="item139"></div> <div class="item140"></div> <div class="item141"></div> <div class="item142"></div> <div class="item143"></div> <div class="item144"></div> <div class="item145"></div> <div class="item146"></div> <div class="item147"></div> </div> </div> <div class="svg"> <input class="water checkboxi" id="water" type="checkbox" /> <label for="water" class="checkboxi-lab">Omg water drop</label> <svg version="1.1" viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <defs> <linearGradient id="a"> <stop stop-color="#fff" stop-opacity="0" offset="0"></stop> <stop stop-color="#000080" stop-opacity=".68978" offset=".60182"></stop> <stop stop-color="#000080" stop-opacity="0" offset="1"></stop> </linearGradient> <radialGradient id="gax" cx="1325.2" cy="-540.85" r="41.416" fy="-522.89" gradientTransform="matrix(3.6294 -1.584e-7 1.4055e-7 3.2205 -4663.6 1942.3)" gradientUnits="userSpaceOnUse" spreadMethod="reflect" xlink:href="#a"></radialGradient> <radialGradient id="fax" cx="1326.7" cy="-521.4" r="32.144" gradientTransform="matrix(3.7553 0 0 1.0845 -4831 828.63)" gradientUnits="userSpaceOnUse" xlink:href="#a"></radialGradient> <radialGradient id="c" cx="1325.2" cy="-540.85" r="41.416" fy="-522.89" gradientTransform="matrix(6.8895 0 0 6.1129 -8983.6 3506.8)" gradientUnits="userSpaceOnUse" spreadMethod="reflect" xlink:href="#a"></radialGradient> <radialGradient id="b" cx="1312" cy="-520.29" r="39.126" gradientTransform="matrix(4.5423 0 0 .84481 -5809.8 646.89)" gradientUnits="userSpaceOnUse" xlink:href="#a"> </radialGradient> </defs> <g id="waterdrop0" fill-rule="evenodd"> <path d="m13.476 181.98c0.4592 2.6784 1.0219 5.3687 1.5783 7.9999 19.187 24.833 72.188 42.708 134.69 42.708 62.505 0 115.59-17.876 134.8-42.708 0.5564-2.6313 1.1187-5.3213 1.5783-7.9999-17.877 18.938-72.233 32.644-136.38 32.644-64.139 0-118.4-13.707-136.27-32.644z" fill="url(#b)" stroke-width="3.4841"></path> <path d="m294.3 150c0 81.414-64.606 147.41-144.3 147.41-79.696 0-144.3-65.996-144.3-147.41s64.606-147.41 144.3-147.41c79.696 0 144.3 65.996 144.3 147.41z" fill="url(#gax)" stroke-width="3.4841"></path> <g> <path d="m52.15 231.67c-15.909-2.4288-15.703 3.8562-7.9191 13.698 24.427 31.932 64.415 50.168 106.64 50.168s82.121-18.243 106.53-50.168c7.4445-9.5204 9.9639-17.206-7.9188-13.611-30.928 6.3202-65.279 1.6268-98.615 1.6152-33.335-0.0104-67.718 4.6328-98.719-1.7024z" fill="url(#fax)" stroke-width="3.4841"></path> <path d="m182.03 20.53c0-5.484-14.325-9.9297-31.996-9.9297-17.67 0-31.996 4.4457-31.996 9.9297s14.325 9.9297 31.996 9.9297c17.671 0 31.996-4.4457 31.996-9.9297z" fill="#fff" stroke-width="2.6213"></path> <path d="m245.87 39.762c16.008 25.812 25.586 86.159 25.586 121.4 0 84.149-54.338 124.45-121.4 124.45-67.059 0-121.51-40.297-121.51-124.45 0-35.204 9.6082-95.493 25.586-121.29-29.701 27-48.45 66.265-48.45 110.08 4e-4 81.414 64.68 147.42 144.38 147.42s144.26-66.01 144.26-147.42c0-43.844-18.712-83.184-48.45-110.19z" fill="url(#c)" stroke-width="3.4841"></path> </g> <path d="m152.14 13.074c-2.1177-0.0348-4.3015 0.0401-6.4237 0.10871-27.901 0.70362-54.92 10.72-76.867 27.764 2.4803-1.3279 5.0718-2.4934 7.6215-3.7019 21.818-12.107 46.722-19.054 73.275-19.054 25.976 0 50.415 6.6638 71.86 18.292 0.1045 0.0477 0.223 0.061 0.3275 0.1087 3.1417 1.4618 6.215 2.9302 9.2549 4.5729-22.389-17.742-50.419-27.629-79.048-28.091z" fill="#fff" stroke-width="3.4841"></path> </g> </svg> </div> <div class="gridelem"> <input class="longanim checkboxi" id="longanim" type="checkbox" /> <label for="longanim" class="checkboxi-lab">Long anim 20s</label> <div class="classGridx"> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> </div> </div> <div class="gridelem"> <input class="checkboxi" id="loader" type="checkbox"> <label for="loader" class="checkboxi-lab">Animate counter</label> <div class="digit animat"> <div></div> <div></div> <div class="text">Loading...</div> </div> </div> <div class="gridelem"> <input class="checkboxi" id="metterinpput" type="checkbox" /> <label for="metterinpput" class="checkboxi-lab">Metter 7cm anim</label> <div class="wrapsvg"> <svg id="metterfill" version="1.1" viewBox="0 0 300 210.04" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <defs> <linearGradient id="caf"> <stop stop-color="#fff" offset="0" /> <stop stop-color="#fff" stop-opacity="0" offset="1" /> </linearGradient> <linearGradient id="baf"> <stop offset="0" /> <stop stop-color="#272727" offset="1" /> <stop stop-color="#626262" offset="1" /> </linearGradient> <linearGradient id="aaf"> <stop stop-color="#ccc" offset="0" /> <stop stop-color="#989898" offset=".72581" /> <stop stop-color="#a9a9a9" offset="1" /> </linearGradient> <linearGradient id="daf"> <stop offset="0" /> <stop stop-color="#fff" offset=".93641" /> <stop stop-color="#929292" offset=".9682" /> <stop stop-color="#838383" offset=".9841" /> <stop stop-color="#404040" offset="1" /> </linearGradient> <filter id="e" color-interpolation-filters="sRGB"> <feGaussianBlur stdDeviation="0.50562442" /> </filter> <filter id="aa" color-interpolation-filters="sRGB"> <feGaussianBlur stdDeviation="0.98198579" /> </filter> <filter id="z" color-interpolation-filters="sRGB"> <feGaussianBlur stdDeviation="0.32402324" /> </filter> <filter id="y" color-interpolation-filters="sRGB"> <feGaussianBlur stdDeviation="0.2621564" /> </filter> <filter id="ad" x="-.049205" y="-.10225" width="1.0984" height="1.2045" color-interpolation-filters="sRGB"> <feGaussianBlur stdDeviation="0.84900784" /> </filter> <filter id="ac" color-interpolation-filters="sRGB"> <feGaussianBlur stdDeviation="1.2617957" /> </filter> <filter id="ab" color-interpolation-filters="sRGB"> <feGaussianBlur stdDeviation="1.1842736" /> </filter> <linearGradient id="x" x1="86.029" x2="86.029" y1="372.45" y2="408.53" gradientTransform="matrix(.45346 -.1215 .57496 .33196 -173.2 126.21)" gradientUnits="userSpaceOnUse"> <stop stop-color="#dec800" offset="0" /> <stop stop-color="#b5a10a" offset=".38554" /> <stop stop-color="#a49a00" offset=".70268" /> <stop stop-color="#e7cd00" offset="1" /> </linearGradient> <linearGradient id="w" x1="180.29" x2="65.686" y1="242.81" y2="250.54" gradientUnits="userSpaceOnUse" spreadMethod="reflect" xlink:href="#d" /> <radialGradient id="o" cx="-56.265" cy="871.33" r="28.986" gradientTransform="matrix(.92913 -.25159 .20297 .74959 -39.356 -433.32)" gradientUnits="userSpaceOnUse" xlink:href="#d" /> <radialGradient id="n" cx="-55.662" cy="904.6" r="4.836" gradientTransform="matrix(.46946 0 0 .22668 105.76 40.5)" gradientUnits="userSpaceOnUse" xlink:href="#aaf" /> <radialGradient id="m" cx="-63.44" cy="906.61" r="4.836" gradientTransform="matrix(.46946 0 0 .22668 105.76 40.988)" gradientUnits="userSpaceOnUse" xlink:href="#a" /> <linearGradient id="v" x1="-60.498" x2="-50.826" y1="903.97" y2="903.97" gradientTransform="matrix(.46946 0 0 .46946 105.76 -179.12)" gradientUnits="userSpaceOnUse" xlink:href="#a" /> <linearGradient id="u" x1="-68.276" x2="-58.604" y1="906.03" y2="906.03" gradientTransform="matrix(.46946 0 0 .46946 105.76 -179.12)" gradientUnits="userSpaceOnUse" xlink:href="#a" /> <radialGradient id="k" cx="512.92" cy="92.354" r="24.127" gradientTransform="matrix(1,0,0,1.7504,0,-69.303)" gradientUnits="userSpaceOnUse" xlink:href="#baf" /> <linearGradient id="q" x1="823.94" x2="813.47" y1="605.56" y2="598.14" gradientTransform="matrix(1.3027,0,0,1.3027,-247.31,-183.87)" gradientUnits="userSpaceOnUse" xlink:href="#b" /> <radialGradient id="i" cx="592.4" cy="657.92" r="9.2321" gradientTransform="translate(0 1.5204e-6)" gradientUnits="userSpaceOnUse" xlink:href="#a" /> <radialGradient id="g" cx="499.13" cy="128.22" r="8.851" gradientTransform="matrix(1,0,0,2.7887,0,-229.35)" gradientUnits="userSpaceOnUse" xlink:href="#caf" /> <radialGradient id="f" cx="468.46" cy="39.494" r="39.411" gradientTransform="matrix(.063944 -.12941 .58385 .26728 446.4 120.58)" gradientUnits="userSpaceOnUse" spreadMethod="reflect" xlink:href="#b" /> <linearGradient id="p" x1="53.569" x2="60.657" y1="253.14" y2="249.15" gradientUnits="userSpaceOnUse" spreadMethod="reflect" xlink:href="#c" /> <radialGradient id="l" cx="447.29" cy="121.69" r="44.789" gradientTransform="matrix(1.7447 .54702 -.45573 1.4535 -288.6 -306.83)" gradientUnits="userSpaceOnUse"> <stop stop-color="#dec800" offset="0" /> <stop stop-color="#b5a10a" offset=".57023" /> <stop stop-color="#a49a00" offset=".69979" /> <stop stop-color="#e7cd00" offset="1" /> </radialGradient> <linearGradient id="s" x1="964.84" x2="1036.7" y1="305.49" y2="466.42" gradientTransform="matrix(.43617 0 0 .4316 154.91 -141.89)" gradientUnits="userSpaceOnUse"> <stop stop-opacity="0" offset="0" /> <stop stop-opacity="0" offset="1" /> </linearGradient> <radialGradient id="j" cx="905.31" cy="574.71" r="46.652" gradientTransform="matrix(.8061 .48137 -.62643 1.049 535.56 -463.96)" gradientUnits="userSpaceOnUse"> <stop offset="0" /> <stop offset=".82408" /> <stop stop-color="#272727" offset=".92907" /> <stop offset="1" /> </radialGradient> <linearGradient id="r" x1="788.83" x2="802.36" y1="597.5" y2="569.43" gradientTransform="matrix(.44032 0 0 .42536 140.21 -148.59)" gradientUnits="userSpaceOnUse"> <stop offset="0" /> <stop stop-color="#272727" offset=".18027" /> <stop stop-color="#333" offset="1" /> </linearGradient> <radialGradient id="h" cx="544.3" cy="87.041" r="30.547" gradientTransform="matrix(1,0,0,1.1676,0,-14.591)" gradientUnits="userSpaceOnUse"> <stop stop-opacity=".74783" offset="0" /> <stop stop-opacity=".36522" offset="1" /> </radialGradient> </defs> <g id="metter" transform="matrix(1.4465 0 0 1.4465 27.031 -207.61)"> <g transform="translate(34.311,-9.7105)"> <path d="m210.43 204.65c-57.848 15.388-111.64 29.673-147.97 39.406 0 0 20.245 11.776 20.344 11.75 37.652-10.895 81.278-22.909 127.62-35.375v-15.781z" color="#000000" fill="url(#x)" stroke="#000" stroke-width=".34884" /> <g fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round"> <g transform="matrix(-.85817 .22995 -.57496 -.33196 495.27 299.65)"> <g stroke-width=".45917"> <path d="m184.81 347.36v5.1767" /> <path d="m181.14 347.36v5.1767" /> <path d="m192.13 347.36v5.1767" /> </g> <path d="m195.79 338.35v14.189" stroke-width=".76018" /> <g stroke-width=".45917"> <path d="m190.3 347.36v5.1767" /> <path d="m193.96 347.36v5.1767" /> <path d="m182.98 347.36v5.1767" /> <path d="m188.47 347.36v5.1767" /> <path d="m179.31 347.36v5.1767" /> </g> <path d="m186.64 343.8v8.7337" stroke-width=".59641" /> </g> <g transform="matrix(-.85817 .22995 -.57496 -.33196 510.79 295.49)"> <g stroke-width=".45917"> <path d="m184.81 347.36v5.1767" /> <path d="m181.14 347.36v5.1767" /> <path d="m192.13 347.36v5.1767" /> </g> <path d="m195.79 338.35v14.189" stroke-width=".76018" /> <g stroke-width=".45917"> <path d="m190.3 347.36v5.1767" /> <path d="m193.96 347.36v5.1767" /> <path d="m182.98 347.36v5.1767" /> <path d="m188.47 347.36v5.1767" /> <path d="m179.31 347.36v5.1767" /> </g> <path d="m186.64 343.8v8.7337" stroke-width=".59641" /> </g> <g transform="matrix(-.85817 .22995 -.57496 -.33196 541.84 287.17)"> <g stroke-width=".45917"> <path d="m184.81 347.36v5.1767" /> <path d="m181.14 347.36v5.1767" /> <path d="m192.13 347.36v5.1767" /> </g> <path d="m195.79 338.35v14.189" stroke-width=".76018" /> <g stroke-width=".45917"> <path d="m190.3 347.36v5.1767" /> <path d="m193.96 347.36v5.1767" /> <path d="m182.98 347.36v5.1767" /> <path d="m188.47 347.36v5.1767" /> <path d="m179.31 347.36v5.1767" /> </g> <path d="m186.64 343.8v8.7337" stroke-width=".59641" /> </g> <g transform="matrix(-.85817 .22995 -.57496 -.33196 526.32 291.33)"> <g stroke-width=".45917"> <path d="m184.81 347.36v5.1767" /> <path d="m181.14 347.36v5.1767" /> <path d="m192.13 347.36v5.1767" /> </g> <path d="m195.79 338.35v14.189" stroke-width=".76018" /> <g stroke-width=".45917"> <path d="m190.3 347.36v5.1767" /> <path d="m193.96 347.36v5.1767" /> <path d="m182.98 347.36v5.1767" /> <path d="m188.47 347.36v5.1767" /> <path d="m179.31 347.36v5.1767" /> </g> <path d="m186.64 343.8v8.7337" stroke-width=".59641" /> </g> <g transform="matrix(-.85817 .22995 -.57496 -.33196 464.22 307.97)"> <g stroke-width=".45917"> <path d="m184.81 347.36v5.1767" /> <path d="m181.14 347.36v5.1767" /> <path d="m192.13 347.36v5.1767" /> </g> <path d="m195.79 338.35v14.189" stroke-width=".76018" /> <g stroke-width=".45917"> <path d="m190.3 347.36v5.1767" /> <path d="m193.96 347.36v5.1767" /> <path d="m182.98 347.36v5.1767" /> <path d="m188.47 347.36v5.1767" /> <path d="m179.31 347.36v5.1767" /> </g> <path d="m186.64 343.8v8.7337" stroke-width=".59641" /> </g> <g transform="matrix(-.85817 .22995 -.57496 -.33196 448.7 312.13)"> <g stroke-width=".45917"> <path d="m184.81 347.36v5.1767" /> <path d="m181.14 347.36v5.1767" /> <path d="m192.13 347.36v5.1767" /> </g> <path d="m195.79 338.35v14.189" stroke-width=".76018" /> <g stroke-width=".45917"> <path d="m190.3 347.36v5.1767" /> <path d="m193.96 347.36v5.1767" /> <path d="m182.98 347.36v5.1767" /> <path d="m188.47 347.36v5.1767" /> <path d="m179.31 347.36v5.1767" /> </g> <path d="m186.64 343.8v8.7337" stroke-width=".59641" /> </g> <g transform="matrix(-.85817 .22995 -.57496 -.33196 479.75 303.81)"> <g stroke-width=".45917"> <path d="m184.81 347.36v5.1767" /> <path d="m181.14 347.36v5.1767" /> <path d="m192.13 347.36v5.1767" /> </g> <path d="m195.79 338.35v14.189" stroke-width=".76018" /> <g stroke-width=".45917"> <path d="m190.3 347.36v5.1767" /> <path d="m193.96 347.36v5.1767" /> <path d="m182.98 347.36v5.1767" /> <path d="m188.47 347.36v5.1767" /> <path d="m179.31 347.36v5.1767" /> </g> <path d="m186.64 343.8v8.7337" stroke-width=".59641" /> </g> <g transform="matrix(-.85817 .22995 -.57496 -.33196 432.99 316.3)"> <g stroke-width=".45917"> <path d="m184.81 347.36v5.1767" /> <path d="m181.14 347.36v5.1767" /> <path d="m192.13 347.36v5.1767" /> </g> <path d="m195.79 338.35v14.189" stroke-width=".76018" /> <g stroke-width=".45917"> <path d="m190.3 347.36v5.1767" /> <path d="m193.96 347.36v5.1767" /> <path d="m182.98 347.36v5.1767" /> <path d="m188.47 347.36v5.1767" /> <path d="m179.31 347.36v5.1767" /> </g> <path d="m186.64 343.8v8.7337" stroke-width=".59641" /> </g> </g> <path d="m93.764 247.64-1.0041 0.26904-1.9173-1.1069c-0.19304 0.19864-0.49686 0.3887-0.91145 0.57019l-0.46166-0.26654c0.21857-0.0953 0.42118-0.21896 0.60778-0.37099 0.18539-0.15272 0.25439-0.29108 0.207-0.4151l0.81468-0.2183 2.665 1.5386" /> <path d="m108.22 243.36 0.47252 0.27281-3.5196 0.94308c-0.14054-0.11334-0.19515-0.24154-0.1639-0.38459 0.0301-0.14374 0.194-0.36724 0.49186-0.67048 0.23897-0.24462 0.37165-0.4026 0.39805-0.47395 0.0331-0.0976-2e-3 -0.17608-0.10415-0.23531-0.11346-0.0655-0.26111-0.0994-0.44294-0.1017-0.18066-4e-3 -0.377 0.023-0.589 0.0798-0.20963 0.0562-0.34442 0.11931-0.4043 0.18944-0.0599 0.0701-0.0251 0.1506 0.10425 0.24142l-1.0512 0.2388c-0.22047-0.17762-0.23442-0.34375-0.0419-0.49839 0.19254-0.15464 0.52463-0.29514 0.9963-0.42153 0.51692-0.13851 0.99369-0.20657 1.4303-0.20419 0.4366 2e-3 0.7599 0.0642 0.96992 0.18545 0.11948 0.069 0.19065 0.14634 0.21353 0.23202 0.0241 0.0844 4e-3 0.18527-0.0616 0.3027-0.043 0.0779-0.14935 0.20173-0.31892 0.37164-0.16958 0.1699-0.27311 0.28028-0.31058 0.33114-0.0351 0.0502-0.0559 0.0956-0.0625 0.1361l1.9938-0.53425" /> <path d="m120.9 239.77 0.91217-0.29491c0.15649 0.0642 0.33582 0.0972 0.53798 0.0992s0.39972-0.0229 0.59268-0.0746c0.20724-0.0555 0.34129-0.12513 0.4022-0.20878 0.0633-0.0843 0.0273-0.16545-0.10787-0.2435-0.12794-0.0739-0.29725-0.11419-0.50782-0.12102-0.21063-7e-3 -0.41359 0.0159-0.60893 0.0683-0.12863 0.0345-0.26958 0.083-0.42294 0.14545l-0.30381-0.26904c0.275-0.0708 0.45287-0.14327 0.53302-0.21782 0.0789-0.0752 0.0659-0.14315-0.0391-0.20378-0.0893-0.0516-0.21296-0.0786-0.37085-0.0812-0.15795-3e-3 -0.32383 0.0194-0.49773 0.066-0.1715 0.046-0.28782 0.10264-0.34898 0.17003-0.0611 0.0674-0.0469 0.13805 0.0428 0.21196l-1.0051 0.20199c-0.0962-0.10992-0.12767-0.20963-0.0944-0.29915 0.0345-0.0908 0.14007-0.18292 0.31682-0.27619 0.1779-0.0946 0.41101-0.18053 0.69925-0.25776 0.4931-0.13213 0.96819-0.19209 1.4253-0.17989 0.37571 0.01 0.64564 0.0617 0.80978 0.15642 0.23295 0.1345 0.16751 0.30915-0.19632 0.52397 0.33274-0.0616 0.64516-0.0836 0.93727-0.066 0.2945 0.017 0.522 0.0718 0.68254 0.16451 0.23293 0.13449 0.26355 0.29412 0.0918 0.47889-0.17174 0.18477-0.50773 0.34417-1.008 0.47821-0.47404 0.12702-0.93589 0.19262-1.3855 0.1968-0.45086 3e-3 -0.81295-0.0525-1.0863-0.16805" /> <path d="m138.37 235.68-0.53408-0.30835-2.1439 0.57446-0.44537-0.25714 0.58704-1.5821 0.84327-0.22595 1.6837 0.97209 0.65033-0.17425 0.44718 0.25818-0.65033 0.17425 0.53408 0.30836-0.97191 0.26042m-0.98126-0.56653-0.90703-0.52368-0.29714 0.84633 1.2042-0.32265" /> <path d="m151.97 231.46 0.948-0.29839c0.14323 0.0585 0.31893 0.0885 0.52707 0.0899 0.20693 6.7e-4 0.40211-0.0236 0.58553-0.0727 0.20962-0.0562 0.34426-0.12845 0.40387-0.21687 0.0584-0.0891 7e-4 -0.18384-0.17309-0.28418-0.16295-0.0941-0.3575-0.14499-0.58367-0.15274-0.22501-9e-3 -0.45304 0.0173-0.68411 0.0792-0.28824 0.0772-0.48213 0.18377-0.58166 0.31961l-0.87444 0.1838-0.86682-0.93541 2.6549-0.71137 0.47614 0.2749-1.8938 0.50744 0.29358 0.3024c0.16717-0.0928 0.36751-0.1704 0.60096-0.23296 0.44546-0.11935 0.9051-0.17314 1.3789-0.16135 0.47382 0.0118 0.84169 0.0933 1.1036 0.24451 0.21845 0.12613 0.28832 0.27218 0.20959 0.43815-0.1065 0.22647-0.46228 0.42076-1.0673 0.58289-0.48357 0.12957-0.94359 0.19723-1.3801 0.20298-0.43647 6e-3 -0.79552-0.0475-1.0772-0.15978" /> <path d="m169.57 225.63-0.91758 0.29179c-0.12519-0.0521-0.26197-0.0788-0.4103-0.0798-0.14835-1e-3 -0.3023 0.0198-0.4619 0.0625-0.21201 0.0568-0.34356 0.13288-0.39472 0.22819-0.0488 0.0947 0.0605 0.23529 0.32774 0.4218 0.10046-0.15343 0.3365-0.27993 0.70811-0.37951 0.41925-0.11233 0.85863-0.16171 1.3181-0.14812 0.46187 0.0129 0.82076 0.0933 1.0766 0.24103 0.27157 0.15678 0.33221 0.32469 0.18191 0.50371-0.1503 0.17903-0.472 0.33461-0.9651 0.46673-0.52883 0.14171-1.0674 0.19826-1.6156 0.16968-0.54945-0.0293-1.0613-0.18084-1.5357-0.4547-0.4864-0.28083-0.65956-0.53082-0.51946-0.74996s0.49363-0.40467 1.0606-0.55658c0.39782-0.1066 0.7833-0.16192 1.1564-0.166 0.37428-5e-3 0.70457 0.0443 0.99088 0.14922m-1.1663 1.2506c0.16535 0.0955 0.36832 0.14922 0.60892 0.16127 0.23939 0.0114 0.45556-9e-3 0.64852-0.0605 0.18579-0.0498 0.30383-0.11252 0.35408-0.18822 0.0502-0.0757-9e-3 -0.16198-0.17628-0.25885-0.17261-0.0996-0.36544-0.15459-0.57849-0.16484-0.21426-0.0109-0.42145 0.0104-0.62155 0.064-0.19294 0.0517-0.3175 0.11773-0.37366 0.19807-0.0574 0.0796-0.0112 0.16267 0.13846 0.24908" /> <path d="m181.56 222.3-0.47252-0.27282 3.4338-0.92009 0.36933 0.21323c-0.14227 0.15749-0.22774 0.35179-0.25641 0.58291-0.0287 0.23112 0.0286 0.45348 0.1719 0.66709 0.14445 0.21227 0.33495 0.38569 0.57148 0.52023l-0.96834 0.25947c-0.35027-0.2163-0.57551-0.47222-0.67581-0.76774-0.0979-0.29616-0.0613-0.59419 0.1098-0.89409l-2.2833 0.61181" /> <path d="m198.67 218.32c-0.3152 0.0375-0.58059 0.0444-0.79626 0.0205-0.21448-0.0252-0.37966-0.0712-0.49553-0.13809-0.19794-0.11428-0.2257-0.24509-0.0833-0.39242 0.1448-0.14796 0.46851-0.28929 0.97114-0.42397 0.49787-0.1334 0.94834-0.19952 1.3514-0.19836 0.40547 5.2e-4 0.70718 0.0579 0.90512 0.1722 0.1231 0.0711 0.16981 0.15141 0.14012 0.24098-0.0309 0.0889-0.13535 0.1786-0.31334 0.26914 0.34976-0.0437 0.6564-0.0529 0.91993-0.0277 0.26591 0.0247 0.47309 0.0798 0.62155 0.16555 0.24501 0.14146 0.28932 0.29793 0.13292 0.46941-0.154 0.17084-0.48709 0.32487-0.99924 0.4621-0.47644 0.12766-0.93642 0.19735-1.38 0.20908-0.52367 0.0138-0.91585-0.0546-1.1765-0.20508-0.14364-0.0829-0.20489-0.17771-0.18387-0.28435 0.0198-0.10735 0.14846-0.22036 0.38581-0.33906m-0.30511-0.35134c0.10139 0.0585 0.23639 0.0892 0.40512 0.0919 0.17108 2e-3 0.35069-0.022 0.53888-0.0725 0.19056-0.0511 0.31468-0.10828 0.37228-0.17168 0.0564-0.0641 0.0339-0.1254-0.0675-0.18394-0.0953-0.055-0.22855-0.0836-0.39963-0.0857-0.16989-3e-3 -0.34775 0.0197-0.53354 0.0695-0.19296 0.0517-0.31763 0.1096-0.37405 0.17368-0.0564 0.0641-0.0369 0.12365 0.0584 0.1787m1.044 0.68132c0.14001 0.0808 0.31954 0.12507 0.53851 0.13271 0.22138 7e-3 0.43807-0.0179 0.65009-0.0747 0.20724-0.0555 0.34132-0.1231 0.4023-0.20268 0.0597-0.0803 0.0184-0.16154-0.12403-0.24376-0.12431-0.0718-0.29297-0.11076-0.50596-0.11694-0.21421-7e-3 -0.42731 0.0181-0.63932 0.0749-0.24536 0.0658-0.38595 0.13963-0.42173 0.22166-0.0334 0.0814-4e-5 0.15101 0.10014 0.20884" /> <path d="m66.397 242.12c-0.51532-0.0142-0.98618 0.0208-1.375 0.125l-0.0625 0.0312c-0.0057-4e-3 0.0054-0.0273 0-0.0312l-3.9375 1.0625c-0.09721 0.026-0.16749 0.0616-0.25 0.0937h-0.03125c-0.69637 0.28741-0.68948 0.60437-0.6875 0.9375v11.312c0 1.6196 2.6741 4.872 5.0625 5.8438 0.91618 0.37277 2.0647-0.65125 2.9688-0.25 1.3393 0.59445 1.5554 2.533 2.6562 3.5 1.627 1.4292 5.6562 3.25 5.6562 3.25 2.8067 1.6198 5.0312 1.6196 5.0312 0v-10.906s-0.04011-0.56187 0.0625-0.8125c0.06978-0.17053 0.34375-0.40625 0.34375-0.40625l4.4375-1.3125c0.0972-0.026 0.19874-0.0616 0.28125-0.0937 0.0114-4e-3 0.02035-0.0273 0.03125-0.0312 1.1971-0.49264 0.76965-1.6297-1.0625-2.6875l-5.2188-3.0313c0.04079-3e-3 0.0872 6e-3 0.125 0h0.03125l5.5-1.4688c0.0394-0.01 0.06125-0.0178 0.09375-0.0312 0.42005-0.17329 0.27005-0.56507-0.375-0.9375l-5-2.875c-0.64895-0.37467-1.5599-0.594-2.125-0.5h-0.03125l-5.5 1.4688c-0.03937 0.01-0.06135 0.018-0.09375 0.0312-0.01833 7e-3 -0.01504 0.0229-0.03125 0.0312l-1.5312-0.875c-1.479-0.85394-3.4228-1.3964-4.9688-1.4375zm-2.3125 11.281a1.0001 1.0001 0 0 1 0.0625 0 1.0001 1.0001 0 0 1 0.03125 0 1.0001 1.0001 0 0 1 0.0625 0 1.0001 1.0001 0 0 1 0.03125 0 1.0001 1.0001 0 0 1 0.0625 0 1.0001 1.0001 0 0 1 0.03125 0 1.0001 1.0001 0 0 1 0.53125 0.1875 1.0001 1.0001 0 0 1 0.09375 0.0625 1.0001 1.0001 0 0 1 0 0.0312 1.0001 1.0001 0 0 1 0.0625 0.0625c0.36269 0.42024 0.74165 0.81383 1.0938 1.1562s0.6875 0.63289 1.0312 0.90625 0.66233 0.50568 1 0.71875c0.68243 0.43279 1.36 0.76006 2.0312 1 0.33225 0.11876 0.63582 0.19651 0.96875 0.28125 0.67539 0.17369 1.3393 0.28774 2.0312 0.375a1.0001 1.0001 0 0 1 0.09375 0 1.0001 1.0001 0 0 1 0.09375 0.0312 1.0001 1.0001 0 0 1 0.09375 0 1.0001 1.0001 0 0 1 0.09375 0.0625 1.0001 1.0001 0 0 1 0.53125 0.4375 1.0001 1.0001 0 0 1 0 0.0312 1.0001 1.0001 0 0 1 0.09375 0.25 1.0001 1.0001 0 0 1 0 0.0312 1.0001 1.0001 0 0 1-0.03125 0.375 1.0001 1.0001 0 0 1-0.0625 0.1875 1.0001 1.0001 0 0 1-0.03125 0.0937 1.0001 1.0001 0 0 1-0.0625 0.0937 1.0001 1.0001 0 0 1-0.125 0.15625 1.0001 1.0001 0 0 1-0.1875 0.0937 1.0001 1.0001 0 0 1-0.15625 0.0937 1.0001 1.0001 0 0 1-0.28125 0.0625 1.0001 1.0001 0 0 1-0.03125 0 1.0001 1.0001 0 0 1-0.0625 0 1.0001 1.0001 0 0 1-0.21875-0.0312c-0.67594-0.0852-1.3575-0.19856-2.0625-0.375-0.06395-0.0159-0.12335-0.0456-0.1875-0.0625-0.0094-2e-3 -0.02186 3e-3 -0.03125 0-0.38642-0.10242-0.7636-0.20127-1.1562-0.34375-1.5706-0.56993-3.1726-1.4964-4.7812-3.0312-0.40216-0.38372-0.81806-0.81697-1.2188-1.2812a1.0001 1.0001 0 0 1-0.0625-0.0625 1.0001 1.0001 0 0 1-0.03125-0.0625 1.0001 1.0001 0 0 1-0.03125-0.0312 1.0001 1.0001 0 0 1 0-0.0312 1.0001 1.0001 0 0 1-0.03125-0.0625 1.0001 1.0001 0 0 1-0.03125-0.0625 1.0001 1.0001 0 0 1 0-0.0312 1.0001 1.0001 0 0 1-0.03125-0.0625 1.0001 1.0001 0 0 1 0-0.0312 1.0001 1.0001 0 0 1 0-0.0625 1.0001 1.0001 0 0 1-0.03125-0.0312 1.0001 1.0001 0 0 1 0-0.0625 1.0001 1.0001 0 0 1 0-0.0312 1.0001 1.0001 0 0 1 0-0.0937 1.0001 1.0001 0 0 1 0-0.0312 1.0001 1.0001 0 0 1 0.03125-0.15625 1.0001 1.0001 0 0 1 0-0.0312 1.0001 1.0001 0 0 1 0.03125-0.0625 1.0001 1.0001 0 0 1 0-0.0312 1.0001 1.0001 0 0 1 0.03125-0.0625 1.0001 1.0001 0 0 1 0-0.0312 1.0001 1.0001 0 0 1 0.0625-0.0625 1.0001 1.0001 0 0 1 0-0.0312 1.0001 1.0001 0 0 1 0.0625-0.0312 1.0001 1.0001 0 0 1 0-0.0312 1.0001 1.0001 0 0 1 0.0625-0.0625 1.0001 1.0001 0 0 1 0-0.0312 1.0001 1.0001 0 0 1 0.0625-0.0312 1.0001 1.0001 0 0 1 0.09375-0.0937 1.0001 1.0001 0 0 1 0.03125-0.0312 1.0001 1.0001 0 0 1 0.09375-0.0312 1.0001 1.0001 0 0 1 0.03125 0 1.0001 1.0001 0 0 1 0.03125-0.0312 1.0001 1.0001 0 0 1 0.1875-0.0625z" color="#000000" fill="url(#w)" opacity=".1814" /> <path d="m66.397 242.12c-0.51532-0.0142-0.98618 0.0208-1.375 0.125l-0.0625 0.0312c-0.0057-4e-3 0.0054-0.0273 0-0.0312l-3.9375 1.0625c-0.09721 0.026-0.16749 0.0616-0.25 0.0937h-0.03125c-0.69637 0.28741-0.68948 0.60437-0.6875 0.9375v11.312c0 1.6196 2.6741 4.872 5.0625 5.8438 0.91618 0.37277 2.0647-0.65125 2.9688-0.25 1.3393 0.59445 1.5554 2.533 2.6562 3.5 1.627 1.4292 5.6562 3.25 5.6562 3.25 2.8067 1.6198 5.0312 1.6196 5.0312 0v-10.906s-0.04011-0.56187 0.0625-0.8125c0.06978-0.17053 0.34375-0.40625 0.34375-0.40625l4.4375-1.3125c0.0972-0.026 0.19874-0.0616 0.28125-0.0937 0.0114-4e-3 0.02035-0.0273 0.03125-0.0312 1.1971-0.49264 0.76965-1.6297-1.0625-2.6875l-5.2188-3.0313c0.04079-3e-3 0.0872 6e-3 0.125 0h0.03125l5.5-1.4688c0.0394-0.01 0.06125-0.0178 0.09375-0.0312 0.42005-0.17329 0.27005-0.56507-0.375-0.9375l-5-2.875c-0.64895-0.37467-1.5599-0.594-2.125-0.5h-0.03125l-5.5 1.4688c-0.03937 0.01-0.06135 0.018-0.09375 0.0312-0.01833 7e-3 -0.01504 0.0229-0.03125 0.0312l-1.5312-0.875c-1.479-0.85394-3.4228-1.3964-4.9688-1.4375zm-2.25 11.281a1.0001 1.0001 0 0 1 0.90625 0.34375c2.9015 3.362 5.4279 4.0934 8.1562 4.4375a1.0001 1.0001 0 1 1-0.25 1.9688c-2.9548-0.37261-6.2319-1.3795-9.4375-5.0938a1.0001 1.0001 0 0 1 0.625-1.6562z" color="#000000" fill="url(#o)" /> <path d="m81.039 245.18c0.98447 0.56839 1.1531 1.1978 0.37669 1.4059-0.77643 0.20804-2.2039-0.0841-3.1884-0.65247-0.98447-0.56839-1.1531-1.1978-0.37669-1.4058 0.77643-0.20805 2.2039 0.0841 3.1884 0.65246z" color="#000000" fill="url(#n)" /> <path d="m77.387 246.12c0.98447 0.56839 1.1531 1.1978 0.37669 1.4059s-2.2039-0.0841-3.1884-0.65247c-0.98447-0.56838-1.1531-1.1978-0.37669-1.4058s2.2039 0.0841 3.1884 0.65246z" color="#000000" fill="url(#m)" /> <path d="m81.039 244.88c0.98447 0.56839 1.1531 1.1978 0.37669 1.4059-0.77643 0.20805-2.2039-0.0841-3.1884-0.65246-0.98447-0.56839-1.1531-1.1978-0.37669-1.4059s2.2039 0.0841 3.1884 0.65246z" color="#000000" fill="url(#v)" /> <path d="m77.387 245.85c0.98447 0.56839 1.1531 1.1978 0.37669 1.4059s-2.2039-0.0841-3.1884-0.65247c-0.98447-0.56838-1.1531-1.1978-0.37669-1.4058 0.77643-0.20805 2.2039 0.0841 3.1884 0.65246z" color="#000000" fill="url(#u)" /> <path d="m66.397 242.12c-0.51532-0.0142-0.98618 0.0208-1.375 0.125l-0.0625 0.0312c-0.0057-4e-3 0.0054-0.0273 0-0.0312l-3.9375 1.0625c-0.09721 0.026-0.16749 0.0616-0.25 0.0937h-0.03125c-0.69637 0.28741-0.68948 0.60437-0.6875 0.9375v11.312c0 1.6196 2.6741 4.872 5.0625 5.8438 0.91618 0.37277 2.0647-0.65125 2.9688-0.25 1.3393 0.59445 1.5554 2.533 2.6562 3.5 1.627 1.4292 5.6562 3.25 5.6562 3.25 2.8067 1.6198 5.0312 1.6196 5.0312 0v-10.906s-0.04011-0.56187 0.0625-0.8125c0.06978-0.17053 0.34375-0.40625 0.34375-0.40625l4.4375-1.3125c0.0972-0.026 0.19874-0.0616 0.28125-0.0937 0.0114-4e-3 0.02035-0.0273 0.03125-0.0312 1.1971-0.49264 0.76965-1.6297-1.0625-2.6875l-5.2188-3.0313c0.04079-3e-3 0.0872 6e-3 0.125 0h0.03125l5.5-1.4688c0.0394-0.01 0.06125-0.0178 0.09375-0.0312 0.42005-0.17329 0.27005-0.56507-0.375-0.9375l-5-2.875c-0.64895-0.37467-1.5599-0.594-2.125-0.5h-0.03125l-5.5 1.4688c-0.03937 0.01-0.06135 0.018-0.09375 0.0312-0.01833 7e-3 -0.01504 0.0229-0.03125 0.0312l-1.5312-0.875c-1.479-0.85394-3.4228-1.3964-4.9688-1.4375zm-2.25 11.281a1.0001 1.0001 0 0 1 0.90625 0.34375c2.9015 3.362 5.4279 4.0934 8.1562 4.4375a1.0001 1.0001 0 1 1-0.25 1.9688c-2.9548-0.37261-6.2319-1.3795-9.4375-5.0938a1.0001 1.0001 0 0 1 0.625-1.6562z" color="#000000" fill="url(#p)" opacity=".42326" /> </g> </g> <rect id="metterb" x="216.65" y=".00015195" width="83.349" height="210.04" stroke-opacity="0" style="paint-order:normal" /> <g transform="matrix(1.4465 0 0 1.4465 -535.26 -61.632)"> <path transform="translate(-12.5,-10.285)" d="m531.56 58.156c-7.1771 0.16579-14.711 2.2242-21.406 8.0312-10.903 13.836-17.307 22.393-15.844 42.406v21.125c0 2.94-2.5679 6.9465-0.4375 9.0938 5.3524 5.3947 20.743 14.988 30.969 17.75 7.4801 2.0201 13.814-7.9732 20.844-12.219 9e-3 -6e-3 0.0222 6e-3 0.0312 0 7.8126-0.44295 16.041-4.4615 22.781-11.812 0.0213-0.0203 0.0413-0.0422 0.0625-0.0625 0.84943-0.81328 1.6943-1.685 2.5-2.5938 7.9171-8.9301 11.723-20.416 11.188-30.844 0.26623-2.4378 0.40159-4.8701 0.34375-7.2812-0.14301-5.9619-3.1067-11.947-7-16.438-0.51564-0.59476-1.075-1.1568-1.6562-1.7188-7.127-4.1241-12.002-5.2866-19.311-9.5258-6.46-2.3909-11.854-4.983-16.033-5.5367-2.2653-0.30012-4.6389-0.43026-7.0312-0.375z" color="#000000" fill="url(#l)" /> <path d="m535.56 50.903c-9.9662 0.47008-20.474 4.46-28.844 11.719-10.903 13.836-17.307 22.424-15.844 42.437v21.125c0 2.3554-1.6589 5.405-1.2188 7.625h0.71875c-0.44014-2.22 1.2188-5.2696 1.2188-7.625v-21.125c-1.463-20.013 4.9412-28.601 15.844-42.437 8.3693-7.2588 18.878-11.249 28.844-11.719-0.23806 0.0072-0.48003-0.01126-0.71875 0z" color="#000000" fill="url(#k)" filter="url(#z)" opacity=".50431" /> <path transform="translate(-12.5,-10.285)" d="m508.28 67.094c-3.4428 3.7994-6.4668 7.9839-8.9375 12.469-1.9116 2.855-1.2951 3.3532 1.3125 4.8438 6.9511 3.9733 14.007 8.0104 21.844 9.875 1.2538 0.32395 2.2535 0.11486 3.0938-0.375 1.6266-3.0161 3.6129-5.9052 5.9688-8.5625 13.213-14.904 32.751-17.02 43.656-4.7188 10.906 12.301 9.0571 34.346-4.1562 49.25-10.629 11.989-25.374 15.691-36.406 10.281-0.14503-0.0139-0.32991-0.0173-0.46875-0.0312-8.114 3.4314-8.8699 9.8719-17.875 9.4375-7.8622-1.7003-15.828-5.4952-20.406-11.906-1.6019-2.2431-1.2716-7.8314-1.625-8.125-1.4547-1.2083-2.4947 5.705-2.1562 8.3125 0.63754 2.0561 3.0702 3.4456 4.6875 4.7812 8.5991 6.1569 17.858 11.605 28.062 14.656 5.9691 1.3931 10.689-3.626 14.781-7.0938 2.7264-1.9744 5.036-5.4621 8.6875-5.4688 15.316-2.1152 27.126-14.915 31.875-28.906 2.8239-9.5917 6.0153-19.915 3.4062-29.906-1.4519-4.7079-4.7165-8.2854-8.1875-11.438-7.7534-7.0411-17.344-12.174-27.188-15.75-4.0035-1.4543-5.5863-2.4053-12.59-2.1846-7.0038 0.22067-18.721 1.9497-27.379 10.56z" color="#000000" fill="url(#j)" stroke="url(#s)" stroke-width=".38434" /> <path transform="matrix(.42851 0 0 .41395 150.9 -142.04)" d="m935.01 609.38c19.871-23.202 22.684-57.534 6.284-76.684-16.4-19.149-45.804-15.864-65.674 7.3375-19.871 23.202-22.684 57.534-6.2841 76.684 16.4 19.149 45.804 15.864 65.675-7.3374z" color="#000000" fill="url(#j)" filter="url(#e)" /> <path transform="matrix(.38127 0 0 .36832 193.66 -115.82)" d="m935.01 609.38c19.871-23.202 22.684-57.534 6.284-76.684-16.4-19.149-45.804-15.864-65.674 7.3375-19.871 23.202-22.684 57.534-6.2841 76.684 16.4 19.149 45.804 15.864 65.675-7.3374z" color="#000000" fill="none" filter="url(#e)" /> <path d="m484.68 92.45c-0.25936 0.0177-0.50619 0.15126-0.64671 0.38548-1.34 2.2291-1.7699 4.4458-3.1098 6.6728-0.0562 0.09368-0.0963 0.19204-0.11007 0.29243-4.4e-4 0.0043 4.4e-4 0.0091 0 0.01327-0.0915 0.12725-0.0906 0.38388 0.0413 0.73108 1.3398 3.5212 1.7698 3.8405 3.1097 7.364 0.14053 0.36997 0.38737 0.74199 0.64672 1.0102 0.15561 0.16092 0.32209 0.28577 0.46784 0.3456l15.466 8.6666c0.38869 0.15954 0.52756-0.1923 0.30272-0.78425-1.3366-3.51-2.6747-5.3191-4.0041-8.8262-0.0167-0.0439-0.0356-0.0892-0.0551-0.13293 0.0459-0.0454 0.0892-0.10168 0.12385-0.1595 1.3295-2.2228 2.6675-4.4408 4.0041-6.6595 0.22484-0.37474 0.0859-0.86075-0.30271-1.0767l-15.466-7.7362c-0.14576-0.08097-0.31223-0.11694-0.46784-0.10634z" color="#000000" fill="url(#r)" /> <path transform="matrix(.44032 0 0 .42536 140.21 -148.59)" d="m817.61 585.23s-6.5328 11.225-9.7817 16.848c-0.10265 0.1771-0.23068 0.34944-0.36639 0.48852 0.0575 0.13394 0.11347 0.27258 0.16284 0.40709 3.3932 9.266 10.217 22.871 10.217 22.871l1.7795-0.48879 0.13904-38.982z" color="#000000" fill="url(#j)" filter="url(#y)" /> <path transform="matrix(.867 .48355 -.55783 .93336 392.27 -805.8)" d="m600.15 665.67c-2.6226 2.6226-1.8999-3.5684-5.4007-2.3434s0.92427 5.6147-2.7614 5.1994 1.6053-3.7103-1.5351-5.6835c-3.1404-1.9733-3.8135 4.2233-5.7868 1.0829s3.9017-1.0582 3.4864-4.7438c-0.41527-3.6856-5.6796-0.34828-4.4546-3.8491 1.225-3.5008 3.26 2.3907 5.8826-0.23193s-3.2689-4.6577 0.23193-5.8826c3.5008-1.225 0.16347 4.0394 3.8491 4.4546s1.6034-5.4597 4.7438-3.4864-3.0562 2.6463-1.0829 5.7868c1.9733 3.1404 5.2683-2.1505 5.6835 1.5351 0.41527 3.6856-3.9745-0.73946-5.1994 2.7614s4.966 2.7781 2.3434 5.4007z" color="#000000" fill="url(#i)" /> <path transform="matrix(1.0526,0,0,1.0168,-34.078,7.3565)" d="m563.75 109.74c-13.011 15.192-32.263 17.343-43.002 4.8044-10.738-12.539-8.8962-35.018 4.1146-50.21 13.011-15.192 32.263-17.343 43.002-4.8044 10.738 12.539 8.8963 35.018-4.1146 50.21z" color="#000000" fill="url(#h)" filter="url(#aa)" /> <path transform="matrix(.4096 -.75784 .70945 .43754 202.57 447.06)" d="m497.7 105.5-3.1562 5.4375c-4.143 12.627-2.5957 26.123 5.2188 34.938 1.8456 2.0818 3.9331 3.7537 6.1875 5.0625-0.86187-0.89281-1.6769-1.8186-2.4375-2.8125-1.0602-0.85349-2.0867-1.7783-3.0312-2.8438-8.7246-9.8409-9.4435-25.921-2.7812-39.781z" color="#000000" fill="url(#g)" filter="url(#ad)" style="text-indent:0;text-transform:none" /> <path transform="translate(-12.5,-10.285)" d="m555.44 67.875c-9.0965-4.28e-4 -18.859 4.4985-26.562 13.188-11.983 13.516-14.982 32.716-7.9688 45.844-5.9063-13.475-2.529-32.057 9.25-45.344 7.9033-8.9146 17.905-13.544 27.25-13.625-0.64454-0.0464-1.3161-0.06247-1.9688-0.0625z" color="#000000" fill="#ececec" filter="url(#ac)" /> <path d="m519.55 49.384c-11.136 0.12934-16.12 1.7333-24.013 9.5833-3.139 3.4641-5.8784 7.2693-8.131 11.358-1.7429 2.603-1.2075 3.0487 1.1699 4.4077 6.3376 3.6227 12.802 7.3132 19.947 9.0132 0.32841 0.08485 0.64494 0.12889 0.93595 0.14127 1.7829-3.6368 4.0721-7.1249 6.8734-10.285 7.8767-8.8846 17.968-13.267 27.201-12.856 2.1315-1.2985 4.0355-1.1205 2.5656-2.3219-6.242-4.6788-18.517-8.865-26.549-9.0415z" color="#000000" fill="url(#f)" filter="url(#ab)" /> </g> </svg> </div> </div> <div class="gridelem"> <input class="checkboxi" id="spekeranim" type="checkbox"> <label for="spekeranim" class="checkboxi-lab">Play it loud</label> <div class="speaker"></div> </div> <div class="gridelem"> <input class="checkboxi" id="pencilinput" type="checkbox"> <label for="pencilinput" class="checkboxi-lab">Pencil animation</label> <div class="pencil"></div> </div> <div class="gridelem"> <input class="checkboxi" id="cupinput" type="checkbox"> <label for="cupinput" class="checkboxi-lab">Wi-Fi animation</label> <div class="bands"> <div class="cup">free Wi-Fi</div> </div> </div> <div class="gridelem"><input class="checkboxi" id="banimation" type="checkbox"> <label for="banimation" class="checkboxi-lab">Box3d animation</label> <div class="boxwrp"> <div class="box"><span>404</span> <div class="fron"></div> <div class="fron backf">????<br>box</div> <div class="left"></div> <div class="left backf">☑<br>open</div> <div class="back"></div> <div class="righ"></div> <div class="boto"></div> <div class="topl"></div> <div class="topr"></div> <div class="topf"></div> <div class="topb"></div> </div> </div> </div> <div class="gridelem"> <input type="checkbox" id="anismsa" class="checkboxi" value="ok"> <label for="anismsa">Play</label> <div class="caset"> <div class="casetcen"> <div></div> <div>l|l|l|l</div> <div></div> </div> <div class="casetbot"></div> <div class="casetdot"><span>A</span>top songs of the '90s</div> <div class="casetsqu"> </div> </div> </div> <div class="gridelem"> <input type="checkbox" id="cloaderc" class="checkboxi" value="ok"> <label for="cloaderc">Play</label> <div id="cloader"></div> </div> <div class="gridelem"> <input type="checkbox" id="loader3dc" class="checkboxi" value="ok"> <label for="loader3dc">Play</label> <div id="loader3d"></div> </div> <div class="gridelem"> <input type="checkbox" id="loaderdotsc" class="checkboxi" value="ok"> <label for="loaderdotsc">Play</label> <div class="loaderdots"> </div> </div> <div class="gridelem"> <div class="animwrap"> <input type="checkbox" id="anism" class="checkboxi" value="ok"> <label for="anism">Play</label> <svg id="chp" width="300" height="300" version="1.1" viewBox="0 0 79.375 79.375" xmlns="http://www.w3.org/2000/svg"> <path d="m34.218 33.711c-1.7367 0.05214-4.4329 0.32644-4.4329 0.32644s0.24002 3.0813 0.28564 5.0661c-0.49534-0.23703-1.3215-1.0935-1.8162-0.68098-0.59713 0.4979-0.59713 2.0364 0 2.5343 0.49469 0.41251 1.3209-0.44382 1.8162-0.68085-0.04562 1.9848-0.28564 5.0661-0.28564 5.0661s2.6962-0.2743 4.4329-0.32644c-0.20744 0.56609-0.95677 1.5102-0.59584 2.0756 0.43566 0.68243 1.7818 0.68243 2.2174 0 0.36093-0.56535-0.38842-1.5095-0.59584-2.0756 1.7367 0.05213 4.4329 0.32644 4.4329 0.32644s-0.24002-3.0813-0.28564-5.0661c0.49534 0.23703 1.3215 1.0934 1.8162 0.68085 0.59713-0.4979 0.59713-2.0364 0-2.5343-0.49469-0.41251-1.3209 0.44395-1.8162 0.68098 0.04562-1.9848 0.28564-5.0661 0.28564-5.0661s-2.6962-0.2743-4.4329-0.32644c0.2074 0.56607 0.9568 1.5102 0.59584 2.0756-0.43566 0.68243-1.7818 0.68243-2.2174 0-0.36095-0.56537 0.38844-1.5095 0.59584-2.0756z" fill="#ddafe9" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m37.707 33.861c-2.4059 3.1123-5.2904 5.7244-7.744 8.8052-0.08254 1.4221-0.17979 2.6756-0.17979 2.6756s2.6962-0.27434 4.4328-0.32648c-0.20743 0.56611-0.95681 1.5103-0.59589 2.0756 0.43567 0.6824 1.7818 0.6824 2.2174 0 0.36092-0.56532-0.38834-1.5095-0.59578-2.0756 1.7367 0.05213 4.4327 0.32648 4.4327 0.32648s-0.24002-3.0814-0.28564-5.0661c0.49532 0.23703 1.3215 1.0933 1.8163 0.68088 0.59713-0.4979 0.59713-2.0363 0-2.5342-0.49469-0.41249-1.3209 0.44395-1.8163 0.68099 0.04562-1.9848 0.28564-5.0661 0.28564-5.0661s-0.88821-0.0895-1.9674-0.17604zm-6.6387 0.05684c-0.74202 0.06462-1.2852 0.1192-1.2852 0.1192s0.09605 1.2369 0.17825 2.6476c0.39031-0.94816 0.76242-1.8721 1.107-2.7667zm-2.507 4.3937c-0.1117 5.71e-4 -0.21606 0.03336-0.30881 0.1107-0.57453 0.47906-0.59594 1.9209-0.0649 2.4728 0.34083-0.7983 0.67986-1.593 1.0022-2.358-0.21624-0.12886-0.43352-0.22659-0.62855-0.2256z" fill="#f95" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m5.512 68.32c1.7367-0.05213 4.4328-0.32644 4.4328-0.32644s-0.24002-3.0813-0.28564-5.0661c0.49532 0.23703 1.3215 1.0935 1.8162 0.68096 0.59711-0.4979 0.59711-2.0363 0-2.5342-0.49469-0.41249-1.3209 0.44382-1.8162 0.68085 0.04562-1.9848 0.28564-5.0661 0.28564-5.0661s-2.6961 0.2743-4.4328 0.32644c0.20744-0.56608 0.95676-1.5102 0.59584-2.0756-0.43566-0.68241-1.7818-0.68241-2.2175 0-0.36092 0.56533 0.38841 1.5095 0.59584 2.0756-1.7367-0.05213-4.4328-0.32644-4.4328-0.32644v11.305s2.6961 0.2743 4.4328 0.32644c-0.2074-0.56607-0.95678-1.5102-0.59584-2.0756 0.43566-0.68241 1.7818-0.68241 2.2175 0 0.36094 0.56536-0.38844 1.5095-0.59584 2.0756z" fill="#ddafe9" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m4.998 65.755c-0.44545 0-0.89095 0.17058-1.1088 0.51179-0.36092 0.56533 0.3884 1.5095 0.59584 2.0756-1.7367-0.05213-4.4328-0.32644-4.4328-0.32644v11.305h9.8914s0.24002-3.0813 0.28563-5.0661c-0.49531 0.23703-1.3214 1.0935-1.8161 0.68096-0.59711-0.4979-0.59711-2.0363 0-2.5342 0.49468-0.41249 1.3208 0.44382 1.8161 0.68085-0.04562-1.9848-0.28563-5.0661-0.28563-5.0661s-2.6961 0.2743-4.4328 0.32644c0.20744-0.56608 0.95676-1.5102 0.59584-2.0756-0.21783-0.34121-0.66323-0.51179-1.1087-0.51179z" fill="#ddafe9" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m14.909 20.448c-0.44545 0-0.89095 0.17058-1.1088 0.51179-0.36093 0.56535 0.38844 1.5096 0.59584 2.0757-1.7367-0.05214-4.4328-0.32644-4.4328-0.32644s0.24002 3.0813 0.28563 5.0661c-0.49531-0.23703-1.3214-1.0935-1.8161-0.68096-0.59711 0.4979-0.59711 2.0363 0 2.5342 0.49468 0.41249 1.3208-0.44393 1.8161-0.68097-0.04562 1.9848-0.28563 5.0661-0.28563 5.0661s2.6961-0.2743 4.4328-0.32644c-0.2074 0.56608-0.95678 1.5103-0.59584 2.0757 0.43566 0.68241 1.7818 0.68241 2.2175 0 0.36093-0.56535-0.38834-1.5096-0.59575-2.0757 1.7367 0.05214 4.4328 0.32644 4.4328 0.32644s-0.24002-3.0813-0.28564-5.0661c0.49532 0.23707 1.3215 1.0934 1.8161 0.68097 0.59711-0.4979 0.59711-2.0363 0-2.5342-0.49467-0.41248-1.3208 0.4439-1.8161 0.68096 0.04562-1.9848 0.28564-5.0661 0.28564-5.0661s-2.6961 0.2743-4.4328 0.32644c0.2074-0.56607 0.95668-1.5103 0.59575-2.0757-0.21783-0.34121-0.66324-0.51179-1.1087-0.51179z" fill="#ddafe9" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m29.5 74.257c0.04562 1.9848 0.28563 5.0661 0.28563 5.0661h9.8915s0.24002-3.0813 0.28564-5.0661c-0.49531 0.23703-1.3214 1.0933-1.8161 0.68085-0.59711-0.4979-0.59711-2.0362 0-2.5341 0.49469-0.4125 1.3208 0.44382 1.8161 0.68085-0.04562-1.9848-0.28564-5.0661-0.28564-5.0661s-2.6962-0.27431-4.4329-0.32644c0.20739 0.56607 0.95678 1.5103 0.59584 2.0757-0.43567 0.68241-1.7818 0.68241-2.2175 0-0.36094-0.56536 0.38845-1.5096 0.59584-2.0757-1.7367 0.05213-4.4328 0.32644-4.4328 0.32644s-0.24001 3.0813-0.28563 5.0661c0.49532-0.23703 1.3214-1.0933 1.8161-0.68085 0.59711 0.4979 0.59711 2.0362 0 2.5341-0.49468 0.4125-1.3208-0.44382-1.8161-0.68085z" fill="#ddafe9" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m54.041 11.056c-1.7367 0.05214-4.4328 0.32644-4.4328 0.32644s-0.24002 3.0813-0.28563 5.0661c0.49531-0.23703 1.3214-1.0933 1.8161-0.68086 0.59711 0.4979 0.59711 2.0362 0 2.5341-0.49468 0.4125-1.3208-0.44382-1.8161-0.68085 0.04561 1.9848 0.28563 5.0661 0.28563 5.0661s2.6961 0.2743 4.4328 0.32644c-0.2074-0.56607-0.95668-1.5102-0.59575-2.0756 0.43567-0.68241 1.7817-0.68241 2.2174 0 0.36093 0.56535-0.38834 1.5095-0.59575 2.0756 1.7367-0.05214 4.4328-0.32644 4.4328-0.32644s0.24002-3.0814 0.28564-5.0662c-0.49531 0.23702-1.3215 1.0935-1.8162 0.68097-0.59711-0.4979-0.59711-2.0363 0-2.5342 0.49469-0.4125 1.3209 0.44395 1.8162 0.68096-0.04562-1.9848-0.28564-5.0661-0.28564-5.0661s-2.6961-0.27431-4.4328-0.32644c0.2074 0.56607 0.95668 1.5102 0.59575 2.0756-0.43567 0.68242-1.7817 0.68242-2.2174 0-0.36093-0.56535 0.38834-1.5095 0.59575-2.0756z" fill="#ddafe9" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m44.643 31.774c-0.44544 0-0.89086 0.17058-1.1087 0.5118-0.36095 0.56537 0.38835 1.5095 0.59576 2.0756-1.7367-0.05213-4.4329-0.32644-4.4329-0.32644s-0.24002 3.0813-0.28564 5.0661c0.49531-0.23701 1.3215-1.0935 1.8162-0.68098 0.59713 0.4979 0.59713 2.0364 0 2.5343-0.49469 0.41251-1.3209-0.44395-1.8162-0.68098 0.04561 1.9848 0.28564 5.0663 0.28564 5.0663s2.6962 0.2743 4.4329 0.32644c-0.2074-0.56607-0.95669-1.5102-0.59576-2.0756 0.43566-0.68243 1.7817-0.68243 2.2174 0 0.36095 0.56537-0.38835 1.5095-0.59576 2.0756 1.7367-0.05213 4.4329-0.32644 4.4329-0.32644s0.24002-3.0813 0.28564-5.0661c-0.49531 0.23703-1.3215 1.0934-1.8162 0.68087-0.59713-0.4979-0.59713-2.0363 0-2.5341 0.49469-0.41251 1.3208 0.44382 1.8162 0.68087-0.04562-1.9848-0.28564-5.0661-0.28564-5.0661s-2.6962 0.27432-4.4329 0.32644c0.2074-0.56607 0.9568-1.5102 0.59584-2.0756-0.21783-0.34122-0.66334-0.5118-1.1088-0.5118z" fill="#ddafe9" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m44.641 31.773c-0.44545 0-0.89081 0.17057-1.1086 0.51178-0.36093 0.56537 0.38838 1.5095 0.59578 2.0756-1.7367-0.05213-4.4328-0.32648-4.4328-0.32648s-0.24002 3.0814-0.28564 5.0661c0.49531-0.23702 1.3215-1.0934 1.8163-0.68099 0.59713 0.4979 0.59713 2.0363 0 2.5342-0.49469 0.4125-1.3209-0.44396-1.8163-0.68099 0.04561 1.9848 0.28564 5.0663 0.28564 5.0663s2.6962 0.27423 4.4328 0.32636c-0.2074-0.56605-0.9567-1.5101-0.59578-2.0755 0.43567-0.6824 1.7817-0.6824 2.2173 0 0.36094 0.56537-0.38826 1.5094-0.59566 2.0755 0.698-0.02095 1.5463-0.0778 2.3169-0.13829-0.22571-0.15125-0.42056-0.3219-0.53959-0.54191-0.63239-1.1686-0.88454-2.6438-0.39369-3.8604 0.31371-0.77751 0.69077-1.4427 1.147-2.0477 0.07229-0.27385 0.19593-0.51088 0.37173-0.65748 0.0838-0.06988 0.1773-0.1027 0.27692-0.10893 0.4243-0.4505 0.90561-0.87691 1.4497-1.3055-0.08543-1.5389-0.19613-2.9709-0.19613-2.9709s-2.696 0.27434-4.4327 0.32648c0.2074-0.56605 0.9567-1.5103 0.59577-2.0756-0.21784-0.34121-0.6633-0.51178-1.1088-0.51178z" fill="#f95" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m41.657 51.016c0-0.50908-0.14926-1.0181-0.44782-1.2671-0.49469-0.4125-1.3208 0.44382-1.8161 0.68085 0.04562-1.9848 0.28563-5.0661 0.28563-5.0661s-2.6961-0.2743-4.4328-0.32644c0.20738 0.56607 0.95678 1.5103 0.59584 2.0757-0.43566 0.68241-1.7818 0.68241-2.2175 0-0.36094-0.56536 0.38845-1.5096 0.59584-2.0757-1.7367 0.05213-4.4329 0.32644-4.4329 0.32644s-0.24002 3.0813-0.28563 5.0661c0.49531-0.23703 1.3214-1.0933 1.8161-0.68085 0.59711 0.4979 0.59711 2.0362 0 2.5341-0.49468 0.4125-1.3208-0.44382-1.8161-0.68085 0.04562 1.9848 0.28563 5.0661 0.28563 5.0661s2.6961 0.2743 4.4328 0.32644c-0.2074-0.56607-0.95668-1.5102-0.59574-2.0756 0.43566-0.68242 1.7817-0.68242 2.2174 0 0.36094 0.56536-0.38835 1.5095-0.59575 2.0756 1.7367-0.05213 4.4328-0.32644 4.4328-0.32644s-0.24001-3.0813-0.28563-5.0661c0.49532 0.23703 1.3214 1.0935 1.8161 0.68096 0.29856-0.24895 0.44782-0.75809 0.44782-1.2672z" fill="#ddafe9" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m34.22 45.038c-1.7367 0.05213-4.433 0.32636-4.433 0.32636s-0.24001 3.0814-0.28563 5.0662c0.49531-0.23703 1.3214-1.0934 1.8161-0.68087 0.59711 0.4979 0.59711 2.0362 0 2.5341-0.49468 0.4125-1.3208-0.44372-1.8161-0.68075 0.04561 1.9848 0.28563 5.066 0.28563 5.066s2.6962 0.27434 4.4329 0.32648c-0.2074-0.56607-0.95671-1.5102-0.59577-2.0756 0.43567-0.68242 1.7818-0.68242 2.2174 0 0.36093 0.56535-0.38837 1.5095-0.59577 2.0756 1.7367-0.05214 4.4329-0.32648 4.4329-0.32648s-0.24001-3.0812-0.28564-5.066c0.49532 0.23703 1.3214 1.0934 1.8161 0.68086 0.29856-0.24895 0.44776-0.75806 0.44776-1.2671 0-0.50908-0.14921-1.0181-0.44776-1.267-0.49469-0.4125-1.3208 0.44384-1.8161 0.68087 0.04562-1.9848 0.28564-5.0662 0.28564-5.0662s-2.6962-0.27423-4.4329-0.32636c0.20738 0.56607 0.95682 1.5102 0.59588 2.0756-0.43566 0.68241-1.7819 0.68241-2.2175 0-0.36094-0.56536 0.38849-1.5095 0.59588-2.0756z" color="#000000" fill="#f95" stroke="#000" stroke-width=".099233" style="text-indent:0;text-transform:none" /> <path d="m55.067 56.993c1.7367-0.05213 4.4328-0.32644 4.4328-0.32644s-0.24002-3.0813-0.28563-5.0661c0.49531 0.23703 1.3215 1.0935 1.8162 0.68096 0.59711-0.4979 0.59711-2.0363 0-2.5342-0.49469-0.41249-1.3209 0.44382-1.8162 0.68085 0.04562-1.9848 0.28563-5.0661 0.28563-5.0661s-2.6961 0.2743-4.4328 0.32644c0.20744-0.56608 0.95676-1.5102 0.59584-2.0756-0.43567-0.68241-1.7818-0.68241-2.2175 0-0.36092 0.56533 0.38841 1.5095 0.59584 2.0756-1.7367-0.05213-4.4328-0.32644-4.4328-0.32644s0.24001 3.0813 0.28564 5.0661c-0.49532-0.23703-1.3215-1.0933-1.8162-0.68085-0.59711 0.4979-0.59711 2.0363 0 2.5342 0.49469 0.4125 1.3209-0.44393 1.8162-0.68096-0.04562 1.9848-0.28564 5.0661-0.28564 5.0661s2.6961 0.2743 4.4328 0.32644c-0.2074-0.56607-0.95677-1.5102-0.59584-2.0756 0.43567-0.68241 1.7818-0.68241 2.2175 0 0.36093 0.56536-0.38844 1.5095-0.59584 2.0756z" fill="#ddafe9" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m63.953 33.71c-1.7367 0.05214-4.4328 0.32644-4.4328 0.32644s-0.24002 3.0813-0.28564 5.0661c0.49532-0.23703 1.3214-1.0933 1.8161-0.68085 0.59711 0.4979 0.59711 2.0362 0 2.5341-0.49469 0.4125-1.3208-0.44382-1.8161-0.68085 0.04562 1.9848 0.28564 5.0661 0.28564 5.0661s2.6961 0.2743 4.4328 0.32644c-0.2074-0.56607-0.95668-1.5102-0.59575-2.0756 0.43567-0.68241 1.7817-0.68241 2.2174 0 0.36093 0.56536-0.38834 1.5095-0.59575 2.0756 1.7367-0.05213 4.4328-0.32644 4.4328-0.32644s0.24002-3.0814 0.28563-5.0662c-0.49531 0.23702-1.3215 1.0935-1.8162 0.68096-0.59711-0.4979-0.59711-2.0363 0-2.5342 0.49469-0.4125 1.3209 0.44395 1.8162 0.68096-0.04562-1.9848-0.28563-5.0661-0.28563-5.0661s-2.6961-0.27431-4.4328-0.32644c0.2074 0.56608 0.95668 1.5102 0.59575 2.0756-0.43566 0.68241-1.7817 0.68241-2.2174 0-0.36093-0.56535 0.38835-1.5095 0.59575-2.0756z" fill="#ddafe9" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m59.236 51.602c0.04562 1.9848 0.28563 5.0661 0.28563 5.0661s2.6961-0.2743 4.4328-0.32644c-0.2074 0.56607-0.95677 1.5103-0.59584 2.0757 0.43566 0.68241 1.7818 0.68241 2.2175 0 0.36093-0.56536-0.38835-1.5096-0.59575-2.0757 1.7367 0.05213 4.4328 0.32644 4.4328 0.32644s-0.24001-3.0813-0.28563-5.0661c0.49532 0.23707 1.3215 1.0934 1.8161 0.68096 0.59711-0.4979 0.59711-2.0363 0-2.5342-0.49466-0.41248-1.3208 0.44389-1.8161 0.68096 0.04561-1.9848 0.28563-5.0661 0.28563-5.0661s-2.6961 0.2743-4.4328 0.32644c0.2074-0.56607 0.95668-1.5103 0.59575-2.0757-0.43566-0.68241-1.7818-0.68241-2.2175 0-0.36093 0.56536 0.38844 1.5096 0.59584 2.0757-1.7367-0.05214-4.4328-0.32644-4.4328-0.32644s-0.24002 3.0813-0.28563 5.0661c0.49531-0.23703 1.3214-1.0935 1.8161-0.68096 0.59711 0.4979 0.59711 2.0363 0 2.5342-0.49469 0.41249-1.3208-0.44393-1.8161-0.68096z" fill="#ddafe9" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m21.835 39.689c0-0.50908-0.14926-1.0181-0.44782-1.2671-0.49469-0.4125-1.3208 0.44382-1.8161 0.68085 0.04562-1.9848 0.28564-5.0661 0.28564-5.0661s-2.6961-0.27431-4.4328-0.32644c0.20739 0.56607 0.95678 1.5103 0.59584 2.0757-0.43566 0.68241-1.7818 0.68241-2.2175 0-0.36094-0.56536 0.38845-1.5096 0.59584-2.0757-1.7367 0.05213-4.4329 0.32644-4.4329 0.32644s-0.24002 3.0813-0.28564 5.0661c0.49532-0.23703 1.3214-1.0933 1.8161-0.68085 0.59711 0.4979 0.59711 2.0362 0 2.5341-0.49469 0.41249-1.3208-0.44382-1.8161-0.68085 0.04562 1.9848 0.28564 5.0661 0.28564 5.0661s2.6961 0.2743 4.4328 0.32644c-0.2074-0.56607-0.95668-1.5102-0.59575-2.0756 0.43566-0.68242 1.7817-0.68242 2.2174 0 0.36093 0.56535-0.38834 1.5095-0.59575 2.0756 1.7367-0.05213 4.4328-0.32644 4.4328-0.32644s-0.24002-3.0813-0.28564-5.0661c0.49532 0.23703 1.3214 1.0935 1.8161 0.68096 0.29856-0.24895 0.44782-0.7581 0.44782-1.2672z" fill="#ddafe9" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m20.139 50.43c-0.04562-1.9848-0.28563-5.0661-0.28563-5.0661s-2.6961 0.2743-4.4328 0.32644c0.2074-0.56607 0.95678-1.5103 0.59584-2.0757-0.43566-0.68241-1.7818-0.68241-2.2175 0-0.36093 0.56536 0.38835 1.5096 0.59575 2.0757-1.7367-0.05214-4.4328-0.32644-4.4328-0.32644s0.24002 3.0813 0.28563 5.0661c-0.49532-0.23707-1.3215-1.0934-1.8161-0.68096-0.59711 0.4979-0.59711 2.0363 0 2.5342 0.49467 0.41248 1.3208-0.4439 1.8161-0.68096-0.04561 1.9848-0.28563 5.0661-0.28563 5.0661s2.6961-0.2743 4.4328-0.32644c-0.2074 0.56607-0.95668 1.5103-0.59575 2.0757 0.43566 0.68241 1.7818 0.68241 2.2175 0 0.36093-0.56536-0.38844-1.5096-0.59584-2.0757 1.7367 0.05213 4.4328 0.32644 4.4328 0.32644s0.24002-3.0813 0.28563-5.0661c-0.49531 0.23703-1.3214 1.0935-1.8161 0.68096-0.59711-0.4979-0.59711-2.0363 0-2.5342 0.49469-0.41249 1.3208 0.44393 1.8161 0.68096z" fill="#ddafe9" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m14.396 56.365c-1.7367 0.05214-4.4328 0.32644-4.4328 0.32644s-0.24002 3.0813-0.28563 5.0661c0.49531-0.23703 1.3214-1.0933 1.8161-0.68085 0.59711 0.4979 0.59711 2.0362 0 2.5341-0.49468 0.4125-1.3208-0.44382-1.8161-0.68085 0.04562 1.9848 0.28563 5.0661 0.28563 5.0661s2.6961 0.2743 4.4328 0.32644c-0.2074-0.56607-0.95668-1.5102-0.59575-2.0756 0.43566-0.68241 1.7817-0.68241 2.2174 0 0.36093 0.56536-0.38835 1.5095-0.59575 2.0756 1.7367-0.05213 4.4328-0.32644 4.4328-0.32644s0.24002-3.0814 0.28563-5.0662c-0.49531 0.23702-1.3215 1.0935-1.8162 0.68096-0.59711-0.4979-0.59711-2.0363 0-2.5342 0.49469-0.4125 1.3209 0.44395 1.8162 0.68096-0.04562-1.9848-0.28563-5.0661-0.28563-5.0661s-2.6961-0.2743-4.4328-0.32644c0.2074 0.56607 0.95668 1.5102 0.59575 2.0756-0.43566 0.68241-1.7817 0.68241-2.2174 0-0.36093-0.56536 0.38835-1.5095 0.59575-2.0756z" fill="#ddafe9" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m64.978 23.011c1.7367-0.05214 4.4328-0.32644 4.4328-0.32644s-0.24001-3.0813-0.28564-5.0661c0.49532 0.23703 1.3215 1.0935 1.8162 0.68096 0.59711-0.4979 0.59711-2.0363 0-2.5342-0.49469-0.41249-1.3209 0.44383-1.8162 0.68085 0.04563-1.9848 0.28564-5.0661 0.28564-5.0661s-2.6961 0.2743-4.4328 0.32644c0.20744-0.56608 0.95676-1.5102 0.59584-2.0756-0.43566-0.68241-1.7818-0.68241-2.2175 0-0.36092 0.56533 0.38841 1.5095 0.59584 2.0756-1.7367-0.05213-4.4328-0.32644-4.4328-0.32644s0.24002 3.0813 0.28563 5.0661c-0.49531-0.23703-1.3215-1.0934-1.8162-0.68085-0.59711 0.4979-0.59711 2.0363 0 2.5342 0.49469 0.4125 1.3209-0.44393 1.8162-0.68096-0.04562 1.9848-0.28563 5.0661-0.28563 5.0661s2.6961 0.2743 4.4328 0.32644c-0.2074-0.56607-0.95677-1.5102-0.59584-2.0756 0.43566-0.68241 1.7818-0.68241 2.2175 0 0.36093 0.56536-0.38845 1.5095-0.59585 2.0756z" fill="#ddafe9" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m4.485 22.383c-1.7367 0.05213-4.4328 0.32644-4.4328 0.32644v11.305s2.6961 0.2743 4.4328 0.32644c-0.2074-0.56608-0.95668-1.5102-0.59575-2.0756 0.43566-0.68241 1.7817-0.68241 2.2174 0 0.36094 0.56536-0.38834 1.5095-0.59575 2.0756 1.7367-0.05214 4.4328-0.32644 4.4328-0.32644s0.24002-3.0814 0.28563-5.0662c-0.49531 0.23702-1.3215 1.0935-1.8162 0.68097-0.59711-0.4979-0.59711-2.0363 0-2.5342 0.49469-0.4125 1.3209 0.44395 1.8162 0.68096-0.04562-1.9848-0.28563-5.0661-0.28563-5.0661s-2.6961-0.2743-4.4328-0.32644c0.2074 0.56607 0.95668 1.5102 0.59575 2.0756-0.43566 0.68241-1.7817 0.68241-2.2174 0-0.36093-0.56535 0.38835-1.5095 0.59575-2.0756z" fill="#ddafe9" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m0.054 45.341s2.6961-0.2743 4.4328-0.32644c-0.2074 0.56607-0.95678 1.5103-0.59585 2.0757 0.43566 0.68241 1.7818 0.68241 2.2175 0 0.36093-0.56536-0.38834-1.5096-0.59575-2.0757 1.7367 0.05213 4.4328 0.32644 4.4328 0.32644s-0.24002-3.0813-0.28563-5.0661c0.49532 0.23707 1.3215 1.0934 1.8161 0.68096 0.59711-0.4979 0.59711-2.0363 0-2.5342-0.49467-0.41248-1.3208 0.44389-1.8161 0.68096 0.04561-1.9848 0.28563-5.0661 0.28563-5.0661s-2.6961 0.2743-4.4328 0.32644c0.2074-0.56607 0.95668-1.5103 0.59575-2.0757-0.43566-0.68241-1.7818-0.68241-2.2175 0-0.36093 0.56535 0.38844 1.5096 0.59585 2.0757-1.6608-0.04632-4.415-0.32507-4.4328-0.32644z" fill="#ddafe9" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m4.485 45.037c-1.7367 0.05213-4.4328 0.32644-4.4328 0.32644v11.305s2.6961 0.2743 4.4328 0.32644c-0.2074-0.56607-0.95668-1.5102-0.59575-2.0756 0.43566-0.68242 1.7817-0.68242 2.2174 0 0.36094 0.56536-0.38834 1.5095-0.59575 2.0756 1.7367-0.05214 4.4328-0.32644 4.4328-0.32644s0.24002-3.0814 0.28563-5.0662c-0.49531 0.23701-1.3215 1.0935-1.8162 0.68096-0.59711-0.4979-0.59711-2.0363 0-2.5342 0.49469-0.4125 1.3209 0.44395 1.8162 0.68096-0.04562-1.9848-0.28563-5.0661-0.28563-5.0661s-2.6961-0.2743-4.4328-0.32644c0.2074 0.56607 0.95668 1.5102 0.59575 2.0756-0.43566 0.68241-1.7817 0.68241-2.2174 0-0.36093-0.56536 0.38835-1.5095 0.59575-2.0756z" fill="#ddafe9" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m0.054 22.687s2.6961-0.2743 4.4328-0.32644c-0.2074 0.56608-0.95678 1.5103-0.59584 2.0757 0.43566 0.68241 1.7818 0.68241 2.2175 0 0.36093-0.56535-0.38834-1.5096-0.59575-2.0757 1.7367 0.05214 4.4328 0.32644 4.4328 0.32644s-0.24002-3.0813-0.28563-5.0661c0.49532 0.23707 1.3215 1.0934 1.8161 0.68096 0.59711-0.4979 0.59711-2.0363 0-2.5342-0.49467-0.41248-1.3208 0.44389-1.8161 0.68096 0.04561-1.9848 0.28563-5.0661 0.28563-5.0661s-2.6961 0.2743-4.4328 0.32644c0.2074-0.56607 0.95668-1.5103 0.59575-2.0757-0.43566-0.68241-1.7818-0.68241-2.2175 0-0.36094 0.56535 0.38844 1.5096 0.59584 2.0757-1.6608-0.046326-4.415-0.32507-4.4328-0.32644z" fill="#ddafe9" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m20.139 73.082c-0.04562-1.9848-0.28563-5.0661-0.28563-5.0661s-2.6961 0.2743-4.4328 0.32644c0.2074-0.56607 0.95678-1.5103 0.59584-2.0757-0.43566-0.68241-1.7818-0.68241-2.2175 0-0.36093 0.56535 0.38835 1.5096 0.59575 2.0757-1.7367-0.05214-4.4328-0.32644-4.4328-0.32644s0.24002 3.0813 0.28563 5.0661c-0.49532-0.23707-1.3215-1.0934-1.8161-0.68096-0.59711 0.4979-0.59711 2.0363 0 2.5342 0.49467 0.41248 1.3208-0.4439 1.8161-0.68096-0.04561 1.9848-0.28563 5.0661-0.28563 5.0661h9.8915s0.24002-3.0813 0.28563-5.0661c-0.49531 0.23703-1.3214 1.0935-1.8161 0.68096-0.59711-0.4979-0.59711-2.0363 0-2.5342 0.49469-0.41249 1.3208 0.44393 1.8161 0.68096z" fill="#ddafe9" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m29.766 79.321s-0.24001-3.0813-0.28563-5.0661c0.49532 0.23703 1.3215 1.0935 1.8162 0.68096 0.59711-0.4979 0.59711-2.0363 0-2.5342-0.49468-0.4125-1.3209 0.44382-1.8162 0.68085 0.04562-1.9848 0.28563-5.0661 0.28563-5.0661s-2.6961 0.2743-4.4328 0.32644c0.20744-0.56608 0.95676-1.5102 0.59584-2.0756-0.43566-0.68241-1.7818-0.68241-2.2175 0-0.36092 0.56533 0.38841 1.5095 0.59584 2.0756-1.7367-0.05213-4.4328-0.32644-4.4328-0.32644s0.24002 3.0813 0.28563 5.0661c-0.49531-0.23703-1.3215-1.0933-1.8162-0.68085-0.59711 0.4979-0.59711 2.0363 0 2.5342 0.49468 0.4125 1.3209-0.44393 1.8162-0.68096-0.04053 1.898-0.28444 5.0457-0.28563 5.0661z" fill="#ddafe9" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m49.589 79.321s-0.24001-3.0813-0.28563-5.0661c0.49531 0.23703 1.3215 1.0935 1.8162 0.68096 0.59711-0.4979 0.59711-2.0363 0-2.5342-0.49468-0.41249-1.3209 0.44382-1.8162 0.68085 0.04562-1.9848 0.28563-5.0661 0.28563-5.0661s-2.6961 0.2743-4.4328 0.32644c0.20744-0.56608 0.95676-1.5102 0.59584-2.0756-0.43567-0.68241-1.7818-0.68241-2.2175 0-0.36092 0.56533 0.38841 1.5095 0.59584 2.0756-1.7367-0.05213-4.4328-0.32644-4.4328-0.32644s0.24001 3.0813 0.28563 5.0661c-0.49532-0.23703-1.3215-1.0933-1.8162-0.68085-0.59711 0.4979-0.59711 2.0363 0 2.5342 0.49469 0.4125 1.3209-0.44393 1.8162-0.68096-0.04053 1.898-0.28444 5.0457-0.28563 5.0661z" fill="#ddafe9" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m59.784 62.93c-0.04561 1.9848-0.28563 5.0661-0.28563 5.0661s-2.6961-0.2743-4.4328-0.32644c0.2074 0.56607 0.95677 1.5103 0.59584 2.0757-0.43566 0.68241-1.7818 0.68241-2.2175 0-0.36093-0.56536 0.38835-1.5096 0.59575-2.0757-1.7367 0.05213-4.4328 0.32644-4.4328 0.32644s0.24001-3.0813 0.28563-5.0661c-0.49532 0.23707-1.3215 1.0934-1.8161 0.68096-0.59711-0.4979-0.59711-2.0363 0-2.5342 0.49466-0.41248 1.3208 0.44389 1.8161 0.68096-0.04561-1.9848-0.28563-5.0661-0.28563-5.0661s2.6961 0.2743 4.4328 0.32644c-0.2074-0.56607-0.95668-1.5103-0.59575-2.0757 0.43566-0.68241 1.7818-0.68241 2.2175 0 0.36093 0.56536-0.38844 1.5096-0.59584 2.0757 1.7367-0.05214 4.4328-0.32644 4.4328-0.32644s0.24002 3.0813 0.28563 5.0661c-0.49531-0.23703-1.3214-1.0935-1.8161-0.68096-0.59711 0.4979-0.59711 2.0363 0 2.5342 0.49469 0.41249 1.3208-0.44393 1.8161-0.68096z" fill="#ddafe9" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m64.466 65.755c-0.44544 0-0.89085 0.17058-1.1087 0.51179-0.36093 0.56536 0.38835 1.5095 0.59575 2.0756-1.7367-0.05213-4.4328-0.32644-4.4328-0.32644s-0.24002 3.0813-0.28563 5.0661c0.49531-0.23701 1.3215-1.0935 1.8162-0.68096 0.59711 0.4979 0.59711 2.0363 0 2.5342-0.4947 0.4125-1.3209-0.44395-1.8162-0.68096 0.04561 1.9848 0.28563 5.0662 0.28563 5.0662h9.8915s0.24002-3.0813 0.28563-5.0661c-0.49531 0.23703-1.3214 1.0933-1.8161 0.68085-0.59711-0.4979-0.59711-2.0362 0-2.5341 0.49468-0.4125 1.3208 0.44382 1.8161 0.68085-0.04561-1.9848-0.28563-5.0661-0.28563-5.0661s-2.6961 0.2743-4.4328 0.32644c0.2074-0.56607 0.95678-1.5102 0.59585-2.0756-0.21783-0.34121-0.66333-0.51179-1.1088-0.51179z" fill="#ddafe9" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m61.48 73.67c0-0.50908-0.14926-1.0181-0.44781-1.2671-0.49469-0.4125-1.3208 0.44382-1.8161 0.68085 0.04562-1.9848 0.28564-5.0661 0.28564-5.0661s-2.6961-0.2743-4.4328-0.32644c0.20739 0.56607 0.95678 1.5103 0.59584 2.0757-0.43566 0.68241-1.7818 0.68241-2.2175 0-0.36093-0.56536 0.38846-1.5096 0.59585-2.0757-1.7367 0.05213-4.4329 0.32644-4.4329 0.32644s-0.24001 3.0813-0.28563 5.0661c0.49531-0.23703 1.3214-1.0934 1.8161-0.68085 0.59711 0.4979 0.59711 2.0362 0 2.5341-0.49469 0.4125-1.3208-0.44382-1.8161-0.68085 0.04562 1.9848 0.28563 5.0661 0.28563 5.0661h9.8915s-0.24002-3.0813-0.28564-5.0661c0.49532 0.23703 1.3214 1.0935 1.8161 0.68096 0.29855-0.24895 0.44781-0.75809 0.44781-1.2672z" fill="#ddafe9" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m67.451 73.67c0-0.50908 0.14926-1.0181 0.44782-1.2671 0.49468-0.4125 1.3208 0.44382 1.8161 0.68085-0.04562-1.9848-0.28563-5.0661-0.28563-5.0661s2.6961-0.2743 4.4328-0.32644c-0.20739 0.56607-0.95678 1.5103-0.59584 2.0757 0.43566 0.68241 1.7818 0.68241 2.2175 0 0.36094-0.56536-0.38846-1.5096-0.59585-2.0757 1.7367 0.05213 4.4329 0.32644 4.4329 0.32644v11.305h-9.8915s0.24002-3.0813 0.28563-5.0661c-0.49531 0.23703-1.3214 1.0935-1.8161 0.68096-0.29856-0.24895-0.44782-0.75809-0.44782-1.2672z" fill="#ddafe9" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m73.862 45.666c-1.7367-0.05213-4.4328-0.32644-4.4328-0.32644s0.24001-3.0813 0.28563-5.0661c-0.49531 0.23703-1.3215 1.0935-1.8162 0.68096-0.59711-0.4979-0.59711-2.0363 0-2.5342 0.49468-0.41249 1.3209 0.44383 1.8162 0.68085-0.04562-1.9848-0.28563-5.0661-0.28563-5.0661s2.6961 0.27431 4.4328 0.32644c-0.20743-0.56608-0.95676-1.5102-0.59584-2.0756 0.43566-0.68241 1.7818-0.68241 2.2175 0 0.36092 0.56533-0.3884 1.5095-0.59584 2.0756 1.7367-0.05213 4.4328-0.32644 4.4328-0.32644v11.305s-2.6961 0.2743-4.4328 0.32644c0.2074-0.56607 0.95678-1.5102 0.59584-2.0756-0.43566-0.68241-1.7818-0.68241-2.2175 0-0.36093 0.56536 0.38844 1.5095 0.59584 2.0756z" fill="#ddafe9" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m69.145 51.602c0.04562 1.9848 0.28564 5.0661 0.28564 5.0661s2.6961-0.2743 4.4328-0.32644c-0.2074 0.56607-0.95678 1.5103-0.59584 2.0757 0.43567 0.68241 1.7818 0.68241 2.2175 0 0.36093-0.56536-0.38835-1.5096-0.59575-2.0757 1.7367 0.05213 4.4328 0.32644 4.4328 0.32644v-11.304s-2.6961 0.2743-4.4328 0.32644c0.2074-0.56607 0.95668-1.5103 0.59575-2.0757-0.43566-0.68241-1.7818-0.68241-2.2175 0-0.36093 0.56536 0.38844 1.5096 0.59584 2.0757-1.7367-0.05214-4.4328-0.32644-4.4328-0.32644s-0.24002 3.0813-0.28564 5.0661c0.49531-0.23703 1.3214-1.0935 1.8161-0.68096 0.59711 0.4979 0.59711 2.0363 0 2.5342-0.49469 0.41249-1.3208-0.44393-1.8161-0.68096z" fill="#ddafe9" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m74.376 70.259c-0.44545 0-0.89085-0.17058-1.1087-0.51179-0.36093-0.56536 0.38835-1.5095 0.59575-2.0756-1.7367 0.05213-4.4328 0.32644-4.4328 0.32644s-0.24001-3.0813-0.28563-5.0661c0.49531 0.23701 1.3215 1.0935 1.8162 0.68096 0.59711-0.4979 0.59711-2.0363 0-2.5342-0.4947-0.4125-1.3209 0.44395-1.8162 0.68096 0.04561-1.9848 0.28563-5.0662 0.28563-5.0662s2.6961-0.27431 4.4328-0.32644c-0.2074 0.56607-0.95668 1.5102-0.59575 2.0756 0.43567 0.68241 1.7817 0.68241 2.2174 0 0.36093-0.56535-0.38834-1.5095-0.59575-2.0756 1.7367 0.05213 4.4328 0.32644 4.4328 0.32644v11.305s-2.6961-0.2743-4.4328-0.32644c0.2074 0.56607 0.95678 1.5102 0.59585 2.0756-0.21783 0.34121-0.66333 0.51179-1.1088 0.51179z" fill="#ddafe9" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m39.697 0.057148s0.24001 3.0813 0.28563 5.0661c-0.49532-0.23703-1.3215-1.0935-1.8162-0.68096-0.59711 0.4979-0.59711 2.0363 0 2.5342 0.49469 0.4125 1.3209-0.44382 1.8162-0.68085-0.04562 1.9848-0.28563 5.0661-0.28563 5.0661s2.6961-0.27431 4.4328-0.32644c-0.20744 0.56608-0.95676 1.5102-0.59584 2.0756 0.43566 0.68241 1.7818 0.68241 2.2175 0 0.36092-0.56533-0.38841-1.5095-0.59584-2.0756 1.7367 0.05213 4.4328 0.32644 4.4328 0.32644s-0.24001-3.0813-0.28563-5.0661c0.49531 0.23703 1.3215 1.0934 1.8162 0.68085 0.59711-0.4979 0.59711-2.0363 0-2.5342-0.49468-0.4125-1.3209 0.44393-1.8162 0.68096 0.04053-1.898 0.28444-5.0457 0.28563-5.0661z" fill="#ddafe9" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m39.963 5.1211c-0.04562-1.9848-0.28563-5.0661-0.28563-5.0661h-9.8915s-0.24002 3.0813-0.28563 5.0661c0.49532-0.23703 1.3214-1.0934 1.8161-0.68086 0.59711 0.4979 0.59711 2.0362 0 2.5341-0.49469 0.4125-1.3208-0.44382-1.8161-0.68085 0.04562 1.9848 0.28563 5.0661 0.28563 5.0661s2.6962 0.27431 4.4329 0.32644c-0.20739-0.56607-0.95678-1.5103-0.59584-2.0757 0.43566-0.68241 1.7818-0.68241 2.2175 0 0.36094 0.56536-0.38846 1.5096-0.59584 2.0757 1.7367-0.05213 4.4328-0.32644 4.4328-0.32644s0.24001-3.0813 0.28563-5.0661c-0.49531 0.23703-1.3214 1.0934-1.8161 0.68085-0.59711-0.4979-0.59711-2.0362 0-2.5341 0.49469-0.4125 1.3208 0.44382 1.8161 0.68086z" fill="#ddafe9" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m19.59 6.2954c0.04562 1.9848 0.28563 5.0661 0.28563 5.0661s2.6961-0.2743 4.4328-0.32644c-0.2074 0.56607-0.95678 1.5103-0.59584 2.0757 0.43566 0.68241 1.7818 0.68241 2.2175 0 0.36093-0.56536-0.38835-1.5096-0.59575-2.0757 1.7367 0.05214 4.4328 0.32644 4.4328 0.32644s-0.24001-3.0813-0.28563-5.0661c0.49532 0.23707 1.3215 1.0934 1.8161 0.68097 0.59711-0.4979 0.59711-2.0363 0-2.5342-0.49466-0.41248-1.3208 0.44389-1.8161 0.68097 0.04561-1.9848 0.28563-5.0661 0.28563-5.0661h-9.8915s-0.24002 3.0813-0.28563 5.0661c0.49531-0.23703 1.3214-1.0935 1.8161-0.68097 0.59711 0.4979 0.59711 2.0363 0 2.5342-0.49469 0.41249-1.3208-0.44393-1.8161-0.68097z" fill="#ddafe9" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m11.924 5.7072c0-0.50908-0.14926-1.0182-0.44781-1.2672-0.49467-0.41248-1.3208 0.44389-1.8161 0.68096 0.04561-1.9848 0.28563-5.0661 0.28563-5.0661h-9.8915v11.304s2.6961 0.2743 4.4328 0.32644c-0.2074-0.56607-0.95678-1.5102-0.59584-2.0756 0.43566-0.68241 1.7818-0.68241 2.2175 0 0.36093 0.56535-0.38834 1.5095-0.59575 2.0756 1.7367-0.05214 4.4328-0.32644 4.4328-0.32644s-0.24002-3.0813-0.28563-5.0661c0.49532 0.23707 1.3215 1.0934 1.8161 0.68096 0.29855-0.24895 0.44781-0.75798 0.44781-1.2671z" fill="#ddafe9" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m21.835 5.7073c0 0.50908-0.14926 1.0181-0.44782 1.2671-0.49469 0.4125-1.3208-0.44382-1.8161-0.68086 0.04562 1.9848 0.28564 5.0661 0.28564 5.0661s-2.6961 0.2743-4.4328 0.32644c0.20739-0.56607 0.95678-1.5103 0.59584-2.0757-0.43566-0.68241-1.7818-0.68241-2.2175 0-0.36094 0.56536 0.38846 1.5096 0.59584 2.0757-1.7367-0.05213-4.4329-0.32644-4.4329-0.32644s-0.24002-3.0813-0.28564-5.0661c0.49532 0.23703 1.3214 1.0934 1.8161 0.68086 0.59711-0.4979 0.59711-2.0362 0-2.5341-0.49469-0.4125-1.3208 0.44382-1.8161 0.68085 0.04562-1.9848 0.28564-5.0661 0.28564-5.0661h9.8915s-0.24002 3.0813-0.28564 5.0661c0.49532-0.23703 1.3214-1.0935 1.8161-0.68096 0.29856 0.24895 0.44782 0.75809 0.44782 1.2672z" fill="#ddafe9" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m74.377 13.623c-0.44544 0-0.89085-0.17058-1.1087-0.51179-0.36093-0.56536 0.38835-1.5095 0.59575-2.0756-1.7367 0.05214-4.4328 0.32644-4.4328 0.32644s-0.24002-3.0813-0.28564-5.0661c0.49531 0.23701 1.3215 1.0935 1.8162 0.68096 0.59711-0.4979 0.59711-2.0363 0-2.5342-0.49469-0.4125-1.3209 0.44394-1.8162 0.68096 0.04561-1.9848 0.28564-5.0662 0.28564-5.0662h9.8915v11.305s-2.6961-0.27431-4.4328-0.32645c0.2074 0.56608 0.95678 1.5102 0.59585 2.0756-0.21783 0.34121-0.66334 0.51179-1.1088 0.51179z" fill="#ddafe9" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m74.377 24.95c-0.44545 0-0.89085-0.17058-1.1087-0.51179-0.36093-0.56536 0.38835-1.5095 0.59575-2.0756-1.7367 0.05214-4.4328 0.32644-4.4328 0.32644s-0.24002-3.0813-0.28564-5.0661c0.49531 0.23701 1.3215 1.0935 1.8162 0.68096 0.59711-0.4979 0.59711-2.0363 0-2.5342-0.49469-0.4125-1.3209 0.44395-1.8162 0.68097 0.04561-1.9848 0.28564-5.0662 0.28564-5.0662s2.6961-0.2743 4.4328-0.32644c-0.2074 0.56608-0.95668 1.5102-0.59575 2.0756 0.43566 0.68242 1.7817 0.68242 2.2174 0 0.36093-0.56536-0.38835-1.5095-0.59575-2.0756 1.7367 0.05214 4.4328 0.32644 4.4328 0.32644v11.305s-2.6961-0.2743-4.4328-0.32644c0.2074 0.56607 0.95678 1.5102 0.59584 2.0756-0.21783 0.34121-0.66333 0.51179-1.1088 0.51179z" fill="#ddafe9" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m67.451 28.362c0 0.50908 0.14925 1.0181 0.44782 1.2671 0.49468 0.4125 1.3208-0.44382 1.8161-0.68086-0.04562 1.9848-0.28563 5.0661-0.28563 5.0661s2.6961 0.2743 4.4328 0.32644c-0.20739-0.56607-0.95678-1.5103-0.59584-2.0757 0.43566-0.68241 1.7818-0.68241 2.2175 0 0.36094 0.56536-0.38846 1.5096-0.59584 2.0757 1.7367-0.05212 4.4329-0.32644 4.4329-0.32644v-11.305s-2.6961-0.2743-4.4328-0.32644c0.2074 0.56607 0.95668 1.5102 0.59575 2.0756-0.43567 0.68241-1.7817 0.68241-2.2174 0-0.36093-0.56535 0.38835-1.5095 0.59575-2.0756-1.7367 0.05213-4.4328 0.32644-4.4328 0.32644s0.24001 3.0813 0.28563 5.0661c-0.49532-0.23704-1.3214-1.0935-1.8161-0.68096-0.29856 0.24895-0.44782 0.75809-0.44782 1.2672z" fill="#ddafe9" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m63.953 11.687c-1.7367-0.05213-4.4328-0.32644-4.4328-0.32644s0.24002-3.0813 0.28563-5.0661c-0.49531 0.23703-1.3215 1.0935-1.8162 0.68096-0.59711-0.4979-0.59711-2.0363 0-2.5342 0.49469-0.41249 1.3209 0.44383 1.8162 0.68086-0.04562-1.9848-0.28563-5.0661-0.28563-5.0661h9.8914s-0.24001 3.0813-0.28563 5.0661c0.49531-0.23703 1.3215-1.0933 1.8162-0.68086 0.59711 0.4979 0.59711 2.0363 0 2.5342-0.49469 0.4125-1.3209-0.44393-1.8162-0.68096 0.04562 1.9848 0.28563 5.0661 0.28563 5.0661s-2.6961 0.2743-4.4328 0.32644c0.2074-0.56607 0.95678-1.5102 0.59584-2.0756-0.43567-0.68241-1.7818-0.68241-2.2175 0-0.36093 0.56536 0.38844 1.5095 0.59584 2.0756z" fill="#ddafe9" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m54.554 13.623c0.44544 0 0.89085-0.17058 1.1087-0.51179 0.36093-0.56536-0.38834-1.5095-0.59575-2.0756 1.7367 0.05214 4.4328 0.32644 4.4328 0.32644s0.24002-3.0813 0.28563-5.0661c-0.49531 0.23701-1.3215 1.0935-1.8162 0.68096-0.59711-0.4979-0.59711-2.0363 0-2.5342 0.4947-0.4125 1.3209 0.44394 1.8162 0.68096-0.04561-1.9848-0.28563-5.0662-0.28563-5.0662h-9.8915s-0.24002 3.0813-0.28563 5.0661c0.49531-0.23703 1.3214-1.0934 1.8161-0.68085 0.59711 0.4979 0.59711 2.0362 0 2.5341-0.49468 0.4125-1.3208-0.44382-1.8161-0.68085 0.04561 1.9848 0.28563 5.0661 0.28563 5.0661s2.6961-0.2743 4.4328-0.32644c-0.2074 0.56607-0.95678 1.5102-0.59584 2.0756 0.21783 0.34121 0.66333 0.51179 1.1088 0.51179z" fill="#ddafe9" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m64.466 36.275c0.44544 0 0.89085-0.17058 1.1087-0.51179 0.36093-0.56535-0.38835-1.5095-0.59575-2.0756 1.7367 0.05214 4.4328 0.32644 4.4328 0.32644s0.24001-3.0813 0.28563-5.0661c-0.49531 0.23702-1.3215 1.0935-1.8162 0.68096-0.59711-0.4979-0.59711-2.0363 0-2.5342 0.49469-0.4125 1.3209 0.44394 1.8162 0.68096-0.04561-1.9848-0.28563-5.0662-0.28563-5.0662s-2.6962 0.2743-4.4329 0.32644c0.20744-0.56608 0.95676-1.5102 0.59585-2.0756-0.43567-0.68241-1.7818-0.68241-2.2175 0-0.36092 0.56533 0.38841 1.5095 0.59584 2.0756-1.7367-0.05214-4.4328-0.32644-4.4328-0.32644s-0.24002 3.0813-0.28563 5.0661c0.49531-0.23703 1.3214-1.0934 1.8161-0.68085 0.59711 0.4979 0.59711 2.0362 0 2.5341-0.49469 0.4125-1.3208-0.44383-1.8161-0.68086 0.04561 1.9848 0.28563 5.0661 0.28563 5.0661s2.6961-0.2743 4.4328-0.32644c-0.2074 0.56608-0.95677 1.5102-0.59584 2.0756 0.21783 0.34121 0.66333 0.51179 1.1088 0.51179z" fill="#ddafe9" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m57.542 62.344c0 0.50908 0.14926 1.0181 0.44782 1.2671 0.49469 0.4125 1.3208-0.44382 1.8161-0.68085-0.04562 1.9848-0.28563 5.0661-0.28563 5.0661s2.6961 0.2743 4.4328 0.32644c-0.20739-0.56607-0.95678-1.5103-0.59584-2.0757 0.43566-0.68241 1.7818-0.68241 2.2175 0 0.36094 0.56537-0.38846 1.5096-0.59584 2.0757 1.7367-0.05213 4.4329-0.32644 4.4329-0.32644s-0.24001-3.0814-0.28563-5.0662c0.49532 0.23707 1.3215 1.0934 1.8161 0.68096 0.59711-0.4979 0.59711-2.0363 0-2.5342-0.49467-0.41248-1.3208 0.44389-1.8161 0.68096 0.04562-1.9848 0.28563-5.0661 0.28563-5.0661s-2.6961-0.2743-4.4328-0.32644c0.2074 0.56607 0.95668 1.5102 0.59575 2.0756-0.43566 0.68242-1.7817 0.68242-2.2174 0-0.36093-0.56536 0.38835-1.5095 0.59575-2.0756-1.7367 0.05213-4.4328 0.32644-4.4328 0.32644s0.24001 3.0813 0.28563 5.0661c-0.49532-0.23703-1.3214-1.0935-1.8161-0.68096-0.29856 0.24895-0.44782 0.7581-0.44782 1.2672z" fill="#ddafe9" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m37.719 17.035c0 0.50908 0.14926 1.0181 0.44782 1.2671 0.49469 0.4125 1.3208-0.44383 1.8161-0.68085-0.04562 1.9848-0.28563 5.0661-0.28563 5.0661s2.6961 0.2743 4.4328 0.32644c-0.20739-0.56607-0.95678-1.5103-0.59584-2.0757 0.43566-0.68241 1.7818-0.68241 2.2175 0 0.36094 0.56536-0.38846 1.5096-0.59584 2.0757 1.7367-0.05213 4.4329-0.32644 4.4329-0.32644s-0.24001-3.0814-0.28563-5.0662c0.49532 0.23707 1.3215 1.0934 1.8161 0.68096 0.59711-0.4979 0.59711-2.0363 0-2.5342-0.49467-0.41248-1.3208 0.4439-1.8161 0.68096 0.04562-1.9848 0.28563-5.0661 0.28563-5.0661s-2.6961-0.2743-4.4328-0.32644c0.2074 0.56607 0.95669 1.5102 0.59575 2.0756-0.43566 0.68242-1.7817 0.68242-2.2174 0-0.36093-0.56535 0.38835-1.5095 0.59575-2.0756-1.7367 0.05213-4.4328 0.32644-4.4328 0.32644s0.24001 3.0813 0.28563 5.0661c-0.49532-0.23703-1.3214-1.0935-1.8161-0.68096-0.29856 0.24895-0.44782 0.75809-0.44782 1.2672z" fill="#ddafe9" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m49.325 28.946c0.04562 1.9848 0.28564 5.0661 0.28564 5.0661s2.6962-0.2743 4.4329-0.32644c-0.2074 0.56607-0.9568 1.5104-0.59584 2.0757 0.43566 0.68243 1.7818 0.68243 2.2176 0 0.36093-0.56537-0.38835-1.5096-0.59576-2.0757 1.7367 0.05213 4.4329 0.32644 4.4329 0.32644s-0.24002-3.0813-0.28564-5.0661c0.49534 0.23707 1.3215 1.0935 1.8162 0.68098 0.59713-0.4979 0.59713-2.0364 0-2.5343-0.49467-0.41249-1.3208 0.4439-1.8162 0.68098 0.04561-1.9848 0.28564-5.0661 0.28564-5.0661s-2.6962 0.2743-4.4329 0.32644c0.2074-0.56607 0.95669-1.5104 0.59576-2.0757-0.43566-0.68243-1.7818-0.68243-2.2176 0-0.36095 0.56537 0.38844 1.5096 0.59584 2.0757-1.7367-0.05214-4.4329-0.32644-4.4329-0.32644s-0.24002 3.0813-0.28564 5.0661c0.49531-0.23703 1.3215-1.0935 1.8162-0.68098 0.59713 0.4979 0.59713 2.0364 0 2.5343-0.49469 0.41251-1.3208-0.44395-1.8162-0.68098z" fill="#ddafe9" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m49.348 27.013c-0.01043 0.26466-0.01888 0.52111-0.02439 0.76112 0.20044-0.09592 0.45526-0.29277 0.72015-0.46642-0.24115-0.1045-0.47188-0.20164-0.69574-0.29468zm2.2141 0.98902c0.0875 0.61165-0.05309 1.3175-0.42238 1.6254-0.49468 0.41249-1.3208-0.44395-1.8161-0.68099 0.0035 0.1524 0.0084 0.31279 0.01402 0.47624 0.95675 0.33956 1.5738 0.90307 1.4313 1.3711-0.10921 0.35871-0.63697 0.56961-1.3368 0.59216 0.08193 1.402 0.17714 2.6267 0.17714 2.6267s2.6962-0.27434 4.4328-0.32648c-0.15798 0.43118-0.6299 1.0816-0.68658 1.617 0.71235-0.22062 1.4355-0.45217 2.1234-0.78836-0.15259-0.30476-0.32646-0.59815-0.4109-0.82865 0.4865 0.0146 1.0471 0.0472 1.6038 0.08576 0.14226-0.1129 0.28132-0.23336 0.41598-0.364 1.3623-1.8444-1.5749-2.7893-2.866-3.8368-0.64222-0.52102-1.6306-1.0698-2.6597-1.569z" color="#000000" fill="#f95" stroke="#000" stroke-width=".099235" style="text-indent:0;text-transform:none" /> <path d="m45.156 34.337c1.7367-0.05214 4.4329-0.32644 4.4329-0.32644s-0.24002-3.0813-0.28564-5.0661c0.49534 0.23703 1.3215 1.0935 1.8162 0.68098 0.59713-0.4979 0.59713-2.0364 0-2.5343-0.49469-0.41251-1.3209 0.44382-1.8162 0.68085 0.04562-1.9848 0.28564-5.0661 0.28564-5.0661s-2.6962 0.2743-4.4329 0.32644c0.20744-0.56609 0.95677-1.5103 0.59584-2.0756-0.43566-0.68243-1.7818-0.68243-2.2176 0-0.36093 0.56535 0.38842 1.5095 0.59585 2.0756-1.7367-0.05213-4.4329-0.32644-4.4329-0.32644s0.24002 3.0813 0.28564 5.0661c-0.49534-0.23703-1.3215-1.0934-1.8162-0.68085-0.59713 0.4979-0.59713 2.0364 0 2.5343 0.49469 0.41251 1.3209-0.44395 1.8162-0.68098-0.04562 1.9848-0.28564 5.0661-0.28564 5.0661s2.6962 0.2743 4.4329 0.32644c-0.20741-0.56607-0.9568-1.5102-0.59585-2.0756 0.43566-0.68243 1.7818-0.68243 2.2176 0 0.36093 0.56537-0.38846 1.5095-0.59584 2.0756z" fill="#ddafe9" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m46.167 24.975c-0.6568-0.02737-1.3567 0.53919-1.4999 1.4738-2.1229-2.0769-4.2547-1.582-4.0688 1.1144-0.0036 0.23682-0.23168 1.1333-0.64256 2.2289-0.07786 1.9085-0.25749 4.2185-0.25749 4.2185s2.6962 0.27433 4.4328 0.32648c-0.2074-0.56605-0.95681-1.5103-0.59589-2.0756 0.43566-0.6824 1.7817-0.6824 2.2174 0 0.36094 0.56537-0.38837 1.5095-0.59577 2.0756 1.7367-0.05214 4.4327-0.32648 4.4327-0.32648s-0.09514-1.2232-0.17703-2.6242c-0.36809 0.0097-0.78174-0.03129-1.2083-0.13189-1.25-0.29483-2.1298-0.97806-1.9624-1.5282 0.11518-0.37819 0.69557-0.59481 1.4524-0.59707v-1.13e-4c0.34404-0.0019 0.72354 0.04431 1.1142 0.13642 0.17838 0.04208 0.34812 0.09284 0.50946 0.14922-0.0055-0.16134-0.01045-0.31963-0.01391-0.47017 0.49532 0.23703 1.3215 1.0934 1.8163 0.68099 0.37114-0.30947 0.5114-1.0209 0.42117-1.6347-0.50656-0.24525-1.0215-0.47791-1.5104-0.68958-0.26735 0.17469-0.52485 0.3741-0.72699 0.47083 0.0056-0.24213 0.01416-0.50099 0.02472-0.76818-1.1336-0.47054-1.9896-0.78073-1.9896-0.78073-0.17652-0.84628-0.66127-1.2269-1.1721-1.2482z" color="#000000" fill="#f95" stroke="#000" stroke-width=".099235" style="text-indent:0;text-transform:none" /> <path d="m34.731 20.448c-0.44546 0-0.89086 0.17059-1.1087 0.5118-0.36095 0.56537 0.38835 1.5095 0.59576 2.0756-1.7367-0.05214-4.4329-0.32644-4.4329-0.32644s-0.24002 3.0813-0.28564 5.0661c0.49531-0.23701 1.3215-1.0935 1.8162-0.68098 0.59713 0.4979 0.59713 2.0364 0 2.5343-0.49469 0.41251-1.3209-0.44395-1.8162-0.68098 0.04561 1.9848 0.28564 5.0663 0.28564 5.0663s2.6962-0.2743 4.4331-0.32644c-0.20744 0.56609-0.95677 1.5103-0.59584 2.0756 0.43566 0.68243 1.7818 0.68243 2.2176 0 0.36093-0.56535-0.38842-1.5095-0.59585-2.0756 1.7367 0.05214 4.4329 0.32644 4.4329 0.32644s0.24002-3.0813 0.28564-5.0661c-0.49531 0.23703-1.3215 1.0934-1.8162 0.68087-0.59713-0.4979-0.59713-2.0363 0-2.5341 0.49469-0.41251 1.3208 0.44382 1.8162 0.68087-0.04562-1.9848-0.28564-5.0661-0.28564-5.0661s-2.6962 0.2743-4.4329 0.32644c0.2074-0.56607 0.9568-1.5102 0.59585-2.0756-0.21783-0.34122-0.66334-0.5118-1.1088-0.5118z" fill="#ddafe9" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m29.785 22.708s-0.24002 3.0814-0.28564 5.0661c0.49531-0.23702 1.3215-1.0935 1.8163-0.68099 0.59713 0.4979 0.59713 2.0363 0 2.5342-0.49469 0.4125-1.3209-0.44396-1.8163-0.68099 0.04561 1.9848 0.28564 5.0663 0.28564 5.0663s0.54796-0.05518 1.2953-0.12019c1.6118-4.1879 2.6666-7.7949 2.651-10.877-1.7112-0.07998-3.9462-0.30705-3.9462-0.30705z" color="#000000" fill="#f95" stroke="#000" stroke-width=".099235" style="text-indent:0;text-transform:none" /> <path d="m39.932 29.854c-0.49238 1.3002-1.2385 2.866-2.1732 3.9456-0.01029 0.01339-0.02082 0.02658-0.03113 0.03995 1.0709 0.08607 1.9493 0.17471 1.9493 0.17471s0.17588-2.2632 0.25495-4.1602z" color="#000000" fill="#f95" stroke="#000" stroke-width=".099233" style="text-indent:0;text-transform:none" /> <path d="m44.643 43.102c-0.44544 0-0.89086 0.17058-1.1087 0.5118-0.36095 0.56537 0.38835 1.5095 0.59576 2.0756-1.7367-0.05213-4.4329-0.32644-4.4329-0.32644s-0.24002 3.0813-0.28564 5.0661c0.49531-0.23701 1.3215-1.0935 1.8162-0.68098 0.59713 0.4979 0.59713 2.0364 0 2.5343-0.49469 0.41251-1.3209-0.44395-1.8162-0.68098 0.04561 1.9848 0.28564 5.0663 0.28564 5.0663s2.6962-0.2743 4.4331-0.32644c-0.20744 0.56609-0.95677 1.5103-0.59585 2.0756 0.43566 0.68241 1.7818 0.68241 2.2176 0 0.36093-0.56535-0.38842-1.5095-0.59585-2.0756 1.7367 0.05214 4.4329 0.32644 4.4329 0.32644s0.24002-3.0813 0.28564-5.0661c-0.49531 0.23703-1.3215 1.0934-1.8162 0.68087-0.59713-0.4979-0.59713-2.0362 0-2.5341 0.49469-0.41251 1.3208 0.44384 1.8162 0.68087-0.04562-1.9848-0.28564-5.0661-0.28564-5.0661s-2.6962 0.2743-4.4329 0.32644c0.2074-0.56607 0.9568-1.5102 0.59585-2.0756-0.21783-0.34122-0.66334-0.5118-1.1088-0.5118z" fill="#ddafe9" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m44.641 43.102c-0.44545 0-0.89081 0.17057-1.1086 0.51178-0.36093 0.56537 0.38837 1.5095 0.59578 2.0756-1.7367-0.05213-4.4328-0.32647-4.4328-0.32647s-0.24002 3.0814-0.28564 5.0661c0.49531-0.23702 1.3215-1.0935 1.8163-0.68099 0.59713 0.4979 0.59713 2.0363 0 2.5342-0.4947 0.4125-1.321-0.44385-1.8163-0.68088 0.04561 1.9848 0.28564 5.0661 0.28564 5.0661s2.14-0.21744 3.8352-0.30175c1.4409-6.9613 0.97766-8.2062 2.6247-7.479 1.0125 0.44736 2.5141 0.25425 3.3594-0.47017 0.14994-0.16338 0.22543-0.33335 0.2449-0.50472-6e-3 -0.10136-0.01214-0.19504-0.01821-0.29392-0.11493-0.50979-0.6342-1.0048-1.0749-1.3455-0.33167-0.28116-0.78542-0.47853-1.1618-0.72444-0.7796 0.0615-1.6422 0.11979-2.3507 0.14105 0.2074-0.56605 0.9567-1.5103 0.59578-2.0756-0.21783-0.34121-0.6633-0.51178-1.1088-0.51178z" color="#000000" fill="#f95" stroke="#000" stroke-width=".099235" style="text-indent:0;text-transform:none" /> <path d="m34.731 54.43c-0.44544 0-0.89086 0.17058-1.1087 0.5118-0.36093 0.56537 0.38835 1.5095 0.59576 2.0756-1.7367-0.05213-4.4329-0.32644-4.4329-0.32644s-0.24002 3.0813-0.28564 5.0661c0.49531-0.23701 1.3215-1.0935 1.8162-0.68098 0.59713 0.4979 0.59713 2.0364 0 2.5343-0.49469 0.41251-1.3209-0.44395-1.8162-0.68098 0.04561 1.9848 0.28564 5.0663 0.28564 5.0663s2.6962-0.2743 4.4331-0.32644c-0.20744 0.56609-0.95677 1.5103-0.59584 2.0756 0.43566 0.68241 1.7818 0.68241 2.2176 0 0.36093-0.56535-0.38842-1.5095-0.59585-2.0756 1.7367 0.05214 4.4329 0.32644 4.4329 0.32644s0.24002-3.0813 0.28564-5.0661c-0.49531 0.23703-1.3215 1.0934-1.8162 0.68087-0.59713-0.4979-0.59713-2.0362 0-2.5341 0.49469-0.41251 1.3208 0.44384 1.8162 0.68087-0.04562-1.9848-0.28564-5.0661-0.28564-5.0661s-2.6962 0.2743-4.4329 0.32644c0.2074-0.56607 0.9568-1.5102 0.59585-2.0756-0.21783-0.34122-0.66334-0.5118-1.1088-0.5118z" fill="#ddafe9" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m34.729 54.429c-0.44544 0-0.89081 0.17057-1.1086 0.51178-0.36094 0.56537 0.38826 1.5095 0.59566 2.0756-1.7367-0.05213-4.4327-0.32647-4.4327-0.32647s-0.24002 3.0813-0.28564 5.066c0.49531-0.23702 1.3215-1.0934 1.8163-0.68088 0.59713 0.4979 0.59713 2.0363 0 2.5342-0.4947 0.4125-1.321-0.44396-1.8163-0.68099 0.0058 0.25424 0.01507 0.52699 0.02638 0.80847h10.41c0.01131-0.28142 0.02053-0.55412 0.02638-0.80836-0.49531 0.23703-1.3214 1.0933-1.8161 0.68088-0.59713-0.4979-0.59713-2.0362 0-2.5341 0.49469-0.4125 1.3208 0.44373 1.8161 0.68076-0.04561-1.9848-0.28564-5.066-0.28564-5.066s-2.6962 0.27434-4.4328 0.32647c0.2074-0.56605 0.95681-1.5103 0.59589-2.0756-0.21783-0.34121-0.6633-0.51178-1.1088-0.51178z" color="#000000" fill="#f95" stroke="#000" stroke-width=".099235" style="text-indent:0;text-transform:none" /> <path d="m31.745 62.343c0-0.50909-0.14926-1.0181-0.44784-1.2671-0.49469-0.41251-1.3208 0.44384-1.8162 0.68087 0.04562-1.9848 0.28564-5.0661 0.28564-5.0661s-2.6962-0.2743-4.4329-0.32644c0.20739 0.56607 0.9568 1.5103 0.59585 2.0757-0.43566 0.68241-1.7818 0.68241-2.2174 0-0.36095-0.56537 0.38846-1.5096 0.59584-2.0757-1.7367 0.05213-4.4331 0.32644-4.4331 0.32644s0.24002 3.0815 0.28564 5.0663c-0.49534-0.23707-1.3215-1.0935-1.8162-0.68098-0.59713 0.4979-0.59713 2.0364 0 2.5343 0.49467 0.41249 1.3208-0.4439 1.8162-0.68098-0.04562 1.9848-0.28564 5.0661-0.28564 5.0661s2.6962 0.2743 4.4329 0.32644c-0.2074-0.56607-0.95669-1.5102-0.59576-2.0756 0.43566-0.68243 1.7817-0.68243 2.2174 0 0.36093 0.56537-0.38835 1.5095-0.59576 2.0756 1.7367-0.05213 4.4329-0.32644 4.4329-0.32644s-0.24002-3.0813-0.28564-5.0661c0.49534 0.23703 1.3215 1.0935 1.8162 0.68098 0.29856-0.24895 0.44783-0.7581 0.44783-1.2672z" fill="#ddafe9" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m24.307 56.364c-0.56455 0.01695-1.2283 0.05811-1.8701 0.10496 0.44795 3.0765 1.6254 5.6399 4.1234 7.2688h2.946c-0.01131-0.28149-0.02053-0.55428-0.02638-0.80859 0.49532 0.23703 1.3215 1.0934 1.8161 0.68099 0.29856-0.24895 0.44788-0.75807 0.44788-1.2672 0-0.50908-0.14932-1.0181-0.44788-1.267-0.49468-0.4125-1.3208 0.44372-1.8161 0.68076 0.04563-1.9848 0.28564-5.066 0.28564-5.066s-2.696-0.27434-4.4327-0.32648c0.20739 0.56605 0.9567 1.5104 0.59577 2.0757-0.43566 0.6824-1.7818 0.6824-2.2174 0-0.36094-0.56537 0.38849-1.5096 0.59589-2.0757z" fill="#f95" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m24.82 43.102c-0.44546 0-0.89097 0.17058-1.1088 0.5118-0.36093 0.56537 0.38844 1.5096 0.59585 2.0757-1.7367-0.05213-4.4329-0.32644-4.4329-0.32644s0.24002 3.0813 0.28564 5.0661c-0.49531-0.23703-1.3215-1.0935-1.8162-0.68098-0.59713 0.4979-0.59713 2.0364 0 2.5343 0.49469 0.41251 1.3208-0.44395 1.8162-0.68098-0.04562 1.9848-0.28564 5.0661-0.28564 5.0661s2.6962-0.2743 4.4329-0.32644c-0.2074 0.56607-0.9568 1.5104-0.59585 2.0757 0.43568 0.68243 1.7818 0.68243 2.2176 0 0.36093-0.56537-0.38835-1.5096-0.59576-2.0757 1.7367 0.05214 4.4329 0.32644 4.4329 0.32644s-0.24002-3.0813-0.28564-5.0661c0.49534 0.23707 1.3215 1.0935 1.8162 0.68098 0.59713-0.4979 0.59713-2.0364 0-2.5343-0.49467-0.41249-1.3208 0.4439-1.8162 0.68098 0.04562-1.9848 0.28564-5.0661 0.28564-5.0661s-2.6962 0.2743-4.4329 0.32644c0.20741-0.56607 0.95669-1.5104 0.59576-2.0757-0.21783-0.34122-0.66325-0.5118-1.1087-0.5118z" fill="#ddafe9" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m24.819 43.102c-0.44545 0-0.89092 0.17057-1.1088 0.51178-0.36093 0.56537 0.38848 1.5096 0.59589 2.0757-0.4722-0.01418-1.0144-0.04518-1.555-0.08223-0.45169 3.8514-0.78237 7.6248-0.31842 10.839 0.64279-0.04695 1.3078-0.08831 1.8734-0.10529-0.2074 0.56611-0.95681 1.5104-0.59589 2.0757 0.43567 0.6824 1.7818 0.6824 2.2174 0 0.36093-0.56537-0.38826-1.5096-0.59566-2.0757 1.7367 0.05214 4.4327 0.32648 4.4327 0.32648s-0.24002-3.0813-0.28564-5.066c0.49532 0.23707 1.3215 1.0933 1.8161 0.68088 0.59713-0.4979 0.59713-2.0363 0-2.5342-0.49467-0.41248-1.3208 0.44391-1.8161 0.68099 0.04562-1.9848 0.28564-5.0661 0.28564-5.0661s-0.88058 0.08887-1.9533 0.17504c-3.1266 4.701-3.0006 7.9344-2.3767 10.604-0.01315 0.0059-0.02571 0.01259-0.03874 0.01887-0.0098-0.02123-0.01859-0.05203-0.02781-0.07052-1.2616-2.5577-1.2485-5.3359 0.80667-10.44-0.29365 0.01631-0.58046 0.03031-0.84289 0.03819 0.2074-0.56605 0.95658-1.5104 0.59566-2.0757-0.21783-0.34121-0.66319-0.51178-1.1086-0.51178z" fill="#f95" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m24.82 31.772c-0.44546 0-0.89086 0.17058-1.1087 0.5118-0.36093 0.56537 0.38835 1.5095 0.59576 2.0756-1.7367-0.05213-4.4329-0.32644-4.4329-0.32644s-0.24002 3.0813-0.28564 5.0661c0.49531-0.23701 1.3215-1.0935 1.8162-0.68098 0.59713 0.4979 0.59713 2.0364 0 2.5343-0.49469 0.41251-1.3209-0.44395-1.8162-0.68098 0.04561 1.9848 0.28564 5.0663 0.28564 5.0663s2.6962 0.2743 4.4329 0.32644c-0.2074-0.56607-0.95669-1.5102-0.59576-2.0756 0.43566-0.68243 1.7817-0.68243 2.2174 0 0.36093 0.56537-0.38835 1.5095-0.59576 2.0756 1.7367-0.05213 4.4329-0.32644 4.4329-0.32644s0.24002-3.0813 0.28564-5.0661c-0.49531 0.23703-1.3215 1.0934-1.8162 0.68087-0.59713-0.4979-0.59713-2.0363 0-2.5341 0.49469-0.41251 1.3208 0.44382 1.8162 0.68087-0.04562-1.9848-0.28564-5.0661-0.28564-5.0661s-2.6962 0.2743-4.4329 0.32644c0.2074-0.56607 0.9568-1.5102 0.59584-2.0756-0.21783-0.34122-0.66334-0.5118-1.1088-0.5118z" fill="#ddafe9" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m24.819 31.772c-0.42525 0-0.8499 0.1559-1.0771 0.46686 0.02327 0.35084 0.03841 0.70766 0.04746 1.0688 0.16839 0.38201 0.41179 0.76524 0.51675 1.0517-0.16159-0.0048-0.33332-0.01212-0.50858-0.02042-0.02771 3.511-0.59408 7.4145-1.0436 11.243 0.53962 0.03696 1.0808 0.06808 1.5521 0.08223-0.2074-0.56605-0.9567-1.5103-0.59577-2.0756 0.43566-0.6824 1.7817-0.6824 2.2173 0 0.36093 0.56537-0.38826 1.5095-0.59566 2.0756 0.26544-8e-3 0.55582-0.02227 0.85306-0.03885 0.09697-0.2404 0.19686-0.48412 0.30296-0.73507 0.58199-1.3772 1.1462-2.6952 1.6963-3.9835-0.54647-0.54012-0.5299-2.0048 0.05-2.4884 0.259-0.21597 0.60883-0.08339 0.95449 0.12527 0.26014-0.61713 0.51152-1.2211 0.75694-1.8168-0.08276-1.4295-0.1809-2.6938-0.1809-2.6938s-2.696 0.27434-4.4327 0.32647c0.2074-0.56605 0.9567-1.5103 0.59577-2.0756-0.21783-0.34121-0.6633-0.51178-1.1088-0.51178zm5.124 10.921c-0.11778 0.14817-0.23498 0.29698-0.35064 0.44744-0.6785 0.83012-1.2622 1.6189-1.7634 2.3704 1.0646-0.08573 1.9358-0.1735 1.9358-0.1735s0.09609-1.235 0.17825-2.6443z" color="#000000" fill="#f95" stroke="#000" stroke-width=".099235" style="text-indent:0;text-transform:none" /> <path d="m31.745 28.361c0-0.50909-0.14926-1.0181-0.44784-1.2671-0.49469-0.41251-1.3208 0.44382-1.8162 0.68085 0.04562-1.9848 0.28564-5.0661 0.28564-5.0661s-2.6962-0.2743-4.4329-0.32644c0.20739 0.56607 0.9568 1.5103 0.59585 2.0757-0.43566 0.68243-1.7818 0.68243-2.2176 0-0.36095-0.56537 0.38846-1.5096 0.59585-2.0757-1.7367 0.05213-4.4331 0.32644-4.4331 0.32644s-0.24002 3.0813-0.28564 5.0661c0.49531-0.23703 1.3215-1.0934 1.8162-0.68085 0.59713 0.4979 0.59713 2.0363 0 2.5341-0.49469 0.41251-1.3208-0.44382-1.8162-0.68087 0.04562 1.9848 0.28564 5.0661 0.28564 5.0661s2.6962 0.2743 4.4329 0.32644c-0.2074-0.56607-0.95669-1.5102-0.59576-2.0756 0.43566-0.68243 1.7817-0.68243 2.2174 0 0.36095 0.56537-0.38835 1.5095-0.59576 2.0756 1.7367-0.05213 4.4329-0.32644 4.4329-0.32644s-0.24002-3.0813-0.28564-5.0661c0.49534 0.23703 1.3215 1.0935 1.8162 0.68098 0.29856-0.24895 0.44784-0.7581 0.44784-1.2672z" fill="#ddafe9" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m24.308 22.381c-1.7367 0.05213-4.433 0.32636-4.433 0.32636s-0.01335 0.18019-0.02207 0.29645c1.9192 1.3657 2.9714 3.7719 3.5736 6.7703 0.15638 0.77852 0.25731 1.5972 0.31433 2.4477 0.46278-0.64064 1.762-0.62725 2.1886 0.04106 0.36094 0.56537-0.38837 1.5094-0.59577 2.0755 1.7367-0.05213 4.4328-0.32636 4.4328-0.32636s-0.24001-3.0814-0.28564-5.0661c0.49532 0.23703 1.3215 1.0934 1.8161 0.68099 0.29856-0.24895 0.44777-0.75807 0.44777-1.2672 0-0.50908-0.14921-1.0181-0.44777-1.267-0.49468-0.4125-1.3208 0.44373-1.8161 0.68076 0.04563-1.9848 0.28564-5.066 0.28564-5.066s-2.6962-0.27423-4.4328-0.32636c0.20739 0.56605 0.95681 1.5103 0.59589 2.0756-0.43566 0.6824-1.7819 0.6824-2.2175 0-0.36094-0.56537 0.38849-1.5095 0.59589-2.0756zm-0.51928 10.9c0.0089 0.34148 0.0116 0.68732 0.0091 1.0372 0.17583 0.0083 0.34804 0.01555 0.51013 0.02042-0.10549-0.28792-0.35071-0.67359-0.51918-1.0576z" color="#000000" fill="#f95" stroke="#000" stroke-width=".099235" style="text-indent:0;text-transform:none" /> <path d="m14.909 9.117c-0.44544 0-0.89086 0.17058-1.1087 0.5118-0.36093 0.56537 0.38835 1.5095 0.59576 2.0756-1.7367-0.05213-4.4329-0.32644-4.4329-0.32644s-0.24002 3.0813-0.28564 5.0661c0.49531-0.23701 1.3215-1.0935 1.8162-0.68098 0.59713 0.4979 0.59713 2.0364 0 2.5343-0.49469 0.41251-1.3209-0.44395-1.8162-0.68098 0.045612 1.9848 0.28564 5.0663 0.28564 5.0663s2.6962 0.2743 4.4329 0.32644c-0.2074-0.56607-0.95669-1.5102-0.59576-2.0756 0.43566-0.68243 1.7817-0.68243 2.2174 0 0.36093 0.56537-0.38835 1.5095-0.59576 2.0756 1.7367-0.05214 4.4329-0.32644 4.4329-0.32644s0.24002-3.0813 0.28564-5.0661c-0.49531 0.23703-1.3215 1.0934-1.8162 0.68087-0.59713-0.49792-0.59713-2.0363 0-2.5341 0.49469-0.41251 1.3208 0.44384 1.8162 0.68087-0.04562-1.9848-0.28564-5.0661-0.28564-5.0661s-2.6962 0.27432-4.4329 0.32644c0.20741-0.56607 0.9568-1.5102 0.59585-2.0756-0.21783-0.34122-0.66334-0.5118-1.1088-0.5118z" fill="#ddafe9" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m20.049 14.336c-6.9054 1.4082-6.2499 6.598-0.62623 8.3893 0.26048-0.02478 0.43077-0.04194 0.43077-0.04194s0.24002-3.0814 0.28564-5.0661c-0.49531 0.23703-1.3215 1.0933-1.8161 0.68088-0.59713-0.49791-0.59713-2.0362 0-2.5341 0.49469-0.4125 1.3208 0.44384 1.8161 0.68088-0.01464-0.6368-0.04986-1.384-0.09017-2.1086z" color="#000000" fill="#f95" stroke="#000" stroke-width=".099235" style="text-indent:0;text-transform:none" /> <path d="m24.307 11.057c-1.7367 0.05214-4.4329 0.32644-4.4329 0.32644s0.24002 3.0813 0.28564 5.0661c-0.49531-0.23703-1.3215-1.0935-1.8162-0.68098-0.59713 0.4979-0.59713 2.0364 0 2.5343 0.49469 0.41251 1.3209-0.44384 1.8162-0.68087-0.04562 1.9848-0.28564 5.0661-0.28564 5.0661s2.6962-0.2743 4.4329-0.32644c-0.20744 0.56609-0.95677 1.5102-0.59584 2.0756 0.43566 0.68243 1.7818 0.68243 2.2176 0 0.36093-0.56535-0.38842-1.5095-0.59585-2.0756 1.7367 0.05213 4.4329 0.32644 4.4329 0.32644s-0.24002-3.0813-0.28564-5.0661c0.49531 0.23703 1.3215 1.0934 1.8162 0.68087 0.59713-0.4979 0.59713-2.0364 0-2.5343-0.49469-0.41251-1.3209 0.44395-1.8162 0.68098 0.04562-1.9848 0.28564-5.0661 0.28564-5.0661s-2.6962-0.2743-4.4329-0.32644c0.20741 0.56607 0.9568 1.5102 0.59585 2.0756-0.43566 0.68243-1.7818 0.68243-2.2176 0-0.36093-0.56537 0.38844-1.5095 0.59584-2.0756z" fill="#ddafe9" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m24.487 13.612c-1.4663 0.01104-2.9876 0.27582-4.4187 0.71885 0.04055 0.72767 0.07613 1.4788 0.09083 2.1185-0.49531-0.23703-1.3215-1.0933-1.8163-0.68088-0.59713 0.4979-0.59713 2.0363 0 2.5342 0.49468 0.41249 1.3209-0.44384 1.8163-0.68088-0.04562 1.9848-0.28564 5.066-0.28564 5.066s2.6962-0.27423 4.4328-0.32636c-0.20743 0.56611-0.95681 1.5103-0.59589 2.0756 0.43566 0.6824 1.7818 0.6824 2.2174 0 0.36092-0.56532-0.38834-1.5095-0.59577-2.0756 1.7367 0.05213 4.4327 0.32636 4.4327 0.32636s-0.24002-3.0813-0.28564-5.066c0.49532 0.23703 1.3215 1.0933 1.8163 0.68088 0.30013-0.25027 0.44935-0.76344 0.44777-1.2752-0.34643-0.43273-0.74219-0.84905-1.1909-1.2491-0.38268 0.18496-0.78412 0.53276-1.0731 0.67104 0.01041-0.45311 0.03166-0.965 0.05717-1.4827-1.2377-0.86408-2.7911-1.2757-4.4432-1.3447-0.19953 0.03229-0.40874 0.02933-0.60617-0.0099z" color="#000000" fill="#f95" stroke="#000" stroke-width=".099235" style="text-indent:0;text-transform:none" /> <path d="m47.631 39.689c0 0.50909 0.14926 1.0181 0.44784 1.2671 0.49469 0.41251 1.3208-0.44382 1.8162-0.68085-0.04562 1.9848-0.28564 5.0661-0.28564 5.0661s2.6962 0.2743 4.4329 0.32644c-0.20739-0.56607-0.9568-1.5103-0.59585-2.0757 0.43566-0.68243 1.7818-0.68243 2.2176 0 0.36095 0.56537-0.38846 1.5096-0.59585 2.0757 1.7367-0.05213 4.4331-0.32644 4.4331-0.32644s-0.24002-3.0815-0.28564-5.0663c0.49533 0.23707 1.3215 1.0935 1.8162 0.68098 0.59713-0.4979 0.59713-2.0364 0-2.5343-0.49467-0.41249-1.3208 0.4439-1.8162 0.68098 0.04562-1.9848 0.28564-5.0661 0.28564-5.0661s-2.6962-0.2743-4.4329-0.32644c0.2074 0.56607 0.95669 1.5102 0.59576 2.0756-0.43566 0.68243-1.7817 0.68243-2.2174 0-0.36093-0.56537 0.38835-1.5095 0.59576-2.0756-1.7367 0.05213-4.4329 0.32644-4.4329 0.32644s0.24002 3.0813 0.28564 5.0661c-0.49534-0.23703-1.3215-1.0935-1.8162-0.68098-0.29856 0.24895-0.44784 0.7581-0.44784 1.2672z" fill="#ddafe9" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m54.038 33.709c-1.7367 0.05213-4.4328 0.32647-4.4328 0.32647s0.10983 1.4216 0.19513 2.954c0.16842-0.1323 0.34115-0.26485 0.52205-0.39843 0.85526-0.6316 1.9289-0.94664 3.0314-1.2881 0.06749-0.5309 0.52858-1.169 0.68427-1.5939z" fill="#f95" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m55.067 33.71c0.08282 0.22605 0.25174 0.51266 0.40218 0.8111 0.4087-0.199 0.8039-0.43546 1.176-0.72711-0.54826-0.03776-1.0992-0.06961-1.5782-0.08399z" fill="#f95" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m37.717 62.343c0-0.50909 0.14926-1.0181 0.44783-1.2671 0.49469-0.41251 1.3208 0.44384 1.8162 0.68087-0.04562-1.9848-0.28564-5.0661-0.28564-5.0661s2.6962-0.2743 4.4329-0.32644c-0.20739 0.56607-0.9568 1.5103-0.59584 2.0757 0.43566 0.68243 1.7818 0.68243 2.2176 0 0.36095-0.56537-0.38846-1.5096-0.59585-2.0757 1.7367 0.05213 4.4331 0.32644 4.4331 0.32644s0.24002 3.0813 0.28564 5.0661c-0.49531-0.23703-1.3215-1.0934-1.8162-0.68087-0.59713 0.4979-0.59713 2.0362 0 2.5341 0.49469 0.41251 1.3208-0.44382 1.8162-0.68087-0.04562 1.9848-0.28564 5.0661-0.28564 5.0661s-2.6962 0.2743-4.4329 0.32644c0.2074-0.56607 0.95669-1.5102 0.59576-2.0756-0.43566-0.68243-1.7817-0.68243-2.2174 0-0.36093 0.56537 0.38835 1.5095 0.59576 2.0756-1.7367-0.05213-4.4329-0.32644-4.4329-0.32644s0.24002-3.0813 0.28564-5.0661c-0.49534 0.23703-1.3215 1.0935-1.8162 0.68098-0.29856-0.24895-0.44783-0.7581-0.44783-1.2672z" fill="#ddafe9" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m43.528 56.387c-1.6947 0.08442-3.832 0.30164-3.832 0.30164s0.24002 3.0813 0.28564 5.066c-0.49532-0.23703-1.3214-1.0933-1.8161-0.68076-0.29856 0.24895-0.44777 0.75796-0.44777 1.267 0 0.50908 0.14921 1.0182 0.44777 1.2672 0.49468 0.41249 1.3208-0.44395 1.8161-0.68099-0.0058 0.25422-0.01507 0.52693-0.02638 0.80836h4.1621c0.46518-0.58899-0.02216-1.256-0.52657-1.7125-0.35323-0.32544-0.74863-0.62041-1.1475-0.90748 0.4534-1.8111 0.80435-3.3757 1.0847-4.7286z" fill="#f95" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m34.731 9.117c-0.44546 0-0.89086 0.17058-1.1087 0.5118-0.36095 0.56537 0.38835 1.5095 0.59576 2.0756-1.7367-0.05213-4.4329-0.32644-4.4329-0.32644s-0.24002 3.0813-0.28564 5.0661c0.49531-0.23701 1.3215-1.0935 1.8162-0.68098 0.59713 0.4979 0.59713 2.0364 0 2.5343-0.49469 0.41251-1.3209-0.44395-1.8162-0.68098 0.04561 1.9848 0.28564 5.0663 0.28564 5.0663s2.6962 0.2743 4.4329 0.32644c-0.2074-0.56607-0.95669-1.5102-0.59576-2.0756 0.43566-0.68243 1.7817-0.68243 2.2174 0 0.36095 0.56537-0.38835 1.5095-0.59576 2.0756 1.7367-0.05214 4.4329-0.32644 4.4329-0.32644s0.24002-3.0813 0.28564-5.0661c-0.49531 0.23703-1.3215 1.0934-1.8162 0.68087-0.59713-0.4979-0.59713-2.0363 0-2.5341 0.49469-0.41251 1.3208 0.44384 1.8162 0.68087-0.04562-1.9848-0.28564-5.0661-0.28564-5.0661s-2.6962 0.2743-4.4329 0.32644c0.2074-0.56607 0.9568-1.5102 0.59584-2.0756-0.21783-0.34122-0.66334-0.5118-1.1088-0.5118z" fill="#ddafe9" stroke="#000" stroke-width=".10468" style="paint-order:normal" /> <path d="m29.553 14.98c-0.0251 0.5116-0.04611 1.0172-0.0564 1.4652 0.28496-0.13636 0.67935-0.47683 1.0572-0.66364-0.27359-0.24419-0.56656-0.48248-0.88018-0.71473-0.03981-0.02948-0.08014-0.05825-0.12064-0.08675zm2.2073 2.0715c-0.0039 0.5023-0.15283 1.0013-0.44744 1.2469-0.4947 0.4125-1.321-0.44396-1.8163-0.68099 0.04561 1.9848 0.28563 5.0661 0.28563 5.0661s2.2346 0.22705 3.9458 0.30705c-0.0026-0.37246-0.0209-0.73722-0.05573-1.0944-0.1243-0.29721-0.19626-0.59029-0.1139-0.83317-0.26237-1.4703-0.83865-2.8048-1.7981-4.0116z" fill="#f95" stroke="#000" stroke-width=".10468" style="paint-order:normal" /></svg> </div> </div> <div class="gridelem"> <input type="checkbox" id="chrom7" class="checkboxi" value="ok"> <label for="chrom7">Play</label> <div class="sclassgrid"><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i class="sel s8 bla"></i><i class="sel s9 bla"></i><i class="sel s10 bla"></i><i class="sel s11 bla"></i><i class="sel s12 bla"></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i class="sel s27 bla"></i><i class="sel s28 bla"></i><i class="sel s29 red"></i><i class="sel s30 red"></i><i class="sel s31 red"></i><i class="sel s32 red"></i><i class="sel s33 red"></i><i class="sel s34 bla"></i><i class="sel s35 bla"></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i class="sel s46 bla"></i><i class="sel s47 bla"></i><i class="sel s48 red"></i><i class="sel s49 red"></i><i class="sel s50 red"></i><i class="sel s51 red"></i><i class="sel s52 red"></i><i class="sel s53 red"></i><i class="sel s54 red"></i><i class="sel s55 red"></i><i class="sel s56 red"></i><i class="sel s57 bla"></i><i class="sel s58 bla"></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i class="sel s66 bla"></i><i class="sel s67 whi"></i><i class="sel s68 red"></i><i class="sel s69 red"></i><i class="sel s70 red"></i><i class="sel s71 red"></i><i class="sel s72 red"></i><i class="sel s73 red"></i><i class="sel s74 red"></i><i class="sel s75 red"></i><i class="sel s76 red"></i><i class="sel s77 red"></i><i class="sel s78 red"></i><i class="sel s79 red"></i><i class="sel s80 bla"></i><i></i><i></i><i></i><i></i><i></i><i class="sel s86 bla"></i><i class="sel s87 whi"></i><i class="sel s88 whi"></i><i class="sel s89 red"></i><i class="sel s90 red"></i><i class="sel s91 red"></i><i class="sel s92 red"></i><i class="sel s93 red"></i><i class="sel s94 red"></i><i class="sel s95 red"></i><i class="sel s96 red"></i><i class="sel s97 red"></i><i class="sel s98 red"></i><i class="sel s99 red"></i><i class="sel s100 red"></i><i class="sel s101 red"></i><i class="sel s102 bla"></i><i></i><i></i><i></i><i></i><i class="sel s107 bla"></i><i class="sel s108 whi"></i><i class="sel s109 whi"></i><i class="sel s110 red"></i><i class="sel s111 red"></i><i class="sel s112 red"></i><i class="sel s113 red"></i><i class="sel s114 red"></i><i class="sel s115 red"></i><i class="sel s116 red"></i><i class="sel s117 red"></i><i class="sel s118 red"></i><i class="sel s119 red"></i><i class="sel s120 red"></i><i class="sel s121 red"></i><i class="sel s122 red"></i><i class="sel s123 bla"></i><i></i><i></i><i></i><i class="sel s127 bla"></i><i class="sel s128 whi"></i><i class="sel s129 whi"></i><i class="sel s130 whi"></i><i class="sel s131 whi"></i><i class="sel s132 red"></i><i class="sel s133 red"></i><i class="sel s134 red"></i><i class="sel s135 red"></i><i class="sel s136 red"></i><i class="sel s137 red"></i><i class="sel s138 red"></i><i class="sel s139 red"></i><i class="sel s140 red"></i><i class="sel s141 red"></i><i class="sel s142 yel"></i><i class="sel s143 yel"></i><i class="sel s144 yel"></i><i class="sel s145 bla"></i><i></i><i></i><i class="sel s148 bla"></i><i class="sel s149 whi"></i><i class="sel s150 whi"></i><i class="sel s151 whi"></i><i class="sel s152 whi"></i><i class="sel s153 red"></i><i class="sel s154 red"></i><i class="sel s155 red"></i><i class="sel s156 bla"></i><i class="sel s157 bla"></i><i class="sel s158 bla"></i><i class="sel s159 red"></i><i class="sel s160 red"></i><i class="sel s161 yel"></i><i class="sel s162 yel"></i><i class="sel s163 yel"></i><i class="sel s164 yel"></i><i class="sel s165 yel"></i><i class="sel s166 bla"></i><i></i><i class="sel s168 bla"></i><i class="sel s169 whi"></i><i class="sel s170 whi"></i><i class="sel s171 whi"></i><i class="sel s172 whi"></i><i class="sel s173 whi"></i><i class="sel s174 whi"></i><i class="sel s175 red"></i><i class="sel s176 bla"></i><i class="sel s177 blu"></i><i class="sel s178 blu"></i><i class="sel s179 blu"></i><i class="sel s180 bla"></i><i class="sel s181 yel"></i><i class="sel s182 yel"></i><i class="sel s183 yel"></i><i class="sel s184 yel"></i><i class="sel s185 yel"></i><i class="sel s186 yel"></i><i class="sel s187 yel"></i><i class="sel s188 bla"></i><i class="sel s189 bla"></i><i class="sel s190 whi"></i><i class="sel s191 whi"></i><i class="sel s192 whi"></i><i class="sel s193 whi"></i><i class="sel s194 whi"></i><i class="sel s195 whi"></i><i class="sel s196 bla"></i><i class="sel s197 blu"></i><i class="sel s198 blu"></i><i class="sel s199 blu"></i><i class="sel s200 blu"></i><i class="sel s201 blu"></i><i class="sel s202 bla"></i><i class="sel s203 yel"></i><i class="sel s204 yel"></i><i class="sel s205 yel"></i><i class="sel s206 yel"></i><i class="sel s207 yel"></i><i class="sel s208 yel"></i><i class="sel s209 bla"></i><i class="sel s210 bla"></i><i class="sel s211 whi"></i><i class="sel s212 whi"></i><i class="sel s213 whi"></i><i class="sel s214 whi"></i><i class="sel s215 whi"></i><i class="sel s216 whi"></i><i class="sel s217 bla"></i><i class="sel s218 blu"></i><i class="sel s219 blu"></i><i class="sel s220 blu"></i><i class="sel s221 blu"></i><i class="sel s222 blu"></i><i class="sel s223 bla"></i><i class="sel s224 yel"></i><i class="sel s225 yel"></i><i class="sel s226 yel"></i><i class="sel s227 yel"></i><i class="sel s228 yel"></i><i class="sel s229 yel"></i><i class="sel s230 bla"></i><i class="sel s231 bla"></i><i class="sel s232 whi"></i><i class="sel s233 whi"></i><i class="sel s234 whi"></i><i class="sel s235 whi"></i><i class="sel s236 whi"></i><i class="sel s237 whi"></i><i class="sel s238 bla"></i><i class="sel s239 gre"></i><i class="sel s240 blu"></i><i class="sel s241 blu"></i><i class="sel s242 blu"></i><i class="sel s243 gre"></i><i class="sel s244 bla"></i><i class="sel s245 yel"></i><i class="sel s246 yel"></i><i class="sel s247 yel"></i><i class="sel s248 yel"></i><i class="sel s249 yel"></i><i class="sel s250 yel"></i><i class="sel s251 bla"></i><i class="sel s252 bla"></i><i class="sel s253 whi"></i><i class="sel s254 whi"></i><i class="sel s255 whi"></i><i class="sel s256 whi"></i><i class="sel s257 whi"></i><i class="sel s258 whi"></i><i class="sel s259 whi"></i><i class="sel s260 bla"></i><i class="sel s261 gre"></i><i class="sel s262 gre"></i><i class="sel s263 gre"></i><i class="sel s264 bla"></i><i class="sel s265 yel"></i><i class="sel s266 yel"></i><i class="sel s267 yel"></i><i class="sel s268 yel"></i><i class="sel s269 yel"></i><i class="sel s270 yel"></i><i class="sel s271 yel"></i><i class="sel s272 bla"></i><i></i><i class="sel s274 bla"></i><i class="sel s275 whi"></i><i class="sel s276 whi"></i><i class="sel s277 whi"></i><i class="sel s278 whi"></i><i class="sel s279 whi"></i><i class="sel s280 whi"></i><i class="sel s281 whi"></i><i class="sel s282 bla"></i><i class="sel s283 bla"></i><i class="sel s284 bla"></i><i class="sel s285 yel"></i><i class="sel s286 yel"></i><i class="sel s287 yel"></i><i class="sel s288 yel"></i><i class="sel s289 yel"></i><i class="sel s290 yel"></i><i class="sel s291 yel"></i><i class="sel s292 bla"></i><i></i><i></i><i class="sel s295 bla"></i><i class="sel s296 whi"></i><i class="sel s297 whi"></i><i class="sel s298 whi"></i><i class="sel s299 whi"></i><i class="sel s300 whi"></i><i class="sel s301 whi"></i><i class="sel s302 whi"></i><i class="sel s303 whi"></i><i class="sel s304 whi"></i><i class="sel s305 yel"></i><i class="sel s306 yel"></i><i class="sel s307 yel"></i><i class="sel s308 yel"></i><i class="sel s309 yel"></i><i class="sel s310 yel"></i><i class="sel s311 yel"></i><i class="sel s312 yel"></i><i class="sel s313 bla"></i><i></i><i></i><i></i><i class="sel s317 bla"></i><i class="sel s318 whi"></i><i class="sel s319 whi"></i><i class="sel s320 whi"></i><i class="sel s321 whi"></i><i class="sel s322 whi"></i><i class="sel s323 whi"></i><i class="sel s324 whi"></i><i class="sel s325 yel"></i><i class="sel s326 yel"></i><i class="sel s327 yel"></i><i class="sel s328 yel"></i><i class="sel s329 yel"></i><i class="sel s330 yel"></i><i class="sel s331 yel"></i><i class="sel s332 yel"></i><i class="sel s333 bla"></i><i></i><i></i><i></i><i></i><i class="sel s338 bla"></i><i class="sel s339 whi"></i><i class="sel s340 whi"></i><i class="sel s341 whi"></i><i class="sel s342 whi"></i><i class="sel s343 whi"></i><i class="sel s344 whi"></i><i class="sel s345 whi"></i><i class="sel s346 yel"></i><i class="sel s347 yel"></i><i class="sel s348 yel"></i><i class="sel s349 yel"></i><i class="sel s350 yel"></i><i class="sel s351 yel"></i><i class="sel s352 yel"></i><i class="sel s353 yel"></i><i class="sel s354 bla"></i><i></i><i></i><i></i><i></i><i></i><i class="sel s360 bla"></i><i class="sel s361 whi"></i><i class="sel s362 whi"></i><i class="sel s363 whi"></i><i class="sel s364 whi"></i><i class="sel s365 whi"></i><i class="sel s366 yel"></i><i class="sel s367 yel"></i><i class="sel s368 yel"></i><i class="sel s369 yel"></i><i class="sel s370 yel"></i><i class="sel s371 yel"></i><i class="sel s372 yel"></i><i class="sel s373 yel"></i><i class="sel s374 bla"></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i class="sel s382 bla"></i><i class="sel s383 bla"></i><i class="sel s384 whi"></i><i class="sel s385 whi"></i><i class="sel s386 whi"></i><i class="sel s387 yel"></i><i class="sel s388 yel"></i><i class="sel s389 yel"></i><i class="sel s390 yel"></i><i class="sel s391 yel"></i><i class="sel s392 yel"></i><i class="sel s393 bla"></i><i class="sel s394 bla"></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i class="sel s405 bla"></i><i class="sel s406 bla"></i><i class="sel s407 yel"></i><i class="sel s408 yel"></i><i class="sel s409 yel"></i><i class="sel s410 yel"></i><i class="sel s411 yel"></i><i class="sel s412 bla"></i><i class="sel s413 bla"></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i class="sel s428 bla"></i><i class="sel s429 bla"></i><i class="sel s430 bla"></i><i class="sel s431 bla"></i><i class="sel s432 bla"></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i></div> </div> </div> </div> <script> (function () { window.onload = () => { let inputs = [...document.getElementsByTagName("input")]; inputs.forEach((e) => { e.checked = false; }) } document.addEventListener("click", clicks); function clicks(e) { if (e.target.id === "loader") { document.getElementsByClassName("animat")[0].classList.remove("digit"); setTimeout(() => document.getElementsByClassName("animat")[0].classList.add("digit", "duration"), 100); } } })(); </script> </body> </html>
CSS
JAVASCRIPT
Expand for more options Login