diff --git a/midterm/.DS_Store b/midterm/.DS_Store new file mode 100644 index 0000000..c95d617 Binary files /dev/null and b/midterm/.DS_Store differ diff --git a/midterm/css/.DS_Store b/midterm/css/.DS_Store new file mode 100644 index 0000000..5008ddf Binary files /dev/null and b/midterm/css/.DS_Store differ diff --git a/midterm/css/style.css b/midterm/css/style.css new file mode 100644 index 0000000..e7006b9 --- /dev/null +++ b/midterm/css/style.css @@ -0,0 +1,911 @@ +body { + background: linear-gradient(#743e64, #505261); + color: white; + padding: 0; + margin: 0; +} + +footer { + display: flex; + justify-content: center; + align-items: center; + flex-direction: column; + background-color: rgba(4, 7, 36, 0.445); + padding: 15px; + margin: 0; + margin-top: 30px; +} +footer p { + color: rgba(255, 255, 255, 0.404); + font-size: small; + font-family: Arial, Helvetica, sans-serif; + font-weight: lighter; + padding: 5px; + margin: 0; +} + +p { + font-family: Georgia, "Times New Roman", Times, serif; + line-height: 1.4em; +} +h1 { + font-family: Arial, Helvetica, sans-serif; +} +h2 { + font-family: Arial, Helvetica, sans-serif; +} +h3 { + font-family: Arial, Helvetica, sans-serif; +} +h4 { + font-family: Arial, Helvetica, sans-serif; +} +hr { + border: 0; + height: 1px; + background: #333; + background-image: linear-gradient( + to right, + rgba(255, 255, 255, 0.5), + rgba(255, 255, 255), + rgb(255, 255, 255, 0.5) + ); +} + +@media (min-width: 320px) { + .mobile-nav { + display: flex; + justify-content: center; + background-color: rgba(4, 7, 36, 0.445); + } + #burger { + margin-top: 20px; + margin-bottom: 20px; + } + .main-menu { + position: absolute; + display: none; + left: -200px; + top: 0; + height: 100%; + overflow-y: scroll; + overflow-x: visible; + transition: left 0.3s ease, box-shadow 0.3s ease; + z-index: 999; + } + + .main-menu ul { + list-style: none; + margin: 0; + padding: 4.7em 0 0; + box-shadow: rgba(5, 20, 36, 0.48) 6px 2px 16px 0px, + rgba(8, 8, 8, 0.8) -6px -2px 16px 0px; + min-height: 100%; + width: 200px; + background: rgba(4, 7, 36, 0.445); + backdrop-filter: blur(100px); + } + + .main-menu a { + display: block; + padding: 0.75em 15px; + line-height: 1em; + font-size: 1em; + color: #fff; + text-decoration: none; + border-bottom: 1px solid #fff; + } + + .main-menu li:first-child a { + border-top: 1px solid #fff; + } + + .main-menu a:hover, + .main-menu a:focus { + background: rgba(23, 214, 141, 0.103); + text-decoration: underline; + } + + .main-menu .menu-close { + position: absolute; + top: 0; + } + + .main-menu:target, + .main-menu[aria-expanded="true"] { + display: block; + left: 0; + outline: none; + box-shadow: rgba(20, 20, 20, 0.48) 6px 2px 16px 0px, + rgba(10, 10, 10, 0.8) -6px -2px 16px 0px; + } + + .main-menu:target .menu-close, + .main-menu[aria-expanded="true"] .menu-close { + z-index: 1001; + } + + .main-menu:target ul, + .main-menu[aria-expanded="true"] ul { + position: relative; + z-index: 1000; + } + + .main-menu:target + .backdrop, + .main-menu[aria-expanded="true"] + .backdrop { + position: absolute; + display: block; + left: 0; + top: 0; + width: 100%; + height: 100%; + z-index: 998; + background: rgba(255, 255, 255, 0.062); + background: rgba(255, 255, 255, 0.082); + cursor: default; + } + + @supports (position: fixed) { + .main-menu, + .main-menu:target + .backdrop, + .main-menu[aria-expanded="true"] + .backdrop { + position: fixed; + } + } + + .big-nav { + display: none; + } + .top-desc-cube { + display: flex; + justify-content: center; + flex-direction: column; + align-items: center; + } + .top-desc { + padding: 15px; + } + .top-desc h2 { + padding: 0; + padding-bottom: 5px; + margin: 0; + } + .top-desc p { + padding: 0; + padding-top: 5px; + margin: 0; + } + + @keyframes turn { + from { + transform: rotate3d(0, 0, 0, 0); + } + to { + transform: rotate3d(1, 1, 0, 360deg); + } + } + + .cube-container { + width: 100px; + height: 100px; + perspective: 500px; + padding: 50px; + } + + .cube { + position: relative; + width: 100px; + height: 100px; + transform-style: preserve-3d; + animation: turn 5s linear infinite; + -webkit-animation: turn 5s linear infinite; + } + + .face { + width: 100px; + height: 100px; + background: rgba(255, 255, 255, 0.048); + border: 2px solid white; + position: absolute; + opacity: 0.5; + display: flex; + align-items: center; + justify-content: center; + font-family: Arial, sans-serif; + color: white; + font-size: 1.75rem; + -webkit-transition: transform 500ms; + transition: transform 500ms; + } + + .front { + -webkit-transform: translateZ(50px); + transform: translateZ(50px); + } + + .back { + -webkit-transform: translateZ(-50px) rotateY(90deg); + transform: translateZ(-50px) rotateY(180deg); + } + + .left { + -webkit-transform: translateX(-50px) rotateY(-90deg); + transform: translateX(-50px) rotateY(-90deg); + } + + .right { + -webkit-transform: translateX(50px) rotateY(90deg); + transform: translateX(50px) rotateY(90deg); + } + + .top { + -webkit-transform: translateY(-50px) rotateX(90deg); + transform: translateY(-50px) rotateX(90deg); + } + + .bottom { + -webkit-transform: translateY(50px) rotateX(-90deg); + transform: translateY(50px) rotateX(-90deg); + } + + @media (prefers-reduced-motion: reduce) { + .cube { + -webkit-animation: none; + animation: none; + -webkit-transform: rotate3d(1, 1, 0, 45deg); + transform: rotate3d(1, 1, 0, 45deg); + } + } + + .basic-blocks { + margin-top: 10px; + } + + .basic-section-1 { + padding: 5px; + padding-bottom: 0; + } + .basic-section-2 { + padding: 5px; + padding-top: 0; + margin-bottom: 35px; + } + + .card { + box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, + rgba(0, 0, 0, 0.23) 0px 6px 6px; + margin: 10px; + padding: 0; + } + + .card h3 { + text-decoration: underline white; + padding-top: 15px; + padding-left: 15px; + padding-bottom: 10px; + margin: 0; + } + + .card p { + padding: 5px; + padding-left: 15px; + padding-right: 15px; + margin: 0; + height: auto; + } + + .top-half { + text-align: left; + background-color: rgba(4, 7, 36, 0.445); + border-top-left-radius: 5px; + border-top-right-radius: 5px; + } + + .inner-card h4 { + color: #505261; + padding-top: 15px; + padding-left: 15px; + padding-right: 15px; + padding-bottom: 10px; + margin: 0; + } + .inner-card p { + color: #505261; + padding: 5px; + padding-left: 15px; + padding-right: 15px; + margin: 0; + } + + .inner-card { + background-color: rgb(255, 255, 255); + border-bottom-right-radius: 5px; + border-bottom-left-radius: 5px; + } + + .flip-ex { + display: flex; + justify-content: center; + flex-direction: column; + align-items: center; + } + + .flip-buddy { + display: flex; + justify-content: center; + flex-direction: column; + align-items: center; + } + + #arrow-text { + font-size: 50px; + font-weight: bolder; + padding: 5px; + margin: 0; + margin-top: 15px; + margin-bottom: 15px; + } + + #flip-arrow { + transform: rotate(90deg); + width: 150px; + padding: 0; + margin: 0; + } + + .scene { + width: 200px; + height: 260px; + margin: 40px 0; + perspective: 600px; + } + + .s-card { + width: 100%; + height: 100%; + transition: transform 1.5s ease-in-out; + transform-style: preserve-3d; + cursor: pointer; + position: relative; + } + + .s-card.is-flipped { + transform: rotateY(180deg); + } + + .s-card-face { + position: absolute; + width: 100%; + height: 100%; + line-height: 260px; + color: white; + text-align: center; + font-weight: bold; + font-size: 40px; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + } + + .s-card-front { + background: rgba(255, 255, 255, 0.5); + backdrop-filter: blur(10); + border-radius: 5px; + display: flex; + justify-content: center; + align-items: center; + box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, + rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, + rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px; + } + + .s-card-back { + background: rgba(255, 255, 255, 0.5); + backdrop-filter: blur(10); + transform: rotateY(180deg); + border-radius: 5px; + display: flex; + justify-content: center; + align-items: center; + box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, + rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, + rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px; + } + .s-card-text { + color: #505261; + text-shadow: 2px 4px 4px rgba(0, 0, 0, 0.2), + 0px -5px 10px rgba(255, 255, 255, 0.15); + padding: 0; + margin: 0; + } + hr { + margin-left: 10px; + margin-right: 10px; + } + .demo-container { + display: flex; + justify-content: center; + flex-direction: column; + align-items: center; + margin-left: 10px; + margin-right: 10px; + } + + .demo-intro { + display: flex; + justify-content: center; + flex-direction: column; + align-items: flex-start; + margin-left: 5px; + margin-right: 5px; + } + + .demo-intro h1 { + font-size: xx-large; + margin-bottom: 0; + } + + .demo-title { + padding: 0; + margin: 0; + } + .demo-title h2 { + padding: 5px; + margin: 0; + } + .demo-section p { + margin: 0; + padding: 5px; + } + .demo-imgs { + padding: 5px; + margin: 0; + width: 280px; + } + .live-demo { + background-color: rgba(4, 7, 36, 0.445); + border-radius: 5px; + border: none; + margin-top: 30px; + margin-bottom: 10px; + box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, + rgba(0, 0, 0, 0.23) 0px 6px 6px; + } + + .live-demo p { + font-family: Arial, Helvetica, sans-serif; + font-weight: lighter; + color: white; + font-size: 15px; + padding: 10px; + margin: 0; + } +} + +@media (min-width: 768px) { + .mobile-nav { + display: none; + } + .big-nav { + display: flex; + justify-content: center; + background-color: rgba(4, 7, 36, 0.445); + box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; + padding: 10px; + margin: 0; + } + .big-nav ul { + display: flex; + justify-content: space-around; + flex-direction: row; + padding: 0; + margin: 0; + } + .big-nav li { + font-size: xx-large; + list-style: none; + padding: 10px; + } + .big-nav a { + font-family: Arial, Helvetica, sans-serif; + color: white; + text-decoration: none; + padding: 0; + margin: 0; + } + + .big-nav li:hover { + background-color: rgb(4, 7, 36); + } + + .landing-animation { + margin-top: 20px; + margin-bottom: -80px; + } + + .basic-blocks { + margin-left: 1rem; + margin-right: 1rem; + } + + .top-desc-cube { + display: flex; + justify-content: space-between; + flex-direction: row; + align-items: center; + } + + .cube-container { + margin-left: 25px; + margin-right: 25px; + } + + .basic-section-1 { + display: flex; + justify-content: space-between; + } + .basic-section-2 { + display: flex; + justify-content: space-between; + } + .card { + width: 14rem; + } + + .top-half { + height: 10rem; + } + + .inner-card { + height: 23rem; + } + + .flip-ex { + display: flex; + justify-content: center; + flex-direction: row; + align-items: center; + } + + .flip-buddy { + padding-right: 6rem; + } + + #arrow-text { + font-size: 50px; + font-weight: bolder; + } + + #flip-arrow { + width: 175px; + transform: none; + } + + .demo-container { + display: flex; + justify-content: center; + flex-direction: column; + align-items: center; + margin-left: 1rem; + margin-right: 1rem; + } + .demo-section-container { + padding-left: 15px; + padding-right: 15px; + padding-bottom: 25px; + } + .demo-section { + display: flex; + justify-content: space-between; + flex-direction: row; + align-items: flex-start; + padding-bottom: 15px; + margin-top: 10px; + margin-bottom: 10px; + } + .demo-title { + padding: 0; + margin: 0; + } + .demo-intro h1 { + font-size: 2.5rem; + margin-bottom: 0; + } + .demo-title h2 { + font-size: xx-large; + padding: 0; + margin: 0; + } + .demo-section p { + padding: 0; + padding-right: 10px; + margin: 0; + } + .demo-imgs { + padding: 0; + padding-left: 10px; + margin: 0; + width: 350px; + } + .live-demo p { + font-size: 20px; + } +} + +@media (min-width: 1024px) { + h2 { + font-size: 3rem; + } + + h3 { + font-size: xx-large; + } + + h4 { + font-size: 1.5rem; + } + + p { + font-size: 20px; + } + + .basic-blocks { + margin-top: 10px; + margin-left: 4rem; + margin-right: 4rem; + } + + .landing-animation { + display: flex; + justify-content: space-evenly; + align-items: center; + margin-top: 40px; + margin-bottom: -135px; + } + + @keyframes turn { + from { + transform: rotate3d(0, 0, 0, 0); + } + to { + transform: rotate3d(1, 1, 0, 360deg); + } + } + + .cube-container { + width: 200px; + height: 200px; + perspective: 500px; + margin: 50px; + margin-right: 60px; + } + + .cube { + position: relative; + width: 200px; + height: 200px; + transform-style: preserve-3d; + animation: turn 5s linear infinite; + } + + .face { + width: 200px; + height: 200px; + background: rgba(255, 255, 255, 0.048); + border: 2px solid rgb(255, 255, 255); + position: absolute; + opacity: 0.5; + display: flex; + align-items: center; + justify-content: center; + font-family: Arial, sans-serif; + color: rgb(255, 255, 255); + font-size: 2rem; + transition: transform 500ms; + } + + .front { + transform: translateZ(100px); + } + + .back { + transform: translateZ(-100px) rotateY(180deg); + } + + .left { + transform: translateX(-100px) rotateY(-90deg); + } + + .right { + transform: translateX(100px) rotateY(90deg); + } + + .top { + transform: translateY(-100px) rotateX(90deg); + } + + .bottom { + transform: translateY(100px) rotateX(-90deg); + } + + @media (prefers-reduced-motion: reduce) { + .cube { + animation: none; + transform: rotate3d(1, 1, 0, 45deg); + } + } + + .basic-section-1 { + display: flex; + justify-content: space-between; + } + .basic-section-2 { + display: flex; + justify-content: space-between; + } + .card { + width: 20rem; + } + .top-half { + height: 13rem; + } + .inner-card { + height: 29rem; + } + + .scene { + width: 300px; + height: 360px; + } + .s-card-text { + font-size: 4rem; + } + + #arrow-text { + font-size: 55px; + font-weight: bolder; + } + + #flip-arrow { + width: 200px; + transform: none; + } + + .demo-container { + margin-left: 4rem; + margin-right: 4rem; + } + .demo-section-container { + padding-left: 15px; + padding-right: 15px; + padding-bottom: 30px; + } + .demo-section { + padding-bottom: 15px; + margin-top: 10px; + margin-bottom: 10px; + } + .demo-title h2 { + font-size: xx-large; + padding: 0; + margin: 0; + } + .demo-intro h1 { + font-size: 2.75rem; + margin-bottom: 0; + } + .demo-section p { + padding: 0; + padding-right: 20px; + margin: 0; + } + .demo-imgs { + padding: 0; + padding-left: 20px; + margin: 0; + width: 425px; + } + .live-demo p { + font-size: 25px; + padding: 15px; + } +} + +@media (min-width: 1440px) { + p { + font-size: 25px; + } + .landing-animation { + margin-top: 50px; + margin-bottom: -135px; + } + + .basic-blocks { + margin-left: 5rem; + margin-right: 5rem; + } + .top-desc { + justify-items: center; + } + + .cube-container { + margin-right: 75px; + margin-left: 115px; + } + + .basic-section-1 { + display: flex; + justify-content: space-between; + margin-bottom: 40px; + } + .basic-section-2 { + display: flex; + justify-content: space-between; + } + .card { + width: 27rem; + } + + .top-half { + height: 18rem; + } + .inner-card { + height: 38rem; + } + + .scene { + width: 400px; + height: 460px; + } + .s-card-text { + font-size: 6rem; + } + + #arrow-text { + font-size: 75px; + font-weight: bolder; + } + + #flip-arrow { + width: 300px; + transform: none; + } + + .demo-container { + margin-left: 5.5rem; + margin-right: 5.5rem; + } + .demo-section-container { + padding-left: 15px; + padding-right: 15px; + padding-bottom: 25px; + } + .demo-section { + padding-bottom: 15px; + margin-top: 10px; + margin-bottom: 10px; + } + .demo-intro h1 { + font-size: 3rem; + margin-bottom: 0; + } + .demo-title h2 { + font-size: 2.5rem; + padding: 0; + margin: 0; + } + .demo-section p { + padding: 0; + padding-right: 20px; + margin: 0; + } + .demo-imgs { + padding: 0; + padding-left: 20px; + margin: 0; + width: 625px; + } + .live-demo p { + font-size: 35px; + padding: 15px; + } +} diff --git a/midterm/extra-files/.DS_Store b/midterm/extra-files/.DS_Store new file mode 100644 index 0000000..5927333 Binary files /dev/null and b/midterm/extra-files/.DS_Store differ diff --git a/midterm/extra-files/landing-anim.json b/midterm/extra-files/landing-anim.json new file mode 100644 index 0000000..70339ec --- /dev/null +++ b/midterm/extra-files/landing-anim.json @@ -0,0 +1 @@ +{"v":"5.5.7","meta":{"g":"LottieFiles AE 0.1.21","a":"Dan Collette","k":"","d":"3D Transforms Landing Page Animation","tc":""},"fr":30,"ip":0,"op":100,"w":1080,"h":500,"nm":"Landing Anim","ddd":1,"assets":[],"layers":[{"ddd":1,"ind":1,"ty":4,"nm":"3D TransForms Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":-53,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":-8,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[540,203,0],"ix":2},"a":{"a":0,"k":[0,-46.869,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-4.435,-4.884],[-6.737,0],[-4.773,5.802],[0,8.233],[2.556,4.01],[4.266,1.152],[0,8.233],[3.486,4.607],[7.008,0],[3.301,-1.941],[1.845,-3.391],[0.914,-5.673],[0,0],[-1.727,2.133],[-2.438,0],[-1.49,-1.877],[0,-3.156],[2.031,-2.239],[3.859,0.128],[0,0],[-1.828,0],[-1.93,-2.644],[0,-4.521],[2.014,-2.815],[2.945,0],[1.93,2.346],[0.44,4.437],[0,0]],"o":[[4.435,4.885],[7.109,0],[4.773,-5.801],[0,-5.673],[-2.557,-4.009],[7.143,-4.905],[0,-5.801],[-4.232,-5.631],[-4.097,0],[-3.301,1.942],[-1.846,3.391],[0,0],[0.372,-4.095],[1.727,-2.132],[2.471,0],[1.489,1.878],[0,3.711],[-2.031,2.239],[0,0],[2.539,-0.896],[2.776,0],[1.93,2.645],[0,4.778],[-2.015,2.815],[-2.742,0],[-1.93,-2.345],[0,0],[0.711,7.892]],"v":[[-471.879,-5.727],[-455.121,1.6],[-437.297,-7.102],[-430.137,-28.153],[-433.971,-42.678],[-444.204,-50.42],[-433.489,-70.127],[-438.719,-85.739],[-455.579,-94.185],[-466.674,-91.274],[-474.393,-83.276],[-478.532,-69.679],[-465.379,-66.864],[-462.231,-76.205],[-455.985,-79.405],[-450.043,-76.589],[-447.809,-69.039],[-450.856,-60.113],[-459.692,-56.946],[-461.266,-42.294],[-454.715,-43.637],[-447.657,-39.67],[-444.762,-28.921],[-447.784,-17.532],[-455.223,-13.309],[-462.231,-16.828],[-465.786,-27.001],[-479.598,-24.89]],"c":true},"ix":2},"nm":"3","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"3","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-3.318,1.323],[-2.607,3.199],[-1.862,6.825],[0,7.721],[1.625,5.994],[3.114,4.138],[4.367,1.622],[6.195,0],[0,0]],"o":[[0,0],[5.552,0],[4.435,-1.792],[3.453,-4.223],[1.523,-5.588],[0,-8.787],[-1.625,-5.993],[-3.115,-4.137],[-3.25,-1.194],[0,0],[0,0]],"v":[[-412.434,0],[-384.148,0],[-370.844,-1.984],[-360.281,-9.47],[-352.309,-26.042],[-350.023,-46.005],[-352.461,-68.175],[-359.57,-83.372],[-370.793,-92.01],[-384.961,-93.801],[-412.434,-93.801]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[-2.099,-0.597],[-1.828,-2.175],[-1.016,-3.881],[0,-7.251],[1.016,-4.201],[1.608,-1.834],[2.438,-0.768],[4.197,0],[0,0],[0,0]],"o":[[6.127,0],[2.81,0.768],[1.828,2.175],[1.016,3.882],[0,7.252],[-1.016,4.202],[-1.608,1.835],[-1.862,0.598],[0,0],[0,0],[0,0]],"v":[[-390.648,-77.933],[-378.309,-77.037],[-371.351,-72.622],[-367.086,-63.536],[-365.562,-46.837],[-367.086,-29.657],[-371.021,-20.603],[-377.09,-16.7],[-386.18,-15.804],[-397.402,-15.804],[-397.402,-77.933]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"D","np":5,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-265.155,0],[-265.155,-77.933],[-243.116,-77.933],[-243.116,-93.801],[-302.276,-93.801],[-302.276,-77.933],[-280.186,-77.933],[-280.186,0]],"c":true},"ix":2},"nm":"T","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"T","np":3,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[-1.592,-0.704],[-1.422,-1.898],[-3.859,-7.294],[0,0],[0,0],[0,0],[2.115,2.858],[3.25,2.389],[-3.284,4.586],[0,7.038],[2.166,4.309],[3.605,1.686],[7.955,0],[0,0],[0,0]],"o":[[0,0],[0,0],[3.453,0],[1.591,0.704],[1.422,1.899],[0,0],[0,0],[0,0],[-3.589,-7.294],[-2.116,-2.857],[6.533,-1.194],[3.283,-4.585],[0,-5.545],[-2.167,-4.308],[-3.605,-1.685],[0,0],[0,0],[0,0]],"v":[[-212.616,0],[-212.616,-39.158],[-209.569,-39.158],[-202.002,-38.103],[-197.483,-34.2],[-189.561,-20.411],[-178.694,0],[-160.717,0],[-169.807,-18.3],[-178.364,-33.528],[-186.412,-41.398],[-171.686,-50.068],[-166.76,-67.504],[-170.01,-82.284],[-178.668,-91.274],[-196.01,-93.801],[-227.647,-93.801],[-227.647,0]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-1.219,-0.213],[-1.338,-1.941],[0,-3.156],[1.016,-1.877],[1.794,-0.768],[7.211,0],[0,0]],"o":[[0,0],[6.094,0],[2.438,0.512],[1.337,1.942],[0,2.815],[-1.016,1.878],[-1.795,0.768],[0,0],[0,0]],"v":[[-212.616,-77.933],[-200.885,-77.933],[-189.916,-77.613],[-184.254,-73.934],[-182.248,-66.288],[-183.772,-59.25],[-187.987,-55.283],[-201.494,-54.131],[-212.616,-54.131]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-109.549,-93.801],[-125.443,-93.801],[-154.439,0],[-138.494,0],[-132.349,-21.307],[-102.592,-21.307],[-96.092,0],[-79.74,0]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-127.728,-37.111],[-117.674,-71.918],[-107.416,-37.111]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":5,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-51.931,0],[-51.931,-61.169],[-21.919,0],[-6.837,0],[-6.837,-93.801],[-20.802,-93.801],[-20.802,-31.16],[-51.271,-93.801],[-65.896,-93.801],[-65.896,0]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":3,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-5.045,-5.481],[-9.412,0],[-4.334,2.281],[-2.37,4.693],[0,5.375],[1.98,4.031],[3.504,2.325],[7.312,2.175],[1.896,2.006],[0,2.218],[-1.592,1.451],[-4.367,0],[-2.116,-2.111],[-0.643,-4.82],[0,0],[4.723,5.162],[9.344,0],[4.045,-2.175],[2.149,-4.159],[0,-4.777],[-4.57,-5.161],[-8.058,-2.516],[-1.761,-0.768],[-1.033,-1.557],[0,-2.217],[2.454,-2.58],[4.841,0],[2.691,2.901],[0.88,6.185],[0,0]],"o":[[5.044,5.482],[6.466,0],[4.333,-2.281],[2.369,-4.692],[0,-5.929],[-1.98,-4.031],[-3.504,-2.324],[-7.312,-2.175],[-1.49,-1.578],[0,-2.431],[2.471,-2.26],[4.232,0],[2.115,2.111],[0,0],[-0.237,-8.616],[-4.723,-5.161],[-5.722,0],[-4.046,2.175],[-2.15,4.159],[0,7.422],[3.25,3.669],[6.263,1.963],[2.572,1.152],[1.032,1.558],[0,3.455],[-2.455,2.581],[-4.57,0],[-2.691,-2.9],[0,0],[0.982,10.493]],"v":[[20.007,-6.558],[41.691,1.664],[57.89,-1.76],[67.945,-12.221],[71.499,-27.321],[68.529,-42.262],[60.302,-51.795],[44.077,-58.546],[30.265,-64.816],[28.03,-70.511],[30.417,-76.333],[40.675,-79.725],[50.196,-76.557],[54.335,-66.16],[69.366,-66.992],[61.927,-87.659],[40.827,-95.401],[26.177,-92.137],[16.884,-82.636],[13.659,-69.231],[20.515,-50.356],[37.476,-41.078],[49.511,-36.983],[54.919,-32.92],[56.468,-27.257],[52.786,-18.204],[41.843,-14.333],[30.95,-18.683],[25.593,-32.312],[10.968,-30.521]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[104.996,0],[104.996,-39.862],[136.074,-39.862],[136.074,-55.73],[104.996,-55.73],[104.996,-77.933],[141,-77.933],[141,-93.801],[89.965,-93.801],[89.965,0]],"c":true},"ix":2},"nm":"F","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"F","np":3,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-6.534,-8.51],[-11.07,0],[-6.534,8.553],[0,15.143],[6.584,8.574],[10.969,0],[4.638,-2.473],[2.928,-3.796],[1.692,-4.777],[0,-9.555]],"o":[[6.533,8.51],[10.935,0],[6.533,-8.552],[0,-15.27],[-6.585,-8.574],[-6.06,0],[-3.487,1.835],[-2.929,3.797],[-2.268,6.484],[0,14.93]],"v":[[165.863,-11.165],[192.27,1.6],[218.473,-11.229],[228.274,-46.773],[218.397,-82.54],[192.067,-95.401],[176.02,-91.69],[166.397,-83.244],[159.465,-70.383],[156.063,-46.325]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-3.792,5.354],[-6.195,0],[-3.741,-5.289],[0,-10.749],[3.842,-5.439],[5.992,0],[3.893,5.482],[0,10.621]],"o":[[3.791,-5.353],[6.195,0],[3.74,5.29],[0,10.877],[-3.843,5.439],[-5.992,0],[-3.893,-5.481],[0,-10.791]],"v":[[177.238,-71.183],[192.219,-79.213],[207.123,-71.279],[212.735,-47.22],[206.971,-22.746],[192.219,-14.588],[177.391,-22.81],[171.551,-46.965]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[-1.592,-0.704],[-1.422,-1.898],[-3.859,-7.294],[0,0],[0,0],[0,0],[2.115,2.858],[3.25,2.389],[-3.284,4.586],[0,7.038],[2.166,4.309],[3.605,1.686],[7.955,0],[0,0],[0,0]],"o":[[0,0],[0,0],[3.453,0],[1.591,0.704],[1.422,1.899],[0,0],[0,0],[0,0],[-3.589,-7.294],[-2.116,-2.857],[6.533,-1.194],[3.283,-4.585],[0,-5.545],[-2.167,-4.308],[-3.605,-1.685],[0,0],[0,0],[0,0]],"v":[[260.805,0],[260.805,-39.158],[263.852,-39.158],[271.419,-38.103],[275.938,-34.2],[283.86,-20.411],[294.727,0],[312.704,0],[303.614,-18.3],[295.057,-33.528],[287.009,-41.398],[301.735,-50.068],[306.661,-67.504],[303.411,-82.284],[294.753,-91.274],[277.411,-93.801],[245.774,-93.801],[245.774,0]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-1.219,-0.213],[-1.338,-1.941],[0,-3.156],[1.016,-1.877],[1.794,-0.768],[7.211,0],[0,0]],"o":[[0,0],[6.094,0],[2.438,0.512],[1.337,1.942],[0,2.815],[-1.016,1.878],[-1.795,0.768],[0,0],[0,0]],"v":[[260.805,-77.933],[272.536,-77.933],[283.505,-77.613],[289.167,-73.934],[291.173,-66.288],[289.649,-59.25],[285.434,-55.283],[271.926,-54.131],[260.805,-54.131]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[340.31,0],[340.31,-73.838],[355.036,0],[369.509,0],[384.286,-73.838],[384.286,0],[398.251,0],[398.251,-93.801],[375.704,-93.801],[362.349,-29.817],[348.841,-93.801],[326.345,-93.801],[326.345,0]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"m","np":3,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-5.045,-5.481],[-9.412,0],[-4.334,2.281],[-2.37,4.693],[0,5.375],[1.98,4.031],[3.504,2.325],[7.312,2.175],[1.896,2.006],[0,2.218],[-1.592,1.451],[-4.367,0],[-2.116,-2.111],[-0.643,-4.82],[0,0],[4.723,5.162],[9.344,0],[4.045,-2.175],[2.149,-4.159],[0,-4.777],[-4.57,-5.161],[-8.058,-2.516],[-1.761,-0.768],[-1.033,-1.557],[0,-2.217],[2.454,-2.58],[4.841,0],[2.691,2.901],[0.88,6.185],[0,0]],"o":[[5.044,5.482],[6.466,0],[4.333,-2.281],[2.369,-4.692],[0,-5.929],[-1.98,-4.031],[-3.504,-2.324],[-7.312,-2.175],[-1.49,-1.578],[0,-2.431],[2.471,-2.26],[4.232,0],[2.115,2.111],[0,0],[-0.237,-8.616],[-4.723,-5.161],[-5.722,0],[-4.046,2.175],[-2.15,4.159],[0,7.422],[3.25,3.669],[6.263,1.963],[2.572,1.152],[1.032,1.558],[0,3.455],[-2.455,2.581],[-4.57,0],[-2.691,-2.9],[0,0],[0.982,10.493]],"v":[[424.131,-6.558],[445.814,1.664],[462.013,-1.76],[472.068,-12.221],[475.623,-27.321],[472.652,-42.262],[464.426,-51.795],[448.201,-58.546],[434.388,-64.816],[432.154,-70.511],[434.541,-76.333],[444.799,-79.725],[454.32,-76.557],[458.459,-66.16],[473.49,-66.992],[466.051,-87.659],[444.951,-95.401],[430.301,-92.137],[421.008,-82.636],[417.783,-69.231],[424.638,-50.356],[441.599,-41.078],[453.635,-36.983],[459.043,-32.92],[460.592,-27.257],[456.91,-18.204],[445.967,-14.333],[435.074,-18.683],[429.717,-32.312],[415.092,-30.521]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":100,"st":0,"bm":0},{"ddd":1,"ind":2,"ty":4,"nm":"3D TransForms Outlines 2","sr":1,"ks":{"o":{"a":0,"k":75,"ix":11},"rx":{"a":0,"k":-53,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":-8,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":10,"s":[540,203,0],"to":[-0.333,0.833,2.833],"ti":[0.333,-0.833,-2.833]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0.333},"t":20,"s":[538,208,17],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":80,"s":[538,208,17],"to":[0.333,-0.833,-2.833],"ti":[-0.333,0.833,2.833]},{"t":90,"s":[540,203,0]}],"ix":2},"a":{"a":0,"k":[0,-46.869,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-4.435,-4.884],[-6.737,0],[-4.773,5.802],[0,8.233],[2.556,4.01],[4.266,1.152],[0,8.233],[3.486,4.607],[7.008,0],[3.301,-1.941],[1.845,-3.391],[0.914,-5.673],[0,0],[-1.727,2.133],[-2.438,0],[-1.49,-1.877],[0,-3.156],[2.031,-2.239],[3.859,0.128],[0,0],[-1.828,0],[-1.93,-2.644],[0,-4.521],[2.014,-2.815],[2.945,0],[1.93,2.346],[0.44,4.437],[0,0]],"o":[[4.435,4.885],[7.109,0],[4.773,-5.801],[0,-5.673],[-2.557,-4.009],[7.143,-4.905],[0,-5.801],[-4.232,-5.631],[-4.097,0],[-3.301,1.942],[-1.846,3.391],[0,0],[0.372,-4.095],[1.727,-2.132],[2.471,0],[1.489,1.878],[0,3.711],[-2.031,2.239],[0,0],[2.539,-0.896],[2.776,0],[1.93,2.645],[0,4.778],[-2.015,2.815],[-2.742,0],[-1.93,-2.345],[0,0],[0.711,7.892]],"v":[[-471.879,-5.727],[-455.121,1.6],[-437.297,-7.102],[-430.137,-28.153],[-433.971,-42.678],[-444.204,-50.42],[-433.489,-70.127],[-438.719,-85.739],[-455.579,-94.185],[-466.674,-91.274],[-474.393,-83.276],[-478.532,-69.679],[-465.379,-66.864],[-462.231,-76.205],[-455.985,-79.405],[-450.043,-76.589],[-447.809,-69.039],[-450.856,-60.113],[-459.692,-56.946],[-461.266,-42.294],[-454.715,-43.637],[-447.657,-39.67],[-444.762,-28.921],[-447.784,-17.532],[-455.223,-13.309],[-462.231,-16.828],[-465.786,-27.001],[-479.598,-24.89]],"c":true},"ix":2},"nm":"3","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"3","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-3.318,1.323],[-2.607,3.199],[-1.862,6.825],[0,7.721],[1.625,5.994],[3.114,4.138],[4.367,1.622],[6.195,0],[0,0]],"o":[[0,0],[5.552,0],[4.435,-1.792],[3.453,-4.223],[1.523,-5.588],[0,-8.787],[-1.625,-5.993],[-3.115,-4.137],[-3.25,-1.194],[0,0],[0,0]],"v":[[-412.434,0],[-384.148,0],[-370.844,-1.984],[-360.281,-9.47],[-352.309,-26.042],[-350.023,-46.005],[-352.461,-68.175],[-359.57,-83.372],[-370.793,-92.01],[-384.961,-93.801],[-412.434,-93.801]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[-2.099,-0.597],[-1.828,-2.175],[-1.016,-3.881],[0,-7.251],[1.016,-4.201],[1.608,-1.834],[2.438,-0.768],[4.197,0],[0,0],[0,0]],"o":[[6.127,0],[2.81,0.768],[1.828,2.175],[1.016,3.882],[0,7.252],[-1.016,4.202],[-1.608,1.835],[-1.862,0.598],[0,0],[0,0],[0,0]],"v":[[-390.648,-77.933],[-378.309,-77.037],[-371.351,-72.622],[-367.086,-63.536],[-365.562,-46.837],[-367.086,-29.657],[-371.021,-20.603],[-377.09,-16.7],[-386.18,-15.804],[-397.402,-15.804],[-397.402,-77.933]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"D","np":5,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-265.155,0],[-265.155,-77.933],[-243.116,-77.933],[-243.116,-93.801],[-302.276,-93.801],[-302.276,-77.933],[-280.186,-77.933],[-280.186,0]],"c":true},"ix":2},"nm":"T","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"T","np":3,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[-1.592,-0.704],[-1.422,-1.898],[-3.859,-7.294],[0,0],[0,0],[0,0],[2.115,2.858],[3.25,2.389],[-3.284,4.586],[0,7.038],[2.166,4.309],[3.605,1.686],[7.955,0],[0,0],[0,0]],"o":[[0,0],[0,0],[3.453,0],[1.591,0.704],[1.422,1.899],[0,0],[0,0],[0,0],[-3.589,-7.294],[-2.116,-2.857],[6.533,-1.194],[3.283,-4.585],[0,-5.545],[-2.167,-4.308],[-3.605,-1.685],[0,0],[0,0],[0,0]],"v":[[-212.616,0],[-212.616,-39.158],[-209.569,-39.158],[-202.002,-38.103],[-197.483,-34.2],[-189.561,-20.411],[-178.694,0],[-160.717,0],[-169.807,-18.3],[-178.364,-33.528],[-186.412,-41.398],[-171.686,-50.068],[-166.76,-67.504],[-170.01,-82.284],[-178.668,-91.274],[-196.01,-93.801],[-227.647,-93.801],[-227.647,0]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-1.219,-0.213],[-1.338,-1.941],[0,-3.156],[1.016,-1.877],[1.794,-0.768],[7.211,0],[0,0]],"o":[[0,0],[6.094,0],[2.438,0.512],[1.337,1.942],[0,2.815],[-1.016,1.878],[-1.795,0.768],[0,0],[0,0]],"v":[[-212.616,-77.933],[-200.885,-77.933],[-189.916,-77.613],[-184.254,-73.934],[-182.248,-66.288],[-183.772,-59.25],[-187.987,-55.283],[-201.494,-54.131],[-212.616,-54.131]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-109.549,-93.801],[-125.443,-93.801],[-154.439,0],[-138.494,0],[-132.349,-21.307],[-102.592,-21.307],[-96.092,0],[-79.74,0]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-127.728,-37.111],[-117.674,-71.918],[-107.416,-37.111]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":5,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-51.931,0],[-51.931,-61.169],[-21.919,0],[-6.837,0],[-6.837,-93.801],[-20.802,-93.801],[-20.802,-31.16],[-51.271,-93.801],[-65.896,-93.801],[-65.896,0]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":3,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-5.045,-5.481],[-9.412,0],[-4.334,2.281],[-2.37,4.693],[0,5.375],[1.98,4.031],[3.504,2.325],[7.312,2.175],[1.896,2.006],[0,2.218],[-1.592,1.451],[-4.367,0],[-2.116,-2.111],[-0.643,-4.82],[0,0],[4.723,5.162],[9.344,0],[4.045,-2.175],[2.149,-4.159],[0,-4.777],[-4.57,-5.161],[-8.058,-2.516],[-1.761,-0.768],[-1.033,-1.557],[0,-2.217],[2.454,-2.58],[4.841,0],[2.691,2.901],[0.88,6.185],[0,0]],"o":[[5.044,5.482],[6.466,0],[4.333,-2.281],[2.369,-4.692],[0,-5.929],[-1.98,-4.031],[-3.504,-2.324],[-7.312,-2.175],[-1.49,-1.578],[0,-2.431],[2.471,-2.26],[4.232,0],[2.115,2.111],[0,0],[-0.237,-8.616],[-4.723,-5.161],[-5.722,0],[-4.046,2.175],[-2.15,4.159],[0,7.422],[3.25,3.669],[6.263,1.963],[2.572,1.152],[1.032,1.558],[0,3.455],[-2.455,2.581],[-4.57,0],[-2.691,-2.9],[0,0],[0.982,10.493]],"v":[[20.007,-6.558],[41.691,1.664],[57.89,-1.76],[67.945,-12.221],[71.499,-27.321],[68.529,-42.262],[60.302,-51.795],[44.077,-58.546],[30.265,-64.816],[28.03,-70.511],[30.417,-76.333],[40.675,-79.725],[50.196,-76.557],[54.335,-66.16],[69.366,-66.992],[61.927,-87.659],[40.827,-95.401],[26.177,-92.137],[16.884,-82.636],[13.659,-69.231],[20.515,-50.356],[37.476,-41.078],[49.511,-36.983],[54.919,-32.92],[56.468,-27.257],[52.786,-18.204],[41.843,-14.333],[30.95,-18.683],[25.593,-32.312],[10.968,-30.521]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[104.996,0],[104.996,-39.862],[136.074,-39.862],[136.074,-55.73],[104.996,-55.73],[104.996,-77.933],[141,-77.933],[141,-93.801],[89.965,-93.801],[89.965,0]],"c":true},"ix":2},"nm":"F","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"F","np":3,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-6.534,-8.51],[-11.07,0],[-6.534,8.553],[0,15.143],[6.584,8.574],[10.969,0],[4.638,-2.473],[2.928,-3.796],[1.692,-4.777],[0,-9.555]],"o":[[6.533,8.51],[10.935,0],[6.533,-8.552],[0,-15.27],[-6.585,-8.574],[-6.06,0],[-3.487,1.835],[-2.929,3.797],[-2.268,6.484],[0,14.93]],"v":[[165.863,-11.165],[192.27,1.6],[218.473,-11.229],[228.274,-46.773],[218.397,-82.54],[192.067,-95.401],[176.02,-91.69],[166.397,-83.244],[159.465,-70.383],[156.063,-46.325]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-3.792,5.354],[-6.195,0],[-3.741,-5.289],[0,-10.749],[3.842,-5.439],[5.992,0],[3.893,5.482],[0,10.621]],"o":[[3.791,-5.353],[6.195,0],[3.74,5.29],[0,10.877],[-3.843,5.439],[-5.992,0],[-3.893,-5.481],[0,-10.791]],"v":[[177.238,-71.183],[192.219,-79.213],[207.123,-71.279],[212.735,-47.22],[206.971,-22.746],[192.219,-14.588],[177.391,-22.81],[171.551,-46.965]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[-1.592,-0.704],[-1.422,-1.898],[-3.859,-7.294],[0,0],[0,0],[0,0],[2.115,2.858],[3.25,2.389],[-3.284,4.586],[0,7.038],[2.166,4.309],[3.605,1.686],[7.955,0],[0,0],[0,0]],"o":[[0,0],[0,0],[3.453,0],[1.591,0.704],[1.422,1.899],[0,0],[0,0],[0,0],[-3.589,-7.294],[-2.116,-2.857],[6.533,-1.194],[3.283,-4.585],[0,-5.545],[-2.167,-4.308],[-3.605,-1.685],[0,0],[0,0],[0,0]],"v":[[260.805,0],[260.805,-39.158],[263.852,-39.158],[271.419,-38.103],[275.938,-34.2],[283.86,-20.411],[294.727,0],[312.704,0],[303.614,-18.3],[295.057,-33.528],[287.009,-41.398],[301.735,-50.068],[306.661,-67.504],[303.411,-82.284],[294.753,-91.274],[277.411,-93.801],[245.774,-93.801],[245.774,0]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-1.219,-0.213],[-1.338,-1.941],[0,-3.156],[1.016,-1.877],[1.794,-0.768],[7.211,0],[0,0]],"o":[[0,0],[6.094,0],[2.438,0.512],[1.337,1.942],[0,2.815],[-1.016,1.878],[-1.795,0.768],[0,0],[0,0]],"v":[[260.805,-77.933],[272.536,-77.933],[283.505,-77.613],[289.167,-73.934],[291.173,-66.288],[289.649,-59.25],[285.434,-55.283],[271.926,-54.131],[260.805,-54.131]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[340.31,0],[340.31,-73.838],[355.036,0],[369.509,0],[384.286,-73.838],[384.286,0],[398.251,0],[398.251,-93.801],[375.704,-93.801],[362.349,-29.817],[348.841,-93.801],[326.345,-93.801],[326.345,0]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"m","np":3,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-5.045,-5.481],[-9.412,0],[-4.334,2.281],[-2.37,4.693],[0,5.375],[1.98,4.031],[3.504,2.325],[7.312,2.175],[1.896,2.006],[0,2.218],[-1.592,1.451],[-4.367,0],[-2.116,-2.111],[-0.643,-4.82],[0,0],[4.723,5.162],[9.344,0],[4.045,-2.175],[2.149,-4.159],[0,-4.777],[-4.57,-5.161],[-8.058,-2.516],[-1.761,-0.768],[-1.033,-1.557],[0,-2.217],[2.454,-2.58],[4.841,0],[2.691,2.901],[0.88,6.185],[0,0]],"o":[[5.044,5.482],[6.466,0],[4.333,-2.281],[2.369,-4.692],[0,-5.929],[-1.98,-4.031],[-3.504,-2.324],[-7.312,-2.175],[-1.49,-1.578],[0,-2.431],[2.471,-2.26],[4.232,0],[2.115,2.111],[0,0],[-0.237,-8.616],[-4.723,-5.161],[-5.722,0],[-4.046,2.175],[-2.15,4.159],[0,7.422],[3.25,3.669],[6.263,1.963],[2.572,1.152],[1.032,1.558],[0,3.455],[-2.455,2.581],[-4.57,0],[-2.691,-2.9],[0,0],[0.982,10.493]],"v":[[424.131,-6.558],[445.814,1.664],[462.013,-1.76],[472.068,-12.221],[475.623,-27.321],[472.652,-42.262],[464.426,-51.795],[448.201,-58.546],[434.388,-64.816],[432.154,-70.511],[434.541,-76.333],[444.799,-79.725],[454.32,-76.557],[458.459,-66.16],[473.49,-66.992],[466.051,-87.659],[444.951,-95.401],[430.301,-92.137],[421.008,-82.636],[417.783,-69.231],[424.638,-50.356],[441.599,-41.078],[453.635,-36.983],[459.043,-32.92],[460.592,-27.257],[456.91,-18.204],[445.967,-14.333],[435.074,-18.683],[429.717,-32.312],[415.092,-30.521]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false}],"ip":10,"op":90,"st":10,"bm":0},{"ddd":1,"ind":3,"ty":4,"nm":"3D TransForms Outlines 3","sr":1,"ks":{"o":{"a":0,"k":50,"ix":11},"rx":{"a":0,"k":-53,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":-8,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":20,"s":[538,208,17],"to":[-0.333,0.833,2.833],"ti":[0.333,-0.833,-2.833]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0.333},"t":30,"s":[536,213,34],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":70,"s":[536,213,34],"to":[0.333,-0.833,-2.833],"ti":[-0.333,0.833,2.833]},{"t":80,"s":[538,208,17]}],"ix":2},"a":{"a":0,"k":[0,-46.869,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-4.435,-4.884],[-6.737,0],[-4.773,5.802],[0,8.233],[2.556,4.01],[4.266,1.152],[0,8.233],[3.486,4.607],[7.008,0],[3.301,-1.941],[1.845,-3.391],[0.914,-5.673],[0,0],[-1.727,2.133],[-2.438,0],[-1.49,-1.877],[0,-3.156],[2.031,-2.239],[3.859,0.128],[0,0],[-1.828,0],[-1.93,-2.644],[0,-4.521],[2.014,-2.815],[2.945,0],[1.93,2.346],[0.44,4.437],[0,0]],"o":[[4.435,4.885],[7.109,0],[4.773,-5.801],[0,-5.673],[-2.557,-4.009],[7.143,-4.905],[0,-5.801],[-4.232,-5.631],[-4.097,0],[-3.301,1.942],[-1.846,3.391],[0,0],[0.372,-4.095],[1.727,-2.132],[2.471,0],[1.489,1.878],[0,3.711],[-2.031,2.239],[0,0],[2.539,-0.896],[2.776,0],[1.93,2.645],[0,4.778],[-2.015,2.815],[-2.742,0],[-1.93,-2.345],[0,0],[0.711,7.892]],"v":[[-471.879,-5.727],[-455.121,1.6],[-437.297,-7.102],[-430.137,-28.153],[-433.971,-42.678],[-444.204,-50.42],[-433.489,-70.127],[-438.719,-85.739],[-455.579,-94.185],[-466.674,-91.274],[-474.393,-83.276],[-478.532,-69.679],[-465.379,-66.864],[-462.231,-76.205],[-455.985,-79.405],[-450.043,-76.589],[-447.809,-69.039],[-450.856,-60.113],[-459.692,-56.946],[-461.266,-42.294],[-454.715,-43.637],[-447.657,-39.67],[-444.762,-28.921],[-447.784,-17.532],[-455.223,-13.309],[-462.231,-16.828],[-465.786,-27.001],[-479.598,-24.89]],"c":true},"ix":2},"nm":"3","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"3","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-3.318,1.323],[-2.607,3.199],[-1.862,6.825],[0,7.721],[1.625,5.994],[3.114,4.138],[4.367,1.622],[6.195,0],[0,0]],"o":[[0,0],[5.552,0],[4.435,-1.792],[3.453,-4.223],[1.523,-5.588],[0,-8.787],[-1.625,-5.993],[-3.115,-4.137],[-3.25,-1.194],[0,0],[0,0]],"v":[[-412.434,0],[-384.148,0],[-370.844,-1.984],[-360.281,-9.47],[-352.309,-26.042],[-350.023,-46.005],[-352.461,-68.175],[-359.57,-83.372],[-370.793,-92.01],[-384.961,-93.801],[-412.434,-93.801]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[-2.099,-0.597],[-1.828,-2.175],[-1.016,-3.881],[0,-7.251],[1.016,-4.201],[1.608,-1.834],[2.438,-0.768],[4.197,0],[0,0],[0,0]],"o":[[6.127,0],[2.81,0.768],[1.828,2.175],[1.016,3.882],[0,7.252],[-1.016,4.202],[-1.608,1.835],[-1.862,0.598],[0,0],[0,0],[0,0]],"v":[[-390.648,-77.933],[-378.309,-77.037],[-371.351,-72.622],[-367.086,-63.536],[-365.562,-46.837],[-367.086,-29.657],[-371.021,-20.603],[-377.09,-16.7],[-386.18,-15.804],[-397.402,-15.804],[-397.402,-77.933]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"D","np":5,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-265.155,0],[-265.155,-77.933],[-243.116,-77.933],[-243.116,-93.801],[-302.276,-93.801],[-302.276,-77.933],[-280.186,-77.933],[-280.186,0]],"c":true},"ix":2},"nm":"T","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"T","np":3,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[-1.592,-0.704],[-1.422,-1.898],[-3.859,-7.294],[0,0],[0,0],[0,0],[2.115,2.858],[3.25,2.389],[-3.284,4.586],[0,7.038],[2.166,4.309],[3.605,1.686],[7.955,0],[0,0],[0,0]],"o":[[0,0],[0,0],[3.453,0],[1.591,0.704],[1.422,1.899],[0,0],[0,0],[0,0],[-3.589,-7.294],[-2.116,-2.857],[6.533,-1.194],[3.283,-4.585],[0,-5.545],[-2.167,-4.308],[-3.605,-1.685],[0,0],[0,0],[0,0]],"v":[[-212.616,0],[-212.616,-39.158],[-209.569,-39.158],[-202.002,-38.103],[-197.483,-34.2],[-189.561,-20.411],[-178.694,0],[-160.717,0],[-169.807,-18.3],[-178.364,-33.528],[-186.412,-41.398],[-171.686,-50.068],[-166.76,-67.504],[-170.01,-82.284],[-178.668,-91.274],[-196.01,-93.801],[-227.647,-93.801],[-227.647,0]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-1.219,-0.213],[-1.338,-1.941],[0,-3.156],[1.016,-1.877],[1.794,-0.768],[7.211,0],[0,0]],"o":[[0,0],[6.094,0],[2.438,0.512],[1.337,1.942],[0,2.815],[-1.016,1.878],[-1.795,0.768],[0,0],[0,0]],"v":[[-212.616,-77.933],[-200.885,-77.933],[-189.916,-77.613],[-184.254,-73.934],[-182.248,-66.288],[-183.772,-59.25],[-187.987,-55.283],[-201.494,-54.131],[-212.616,-54.131]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-109.549,-93.801],[-125.443,-93.801],[-154.439,0],[-138.494,0],[-132.349,-21.307],[-102.592,-21.307],[-96.092,0],[-79.74,0]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-127.728,-37.111],[-117.674,-71.918],[-107.416,-37.111]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":5,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-51.931,0],[-51.931,-61.169],[-21.919,0],[-6.837,0],[-6.837,-93.801],[-20.802,-93.801],[-20.802,-31.16],[-51.271,-93.801],[-65.896,-93.801],[-65.896,0]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":3,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-5.045,-5.481],[-9.412,0],[-4.334,2.281],[-2.37,4.693],[0,5.375],[1.98,4.031],[3.504,2.325],[7.312,2.175],[1.896,2.006],[0,2.218],[-1.592,1.451],[-4.367,0],[-2.116,-2.111],[-0.643,-4.82],[0,0],[4.723,5.162],[9.344,0],[4.045,-2.175],[2.149,-4.159],[0,-4.777],[-4.57,-5.161],[-8.058,-2.516],[-1.761,-0.768],[-1.033,-1.557],[0,-2.217],[2.454,-2.58],[4.841,0],[2.691,2.901],[0.88,6.185],[0,0]],"o":[[5.044,5.482],[6.466,0],[4.333,-2.281],[2.369,-4.692],[0,-5.929],[-1.98,-4.031],[-3.504,-2.324],[-7.312,-2.175],[-1.49,-1.578],[0,-2.431],[2.471,-2.26],[4.232,0],[2.115,2.111],[0,0],[-0.237,-8.616],[-4.723,-5.161],[-5.722,0],[-4.046,2.175],[-2.15,4.159],[0,7.422],[3.25,3.669],[6.263,1.963],[2.572,1.152],[1.032,1.558],[0,3.455],[-2.455,2.581],[-4.57,0],[-2.691,-2.9],[0,0],[0.982,10.493]],"v":[[20.007,-6.558],[41.691,1.664],[57.89,-1.76],[67.945,-12.221],[71.499,-27.321],[68.529,-42.262],[60.302,-51.795],[44.077,-58.546],[30.265,-64.816],[28.03,-70.511],[30.417,-76.333],[40.675,-79.725],[50.196,-76.557],[54.335,-66.16],[69.366,-66.992],[61.927,-87.659],[40.827,-95.401],[26.177,-92.137],[16.884,-82.636],[13.659,-69.231],[20.515,-50.356],[37.476,-41.078],[49.511,-36.983],[54.919,-32.92],[56.468,-27.257],[52.786,-18.204],[41.843,-14.333],[30.95,-18.683],[25.593,-32.312],[10.968,-30.521]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[104.996,0],[104.996,-39.862],[136.074,-39.862],[136.074,-55.73],[104.996,-55.73],[104.996,-77.933],[141,-77.933],[141,-93.801],[89.965,-93.801],[89.965,0]],"c":true},"ix":2},"nm":"F","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"F","np":3,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-6.534,-8.51],[-11.07,0],[-6.534,8.553],[0,15.143],[6.584,8.574],[10.969,0],[4.638,-2.473],[2.928,-3.796],[1.692,-4.777],[0,-9.555]],"o":[[6.533,8.51],[10.935,0],[6.533,-8.552],[0,-15.27],[-6.585,-8.574],[-6.06,0],[-3.487,1.835],[-2.929,3.797],[-2.268,6.484],[0,14.93]],"v":[[165.863,-11.165],[192.27,1.6],[218.473,-11.229],[228.274,-46.773],[218.397,-82.54],[192.067,-95.401],[176.02,-91.69],[166.397,-83.244],[159.465,-70.383],[156.063,-46.325]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-3.792,5.354],[-6.195,0],[-3.741,-5.289],[0,-10.749],[3.842,-5.439],[5.992,0],[3.893,5.482],[0,10.621]],"o":[[3.791,-5.353],[6.195,0],[3.74,5.29],[0,10.877],[-3.843,5.439],[-5.992,0],[-3.893,-5.481],[0,-10.791]],"v":[[177.238,-71.183],[192.219,-79.213],[207.123,-71.279],[212.735,-47.22],[206.971,-22.746],[192.219,-14.588],[177.391,-22.81],[171.551,-46.965]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[-1.592,-0.704],[-1.422,-1.898],[-3.859,-7.294],[0,0],[0,0],[0,0],[2.115,2.858],[3.25,2.389],[-3.284,4.586],[0,7.038],[2.166,4.309],[3.605,1.686],[7.955,0],[0,0],[0,0]],"o":[[0,0],[0,0],[3.453,0],[1.591,0.704],[1.422,1.899],[0,0],[0,0],[0,0],[-3.589,-7.294],[-2.116,-2.857],[6.533,-1.194],[3.283,-4.585],[0,-5.545],[-2.167,-4.308],[-3.605,-1.685],[0,0],[0,0],[0,0]],"v":[[260.805,0],[260.805,-39.158],[263.852,-39.158],[271.419,-38.103],[275.938,-34.2],[283.86,-20.411],[294.727,0],[312.704,0],[303.614,-18.3],[295.057,-33.528],[287.009,-41.398],[301.735,-50.068],[306.661,-67.504],[303.411,-82.284],[294.753,-91.274],[277.411,-93.801],[245.774,-93.801],[245.774,0]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-1.219,-0.213],[-1.338,-1.941],[0,-3.156],[1.016,-1.877],[1.794,-0.768],[7.211,0],[0,0]],"o":[[0,0],[6.094,0],[2.438,0.512],[1.337,1.942],[0,2.815],[-1.016,1.878],[-1.795,0.768],[0,0],[0,0]],"v":[[260.805,-77.933],[272.536,-77.933],[283.505,-77.613],[289.167,-73.934],[291.173,-66.288],[289.649,-59.25],[285.434,-55.283],[271.926,-54.131],[260.805,-54.131]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[340.31,0],[340.31,-73.838],[355.036,0],[369.509,0],[384.286,-73.838],[384.286,0],[398.251,0],[398.251,-93.801],[375.704,-93.801],[362.349,-29.817],[348.841,-93.801],[326.345,-93.801],[326.345,0]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"m","np":3,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-5.045,-5.481],[-9.412,0],[-4.334,2.281],[-2.37,4.693],[0,5.375],[1.98,4.031],[3.504,2.325],[7.312,2.175],[1.896,2.006],[0,2.218],[-1.592,1.451],[-4.367,0],[-2.116,-2.111],[-0.643,-4.82],[0,0],[4.723,5.162],[9.344,0],[4.045,-2.175],[2.149,-4.159],[0,-4.777],[-4.57,-5.161],[-8.058,-2.516],[-1.761,-0.768],[-1.033,-1.557],[0,-2.217],[2.454,-2.58],[4.841,0],[2.691,2.901],[0.88,6.185],[0,0]],"o":[[5.044,5.482],[6.466,0],[4.333,-2.281],[2.369,-4.692],[0,-5.929],[-1.98,-4.031],[-3.504,-2.324],[-7.312,-2.175],[-1.49,-1.578],[0,-2.431],[2.471,-2.26],[4.232,0],[2.115,2.111],[0,0],[-0.237,-8.616],[-4.723,-5.161],[-5.722,0],[-4.046,2.175],[-2.15,4.159],[0,7.422],[3.25,3.669],[6.263,1.963],[2.572,1.152],[1.032,1.558],[0,3.455],[-2.455,2.581],[-4.57,0],[-2.691,-2.9],[0,0],[0.982,10.493]],"v":[[424.131,-6.558],[445.814,1.664],[462.013,-1.76],[472.068,-12.221],[475.623,-27.321],[472.652,-42.262],[464.426,-51.795],[448.201,-58.546],[434.388,-64.816],[432.154,-70.511],[434.541,-76.333],[444.799,-79.725],[454.32,-76.557],[458.459,-66.16],[473.49,-66.992],[466.051,-87.659],[444.951,-95.401],[430.301,-92.137],[421.008,-82.636],[417.783,-69.231],[424.638,-50.356],[441.599,-41.078],[453.635,-36.983],[459.043,-32.92],[460.592,-27.257],[456.91,-18.204],[445.967,-14.333],[435.074,-18.683],[429.717,-32.312],[415.092,-30.521]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false}],"ip":20,"op":80,"st":10,"bm":0},{"ddd":1,"ind":4,"ty":4,"nm":"3D TransForms Outlines 4","sr":1,"ks":{"o":{"a":0,"k":25,"ix":11},"rx":{"a":0,"k":-53,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":-8,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":30,"s":[536,213,34],"to":[-0.333,0.833,2.833],"ti":[0.333,-0.833,-2.833]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[534,218,51],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":60,"s":[534,218,51],"to":[0.333,-0.833,-2.833],"ti":[-0.333,0.833,2.833]},{"t":70,"s":[536,213,34]}],"ix":2},"a":{"a":0,"k":[0,-46.869,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-4.435,-4.884],[-6.737,0],[-4.773,5.802],[0,8.233],[2.556,4.01],[4.266,1.152],[0,8.233],[3.486,4.607],[7.008,0],[3.301,-1.941],[1.845,-3.391],[0.914,-5.673],[0,0],[-1.727,2.133],[-2.438,0],[-1.49,-1.877],[0,-3.156],[2.031,-2.239],[3.859,0.128],[0,0],[-1.828,0],[-1.93,-2.644],[0,-4.521],[2.014,-2.815],[2.945,0],[1.93,2.346],[0.44,4.437],[0,0]],"o":[[4.435,4.885],[7.109,0],[4.773,-5.801],[0,-5.673],[-2.557,-4.009],[7.143,-4.905],[0,-5.801],[-4.232,-5.631],[-4.097,0],[-3.301,1.942],[-1.846,3.391],[0,0],[0.372,-4.095],[1.727,-2.132],[2.471,0],[1.489,1.878],[0,3.711],[-2.031,2.239],[0,0],[2.539,-0.896],[2.776,0],[1.93,2.645],[0,4.778],[-2.015,2.815],[-2.742,0],[-1.93,-2.345],[0,0],[0.711,7.892]],"v":[[-471.879,-5.727],[-455.121,1.6],[-437.297,-7.102],[-430.137,-28.153],[-433.971,-42.678],[-444.204,-50.42],[-433.489,-70.127],[-438.719,-85.739],[-455.579,-94.185],[-466.674,-91.274],[-474.393,-83.276],[-478.532,-69.679],[-465.379,-66.864],[-462.231,-76.205],[-455.985,-79.405],[-450.043,-76.589],[-447.809,-69.039],[-450.856,-60.113],[-459.692,-56.946],[-461.266,-42.294],[-454.715,-43.637],[-447.657,-39.67],[-444.762,-28.921],[-447.784,-17.532],[-455.223,-13.309],[-462.231,-16.828],[-465.786,-27.001],[-479.598,-24.89]],"c":true},"ix":2},"nm":"3","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"3","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-3.318,1.323],[-2.607,3.199],[-1.862,6.825],[0,7.721],[1.625,5.994],[3.114,4.138],[4.367,1.622],[6.195,0],[0,0]],"o":[[0,0],[5.552,0],[4.435,-1.792],[3.453,-4.223],[1.523,-5.588],[0,-8.787],[-1.625,-5.993],[-3.115,-4.137],[-3.25,-1.194],[0,0],[0,0]],"v":[[-412.434,0],[-384.148,0],[-370.844,-1.984],[-360.281,-9.47],[-352.309,-26.042],[-350.023,-46.005],[-352.461,-68.175],[-359.57,-83.372],[-370.793,-92.01],[-384.961,-93.801],[-412.434,-93.801]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[-2.099,-0.597],[-1.828,-2.175],[-1.016,-3.881],[0,-7.251],[1.016,-4.201],[1.608,-1.834],[2.438,-0.768],[4.197,0],[0,0],[0,0]],"o":[[6.127,0],[2.81,0.768],[1.828,2.175],[1.016,3.882],[0,7.252],[-1.016,4.202],[-1.608,1.835],[-1.862,0.598],[0,0],[0,0],[0,0]],"v":[[-390.648,-77.933],[-378.309,-77.037],[-371.351,-72.622],[-367.086,-63.536],[-365.562,-46.837],[-367.086,-29.657],[-371.021,-20.603],[-377.09,-16.7],[-386.18,-15.804],[-397.402,-15.804],[-397.402,-77.933]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"D","np":5,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-265.155,0],[-265.155,-77.933],[-243.116,-77.933],[-243.116,-93.801],[-302.276,-93.801],[-302.276,-77.933],[-280.186,-77.933],[-280.186,0]],"c":true},"ix":2},"nm":"T","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"T","np":3,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[-1.592,-0.704],[-1.422,-1.898],[-3.859,-7.294],[0,0],[0,0],[0,0],[2.115,2.858],[3.25,2.389],[-3.284,4.586],[0,7.038],[2.166,4.309],[3.605,1.686],[7.955,0],[0,0],[0,0]],"o":[[0,0],[0,0],[3.453,0],[1.591,0.704],[1.422,1.899],[0,0],[0,0],[0,0],[-3.589,-7.294],[-2.116,-2.857],[6.533,-1.194],[3.283,-4.585],[0,-5.545],[-2.167,-4.308],[-3.605,-1.685],[0,0],[0,0],[0,0]],"v":[[-212.616,0],[-212.616,-39.158],[-209.569,-39.158],[-202.002,-38.103],[-197.483,-34.2],[-189.561,-20.411],[-178.694,0],[-160.717,0],[-169.807,-18.3],[-178.364,-33.528],[-186.412,-41.398],[-171.686,-50.068],[-166.76,-67.504],[-170.01,-82.284],[-178.668,-91.274],[-196.01,-93.801],[-227.647,-93.801],[-227.647,0]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-1.219,-0.213],[-1.338,-1.941],[0,-3.156],[1.016,-1.877],[1.794,-0.768],[7.211,0],[0,0]],"o":[[0,0],[6.094,0],[2.438,0.512],[1.337,1.942],[0,2.815],[-1.016,1.878],[-1.795,0.768],[0,0],[0,0]],"v":[[-212.616,-77.933],[-200.885,-77.933],[-189.916,-77.613],[-184.254,-73.934],[-182.248,-66.288],[-183.772,-59.25],[-187.987,-55.283],[-201.494,-54.131],[-212.616,-54.131]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-109.549,-93.801],[-125.443,-93.801],[-154.439,0],[-138.494,0],[-132.349,-21.307],[-102.592,-21.307],[-96.092,0],[-79.74,0]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-127.728,-37.111],[-117.674,-71.918],[-107.416,-37.111]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":5,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-51.931,0],[-51.931,-61.169],[-21.919,0],[-6.837,0],[-6.837,-93.801],[-20.802,-93.801],[-20.802,-31.16],[-51.271,-93.801],[-65.896,-93.801],[-65.896,0]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":3,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-5.045,-5.481],[-9.412,0],[-4.334,2.281],[-2.37,4.693],[0,5.375],[1.98,4.031],[3.504,2.325],[7.312,2.175],[1.896,2.006],[0,2.218],[-1.592,1.451],[-4.367,0],[-2.116,-2.111],[-0.643,-4.82],[0,0],[4.723,5.162],[9.344,0],[4.045,-2.175],[2.149,-4.159],[0,-4.777],[-4.57,-5.161],[-8.058,-2.516],[-1.761,-0.768],[-1.033,-1.557],[0,-2.217],[2.454,-2.58],[4.841,0],[2.691,2.901],[0.88,6.185],[0,0]],"o":[[5.044,5.482],[6.466,0],[4.333,-2.281],[2.369,-4.692],[0,-5.929],[-1.98,-4.031],[-3.504,-2.324],[-7.312,-2.175],[-1.49,-1.578],[0,-2.431],[2.471,-2.26],[4.232,0],[2.115,2.111],[0,0],[-0.237,-8.616],[-4.723,-5.161],[-5.722,0],[-4.046,2.175],[-2.15,4.159],[0,7.422],[3.25,3.669],[6.263,1.963],[2.572,1.152],[1.032,1.558],[0,3.455],[-2.455,2.581],[-4.57,0],[-2.691,-2.9],[0,0],[0.982,10.493]],"v":[[20.007,-6.558],[41.691,1.664],[57.89,-1.76],[67.945,-12.221],[71.499,-27.321],[68.529,-42.262],[60.302,-51.795],[44.077,-58.546],[30.265,-64.816],[28.03,-70.511],[30.417,-76.333],[40.675,-79.725],[50.196,-76.557],[54.335,-66.16],[69.366,-66.992],[61.927,-87.659],[40.827,-95.401],[26.177,-92.137],[16.884,-82.636],[13.659,-69.231],[20.515,-50.356],[37.476,-41.078],[49.511,-36.983],[54.919,-32.92],[56.468,-27.257],[52.786,-18.204],[41.843,-14.333],[30.95,-18.683],[25.593,-32.312],[10.968,-30.521]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[104.996,0],[104.996,-39.862],[136.074,-39.862],[136.074,-55.73],[104.996,-55.73],[104.996,-77.933],[141,-77.933],[141,-93.801],[89.965,-93.801],[89.965,0]],"c":true},"ix":2},"nm":"F","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"F","np":3,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-6.534,-8.51],[-11.07,0],[-6.534,8.553],[0,15.143],[6.584,8.574],[10.969,0],[4.638,-2.473],[2.928,-3.796],[1.692,-4.777],[0,-9.555]],"o":[[6.533,8.51],[10.935,0],[6.533,-8.552],[0,-15.27],[-6.585,-8.574],[-6.06,0],[-3.487,1.835],[-2.929,3.797],[-2.268,6.484],[0,14.93]],"v":[[165.863,-11.165],[192.27,1.6],[218.473,-11.229],[228.274,-46.773],[218.397,-82.54],[192.067,-95.401],[176.02,-91.69],[166.397,-83.244],[159.465,-70.383],[156.063,-46.325]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-3.792,5.354],[-6.195,0],[-3.741,-5.289],[0,-10.749],[3.842,-5.439],[5.992,0],[3.893,5.482],[0,10.621]],"o":[[3.791,-5.353],[6.195,0],[3.74,5.29],[0,10.877],[-3.843,5.439],[-5.992,0],[-3.893,-5.481],[0,-10.791]],"v":[[177.238,-71.183],[192.219,-79.213],[207.123,-71.279],[212.735,-47.22],[206.971,-22.746],[192.219,-14.588],[177.391,-22.81],[171.551,-46.965]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[-1.592,-0.704],[-1.422,-1.898],[-3.859,-7.294],[0,0],[0,0],[0,0],[2.115,2.858],[3.25,2.389],[-3.284,4.586],[0,7.038],[2.166,4.309],[3.605,1.686],[7.955,0],[0,0],[0,0]],"o":[[0,0],[0,0],[3.453,0],[1.591,0.704],[1.422,1.899],[0,0],[0,0],[0,0],[-3.589,-7.294],[-2.116,-2.857],[6.533,-1.194],[3.283,-4.585],[0,-5.545],[-2.167,-4.308],[-3.605,-1.685],[0,0],[0,0],[0,0]],"v":[[260.805,0],[260.805,-39.158],[263.852,-39.158],[271.419,-38.103],[275.938,-34.2],[283.86,-20.411],[294.727,0],[312.704,0],[303.614,-18.3],[295.057,-33.528],[287.009,-41.398],[301.735,-50.068],[306.661,-67.504],[303.411,-82.284],[294.753,-91.274],[277.411,-93.801],[245.774,-93.801],[245.774,0]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-1.219,-0.213],[-1.338,-1.941],[0,-3.156],[1.016,-1.877],[1.794,-0.768],[7.211,0],[0,0]],"o":[[0,0],[6.094,0],[2.438,0.512],[1.337,1.942],[0,2.815],[-1.016,1.878],[-1.795,0.768],[0,0],[0,0]],"v":[[260.805,-77.933],[272.536,-77.933],[283.505,-77.613],[289.167,-73.934],[291.173,-66.288],[289.649,-59.25],[285.434,-55.283],[271.926,-54.131],[260.805,-54.131]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[340.31,0],[340.31,-73.838],[355.036,0],[369.509,0],[384.286,-73.838],[384.286,0],[398.251,0],[398.251,-93.801],[375.704,-93.801],[362.349,-29.817],[348.841,-93.801],[326.345,-93.801],[326.345,0]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"m","np":3,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-5.045,-5.481],[-9.412,0],[-4.334,2.281],[-2.37,4.693],[0,5.375],[1.98,4.031],[3.504,2.325],[7.312,2.175],[1.896,2.006],[0,2.218],[-1.592,1.451],[-4.367,0],[-2.116,-2.111],[-0.643,-4.82],[0,0],[4.723,5.162],[9.344,0],[4.045,-2.175],[2.149,-4.159],[0,-4.777],[-4.57,-5.161],[-8.058,-2.516],[-1.761,-0.768],[-1.033,-1.557],[0,-2.217],[2.454,-2.58],[4.841,0],[2.691,2.901],[0.88,6.185],[0,0]],"o":[[5.044,5.482],[6.466,0],[4.333,-2.281],[2.369,-4.692],[0,-5.929],[-1.98,-4.031],[-3.504,-2.324],[-7.312,-2.175],[-1.49,-1.578],[0,-2.431],[2.471,-2.26],[4.232,0],[2.115,2.111],[0,0],[-0.237,-8.616],[-4.723,-5.161],[-5.722,0],[-4.046,2.175],[-2.15,4.159],[0,7.422],[3.25,3.669],[6.263,1.963],[2.572,1.152],[1.032,1.558],[0,3.455],[-2.455,2.581],[-4.57,0],[-2.691,-2.9],[0,0],[0.982,10.493]],"v":[[424.131,-6.558],[445.814,1.664],[462.013,-1.76],[472.068,-12.221],[475.623,-27.321],[472.652,-42.262],[464.426,-51.795],[448.201,-58.546],[434.388,-64.816],[432.154,-70.511],[434.541,-76.333],[444.799,-79.725],[454.32,-76.557],[458.459,-66.16],[473.49,-66.992],[466.051,-87.659],[444.951,-95.401],[430.301,-92.137],[421.008,-82.636],[417.783,-69.231],[424.638,-50.356],[441.599,-41.078],[453.635,-36.983],[459.043,-32.92],[460.592,-27.257],[456.91,-18.204],[445.967,-14.333],[435.074,-18.683],[429.717,-32.312],[415.092,-30.521]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false}],"ip":30,"op":70,"st":10,"bm":0}],"markers":[]} \ No newline at end of file diff --git a/midterm/icons/straight-right-arrow.png b/midterm/icons/straight-right-arrow.png new file mode 100644 index 0000000..42e65d2 Binary files /dev/null and b/midterm/icons/straight-right-arrow.png differ diff --git a/midterm/images/.DS_Store b/midterm/images/.DS_Store new file mode 100644 index 0000000..5008ddf Binary files /dev/null and b/midterm/images/.DS_Store differ diff --git a/midterm/images/css-img1.jpeg b/midterm/images/css-img1.jpeg new file mode 100644 index 0000000..5056a72 Binary files /dev/null and b/midterm/images/css-img1.jpeg differ diff --git a/midterm/images/css-img2.jpeg b/midterm/images/css-img2.jpeg new file mode 100644 index 0000000..6728912 Binary files /dev/null and b/midterm/images/css-img2.jpeg differ diff --git a/midterm/images/css-img3.jpeg b/midterm/images/css-img3.jpeg new file mode 100644 index 0000000..38df056 Binary files /dev/null and b/midterm/images/css-img3.jpeg differ diff --git a/midterm/images/html-img.png b/midterm/images/html-img.png new file mode 100644 index 0000000..91897e5 Binary files /dev/null and b/midterm/images/html-img.png differ diff --git a/midterm/images/js-img.png b/midterm/images/js-img.png new file mode 100644 index 0000000..8e0e7f5 Binary files /dev/null and b/midterm/images/js-img.png differ diff --git a/midterm/index.html b/midterm/index.html new file mode 100644 index 0000000..eaf2557 --- /dev/null +++ b/midterm/index.html @@ -0,0 +1,338 @@ + + + + + + + + 3D Transforms + + +
+
+ + burger + + + + + +
+
+ +
+
+
+
+ +
+
+
+
+

Basic 3D Transform Methods

+

+ CSS 3D transforms allow us to rotate, skew, squash, and stretch + HTML 5 elements. While this wouldn’t be the most efficient way to + 3D model, it is an exciting way to add another level of + interactivity to your websites. Adding a third axis to a website + creates a sense of depth and allows us to move elements towards + and away from the user. The z-axis is measured in positive and + negative values. +

+

+
+
+
+
Top
+
Bottom
+
Left
+
Right
+
Front
+
Back
+
+
+
+
+
+
+

Matrix 3D

+
+
+

+ matrix3d( a1, b1, c1, d1, a2, b2, c2, d2, a3, b3, c3, d3, a4, + b4, c4, d4 ) +

+

A transform method using a 4 x 4 matrix of 16 values.

+
+
+ +
+
+

Translate 3D

+

translate3d:(x,y,z);

+

Defines a 3D translation.

+
+
+

translateX(x)

+

+ Defines a 3D translation, using only the value for the X-axis +

+

translateY(y)

+

+ Defines a 3D translation, using only the value for the Y-axis +

+

translateZ(z)

+

+ Defines a 3D translation, using only the value for the Z-axis +

+
+
+ +
+
+

Scale 3D

+

(x,y,z)

+

Defines a 3D scale transformation

+
+
+

scaleX(x)

+

+ Defines a 3D scale transformation by giving a value for the + X-axis +

+

scaleY(y)

+

+ Defines a 3D scale transformation by giving a value for the + Y-axis +

+

scaleZ(z)

+

+ Defines a 3D scale transformation by giving a value for the + Z-axis +

+
+
+
+
+
+
+

Rotate 3D

+

rotate3d(x,y,z,angle)

+

Defines a 3D rotation

+
+
+

rotateX(angle)

+

Defines a 3D rotation along the X-axis

+

rotateY(angle)

+

Defines a 3D rotation along the Y-axis

+

rotateZ(angle)

+

Defines a 3D rotation along the Z-axis

+
+
+ +
+
+

Skew

+

skew(x-angle,y-angle)

+

+ Defines a 2D skew transformation along the X- and the Y-axis +

+
+
+

skewX(angle)

+

Defines a 2D skew transformation along the X-axis

+

skewY(angle)

+

Defines a 2D skew transformation along the Y-axis

+
+
+ +
+
+

Perspective

+
+
+

perspective(n)

+

Defines a perspective view for a 3D transformed element

+

+ If the value is 0 or a negative number, no perspective transform + is applied. +

+
+
+
+
+
+
+
+
+

CSS Card Flip

+

+ Now that we've covered some ways to use CSS 3D transforms, let's + practice them and create a simple card flip using HTML, CSS, and + JavaScript. For this demonstration we will be using the rotateY() + and perspective property. +

+
+
+
+

Click Me

+ arrow +
+
+
+
+

Front

+
+
+

Back

+
+
+
+
+
+
+
+

HTML

+
+
+

+ First, we are going to create a div with a class of container to + hold our card. Next, we will add another div with the class of + card. Inside of div class=”card” we must add two more divs which + will allow us to style the front and back of the card as well as + keep the positions of each side in line. +

+ HTML code +
+
+
+
+

CSS

+
+
+

+ Let’s start by setting up the container, first we will need to set + the width, height, and margin. It is important to add the + perspective property to create a 3D space for our transforms to + occur. The perspective of the container will only affect the + content inside of it. +

+ CSS code +
+
+

+ After the perspective has been set, we will place our card in 3D + space. By setting the width and height to 100% we have set the + card’s transform-origin to the center of the container. Next we + will set the position, and transition period of our card + animation. The transform-style: preserve-3d; property ensures that + the children of the card element are positioned in 3D space. Below + we will add the card class a second time and add the is-flipped. + Use the property transform: rotateY(180deg) to turn the card over + and expose the backside. +

+ CSS code +
+
+

+ Finally, we can start to style the faces of our card. To align the + faces in 3D space, use the card-face class and set the position to + absolute. Again set the width and height to 100% so each face + fills the card class. Be sure to add the backface-visibility + property to this class to hide the back of our card element. From + here you can use the classes front and back to further customize + the contents of each face. +

+ CSS code +
+
+
+
+

JavaScript

+
+
+

+ Finally, we can start to style the faces of our card. To align the + faces in 3D space, use the card-face class and set the position to + absolute. Again set the width and height to 100% so each face + fills the card class. Be sure to add the backface-visibility + property to this class to hide the back of our card element. From + here you can use the classes front and back to further customize + the contents of each face. +

+ JavaScript code +
+
+
+ +
+
+
+ + + + + diff --git a/midterm/js/script.js b/midterm/js/script.js new file mode 100644 index 0000000..813edab --- /dev/null +++ b/midterm/js/script.js @@ -0,0 +1,4 @@ +var card = document.querySelector('.s-card'); +card.addEventListener( 'click', function() { + card.classList.toggle('is-flipped'); +}); \ No newline at end of file