月色当空照缩影
代码语言:html
所属分类:布局界面
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <style> * { margin: 0; padding: 0; box-sizing: border-box; } body { background: #2F2349; } .canvas { height: 340px; width: 340px; border: 10px solid #3B2D61; border-radius: 50%; margin: 10% auto; position: relative; background: linear-gradient(to bottom, #8652E2 0%, #6B3DA0 246px); overflow: hidden; } .moon { position: absolute; z-index: 2; height: 70px; width: 70px; background-color: white; left: 125px; top: 110px; border-radius: 50%; box-shadow: 0 0 15px white, 0 0 100px white; } .moon-bg { opacity: 0.5; border-radius: 50%; } .moon-bg-1, .moon-bg-2, .moon-bg-3, .moon-bg-4 { position: absolute; } .moon-bg-1 { height: 95px; width: 95px; left: 113px; top: 97px; background: linear-gradient(to bottom, #C785EA, #BF70E2); } .moon-bg-2 { height: 130px; width: 130px; left: 96px; top: 80px; background: linear-gradient(to bottom, #B775E1, #AE5FD6); } .moon-bg-3 { height: 170px; width: 170px; left: 78px; top: 61px; background: linear-gradient(to bottom, #944BBE, #944BBE); } .moon-bg-4 { z-index: 0; height: 210px; width: 210px; left: 59px; top: 42px; background: linear-gradient(to bottom, #9559DF, #8141B9); } .mountain-foreground, .mountain-background { position: absolute; } .mountain-foreground { left: 5px; bottom: -55px; z-index: 3; } .mountain-foreground path { fill: #2A165B; } .mountain-background { left: -120px; bottom: 25px; z-index: 2; } .mountain-background path { fill: #3C1872; } .tree-1, .tree-2, .tree-3, .tree-4, .tree-5, .tree-6, .tree-7 { position: absolute; } .tree-1 { z-index: 2; width: 35px; left: 10px; bottom: 100px; } .tree-1 path { fill: #3C1872; } .tree-2 { z-index: 2; width: 25px; left: 40px; bottom: 105px; } .tree-2 path { fill: #3C1872; } .tree-3 { z-index: 3; width: 60px; left: 50px; bottom: 15px; } .tree-3 path { fill: #140D35; } .tree-4 { z-index: 3; width: 90px; left: 100px; bottom: 0px; } .tree-4 path { fill: #140D35; } .tree-5 { z-index: 3; width: 90px; left: 165px; bottom: 8px; } .tree-5 path { fill: #140D35; } .tree-6 { z-index: 1; width: 25px; right: 10px; bottom: 130px; } .tree-6 path { fill: #301763; } .tree-7 { z-index: 1; width: 15px; right: 0px; bottom: 125px; } .tree-7 path { fill: #301763; } .star { background: white; position: absolute; left: 100px; top: 20px; border-radius: 25%; animation: startwinkle 5s infinite linear; opacity: 0.5; } .star.star-1 { left: 150px; } .star.star-2 { left: 170px; top: 60px; } .star.star-3 { left: 130px; top: 80px; } .star.star-4 { left: 90px; top: 80px; } .star.star-5 { left: 179px; top: 90px; } .star.star-6 { left: 136px; top: 97px; } .star.star-7 { left: 150px; top: 97px; } .star.star-8 { left: 200px; top: 95px; } .star.star-9 { left: 260px; top: 95px; } .star.star-10 { left: 37px; top: 100px; } .star.star-11 { left: 35px; top: 80px; } .star.star-12 { left: 25px; top: 90px; } .star.star-13 { left: 25px; top: 135px; } .star.star-14 { left: 25px; top: 118px; } .star.star-15 { left: 10px; top: 123px; } .star.star-16 { left: 135px; top: 23px; } .star.star-17 { left: 140px; top: 10px; } .star.star-18 { left: 200px; top: 36px; } .star.star-19 { left: 215px; top: 37px; } .star.star-20 { left: 219px; top: 30px; } .star.star-21 { left: 230px; top: 80px; } .star.star-22 { left: 230px; top: 150px; } .star.star-23 { left: 226px; top: 158px; } .star.star-24 { left: 250px; top: 136px; } .star.star-25 { left: 273px; top: 123px; } .star.star-26 { left: 298px; top: 93px; } .star.star-27 { left: 296px; top: 136px; } .star.star-28 { left: 279px; top: 150px; } .star.star-29 { left: 85px; top: 29px; } .star.star-30 { left: 83px; top: 46px; } .opacity-half { opacity: 0.5; } .opacity-quarter { opacity: 0.25; } @keyframes startwinkle { 0% { opacity: 0.0; } 50% { opacity: 1.0; } 100% { opacity: 0.0; } } .star:nth-child(1) { height: 2px; width: 2px; animation-delay: -0.3s; } .star:nth-child(2) { height: 2px; width: 2px; animation-delay: -0.6s; } .star:nth-child(3) { height: 1px; width: 1px; animation-delay: -0.9s; } .star:nth-child(4) { height: 2px; width: 2px; animation-delay: -1.2s; } .star:nth-child(5) { height: 2px; width: 2px; animation-delay: -1.5s; } .star:nth-child(6) { height: 1px; width: 1px; animation-delay: -1.8s; } .star:nth-child(7) { height: 2px; width: 2px; animation-delay: -2.1s; } .star:nth-child(8) { height: 1px; width: 1px; animation-delay: -2.4s; } .star:nth-child(9) { height: 2px; width: 2px; animation-delay: -2.7s; } .star:nth-child(10) { height: 2px; width: 2px; animation-delay: -3s; } .star:nth-child(11) { height: 1px; width: 1px; animation-delay: -3.3s; } .star:nth-child(12) { height: 1px; width: 1px; animation-delay: -3.6s; } .star:nth-child(13) { height: 2px; width: 2px; animation-delay: -3.9s; } .star:nth-child(14) { height: 1px; width: 1px; animation-delay: -4.2s; } .star:nth-child(15) { height: 2px; width: 2px; animation-delay: -4.5s; } .star:nth-child(16) { height: 2px; width: 2px; animation-delay: -4.8s; } .star:nth-child(17) { height: 1px; width: 1px; animation-delay: -5.1s; } .star:nth-child(18) { height: 1px; width: 1px; animation-delay: -5.4s; } .star:nth-child(19) { height: 2px; width: 2px; animation-delay: -5.7s; } .star:nth-child(20) { height: 1px; width: 1px; animation-delay: -6s; } .star:nth-child(21) { height: 1px; width: 1px; animation-delay: -6.3s; } .star:nth-child(22) { height: 2px; width: 2px; animation-delay: -6.6s; } .star:nth-child(23) { height: 1px; width: 1px; animation-delay: -6.9s; } .star:nth-child(24) { height: 2px; width: 2px; animation-delay: -7.2s; } .star:nth-child(25) { height: 1px; width: 1px; animation-delay: -7.5s; } .star:nth-child(26) { height: 1px; width: 1px; animation-delay: -7.8s; } .star:nth-child(27) { height: 2px; width: 2px; animation-delay: -8.1s; } .star:nth-child(28) { height: 1px; width: 1px; animation-delay: -8.4s; } .star:nth-child(29) { height: 2px; width: 2px; animation-delay: -8.7s; } .star:nth-child(30) { height: 2px; width: 2px; animation-delay: -9s; } </style> <script> window.console = window.console || function(t) {}; </script> <script> if (document.location.search.match(/type=embed/gi)) { window.parent.postMessage("resize", "*"); } </script> </head> <body translate="no"> <body> <div class="canvas"> <div class="stars"> <div class="star star-1 opacity-quarter"></div> <div class="star star-2 opacity-quarter"></div> <div class="star star-3 opacity-half"></div> <div class="star star-4 opacity-half"></div> <div class="star star-5 opacity-half"></div> <div class="star star-6 opacity-half"></div> <div class="star star-7"></div> <div class="star star-8 opacity-quarter"></div> <div class="star star-9 opacity-quarter"></div> <div class="star star-10"></div> <div class="star star-11"></div> <div class="star star-12 opacity-half"></div> <div class="star star-13 opacity-quarter"></div> <div class="star star-14 opacity-quarter"></div> <div class="star star-15"></div> <div class="star star-16 opacity-half"></div> <div class="star star-17"></div> <div class="star star-18 opacity-half"></div> <div class="star star-19"></div> <div class="star star-20"></div> <div class="star star-21"></div> <div class="star star-22"></div> <div class="star star-23"></div> <div class="star star-24"></div> <div class="star star-25"></div> <div class="star star-26"></div> <div class="star star-27"></div> <div class="star star-28"></div> <div class="star star-29"></div> <div class="star star-30"></div> </div> <div class="moon"></div> <div class="moon-bg moon-bg-1"></div> <div class="moon-bg moon-bg-2"></div> <div class="moon-bg moon-bg-3"></div> <div class="moon-bg moon-bg-4"></div> <section> <svg class="mountain-background" id="Layer_2" data-name="Layer 2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 211 84"><title>Mountain Background</title> <path class="cls-1" d="M1076.8,487.24,1069,481l-10-8a35.71,35.71,0,0,1-4.75-4.38,8.91,8.91,0,0,1-1.58-2.78c-1.41-3.79-5.73-7.35-7.19-8.48a5.71,5.71,0,0,0-1-.6c-2.07-1-10-4.76-13.5-4.76s-5.3,2.11-7,4.56a5.89,5.89,0,0,0-1,3.07c-.28,5.53-2,6.37-2,6.37s-1.53.77-3.26,3.64a5.89,5.89,0,0,0-.77,2.69c-.22,4-1.73,6.83-9.65,11a5.72,5.72,0,0,1-2.62.69c-18.37.37-51.34,8.2-57.64,9.73a5.61,5.61,0,0,0-1.87.83c-1.27.87-3.75,2.43-5.19,2.43a18.47,18.47,0,0,0-4.54,1h0S918,502,912,502s-9-2-14-2-9-2-12,0-11,1-11,1h-7v35h205.12a5.87,5.87,0,0,0,5.88-5.87V491.82A5.87,5.87,0,0,0,1076.8,487.24Z" transform="translate(-868 -452)" /> </svg> </section> <section> <svg class="mountain-foreground" data-name="Layer 2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 132.08 88.67"><title>MountainForeground</title> <path class="cls-1" d="M1093.08,507.34s-.06-.09-.08-.14V507l-.13,0c-2.49-3.43-24.09-13.63-31.79-13.63-8,0-9,0-13-1-2-2-15-10-15-10s-10-8-19-14c-8-7-14,0-18,3s-21,12-21,12-5,8-7,10a12.6,12.6,0,0,1-4.8,2.43L961,496v58h132V507.5A.17.17,0,0,0,1093.08,507.34Z" transform="translate(-961 -465.33)" /> </svg> </section> <svg class="tree-1" data-name="Layer 4" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 17.59 23.29"><title>Tree1</title><path class="cls-1" d="M726.13,550.63c0-.11-.07-.18,0-.27a2.55,2.55,0,0,1,.4-.32c.08,0,.22-.13.29,0s0,.19-.1.26-.1.15,0,.19.13.1.05.21-.1.08-.06.16.19,0,.23-.07.07-.19.19-.19.16.09.22.19a.51.51,0,0,0,.52.32c.14,0,.21,0,.15-.22s-.06-.22,0-.3c.12.14.13.33.3.42s.15.15.26.07a2.52,2.52,0,0,1,1-.41c0,.13,0,.26.17.19.05,0,.06,0,.06.07,0,.27.23.27.46.23-.15,0-.26-.07-.12-.2a3.08,3.08,0,0,0,.33-.3.15.15,0,0,1,.18,0,.14.14,0,0,1,.06.17c0,.08-.09.15.06.16s.23,0,.3-.09.16-.22.34-.17l.06,0c.1,0,.22-.19.24,0s-.24.38-.39.41a1.37,1.37,0,0,1,.64.1c-.08-.11-.18-.19-.12-.33s.13,0,.22,0a4.92,4.92,0,0,0-.49-1.55,1.24,1.24,0,0,0-.51-.45.26.26,0,0,0-.24,0c-.13.09-.21.1-.27-.06s-.05-.07-.1-.05l-.08.08s0,.07.07.08a.11.11,0,0,1,.07,0c.05.11.24,0,.19.18s-.19.15-.3.19a.89.89,0,0,1-.64-.13c-.09,0,0-.09,0-.13s.19-.11.13-.23-.14-.09-.26-.07a.58.58,0,0,0-.31.11.17.17,0,0,1-.14,0c-.27-.16-.38,0-.57.16s-.18.22-.33.28a.39.39,0,0,0-.53.18c0,.07-.06.13-.15.09s-.14-.09-.1-.21a.9.9,0,0,1,.22-.34c-.25-.08-.12-.16-.07-.38s.2-.13.28,0,.06,0,.08,0,.17-.17.2-.3-.18,0-.27,0a.55.55,0,0,1-.5-.1c-.08-.09-.11-.08-.19,0s-.15.15-.23.06,0-.18.06-.27a.28.28,0,0,1,.22-.13,1.12,1.12,0,0,0,.35-.12c-.21-.12-.37-.24-.36-.49s.06-.29,0-.44h.17a7.9,7.9,0,0,0,.8.14.2.2,0,0,0,.2-.1c.09-.15.21-.25.38-.17s.18,0,.25-.09.2-.31.38-.11a.17.17,0,0,0,.22.06c-.15-.23.08-.61-.36-.42a.14.14,0,0,1-.15-.15c.07-.11.2-.14.27-.26-.24,0-.31-.2-.38-.41s-.13-.22-.19-.17-.3,0-.49,0-.23,0-.15-.22.05-.17,0-.2-.33-.25-.45-.43,0-.11-.1-.06-.22,0-.35-.08c0,.11.12.15.2.22s.31.26.3.52c0,.06,0,.14-.06.15a.2.2,0,0,1-.18-.15.48.48,0,0,1,0-.17c0-.09,0-.16-.13-.21l-.73-.31c-.22-.09-.38-.11-.4.18a.22.22,0,0,1-.05.08.14.14,0,0,1-.17,0c-.06,0,0-.1,0-.14s0-.09,0-.13a1.73,1.73,0,0,0-.25-.41c-.08.08,0,.26-.11.33s-.26,0-.41,0-.21-.07-.18-.24.2-.34.45-.21l-.07-.08a1,1,0,0,0-.75.13c-.19.09-.25.09-.28-.14s-.19-.35.07-.44c0,0,0,0,0-.06s0-.19.15-.23.16,0,.16-.09-.09-.11-.14-.15-.13,0-.2,0-.12-.09-.14-.16,0-.15.07-.13a1,1,0,0,1,.49.27c.11.13.15.16.28.06s.36-.11.42,0,0,.14.16.17a.13.13,0,0,1,.08.11c0,.21.2.29.33.44,0-.13,0-.27,0-.4s0-.08,0-.1.36.13.39.19c.13.23.14.23.32.06a.44.44,0,0,0,.08-.11c0-.06.1-.13.2-.1s.07.08.08.12-.06.09-.11.16c.19.36.39.12.67.11s.06-.17.16-.26a.91.91,0,0,0-.44.09s-.12,0-.11,0,0-.12-.09-.19-.14-.13,0-.2.07-.19.07-.29,0-.07-.1,0-.15,0-.19-.1-.09,0-.13,0a.8.8,0,0,1-.4.17.16.16,0,0,1-.17,0,.11.11,0,0,1,0-.13.14.14,0,0,1,.18,0,.12.12,0,0,0,.21,0,.2.2,0,0,0,0-.24.18.18,0,0,0-.24,0,1.16,1.16,0,0,0-.2.18c-.06-.25,0-.34.28-.38-.13-.06-.25-.12-.18-.27a.08.08,0,0,0,0-.11c-.1-.06-.32-.09-.28,0,.11.28-.23,0-.16.22,0,0,0,0,0,.07s0,.21-.09.22a.47.47,0,0,1-.4-.15c-.08-.12.11-.11.15-.19-.15-.14-.27-.22-.09-.41a.05.05,0,0,0,0-.09c-.14-.1,0-.16,0-.22s.23-.07.3,0a.49.49,0,0,0,.25.24.1.1,0,0,0,.13,0c0-.05,0-.09,0-.12a.43.43,0,0,1-.16-.14s-.1-.1,0-.16.12,0,.17.05.06.1.13.07.06-.11.07-.17,0-.09,0-.13a1.13,1.13,0,0,1-.1-.57.84.84,0,0,1,.35.29c.06.13.36.21.4.12s.12-.12.27-.1.2,0,.17-.11-.3-.47-.16-.79c0,0,0-.08-.06-.12a.29.29,0,0,1-.06-.21c.22,0,.31.25.53.11.16.13.36.12.53.24s.21.1.28-.09,0-.24.21-.22.22.07.19.23a.19.19,0,0,0,.14.22c.11,0,.16-.09.22-.17a.42.42,0,0,1,.36-.24,2.09,2.09,0,0,0,.66-.19c.15,0,.33-.17.42,0s-.14.25-.23.31l-.07,0c-.15.08-.13.17-.07.3a3.68,3.68,0,0,1,.3-.39,1.79,1.79,0,0,1,.68-.36c.05,0,.11-.08.16,0a.14.14,0,0,1,0,.17c-.2.14-.2.34-.31.53a1,1,0,0,0,.44-.27c.21-.24.27-.27.49,0,0,0,.06.09.12.07l0-.08c0-.12,0-.18.14-.22s.13,0,.18.08.16.12.28,0,.2-.16.28,0,0,0,.08,0c.21,0,.2,0,.15.19s0,.35.26.42c-.11-.14,0-.24.09-.29s.15.08.21.16.05.16.12.25.13.25.27.13.21-.07.31.06a.24.24,0,0,0,0-.08.3.3,0,0,1-.08-.34s.05-.06.09,0a.31.31,0,0,1,.13.3c0,.06,0,.16.08.13s.3,0,.44-.12a.26.26,0,0,1,.35,0,.29.29,0,0,1,.07.35,1.55,1.55,0,0,0,0,.31c.13,0,.29.11.42,0s.22-.26.4,0c.24-.06.29.14.44.28s.12.14.21,0a.19.19,0,0,1,.18,0,.1.1,0,0,1,0,.14c-.12.15-.05.29,0,.45a.56.56,0,0,1,0,.34l.4.1c.05,0,.11,0,.14,0s0-.08,0-.12,0-.13,0-.17.13-.05.18,0,.18.24.14.41a2.1,2.1,0,0,0,.68-.51c.08-.08.21-.13.26.06s.08.14.17,0a.11.11,0,0,1,.18,0c.05.07,0,.11-.08.15-.21.17-.3.43-.51.61.27-.08.4,0,.49.24a1.23,1.23,0,0,1,0,.19c0,.06,0,.09.08.08.28,0,.36.06.35.36s.09.38.35.39a.25.25,0,0,1-.07-.37.55.55,0,0,1,.43-.24c.08,0,.16-.1.22,0a.25.25,0,0,1,0,.25c-.08.2-.23.33-.09.56,0,0,0,.11-.08.15s-.31.21-.49,0a.26.26,0,0,1-.15.25.08.08,0,0,0,0,.06c0,.16-.06.15-.2.14l-.54-.06a.21.21,0,0,0,.1.06c.06,0,.11.06.12.13s-.09.08-.14.1-.09.13-.06.23,0,.13,0,.18-.12,0-.16-.06l-.1-.1c-.15-.13-.24-.19,0-.36,0,0,0-.07,0-.1a.06.06,0,0,0-.1,0c-.06.11-.15.08-.2,0s-.17-.09-.23,0a.2.2,0,0,0,0,.27c0,.05.12.18,0,.2-.24.07-.38.23-.59,0,0,.19-.07.3.17.26a.16.16,0,0,1,.19.13c0,.09,0,.19-.07.24s-.12-.07-.18-.13-.26-.12-.39-.19-.12.11-.15.16-.11.14-.19.11-.06-.13,0-.2.06-.22.08-.33,0-.15-.07-.19-.07.06-.11.09a.74.74,0,0,1-.72.18c-.06,0-.13,0-.1-.12s0-.13,0-.15-.1,0-.13.1a2,2,0,0,0-.19,1.15.9.9,0,0,0,.61.91c.18.08.37.27.49,0l0,0c.23-.05.23-.18.16-.38s-.05-.08,0-.13a.11.11,0,0,1,.15,0,1,1,0,0,1,.16.12c.08.1.12.11.25.06s.34.13.34.24.16.22.31.25.22-.07.21-.21,0-.13.08-.18a.14.14,0,0,1,.14,0,.18.18,0,0,1,0,.18.46.46,0,0,1,0,.14c-.07.1-.05.14.06.19a1.94,1.94,0,0,0,.68.11.16.16,0,0,1-.09-.25c0-.11,0-.15,0-.21s-.18-.06-.08-.16.15,0,.23,0a1.08,1.08,0,0,1,.29.51c.1-.25.19-.41.48-.34a.07.07,0,0,0,.09-.06.06.06,0,0,0-.06-.06c-.07,0-.22,0-.21-.08a.32.32,0,0,1,.17-.25.44.44,0,0,0,.11-.09c.1.32.33.51.25.86.08-.11.12-.22.28-.14s.23.16.06.28c0,0,0,.05,0,.07,0,.25,0,.29-.3.22a1.38,1.38,0,0,1-.48-.33c0,.19.14.29.2.46h-.11c-.11,0-.18-.08-.28-.1s-.29-.09-.42,0-.47.38-.7.64-.28.16-.37-.06a.18.18,0,0,0-.15-.1c-.05,0-.12,0-.11-.07s0-.14-.11-.15-.35-.1-.47.05-.28.21-.41.36a.13.13,0,0,1-.17,0,.14.14,0,0,1,0-.18A.22.22,0,0,0,737,548c-.17-.05-.17.09-.2.21s-.1.25-.24.13a.09.09,0,0,0-.13,0,1.12,1.12,0,0,0-.45.7.53.53,0,0,0,.38.58c.15.06.46.24.63.32,0-.14-.09-.2.16-.16a2,2,0,0,1,.77.28.66.66,0,0,0,.41.12,3.21,3.21,0,0,1,1,.13c.29.06.53.17.79,0a.09.09,0,0,1,.1,0l.54.32a.44.44,0,0,0,.63,0c.07-.07.12-.09.2-.06a.73.73,0,0,1,.42.29c0,.09-.08.1-.14.13s-.08.06-.05.13.07.08,0,.14a.64.64,0,0,1-.74.14c-.14-.06-.2-.07-.32,0s-.12.13-.22.06a.16.16,0,0,1,0-.27c-.13,0-.21.17-.33.13a.83.83,0,0,0-.83.17,2.35,2.35,0,0,1-.59.3c-.12,0-.25,0-.18-.14s-.05-.24-.17-.3-.19,0-.28.05a.24.24,0,0,1-.24,0,.11.11,0,0,1-.07-.16c0-.13-.07-.18-.18-.25a3.8,3.8,0,0,0-.76-.27c-.1,0-.15,0-.2.09a.73.73,0,0,1-.67.25.53.53,0,0,0-.43.17.89.89,0,0,0-.22.37,10.18,10.18,0,0,0-.52,1.87,1.57,1.57,0,0,0,.16.87c.29.66.55,1.34.79,2a11.9,11.9,0,0,1,.68,2.75,16,16,0,0,0,.23,1.86.85.85,0,0,1-.7,1.12,1.17,1.17,0,0,1-.74-.08.54.54,0,0,1-.37-.69,10.74,10.74,0,0,0,.37-2.88,1.74,1.74,0,0,0-.59-1.37,1.9,1.9,0,0,1-.33-.31,1.8,1.8,0,0,0-1.22-.59l-.4-.09a.62.62,0,0,0-.59,0s-.12.06-.15,0c-.2-.27-.36-.24-.59,0a.73.73,0,0,0-.69,0c-.06,0-.19-.1-.29-.14a1.06,1.06,0,0,0-.89,0,.42.42,0,0,1-.5-.13c0-.08-.08-.15-.17-.18-.1.17,0,.22.13.3-.11.08-.19.15-.17.31a.19.19,0,0,1-.13.23c-.1,0-.16-.06-.19-.13s-.1-.15-.22-.15a.91.91,0,0,1-.36-.09s-.14,0-.15-.08.07-.11.11-.12.12-.21.09-.27-.15,0-.24,0-.14.11-.16,0-.14-.17-.3-.18-.18,0-.25-.05c.08-.09.19-.11.2-.24s-.22.07-.19-.1.13-.14.25-.12.21,0,.18.13,0,.11,0,.11.08,0,.1-.09a.62.62,0,0,0,0-.27c0-.1-.08-.21,0-.29s0-.23.16-.3.12.12.21.13c.26,0,.27.14.29.35a.11.11,0,0,0,.06.1s0,0,0,0a1.32,1.32,0,0,1,.37-.48c.08-.08.15-.17.26-.12s.11.19.07.29,0,.49,0,.73,0,.13.11.14.13,0,.15-.12a.3.3,0,0,0-.09-.31c-.05,0-.11-.15,0-.17s.22-.24.3-.4.1-.13.2-.09a.69.69,0,0,1,.37.43s0,.1.09.1.1-.06.12-.12.11-.37.16-.55a.31.31,0,0,1,.14-.22c.11,0,.12,0,.16.11s.07.07.1.07c.26,0,.26.13.27.3s.38.21.34.51h.14a2,2,0,0,0,.26-.09c.08,0,.14-.1.2,0s0,.13-.09.17a.44.44,0,0,0-.21.33c0,.23.11.33.34.33a6.47,6.47,0,0,0,1.06-.16c.09,0,.19-.11.27,0s-.1.12,0,.21c.19-.14.33-.06.5,0a1.41,1.41,0,0,0,.55.17c.14,0,.19-.06.14-.18a10.42,10.42,0,0,0-.49-1s-.07-.07-.11-.09a3.29,3.29,0,0,1-.54-.38,3.82,3.82,0,0,0-.7-.49.6.6,0,0,0-.58,0c-.07,0-.16.2-.25.06s.07-.18.17-.21.12-.06.07-.13-.29-.15-.42-.2-.11,0-.18.1a.2.2,0,0,1-.24,0,.52.52,0,0,0-.5,0,1.91,1.91,0,0,0-.91.62.19.19,0,0,1-.21.09c-.1-.05,0-.13,0-.21s.05-.23.17-.3a.13.13,0,0,0,0-.16.19.19,0,0,0-.15-.07c-.32.12-.36-.07-.55-.28s-.27-.19-.15-.4a.22.22,0,0,0-.22.14c0,.08-.08.13-.16.14a.32.32,0,0,0-.26.25c0,.19-.18.24-.26.4a.17.17,0,0,1-.2.07c-.07,0-.07-.09-.08-.15a1.06,1.06,0,0,1,.16-.93c-.13,0-.25.06-.37,0s.11-.1.06-.19-.22.12-.32,0a.31.31,0,0,1,0-.4s.07-.08,0-.13-.11-.1-.19-.06a.24.24,0,0,1-.27,0c-.2-.15-.44-.14-.62-.33,0,0-.08,0-.11,0C726.32,551,726.19,550.87,726.13,550.63Zm8.27,1.4c.21-.7.38-1.45.55-2.17,0-.18-.13-.29-.08-.47,0,0-.11,0-.15,0s-.2-.1-.19-.21.13-.08.21-.06.13,0,.12-.1,0-.1.07-.09c.24.12.23-.09.24-.2a8.22,8.22,0,0,0,0-1.57c0-.19-.09-.35.05-.52s0-.11,0-.14-.06,0-.08.08-.16.08-.26.06a.21.21,0,0,1-.18-.17c-.1-.3-.23-.42-.54-.35-.08,0-.19.09-.23,0s.11-.12.18-.18c-.11,0-.23.06-.33,0s-.08,0-.09.07a2.16,2.16,0,0,1,0,.27c-.05.14-.09.18-.26.14-.33-.07-.51-.34-.77-.54-.06-.05-.11-.11-.18-.06s0,.12,0,.19a2.09,2.09,0,0,0,0,.25c0,.35.09.39.41.25.07,0,.17-.08.21,0s-.09.16-.12.26l0,0c.09,0,.25-.06.3.06s-.12.13-.16.25-.14.14,0,.24,0,.09-.06.1-.14.25-.26.37,0,.08.06.09.12,0,.13-.07a.71.71,0,0,1,.15-.3c0-.05.07-.14.14-.11a.16.16,0,0,1,.06.2,3.39,3.39,0,0,0-.13.55c0,.07-.06.18-.14.16s0-.15,0-.24c-.15.19-.28.05-.45,0,.15.28-.08.52-.06.79a7.62,7.62,0,0,0,.39,1.79,8,8,0,0,0,.64,1.58c.11.21.27.28.48.14,0,0,.07,0,.09,0a.07.07,0,0,1,0,.09c-.3.34-.05.47.19.75A8.15,8.15,0,0,1,734.4,552Zm.81-6.62a.41.41,0,0,0-.3-.39c-.08,0-.11-.09-.17-.14s-.21-.08-.28,0,0,.15.08.21a.87.87,0,0,1,.14.12c.15.17.16.24,0,.35s-.14.15,0,.24.38.27.56.4C735.18,546,735.21,545.67,735.21,545.41Zm-4.71,1.13c.12.05.15,0,.13-.14s-.09-.26-.12-.38-.18-.08-.29-.06-.13-.13-.25-.14A.88.88,0,0,0,730.5,546.54Zm.39-.68c.09.25.21.52.33.78.21-.46,0-.7-.2-1.11C730.89,545.62,730.83,545.69,730.89,545.86Z" transform="translate(-724.4 -538.83)" /></svg> <svg class="tree-2" data-name="Layer 4" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 17.59 23.29"><title>Tree1</title><path class="cls-1" d="M726.13,550.63c0-.11-.07-.18,0-.27a2.55,2.55,0,0,1,.4-.32c.08,0,.22-.13.29,0s0,.19-.1.26-.1.15,0,.19.13.1.05.21-.1.08-.06.16.19,0,.23-.07.07-.19.19-.19.16.09.22.19a.51.51,0,0,0,.52.32c.14,0,.21,0,.15-.22s-.06-.22,0-.3c.12.14.13.33.3.42s.15.15.26.07a2.52,2.52,0,0,1,1-.41c0,.13,0,.26.17.19.05,0,.06,0,.06.07,0,.27.23.27.46.23-.15,0-.26-.07-.12-.2a3.08,3.08,0,0,0,.33-.3.15.15,0,0,1,.18,0,.14.14,0,0,1,.06.17c0,.08-.09.15.06.16s.23,0,.3-.09.16-.22.34-.17l.06,0c.1,0,.22-.19.24,0s-.24.38-.39.41a1.37,1.37,0,0,1,.64.1c-.08-.11-.18-.19-.12-.33s.13,0,.22,0a4.92,4.92,0,0,0-.49-1.55,1.24,1.24,0,0,0-.51-.45.26.26,0,0,0-.24,0c-.13.09-.21.1-.27-.06s-.05-.07-.1-.05l-.08.08s0,.07.07.08a.11.11,0,0,1,.07,0c.05.11.24,0,.19.18s-.19.15-.3.19a.89.89,0,0,1-.64-.13c-.09,0,0-.09,0-.13s.19-.11.13-.23-.14-.09-.26-.07a.58.58,0,0,0-.31.11.17.17,0,0,1-.14,0c-.27-.16-.38,0-.57.16s-.18.22-.33.28a.39.39,0,0,0-.53.18c0,.07-.06.13-.15.09s-.14-.09-.1-.21a.9.9,0,0,1,.22-.34c-.25-.08-.12-.16-.07-.38s.2-.13.28,0,.06,0,.08,0,.17-.17.2-.3-.18,0-.27,0a.55.55,0,0,1-.5-.1c-.08-.09-.11-.08-.19,0s-.15.15-.23.06,0-.18.06-.27a.28.28,0,0,1,.22-.13,1.12,1.12,0,0,0,.35-.12c-.21-.12-.37-.24-.36-.49s.06-.29,0-.44h.17a7.9,7.9,0,0,0,.8.14.2.2,0,0,0,.2-.1c.09-.15.21-.25.38-.17s.18,0,.25-.09.2-.31.38-.11a.17.17,0,0,0,.22.06c-.15-.23.08-.61-.36-.42a.14.14,0,0,1-.15-.15c.07-.11.2-.14.27-.26-.24,0-.31-.2-.38-.41s-.13-.22-.19-.17-.3,0-.49,0-.23,0-.15-.22.05-.17,0-.2-.33-.25-.45-.43,0-.11-.1-.06-.22,0-.35-.08c0,.11.12.15.2.22s.31.26.3.52c0,.06,0,.14-.06.15a.2.2,0,0,1-.18-.15.48.48,0,0,1,0-.17c0-.09,0-.16-.13-.21l-.73-.31c-.22-.09-.38-.11-.4.18a.22.22,0,0,1-.05.08.14.14,0,0,1-.17,0c-.06,0,0-.1,0-.14s0-.09,0-.13a1.73,1.73,0,0,0-.25-.41c-.08.08,0,.26-.11.33s-.26,0-.41,0-.21-.07-.18-.24.2-.34.45-.21l-.07-.08a1,1,0,0,0-.75.13c-.19.09-.25.09-.28-.14s-.19-.35.07-.44c0,0,0,0,0-.06s0-.19.15-.23.16,0,.16-.09-.09-.11-.14-.15-.13,0-.2,0-.12-.09-.14-.16,0-.15.07-.13a1,1,0,0,1,.49.27c.11.13.15.16.28.06s.36-.11.42,0,0,.14.16.17a.13.13,0,0,1,.08.11c0,.21.2.29.33.44,0-.13,0-.27,0-.4s0-.08,0-.1.36.13.39.19c.13.23.14.23.32.06a.44.44,0,0,0,.08-.11c0-.06.1-.13.2-.1s.07.08.08.12-.06.09-.11.16c.19.36.39.12.67.11s.06-.17.16-.26a.91.91,0,0,0-.44.09s-.12,0-.11,0,0-.12-.09-.19-.14-.13,0-.2.07-.19.07-.29,0-.07-.1,0-.15,0-.19-.1-.09,0-.13,0a.8.8,0,0,1-.4.17.16.16,0,0,1-.17,0,.11.11,0,0,1,0-.13.14.14,0,0,1,.18,0,.12.12,0,0,0,.21,0,.2.2,0,0,0,0-.24.18.18,0,0,0-.24,0,1.16,1.16,0,0,0-.2.18c-.06-.25,0-.34.28-.38-.13-.06-.25-.12-.18-.27a.08.08,0,0,0,0-.11c-.1-.06-.32-.09-.28,0,.11.28-.23,0-.16.22,0,0,0,0,0,.07s0,.21-.09.22a.47.47,0,0,1-.4-.15c-.08-.12.11-.11.15-.19-.15-.14-.27-.22-.09-.41a.05.05,0,0,0,0-.09c-.14-.1,0-.16,0-.22s.23-.07.3,0a.49.49,0,0,0,.25.24.1.1,0,0,0,.13,0c0-.05,0-.09,0-.12a.43.43,0,0,1-.16-.14s-.1-.1,0-.16.12,0,.17.05.06.1.13.07.06-.11.07-.17,0-.09,0-.13a1.13,1.13,0,0,1-.1-.57.84.84,0,0,1,.35.29c.06.13.36.21.4.12s.12-.12.27-.1.2,0,.17-.11-.3-.47-.16-.79c0,0,0-.08-.06-.12a.29.29,0,0,1-.06-.21c.22,0,.31.25.53.11.16.13.36.12.53.24s.21.1.28-.09,0-.24.21-.22.22.07.19.23a.19.19,0,0,0,.14.22c.11,0,.16-.09.22-.17a.42.42,0,0,1,.36-.24,2.09,2.09,0,0,0,.66-.19c.15,0,.33-.17.42,0s-.14.25-.23.31l-.07,0c-.15.08-.13.17-.07.3a3.68,3.68,0,0,1,.3-.39,1.79,1.79,0,0,1,.68-.36c.05,0,.11-.08.16,0a.14.14,0,0,1,0,.17c-.2.14-.2.34-.31.53a1,1,0,0,0,.44-.27c.21-.24.27-.27.49,0,0,0,.06.09.12.07l0-.08c0-.12,0-.18.14-.22s.13,0,.18.08.16.12.28,0,.2-.16.28,0,0,0,.08,0c.21,0,.2,0,.15.19s0,.35.26.42c-.11-.14,0-.24.09-.29s.15.08.21.16.05.16.12.25.13.25.27.13.21-.07.31.06a.24.24,0,0,0,0-.08.3.3,0,0,1-.08-.34s.05-.06.09,0a.31.31,0,0,1,.13.3c0,.06,0,.16.08.13s.3,0,.44-.12a.26.26,0,0,1,.35,0,.29.29,0,0,1,.07.35,1.55,1.55,0,0,0,0,.31c.13,0,.29.11.42,0s.22-.26.4,0c.24-.06.29.14.44.28s.12.14.21,0a.19.19,0,0,1,.18,0,.1.1,0,0,1,0,.14c-.12.15-.05.29,0,.45a.56.56,0,0,1,0,.34l.4.1c.05,0,.11,0,.14,0s0-.08,0-.12,0-.13,0-.17.13-.05.18,0,.18.24.14.41a2.1,2.1,0,0,0,.68-.51c.08-.08.21-.13.26.06s.08.14.17,0a.11.11,0,0,1,.18,0c.05.07,0,.11-.08.15-.21.17-.3.43-.51.61.27-.08.4,0,.49.24a1.23,1.23,0,0,1,0,.19c0,.06,0,.09.08.08.28,0,.36.06.35.36s.09.38.35.39a.25.25,0,0,1-.07-.37.55.55,0,0,1,.43-.24c.08,0,.16-.1.22,0a.25.25,0,0,1,0,.25c-.08.2-.23.33-.09.56,0,0,0,.11-.08.15s-.31.21-.49,0a.26.26,0,0,1-.15.25.08.08,0,0,0,0,.06c0,.16-.06.15-.2.14l-.54-.06a.21.21,0,0,0,.1.06c.06,0,.11.06.12.13s-.09.08-.14.1-.09.13-.06.23,0,.13,0,.18-.12,0-.16-.06l-.1-.1c-.15-.13-.24-.19,0-.36,0,0,0-.07,0-.1a.06.06,0,0,0-.1,0c-.06.11-.15.08-.2,0s-.17-.09-.23,0a.2.2,0,0,0,0,.27c0,.05.12.18,0,.2-.24.07-.38.23-.59,0,0,.19-.07.3.17.26a.16.16,0,0,1,.19.13c0,.09,0,.19-.07.24s-.12-.07-.18-.13-.26-.12-.39-.19-.12.11-.15.16-.11.14-.19.11-.06-.13,0-.2.06-.22.08-.33,0-.15-.07-.19-.07.06-.11.09a.74.74,0,0,1-.72.18c-.06,0-.13,0-.1-.12s0-.13,0-.15-.1,0-.13.1a2,2,0,0,0-.19,1.15.9.9,0,0,0,.61.91c.18.08.37.27.49,0l0,0c.23-.05.23-.18.16-.38s-.05-.08,0-.13a.11.11,0,0,1,.15,0,1,1,0,0,1,.16.12c.08.1.12.11.25.06s.34.13.34.24.16.22.31.25.22-.07.21-.21,0-.13.08-.18a.14.14,0,0,1,.14,0,.18.18,0,0,1,0,.18.46.46,0,0,1,0,.14c-.07.1-.05.14.06.19a1.94,1.94,0,0,0,.68.11.16.16,0,0,1-.09-.25c0-.11,0-.15,0-.21s-.18-.06-.08-.16.15,0,.23,0a1.08,1.08,0,0,1,.29.51c.1-.25.19-.41.48-.34a.07.07,0,0,0,.09-.06.06.06,0,0,0-.06-.06c-.07,0-.22,0-.21-.08a.32.32,0,0,1,.17-.25.44.44,0,0,0,.11-.09c.1.32.33.51.25.86.08-.11.12-.22.28-.14s.23.16.06.28c0,0,0,.05,0,.07,0,.25,0,.29-.3.22a1.38,1.38,0,0,1-.48-.33c0,.19.14.29.2.46h-.11c-.11,0-.18-.08-.28-.1s-.29-.09-.42,0-.47.38-.7.64-.28.16-.37-.06a.18.18,0,0,0-.15-.1c-.05,0-.12,0-.11-.07s0-.14-.11-.15-.35-.1-.47.05-.28.21-.41.36a.13.13,0,0,1-.17,0,.14.14,0,0,1,0-.18A.22.22,0,0,0,737,548c-.17-.05-.17.09-.2.21s-.1.25-.24.13a.09.09,0,0,0-.13,0,1.12,1.12,0,0,0-.45.7.53.53,0,0,0,.38.58c.15.06.46.24.63.32,0-.14-.09-.2.16-.16a2,2,0,0,1,.77.28.66.66,0,0,0,.41.12,3.21,3.21,0,0,1,1,.13c.29.06.53.17.79,0a.09.09,0,0,1,.1,0l.54.32a.44.44,0,0,0,.63,0c.07-.07.12-.09.2-.06a.73.73,0,0,1,.42.29c0,.09-.08.1-.14.13s-.08.06-.05.13.07.08,0,.14a.64.64,0,0,1-.74.14c-.14-.06-.2-.07-.32,0s-.12.13-.22.06a.16.16,0,0,1,0-.27c-.13,0-.21.17-.33.13a.83.83,0,0,0-.83.17,2.35,2.35,0,0,1-.59.3c-.12,0-.25,0-.18-.14s-.05-.24-.17-.3-.19,0-.28.05a.24.24,0,0,1-.24,0,.11.11,0,0,1-.07-.16c0-.13-.07-.18-.18-.25a3.8,3.8,0,0,0-.76-.27c-.1,0-.15,0-.2.09a.73.73,0,0,1-.67.25.53.53,0,0,0-.43.17.89.89,0,0,0-.22.37,10.18,10.18,0,0,0-.52,1.87,1.57,1.57,0,0,0,.16.87c.29.66.55,1.34.79,2a11.9,11.9,0,0,1,.68,2.75,16,16,0,0,0,.23,1.86.85.85,0,0,1-.7,1.12,1.17,1.17,0,0,1-.74-.08.54.54,0,0,1-.37-.69,10.74,10.74,0,0,0,.37-2.88,1.74,1.74,0,0,0-.59-1.37,1.9,1.9,0,0,1-.33-.31,1.8,1.8,0,0,0-1.22-.59l-.4-.09a.62.62,0,0,0-.59,0s-.12.06-.15,0c-.2-.27-.36-.24-.59,0a.73.73,0,0,0-.69,0c-.06,0-.19-.1-.29-.14a1.06,1.06,0,0,0-.89,0,.42.42,0,0,1-.5-.13c0-.08-.08-.15-.17-.18-.1.17,0,.22.13.3-.11.08-.19.15-.17.31a.19.19,0,0,1-.13.23c-.1,0-.16-.06-.19-.13s-.1-.15-.22-.15a.91.91,0,0,1-.36-.09s-.14,0-.15-.08.07-.11.11-.12.12-.21.09-.27-.15,0-.24,0-.14.11-.16,0-.14-.17-.3-.18-.18,0-.25-.05c.08-.09.19-.11.2-.24s-.22.07-.19-.1.13-.14.25-.12.21,0,.18.13,0,.11,0,.11.08,0,.1-.09a.62.62,0,0,0,0-.27c0-.1-.08-.21,0-.29s0-.23.16-.3.12.12.21.13c.26,0,.27.14.29.35a.11.11,0,0,0,.06.1s0,0,0,0a1.32,1.32,0,0,1,.37-.48c.08-.08.15-.17.26-.12s.11.19.07.29,0,.49,0,.73,0,.13.11.14.13,0,.15-.12a.3.3,0,0,0-.09-.31c-.05,0-.11-.15,0-.17s.22-.24.3-.4.1-.13.2-.09a.69.69,0,0,1,.37.43s0,.1.09.1.1-.06.12-.12.11-.37.16-.55a.31.31,0,0,1,.14-.22c.11,0,.12,0,.16.11s.07.07.1.07c.26,0,.26.13.27.3s.38.21.34.51h.14a2,2,0,0,0,.26-.09c.08,0,.14-.1.2,0s0,.13-.09.17a.44.44,0,0,0-.21.33c0,.23.11.33.34.33a6.47,6.47,0,0,0,1.06-.16c.09,0,.19-.11.27,0s-.1.12,0,.21c.19-.14.33-.06.5,0a1.41,1.41,0,0,0,.55.17c.14,0,.19-.06.14-.18a10.42,10.42,0,0,0-.49-1s-.07-.07-.11-.09a3.29,3.29,0,0,1-.54-.38,3.82,3.82,0,0,0-.7-.49.6.6,0,0,0-.58,0c-.07,0-.16.2-.25.06s.07-.18.17-.21.12-.06.07-.13-.29-.15-.42-.2-.11,0-.18.1a.2.2,0,0,1-.24,0,.52.52,0,0,0-.5,0,1.91,1.91,0,0,0-.91.62.19.19,0,0,1-.21.09c-.1-.05,0-.13,0-.21s.05-.23.17-.3a.13.13,0,0,0,0-.16.19.19,0,0,0-.15-.07c-.32.12-.36-.07-.55-.28s-.27-.19-.15-.4a.22.22,0,0,0-.22.14c0,.08-.08.13-.16.14a.32.32,0,0,0-.26.25c0,.19-.18.24-.26.4a.17.17,0,0,1-.2.07c-.07,0-.07-.09-.08-.15a1.06,1.06,0,0,1,.16-.93c-.13,0-.25.06-.37,0s.11-.1.06-.19-.22.12-.32,0a.31.31,0,0,1,0-.4s.07-.08,0-.13-.11-.1-.19-.06a.24.24,0,0,1-.27,0c-.2-.15-.44-.14-.62-.33,0,0-.08,0-.11,0C726.32,551,726.19,550.87,726.13,550.63Zm8.27,1.4c.21-.7.38-1.45.55-2.17,0-.18-.13-.29-.08-.47,0,0-.11,0-.15,0s-.2-.1-.19-.21.13-.08.21-.06.13,0,.12-.1,0-.1.07-.09c.24.12.23-.09.24-.2a8.22,8.22,0,0,0,0-1.57c0-.19-.09-.35.05-.52s0-.11,0-.14-.06,0-.08.08-.16.08-.26.06a.21.21,0,0,1-.18-.17c-.1-.3-.23-.42-.54-.35-.08,0-.19.09-.23,0s.11-.12.18-.18c-.11,0-.23.06-.33,0s-.08,0-.09.07a2.16,2.16,0,0,1,0,.27c-.05.14-.09.18-.26.14-.33-.07-.51-.34-.77-.54-.06-.05-.11-.11-.18-.06s0,.12,0,.19a2.09,2.09,0,0,0,0,.25c0,.35.09.39.41.25.07,0,.17-.08.21,0s-.09.16-.12.26l0,0c.09,0,.25-.06.3.06s-.12.13-.16.25-.14.14,0,.24,0,.09-.06.1-.14.25-.26.37,0,.08.06.09.12,0,.13-.07a.71.71,0,0,1,.15-.3c0-.05.07-.14.14-.11a.16.16,0,0,1,.06.2,3.39,3.39,0,0,0-.13.55c0,.07-.06.18-.14.16s0-.15,0-.24c-.15.19-.28.05-.45,0,.15.28-.08.52-.06.79a7.62,7.62,0,0,0,.39,1.79,8,8,0,0,0,.64,1.58c.11.21.27.28.48.14,0,0,.07,0,.09,0a.07.07,0,0,1,0,.09c-.3.34-.05.47.19.75A8.15,8.15,0,0,1,734.4,552Zm.81-6.62a.41.41,0,0,0-.3-.39c-.08,0-.11-.09-.17-.14s-.21-.08-.28,0,0,.15.08.21a.87.87,0,0,1,.14.12c.15.17.16.24,0,.35s-.14.15,0,.24.38.27.56.4C735.18,546,735.21,545.67,735.21,545.41Zm-4.71,1.13c.12.05.15,0,.13-.14s-.09-.26-.12-.38-.18-.08-.29-.06-.13-.13-.25-.14A.88.88,0,0,0,730.5,546.54Zm.39-.68c.09.25.21.52.33.78.21-.46,0-.7-.2-1.11C730.89,545.62,730.83,545.69,730.89,545.86Z" transform="translate(-724.4 -538.83)" /></svg> <svg class="tree-3" data-name="Layer 5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 52.6 70.47"><title>Tree-2</title><path class="cls-1" d="M796.8,417.16c-.28.29.1,1-.27,1a2.08,2.08,0,0,1-1.61-1c-.29.06-.28.2-.27.36.07,1.52.06,1.57-1.39,1.36-.58-.08-.64.1-.64.54v1.27c.89-1.41,1.64-.12,2.46-.1.13-.35-.29-1.4.78-.64.41.29.69,0,.64-.38-.08-.71.32-.72.82-.69h0c-.35.86.48,1.16.81,1.7a.73.73,0,0,0,.85.4c.38-.11.78-.45.68-.78-.14-.5.15-.47.4-.58s.76-.19.9-.43c.39-.66.68-1.15,1.43-.36.23.24.29-.14.43-.29.69-.69,1.42-1.34,2.1-2,.49.23-.34.79.4.89s.51.39.15.8-.05,1.51.49,1.44c.95-.11,1,.37.69,1.14,1.19-.7,2.44-.87,3.49-1.45.5-.28.56.68,1,.16.21-.25.57-.69.9-.25s-.29.51-.48.76-.65.4-.38.81.2.8.75.68.66.32.69.66c0,.68-.35,1.61,1,1.33.12,0,.4.34.48.58.29.83-.3,1.25-.92,1.61.48.63,1,.29,1.47.19a.64.64,0,0,1,.77.33c.15.42-.23.49-.52.55a1.09,1.09,0,0,0-.87,1.42,5.71,5.71,0,0,1,0,1.37,2.67,2.67,0,0,0,.41-.05,2.34,2.34,0,0,1,2.46.78c.41,1-.9.68-1,1.29,0,0-.05,0-.08.07-.92.72-1.27.64-1.67-.43a.54.54,0,0,0-.59-.4c-.13,0-.38,0-.25.21.51.88-.29.74-.66.81-.56.11-.91.4-.54.87a1.21,1.21,0,0,0,1.3.47c.7-.24,1.37-.46,1.83.41,0,.09.43.12.51,0,.66-.66,1.62-.43,2.35-.83.28-.16.49-.16.67.1s.29.51,0,.69c-.76.43-.19.55.12.88.66.73,1.83,1.28,1.54,2.47s.81,1.67.56,2.63c-.06.2.19.17.32.14s.47-.14.55.17-.14.41-.3.57-.72.33-.92.74c.73.36,1.07-.36,1.6-.42.27,0,.53-.12.7.16a.39.39,0,0,1-.11.6c-.46.21-.41.39-.08.7s.05.58-.22.71c-.63.3-1.1.91-2,.88.86.63,1,1.73.22,2.2a4.93,4.93,0,0,0-2.25,2.68c1.46-1.1,1.36,1.07,2.43.89,0-.72.49-1.1,1.16-1.35.24-.09.49-.33.67,0s0,.5-.26.67-.46.07-.59.42c.69.44.67.86,0,1.45a3.55,3.55,0,0,0-1.24,1.87c-.11.48-.63.64-1.07.71s-.24-.51-.46-.7c-.79.53-1.35,1.44-1,2s.75,1.14,1.59.85c.32-.11.48.24.31.35-.88.59-.73,1.89-1.76,2.4.4.29.9.51.66,1.25a1.6,1.6,0,0,0-2-.13c-.34.15-.83.41-1.17.09-.63-.61-.85-.46-1,.33s-.6,1.1-1.49.63-2-.57-2.8-1.32c-.28-.26-.73-.13-1.06.08a4.76,4.76,0,0,0-1.09.77c-1.79,2-4.48,3.24-5,6.31-.2,1.24-.94,2.4-.75,3.71.33,2.25.65,4.51,1.08,6.74.31,1.57-.48,2.68-1.91,2.48a1.75,1.75,0,0,1-1.44-2.52,11,11,0,0,0,.2-5.11c-.08-.59.08-1.25-.37-1.73a21.07,21.07,0,0,0-5.07-4.58c-.36-.2-.57-.44-1,.15a16.08,16.08,0,0,1-1.33,1.44c-.22.21-.47.45-.78.19s-.32-.5,0-.72.12-.39-.08-.48a6.12,6.12,0,0,0-1.5-.58c-1.1-.18-1.24-.35-.67-1.25.14-.22.14-.58-.07-.45-.85.49-1.38-.21-2-.43-.42-.15-1.31-.14-.65-1,.19-.27-.13-.28-.26-.36a4,4,0,0,0-1.19-.57c-.71-.18-.93-.94-1-1.5s.76-.08,1-.5a1.36,1.36,0,0,0-1.76-.57c-.24.09-.54.15-.68-.17s0-.5.25-.66l.3-.26c.05-.18.17-.38.13-.53-.3-1.15-2.65-2.89-3.87-2.94-.49,0-1.1.28-1.44-.31s-.65-.45-1.06-.42c-1.26.1-2.58,0-3.63,1-.26-.71.54-.94.33-1.49-.53,0-.63.36-.73.72s-.47.37-.81.33-.62-.22-.44-.48c.62-.87-.29-1.06-.64-1.3a4.52,4.52,0,0,1-1-1.27.43.43,0,0,1,0-.4.27.27,0,0,1,.4-.05,1.72,1.72,0,0,0,1.58.2c1-.37,1.13.33,1.63,1.19a1.57,1.57,0,0,1,.55-1.8,1.82,1.82,0,0,0,.72-1.44c0-1.32-.69-.75-1.06-.65-1.43.38-1.43.41-1.35-1-.32-.2-.79.52-.94,0-.1-.31.23-.75.37-1.13.26-.67.69.05,1.11-.13-.21-.34-.71-1,.12-.87s.49-.31.42-.53c-.18-.54-.45-1.06-.73-1.68a4.77,4.77,0,0,1-.26.6c-.15.21-.33.5-.62.37s-.06-.45,0-.66a1.21,1.21,0,0,0-.35-1.32,1.36,1.36,0,0,1,.63-2.24,2.48,2.48,0,0,1,.86-.22c.51,0,.63-.25.32-.61-.5-.6-.29-.71.37-.8.33-.05.17-1.05.79-.76s.72,0,1-.48c.45-.76-.34-.42-.48-.64s-.41-.3-.32-.53c.17-.41.42-.07.64,0s.27.15.4,0c0-.52-.65-.83-.42-1.45.72.41,1.74-.38,2.29.63a.86.86,0,0,0,.27-.14c.16-.19,0-.23-.14-.31-.58-.37-.19-.8,0-1.16s.5-.43.46-.74c-.16-1.11.56-1,1.25-.94.44.06.77,0,.42-.47s.33-.59.25-1c-1,0-1.63-.71-2.44-1.14a2,2,0,0,1-1-2.18c.36-.86.81.44,1.3,0,.11-.09.55.17.62.09.66-.83,1.27-.12,1.84.08s.81.2,1-.37a.6.6,0,0,1,.76-.32c.69.24.74-.57,1.19-.73a1.1,1.1,0,0,1-.44-1.39c-1.34.33-.58-.8-.76-1.15a20.7,20.7,0,0,0-3.64-.33c.48-.46.72-1.38,1.41-1.14s1.18-.25,1.85-.46c-.47-.26-1.31.41-1.14-.32s-.24-.88-.66-1.21-.3-.9-.7-1.26c-.15-.13.14-.39.4-.35s.58.14.87.22c.77.23,1.14-.87,1.93-.59.11-.46-.18-.77-.4-1.12s-.31-.48,0-.69.44.05.61.27c.33.42.62.5.59-.19,0-.24.06-.31.26-.4.65-.29.34-.63,0-.92s-.57-.36-.83-.57a.59.59,0,0,1-.29-.67c.09-.26.31-.25.55-.29.52-.06,1-.19,1.66-.31-.35-.18-.86-.23-.4-.61.66-.55,1.32-1.09,1.94-1.69.28-.27.64,0,.9.19-.06.17-.2.38,0,.5s.76,0,.56.58a1,1,0,0,1-.71.78,2.91,2.91,0,0,0-1.17,2,.35.35,0,0,0,.22.21c.31.09,1.38-.84,1.35-1.21s-.17-.86.51-.83,1,.1.65,1.07c.54-.79,1.67-1,1.41-1.55a2.82,2.82,0,0,0-2.42-1.55l-.37-.42c-.19-.22-.55-.4-.23-.74s.5,0,.78.09a13.21,13.21,0,0,1,1.6.91c.49.34,1.07.86,1.57.82a8.3,8.3,0,0,1,3.73.66c.25.09.7-.11.69.35s-.53.29-.72.48c.48,1,1.47.61,2.23.8.28.08.38-.24.33-.63-.15-1.23.2-1.56,1.62-1.52-.09.16-.27.23-.4.35s-.67.2-.59.58.48.18.76.22c.5.07.61.44.4.83a4.62,4.62,0,0,1-.47,1c-.51.51-1.62,1-1.89.7-.61-.72-.89,0-1.3,0a2.55,2.55,0,0,1,1.14,2.49Zm-6.46,29.63c-.14-.06-.29-.2-.41-.18-1,.2-2,.53-2.49-.89a7,7,0,0,0-1.53.33c-.42.13-.9.28-1.08-.17s-.73-.84,0-1.32c.49-.31-.1-1.15.51-1.52-.37,0-.25-.59-.74-.56-1.17.09-1.69.9-1.15,1.94a61.06,61.06,0,0,0,4.69,7.39,1.74,1.74,0,0,0,1.61.64c.69-.39,1.41,0,2-.31s1.09-.21,1.32.73a8.27,8.27,0,0,0,.68-3.24c.06-.35-.26-.51-.6-.51a3.51,3.51,0,0,0-1.33.1,1.26,1.26,0,0,1-1,0,1.24,1.24,0,0,1-.86-.83c-.17-.75.81-.51,1-1,.73-.78.72-.81-.18-1h0ZM815.06,451c.14-.36.07-.82.45-1.1s.83-.52.08-.92c-.15-.08-.1-.42.07-.6s.41-.07.59.07l.68.56c.49-.66.49-.66.29-2-.31-.06-.36.19-.47.38-.47.83-1.21.76-1.62.15-.61-.91-1.18-.71-1.87-.28-.44.27-.87.57-1.31.85a4.86,4.86,0,0,0-1.84,2.48c-.13.37-.39.88-.08,1.15a1.39,1.39,0,0,0,1.29,0c.5-.18.91-.93,1.5-.13,0,0,.23-.13.35-.19-.09-.15-.17-.4-.29-.43-1-.19-2-.34-.55-1.44.14-.11.15-.25-.06-.32-.67-.21-.29-.73-.32-1.13A6.92,6.92,0,0,1,815.06,451Zm-8-1.21c-.53.6-.65,1.73-2,1.07-.46-.23-1,.76-.76,1.52.12.37.36.79-.09,1-.89.34-.57.83-.33,1.41s.75,1.14-.35,1.41c-.35.08-.26.59-.23.91.13,1.15.29,2.29.47,3.64a23.39,23.39,0,0,0,1.81-3.11c.08-.13.15-.33,0-.4-1.4-.61.12-1.07.17-1.08.91,0,1.13-.78,1.49-1.36a13.06,13.06,0,0,0,1.67-3.78c0-.18.12-.38-.08-.5s-.3-.1-.35.11c-.22.8-.78,1-1.34.49s.35-.74.42-1.17c.49.12.91-.26,1.43-.14s.28-.35.32-.57c.1-.53.48-1.33-.05-1.56-1-.46-2.11-1.39-3.39-.59-.3.18-1.36.29-.19.86.25.13.11.37-.1.53s-.56.58-.3.93.67.26,1,.17.73-.64,1,.12A.76.76,0,0,0,807,449.83Zm-5,8c-.27-1.49-1.36-1.95-2.75-1.32-.84.38-1.14-.6-1.66-1-.18-.13-.11-.81-.3-1.25s.39-.37.67-.25.73.16.69-.32a2,2,0,0,1,.75-1.66c.48-.5,0-1.63-.76-1.95a3.92,3.92,0,0,1-.89-.45c-1-.76-1.67-.53-1.86.71a6.77,6.77,0,0,0,0,2.29,12,12,0,0,1,.21,3,12.23,12.23,0,0,0,.66,3.86,23.32,23.32,0,0,0,3.71,7.71c.15.2.23.53.56.44s.24-.35.31-.56a21.83,21.83,0,0,0.........完整代码请登录后点击上方下载按钮下载查看
网友评论0