A community based topic aggregation platform built on atproto

feat(web): redesign landing page to match brand aesthetic

Reworked landing page with warm coral/teal color palette extracted
from brand SVGs. Switched to Shrikhand + Nunito fonts for a playful,
friendly feel. Added floating bubble decorations, subtle ocean
gradient, and improved mascot animation.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

Bretton 09e9331d e75d8f52

+364 -172
+194 -172
internal/web/templates/landing.html
··· 20 20 <!-- Favicon --> 21 21 <link rel="icon" type="image/png" href="/static/images/lil_dude.png"> 22 22 23 - <!-- Fonts: Fraunces for display (warm, quirky serifs), Plus Jakarta Sans for body --> 23 + <!-- Fonts: Shrikhand for playful display, Nunito for friendly body text --> 24 24 <link rel="preconnect" href="https://fonts.googleapis.com"> 25 25 <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> 26 - <link href="https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,400&family=Plus+Jakarta+Sans:wght@400;500;600&display=swap" rel="stylesheet"> 26 + <link href="https://fonts.googleapis.com/css2?family=Shrikhand&family=Nunito:wght@400;500;600;700&display=swap" rel="stylesheet"> 27 27 28 28 <style> 29 29 :root { 30 - --color-deep: #080B10; 31 - --color-surface: #0E1218; 32 - --color-elevated: #161B24; 33 - --color-border: #252D3A; 34 - --color-text: #E8ECF2; 35 - --color-text-muted: #8A96A8; 36 - --color-accent: #FF6B35; 37 - --color-accent-glow: rgba(255, 107, 53, 0.15); 38 - --color-warm: #FF8F66; 39 - --color-coral: #E85A4F; 40 - --font-display: 'Fraunces', Georgia, serif; 41 - --font-body: 'Plus Jakarta Sans', system-ui, sans-serif; 30 + /* Brand colors from the SVGs */ 31 + --color-coral: #F08C59; 32 + --color-coral-light: #FFB468; 33 + --color-coral-dark: #DF7E40; 34 + --color-teal: #63B5B1; 35 + --color-teal-dark: #4A9994; 36 + --color-deep: #1B2A2E; 37 + --color-sand: #FFF8F0; 38 + --color-sand-warm: #FFEFE0; 39 + --color-cream: #FFFCF7; 40 + --color-text: #1B2A2E; 41 + --color-text-muted: #5A6B70; 42 + --color-red-accent: #EC7558; 43 + 44 + --font-display: 'Shrikhand', cursive; 45 + --font-body: 'Nunito', system-ui, sans-serif; 42 46 } 43 47 44 48 * { ··· 53 57 54 58 body { 55 59 font-family: var(--font-body); 56 - background: var(--color-deep); 60 + background: var(--color-sand); 57 61 color: var(--color-text); 58 62 min-height: 100vh; 59 63 display: flex; ··· 62 66 position: relative; 63 67 } 64 68 65 - /* Animated gradient background */ 69 + /* Wavy ocean background at bottom */ 66 70 body::before { 67 71 content: ''; 68 72 position: fixed; 69 - top: 0; 73 + bottom: 0; 70 74 left: 0; 71 75 right: 0; 72 - bottom: 0; 73 - background: 74 - radial-gradient(ellipse 80% 60% at 10% 20%, rgba(255, 107, 53, 0.08) 0%, transparent 50%), 75 - radial-gradient(ellipse 60% 80% at 90% 80%, rgba(232, 90, 79, 0.06) 0%, transparent 50%), 76 - radial-gradient(ellipse 100% 100% at 50% 100%, rgba(255, 143, 102, 0.04) 0%, transparent 40%); 76 + height: 40vh; 77 + background: linear-gradient( 78 + to bottom, 79 + transparent 0%, 80 + rgba(99, 181, 177, 0.08) 30%, 81 + rgba(99, 181, 177, 0.15) 60%, 82 + rgba(99, 181, 177, 0.25) 100% 83 + ); 77 84 pointer-events: none; 78 85 z-index: 0; 79 86 } 80 87 81 - /* Subtle noise texture overlay */ 88 + /* Subtle texture overlay */ 82 89 body::after { 83 90 content: ''; 84 91 position: fixed; ··· 86 93 left: 0; 87 94 right: 0; 88 95 bottom: 0; 89 - background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E"); 90 - opacity: 0.025; 96 + background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E"); 97 + opacity: 0.03; 91 98 pointer-events: none; 92 99 z-index: 1; 93 100 } ··· 99 106 flex-direction: column; 100 107 justify-content: center; 101 108 align-items: center; 102 - padding: 60px 24px 40px; 109 + padding: 60px 24px 80px; 103 110 position: relative; 104 111 z-index: 2; 105 112 } 106 113 107 - /* Floating decorative elements */ 108 - .decor { 114 + /* Floating bubble decorations */ 115 + .bubble { 109 116 position: absolute; 110 117 border-radius: 50%; 111 - filter: blur(60px); 112 - opacity: 0.4; 113 - animation: drift 20s ease-in-out infinite; 118 + background: linear-gradient(135deg, var(--color-teal) 0%, rgba(99, 181, 177, 0.3) 100%); 119 + opacity: 0.15; 120 + animation: float 8s ease-in-out infinite; 114 121 pointer-events: none; 115 122 } 116 123 117 - .decor-1 { 118 - width: 300px; 119 - height: 300px; 120 - background: var(--color-accent); 121 - top: 10%; 122 - left: -100px; 124 + .bubble-1 { 125 + width: 120px; 126 + height: 120px; 127 + top: 15%; 128 + left: 8%; 123 129 animation-delay: 0s; 124 130 } 125 131 126 - .decor-2 { 127 - width: 200px; 128 - height: 200px; 129 - background: var(--color-coral); 130 - bottom: 20%; 131 - right: -50px; 132 - animation-delay: -7s; 132 + .bubble-2 { 133 + width: 80px; 134 + height: 80px; 135 + top: 60%; 136 + right: 10%; 137 + animation-delay: -2s; 138 + background: linear-gradient(135deg, var(--color-coral) 0%, rgba(240, 140, 89, 0.3) 100%); 139 + } 140 + 141 + .bubble-3 { 142 + width: 60px; 143 + height: 60px; 144 + bottom: 25%; 145 + left: 15%; 146 + animation-delay: -4s; 133 147 } 134 148 135 - @keyframes drift { 136 - 0%, 100% { transform: translate(0, 0) scale(1); } 137 - 33% { transform: translate(30px, -20px) scale(1.05); } 138 - 66% { transform: translate(-20px, 30px) scale(0.95); } 149 + .bubble-4 { 150 + width: 40px; 151 + height: 40px; 152 + top: 30%; 153 + right: 20%; 154 + animation-delay: -1s; 155 + background: linear-gradient(135deg, var(--color-coral-light) 0%, rgba(255, 180, 104, 0.3) 100%); 156 + } 157 + 158 + @keyframes float { 159 + 0%, 100% { transform: translateY(0) scale(1); } 160 + 50% { transform: translateY(-20px) scale(1.05); } 139 161 } 140 162 141 163 /* Hero section */ 142 164 .hero { 143 165 text-align: center; 144 - max-width: 680px; 166 + max-width: 720px; 145 167 position: relative; 146 168 } 147 169 148 - /* Brand lockup: mascot + logo side by side */ 170 + /* Brand lockup: mascot + logo */ 149 171 .brand-lockup { 150 172 display: flex; 151 173 align-items: center; 152 174 justify-content: center; 153 - margin-bottom: 36px; 175 + margin-bottom: 40px; 154 176 position: relative; 155 177 } 156 178 157 - /* Mascot with glow effect */ 179 + /* Mascot with playful hover */ 158 180 .mascot-container { 159 181 position: relative; 160 182 display: flex; 161 183 align-items: center; 162 184 justify-content: center; 163 - margin-right: -20px; /* Overlap into logo space */ 185 + margin-right: -12px; 164 186 z-index: 2; 165 187 } 166 188 167 - .mascot-glow { 168 - position: absolute; 169 - top: 50%; 170 - left: 50%; 171 - width: 140px; 172 - height: 140px; 173 - background: radial-gradient(circle, var(--color-accent-glow) 0%, transparent 70%); 174 - transform: translate(-50%, -50%); 175 - animation: pulse-glow 4s ease-in-out infinite; 176 - } 177 - 178 - @keyframes pulse-glow { 179 - 0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; } 180 - 50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.3; } 181 - } 182 - 183 189 .mascot { 184 - width: 100px; 185 - height: 87px; /* Maintain aspect ratio of 419x366 */ 190 + width: 90px; 191 + height: 83px; 186 192 position: relative; 187 193 z-index: 1; 188 - filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.4)); 194 + filter: drop-shadow(0 8px 16px rgba(27, 42, 46, 0.15)); 195 + transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); 196 + cursor: default; 197 + transform-origin: bottom center; 198 + animation: wave 2.5s ease-in-out infinite; 189 199 } 190 200 191 - .mascot-body { 192 - width: 100%; 193 - height: 100%; 194 - position: absolute; 195 - top: 0; 196 - left: 0; 201 + @keyframes wave { 202 + 0%, 100% { transform: rotate(-3deg); } 203 + 50% { transform: rotate(3deg); } 197 204 } 198 205 199 - .mascot-claw { 200 - width: 100%; 201 - height: 100%; 202 - position: absolute; 203 - top: -4%; 204 - left: 27%; 205 - transform-origin: 35% 75%; /* Pivot at base of claw/shoulder */ 206 - animation: wave 1.5s ease-in-out infinite; 206 + .mascot:hover { 207 + animation: excited 0.5s ease-in-out; 207 208 } 208 209 209 - @keyframes wave { 210 - 0%, 100% { transform: rotate(0deg); } 211 - 50% { transform: rotate(-25deg); } 210 + @keyframes excited { 211 + 0%, 100% { transform: scale(1) rotate(0deg); } 212 + 25% { transform: scale(1.1) rotate(-5deg); } 213 + 50% { transform: scale(1.15) rotate(5deg); } 214 + 75% { transform: scale(1.1) rotate(-3deg); } 212 215 } 213 216 214 217 .logo { 215 - height: 72px; 218 + height: 80px; 216 219 position: relative; 217 220 z-index: 1; 218 221 opacity: 0; ··· 243 246 244 247 .tagline { 245 248 font-family: var(--font-display); 246 - font-size: clamp(1.75rem, 5vw, 2.5rem); 247 - font-weight: 600; 248 - color: var(--color-text); 249 + font-size: clamp(1.75rem, 5vw, 2.75rem); 250 + font-weight: 400; 251 + color: var(--color-deep); 249 252 margin-bottom: 20px; 250 - line-height: 1.2; 251 - letter-spacing: -0.02em; 253 + line-height: 1.3; 254 + letter-spacing: 0.01em; 252 255 opacity: 0; 253 256 animation: fade-up 0.8s ease-out 0.35s forwards; 254 257 } 255 258 256 259 .tagline .highlight { 257 - color: var(--color-accent); 258 - font-style: italic; 260 + color: var(--color-coral); 261 + position: relative; 262 + } 263 + 264 + .tagline .highlight::after { 265 + content: ''; 266 + position: absolute; 267 + bottom: 2px; 268 + left: 0; 269 + right: 0; 270 + height: 6px; 271 + background: var(--color-teal); 272 + opacity: 0.3; 273 + border-radius: 3px; 274 + z-index: -1; 259 275 } 260 276 261 277 .description { 262 - font-size: 1.125rem; 278 + font-size: 1.15rem; 279 + font-weight: 500; 263 280 color: var(--color-text-muted); 264 281 line-height: 1.7; 265 - margin-bottom: 48px; 266 - max-width: 520px; 282 + margin-bottom: 44px; 283 + max-width: 540px; 267 284 margin-left: auto; 268 285 margin-right: auto; 269 286 opacity: 0; 270 287 animation: fade-up 0.8s ease-out 0.5s forwards; 271 288 } 272 289 273 - /* App store buttons */ 290 + /* App store buttons - warm and inviting */ 274 291 .app-buttons { 275 292 display: flex; 276 293 flex-wrap: wrap; 277 294 gap: 16px; 278 295 justify-content: center; 279 - margin-bottom: 48px; 296 + margin-bottom: 44px; 280 297 opacity: 0; 281 298 animation: fade-up 0.8s ease-out 0.65s forwards; 282 299 } ··· 284 301 .app-button { 285 302 display: inline-flex; 286 303 align-items: center; 287 - background: var(--color-elevated); 288 - border: 1px solid var(--color-border); 289 - border-radius: 14px; 304 + background: var(--color-deep); 305 + border: 2px solid var(--color-deep); 306 + border-radius: 16px; 290 307 padding: 14px 28px; 291 308 text-decoration: none; 292 - color: var(--color-text); 309 + color: var(--color-sand); 293 310 transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 294 311 position: relative; 295 312 overflow: hidden; ··· 299 316 content: ''; 300 317 position: absolute; 301 318 top: 0; 302 - left: 0; 303 - right: 0; 304 - bottom: 0; 305 - background: linear-gradient(135deg, var(--color-accent-glow) 0%, transparent 50%); 306 - opacity: 0; 307 - transition: opacity 0.3s ease; 319 + left: -100%; 320 + width: 100%; 321 + height: 100%; 322 + background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent); 323 + transition: left 0.5s ease; 308 324 } 309 325 310 326 .app-button:hover { 311 - border-color: var(--color-accent); 312 - transform: translateY(-3px); 313 - box-shadow: 314 - 0 10px 40px -10px rgba(255, 107, 53, 0.3), 315 - 0 0 0 1px var(--color-accent); 327 + background: var(--color-coral-dark); 328 + border-color: var(--color-coral-dark); 329 + transform: translateY(-4px); 330 + box-shadow: 0 12px 32px -8px rgba(240, 140, 89, 0.4); 316 331 } 317 332 318 333 .app-button:hover::before { 319 - opacity: 1; 334 + left: 100%; 320 335 } 321 336 322 337 .app-button svg { ··· 341 356 .app-button-label { 342 357 font-size: 0.7rem; 343 358 text-transform: uppercase; 344 - letter-spacing: 0.08em; 345 - color: var(--color-text-muted); 359 + letter-spacing: 0.1em; 360 + color: rgba(255, 248, 240, 0.7); 346 361 display: block; 347 362 margin-bottom: 2px; 363 + font-weight: 600; 348 364 } 349 365 350 366 .app-button-store { 351 367 font-size: 1.1rem; 352 - font-weight: 600; 368 + font-weight: 700; 353 369 letter-spacing: -0.01em; 354 370 } 355 371 356 - /* Built on AT Protocol badge */ 372 + /* Built on AT Protocol badge - teal accent */ 357 373 .built-on { 358 374 display: inline-flex; 359 375 align-items: center; 360 - gap: 8px; 361 - padding: 10px 20px; 362 - background: var(--color-surface); 363 - border: 1px solid var(--color-border); 376 + gap: 10px; 377 + padding: 12px 24px; 378 + background: var(--color-cream); 379 + border: 2px solid var(--color-teal); 364 380 border-radius: 100px; 365 381 color: var(--color-text-muted); 366 - font-size: 0.875rem; 382 + font-size: 0.9rem; 383 + font-weight: 600; 367 384 opacity: 0; 368 385 animation: fade-up 0.8s ease-out 0.8s forwards; 386 + transition: all 0.3s ease; 387 + } 388 + 389 + .built-on:hover { 390 + background: var(--color-sand-warm); 391 + transform: translateY(-2px); 369 392 } 370 393 371 394 .built-on svg { 372 - width: 16px; 373 - height: 16px; 374 - color: var(--color-accent); 395 + width: 18px; 396 + height: 18px; 397 + color: var(--color-teal); 375 398 } 376 399 377 400 .built-on a { 378 - color: var(--color-text); 401 + color: var(--color-teal-dark); 379 402 text-decoration: none; 380 - font-weight: 500; 403 + font-weight: 700; 381 404 transition: color 0.2s ease; 382 405 } 383 406 384 407 .built-on a:hover { 385 - color: var(--color-accent); 408 + color: var(--color-coral); 386 409 } 387 410 388 - /* Footer */ 411 + /* Footer - warm sandy tone */ 389 412 footer { 390 - background: linear-gradient(to top, var(--color-surface) 0%, transparent 100%); 391 - padding: 40px 24px 32px; 413 + background: linear-gradient(to top, var(--color-sand-warm) 0%, transparent 100%); 414 + padding: 48px 24px 36px; 392 415 text-align: center; 393 416 position: relative; 394 417 z-index: 2; ··· 398 421 display: flex; 399 422 flex-wrap: wrap; 400 423 justify-content: center; 401 - gap: 32px; 424 + gap: 36px; 402 425 } 403 426 404 427 .footer-links a { 405 428 color: var(--color-text-muted); 406 429 text-decoration: none; 407 - font-size: 0.875rem; 408 - transition: color 0.2s ease; 430 + font-size: 0.9rem; 431 + font-weight: 600; 432 + transition: all 0.2s ease; 409 433 position: relative; 410 434 } 411 435 ··· 415 439 bottom: -4px; 416 440 left: 0; 417 441 width: 0; 418 - height: 1px; 419 - background: var(--color-accent); 442 + height: 2px; 443 + background: var(--color-coral); 444 + border-radius: 1px; 420 445 transition: width 0.3s ease; 421 446 } 422 447 423 448 .footer-links a:hover { 424 - color: var(--color-text); 449 + color: var(--color-coral-dark); 425 450 } 426 451 427 452 .footer-links a:hover::after { ··· 431 456 /* Responsive */ 432 457 @media (max-width: 640px) { 433 458 main { 434 - padding: 40px 20px 32px; 459 + padding: 40px 20px 60px; 435 460 } 436 461 437 462 .brand-lockup { 438 463 flex-direction: column; 439 - margin-bottom: 28px; 464 + margin-bottom: 32px; 440 465 } 441 466 442 467 .mascot-container { 443 468 margin-right: 0; 444 - margin-bottom: 8px; /* Less overlap with text */ 469 + margin-bottom: 8px; 445 470 } 446 471 447 472 .mascot { 448 - width: 100px; 449 - height: 87px; /* Slightly larger on mobile */ 450 - } 451 - 452 - .mascot-glow { 453 - width: 110px; 454 - height: 110px; 473 + width: 80px; 474 + height: 74px; 455 475 } 456 476 457 477 .logo { 458 - height: 56px; 478 + height: 64px; 459 479 } 460 480 461 481 .description { 462 - font-size: 1rem; 482 + font-size: 1.05rem; 463 483 margin-bottom: 36px; 464 484 } 465 485 ··· 480 500 gap: 24px; 481 501 } 482 502 483 - .decor-1 { 484 - width: 200px; 485 - height: 200px; 486 - left: -80px; 503 + .bubble-1, .bubble-4 { 504 + display: none; 487 505 } 488 506 489 - .decor-2 { 490 - width: 150px; 491 - height: 150px; 507 + .bubble-2 { 508 + width: 60px; 509 + height: 60px; 510 + top: 70%; 511 + } 512 + 513 + .bubble-3 { 514 + width: 40px; 515 + height: 40px; 492 516 } 493 517 } 494 518 ··· 503 527 </style> 504 528 </head> 505 529 <body> 506 - <!-- Floating ambient decorations --> 507 - <div class="decor decor-1" aria-hidden="true"></div> 508 - <div class="decor decor-2" aria-hidden="true"></div> 530 + <!-- Floating bubble decorations --> 531 + <div class="bubble bubble-1" aria-hidden="true"></div> 532 + <div class="bubble bubble-2" aria-hidden="true"></div> 533 + <div class="bubble bubble-3" aria-hidden="true"></div> 534 + <div class="bubble bubble-4" aria-hidden="true"></div> 509 535 510 536 <main> 511 537 <section class="hero"> 512 538 <!-- Brand lockup: mascot + logo integrated --> 513 539 <div class="brand-lockup"> 514 540 <div class="mascot-container"> 515 - <div class="mascot-glow" aria-hidden="true"></div> 516 - <div class="mascot" role="img" aria-label="Lil Dude - Coves Mascot waving hello"> 517 - <img src="/static/images/lil_dude_body.png" alt="" class="mascot-body" aria-hidden="true"> 518 - <img src="/static/images/lil_dude_claw.png" alt="" class="mascot-claw" aria-hidden="true"> 519 - </div> 541 + <img src="/static/images/lil_dude.svg" alt="Lil Dude - Coves Mascot" class="mascot"> 520 542 </div> 521 - <img src="/static/images/coves_bubble.svg" alt="Coves" class="logo"> 543 + <img src="/static/images/coves_logo_text.svg" alt="Coves" class="logo"> 522 544 </div> 523 545 524 546 <h1 class="tagline"> ··· 528 550 529 551 <p class="description"> 530 552 Join topic-based communities, share what you love, and own your data. 531 - Built on the AT Protocol—the same foundation as Bluesky—Coves brings forums to the decentralized web. 553 + Built on the AT Protocol, the same foundation as Bluesky, Coves brings forums to the decentralized web. 532 554 </p> 533 555 534 556 <div class="app-buttons"> ··· 554 576 </div> 555 577 556 578 <div class="built-on"> 557 - <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"> 579 + <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"> 558 580 <path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"/> 559 581 <path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"/> 560 582 </svg>
+80
static/images/coves_logo_text.svg
··· 1 + <svg width="1310" height="406" viewBox="0 0 1310 406" fill="none" xmlns="http://www.w3.org/2000/svg"> 2 + <mask id="path-1-outside-1_50_75" maskUnits="userSpaceOnUse" x="-0.00585938" y="-0.00390625" width="1311" height="406" fill="black"> 3 + <rect fill="white" x="-0.00585938" y="-0.00390625" width="1311" height="406"/> 4 + <path d="M320.132 201.184C321.683 186.461 325.516 172.069 331.494 158.526C335.776 148.794 341.667 139.226 348.379 131.077C392.112 77.9841 487.808 76.9853 530.626 131.984C541.251 145.632 546.222 157.166 552.272 173.071C559.743 198.749 561.501 219.036 558.799 245.647C548.182 320.908 494.724 365.408 418.12 354.309C389.235 350.403 363.206 334.846 346.082 311.258C336.515 298.327 331.977 289.015 326.797 273.922C319.18 247.016 317.556 228.701 320.132 201.184ZM441.692 261.373C459.846 252.65 455.889 185.406 437.476 185.255C419.614 193.476 424.145 240.241 433.35 254.842C435.801 258.733 437.272 260.042 441.692 261.373Z"/> 5 + <path d="M320.132 201.662C329.273 200.674 341.406 197.902 350.841 196.198C368.632 192.884 386.528 190.141 404.5 187.996C397.494 209.949 398.468 238.996 406.994 260.274C380.091 263.8 353.339 268.378 326.799 273.996C319.18 247.239 317.556 229.026 320.132 201.662Z"/> 6 + <path d="M469.994 179.65C497.382 176.837 524.826 174.618 552.308 172.996C559.744 198.883 561.494 219.333 558.805 246.161C533.354 246.094 502.416 249.757 477.029 251.996C481.694 225.984 479.912 203.991 469.994 179.65Z"/> 7 + <path d="M517.994 209.496C517.994 252.85 482.848 287.996 439.494 287.996C396.14 287.996 360.994 252.85 360.994 209.496C360.994 166.142 396.14 130.996 439.494 130.996C482.848 130.996 517.994 166.142 517.994 209.496Z"/> 8 + <path d="M517.994 209.496C517.994 166.142 482.848 130.996 439.494 130.996C396.14 130.996 360.994 166.142 360.994 209.496C360.994 252.85 396.14 287.996 439.494 287.996C482.848 287.996 517.994 252.85 517.994 209.496ZM530.994 209.496C530.994 260.03 490.028 300.996 439.494 300.996C388.96 300.996 347.994 260.03 347.994 209.496C347.994 158.962 388.96 117.996 439.494 117.996C490.028 117.996 530.994 158.962 530.994 209.496Z"/> 9 + <path d="M498.994 248.996C526.494 238.496 527.994 240.996 557.494 251.996C546.877 327.018 494.919 365.376 418.316 354.312C389.432 350.419 363.402 334.911 346.279 311.397C333.994 299.496 323.494 267.996 321.494 251.996C345.494 239.81 383.097 244.53 409.994 240.996C420.816 240.997 430.028 246.525 442.494 248.996C472.494 240.996 475.494 238.996 498.994 248.996Z"/> 10 + <path d="M399.258 231.707C396.133 233.134 392.723 235.274 391.587 236.559C389.172 239.698 378.233 239.841 375.392 236.844C367.863 229.424 349.963 228.425 341.155 235.132C338.03 237.7 333.91 239.27 329.649 239.698C321.835 240.411 318.994 242.409 318.994 246.975C318.994 249.401 320.131 250.97 322.688 251.826C330.359 254.823 338.314 252.825 347.264 245.976C352.378 241.838 360.333 242.552 368.289 247.546C373.829 251.113 376.386 251.826 383.773 251.826C389.882 251.826 393.575 251.113 395.848 249.258C406.219 241.695 411.617 241.41 421.845 247.831C427.954 251.684 430.511 252.397 437.898 252.397C448.268 252.54 450.825 250.828 448.837 245.12C447.7 241.695 446.422 240.982 438.608 239.555C433.778 238.699 428.664 236.987 427.244 235.703C423.408 232.278 414.884 228.996 409.628 228.996C407.071 228.996 402.383 230.28 399.258 231.707Z"/> 11 + <path d="M512.426 231.707C509.301 233.134 505.891 235.274 504.755 236.559C502.34 239.698 491.401 239.841 488.56 236.844C481.031 229.424 463.131 228.425 454.323 235.132C451.198 237.7 447.078 239.27 442.817 239.698C435.003 240.411 432.162 242.409 432.162 246.975C432.162 249.401 433.299 250.97 435.856 251.826C443.527 254.823 451.482 252.825 460.432 245.976C465.546 241.838 473.501 242.552 481.457 247.546C486.997 251.113 489.554 251.826 496.941 251.826C503.05 251.826 506.743 251.113 509.016 249.258C519.387 241.695 524.785 241.41 535.013 247.831C541.122 251.684 543.679 252.397 551.066 252.397C561.436 252.54 563.993 250.828 562.005 245.12C560.868 241.695 559.59 240.982 551.776 239.555C546.946 238.699 541.832 236.987 540.412 235.703C536.576 232.278 528.052 228.996 522.796 228.996C520.239 228.996 515.551 230.28 512.426 231.707Z"/> 12 + <path d="M460.753 260.501C456.713 262.346 452.305 265.113 450.836 266.774C447.714 270.832 433.573 271.017 429.901 267.143C420.167 257.55 397.028 256.258 385.643 264.929C381.602 268.25 376.277 270.279 370.767 270.832C360.667 271.755 356.994 274.338 356.994 280.241C356.994 283.377 358.463 285.407 361.769 286.513C371.686 290.388 381.97 287.805 393.539 278.95C400.15 273.6 410.434 274.522 420.718 280.979C427.88 285.591 431.186 286.513 440.736 286.513C448.632 286.513 453.407 285.591 456.345 283.193C469.751 273.415 476.73 273.046 489.952 281.348C497.849 286.329 501.154 287.251 510.704 287.251C524.11 287.436 527.415 285.222 524.844 277.843C523.375 273.415 521.722 272.493 511.622 270.648C505.378 269.541 498.767 267.327 496.93 265.667C491.972 261.239 480.953 256.996 474.159 256.996C470.853 256.996 464.793 258.657 460.753 260.501Z"/> 13 + <path d="M22.9566 250.635C10.3594 190.03 12.1659 125.15 51.0851 73.5085C96.5037 13.243 198.985 -4.01784 259.516 42.7293C275.211 55.2342 286.283 70.5282 288.652 90.809C291.686 115.283 274.191 135.564 249.469 136.717C204.345 138.821 216.713 91.7167 165.596 96.3897C150.139 97.6612 135.866 105.173 126.066 117.193C106.394 141.458 106.305 180.184 109.349 209.609C114.428 234.642 116.301 253.73 131.801 276.771C123.23 280.571 114.099 283.739 105.378 287.362C85.0213 295.814 67.2742 304.913 48.8178 316.996C36.7828 299.577 27.739 271.31 22.9566 250.635Z"/> 14 + <path d="M109.51 209.996C114.596 234.939 116.472 253.957 131.994 276.916C123.411 280.702 114.266 283.858 105.534 287.469C85.1476 295.89 67.375 304.957 48.8923 316.996C36.84 299.64 27.7834 271.475 22.9941 250.874C42.6972 235.928 80.6837 217.246 105.715 211.138C107.472 210.714 107.173 211.497 109.51 209.996Z"/> 15 + <path d="M109.51 209.996C114.596 234.939 116.472 253.957 131.994 276.916C123.411 280.702 114.266 283.858 105.534 287.469C85.1476 295.89 67.375 304.957 48.8923 316.996C36.84 299.64 27.7834 271.475 22.9941 250.874C42.6972 235.928 80.6837 217.246 105.715 211.138C107.472 210.714 107.173 211.497 109.51 209.996Z"/> 16 + <path d="M816.178 183.757C826.182 147.588 841.217 118.152 875.316 99.0176C926.881 70.0784 1007.15 82.8862 1036.26 138.022C1047.3 158.904 1051.35 179.225 1050.97 202.399C1049.74 232.205 1037.75 245.942 1006.9 243.317C968.524 240.05 929.968 237.418 891.581 234.291C892.539 247.122 893.718 252.063 898.955 263.839C895.206 265.093 870.174 258.478 864.082 257.077C847.419 253.198 830.624 249.88 813.74 247.137C810.403 224.314 812.2 206.019 816.178 183.757Z"/> 17 + <path d="M816.179 183.996C833.83 187.143 853.692 195.502 871.388 200.207C919.342 212.963 969.034 218.227 1018.27 210.199C1028.36 208.567 1041.03 205.111 1050.99 202.582C1049.76 232.299 1037.77 245.996 1006.92 243.379C968.54 240.122 929.98 237.497 891.589 234.38C892.547 247.172 893.726 252.098 898.964 263.839C895.214 265.089 870.18 258.495 864.088 257.098C847.423 253.23 830.626 249.922 813.74 247.187C810.403 224.432 812.2 206.192 816.179 183.996Z"/> 18 + <path d="M932.748 144.246C933.994 144.145 935.239 144.073 936.484 144.031C966.211 142.94 974.26 167.937 974.994 191.996C963.462 191.178 951.937 190.228 940.427 189.16C925.359 187.849 910.114 187.09 894.994 185.86C899.952 165.29 910.032 147.965 932.748 144.246Z"/> 19 + <path d="M1084.21 186.781C1083.91 179.865 1083.84 174.425 1084.53 167.552C1089.3 119.599 1129.08 91.6561 1175.6 91.0148C1213.3 90.4949 1246.99 100.795 1276.63 126.238C1302.22 148.198 1301.51 194.336 1261.09 197.458C1251.78 198.179 1240.24 193.253 1234.14 186.288C1230.05 181.708 1226.44 176.662 1222.62 171.376C1212.02 156.705 1184.3 149.617 1169.61 161.522C1162.7 167.125 1162.74 182.194 1169.91 187.856C1192.54 207.464 1221.84 217.441 1244.77 236.873C1273.97 258.432 1282.8 290.411 1274.49 324.996C1253.42 308.385 1234.98 297.148 1209.18 289.189C1201.42 286.788 1189.2 280.883 1181.33 280.942C1139.8 253.418 1093.94 242.322 1084.21 186.781Z"/> 20 + <path d="M1083.99 186.996C1092.98 190.282 1117.58 194.135 1128.67 196.892C1160.25 204.905 1191.13 215.521 1220.97 228.636C1225.13 230.496 1239.46 237.451 1243.05 238.164C1243.44 237.841 1244.07 237.385 1244.34 237.01C1273.5 258.536 1282.32 290.465 1274.02 324.996C1252.98 308.411 1234.56 297.192 1208.8 289.244C1201.05 286.848 1188.85 280.952 1180.98 281.01C1139.51 253.53 1093.72 242.45 1083.99 186.996Z"/> 21 + <path d="M131.972 276.481C143.384 291.69 156.742 302.131 174.684 304.393C205.909 308.349 227.403 294.825 244.046 269.486C249.743 260.813 268.339 255.763 279.297 257.256C289.731 258.595 299.158 264.185 305.367 272.732C313.338 283.579 315.197 301.495 310.302 313.991C289.136 367.99 225.109 388.922 172.003 388.996C124.165 389.062 81.4467 365.964 54.7831 326.258C52.8782 323.403 50.4904 320.032 48.9941 316.948C67.4494 304.793 85.1955 295.639 105.551 287.136C114.271 283.49 123.402 280.304 131.972 276.481Z"/> 22 + <path d="M1273.99 325.145C1260.62 367.51 1227.16 389.564 1182.77 389.988C1143.87 390.354 1099.25 378.57 1070.4 351.718C1051.64 334.251 1042.09 305.037 1062.22 284.512C1069.32 277.19 1076.68 275.003 1086.71 274.996C1109.67 275.135 1116.98 293.78 1130.39 308.416C1143.18 322.387 1173.7 330.162 1189.03 316.47C1192.61 313.266 1194.56 305.447 1194.11 300.751C1193.3 292.339 1186.99 286.516 1180.9 281.382C1188.77 281.323 1200.98 287.189 1208.73 289.574C1234.51 297.481 1252.93 308.643 1273.99 325.145Z"/> 23 + <path d="M813.994 246.996C830.791 249.742 847.5 253.064 864.078 256.946C870.138 258.349 895.041 264.97 898.771 263.715C914.894 288.377 941.797 292.067 967.938 281.519C976.835 277.932 983.819 272.669 993.435 270.787C1010.19 267.502 1025.34 278.22 1028.22 295.049C1035.15 330.156 994.204 345.753 967.337 349.886C916.228 357.747 860.069 344.357 831.546 297.618C821.601 281.313 817.006 265.804 813.994 246.996Z"/> 24 + <path d="M581.926 165.286L569.757 134.93C563.996 120.394 559.705 108.308 566.391 92.5046C578.002 65.0612 623.989 62.1057 639.595 86.9899C646.777 98.4495 650.519 115.389 654.909 128.484C658.827 140.188 661.766 152.594 665.943 164.44L680.284 212.177C682.391 219.207 684.659 228.12 686.994 234.812C686.582 235.172 686.169 235.54 685.757 235.9C664.072 236.797 630.584 235.033 610.047 236.996C607.925 230.554 603.396 220.097 600.764 213.478C594.327 197.476 588.048 181.41 581.926 165.286Z"/> 25 + <path d="M581.994 165.332C602.958 163.139 644.573 164.251 665.956 164.487L680.288 212.193C682.394 219.218 684.661 228.126 686.994 234.813C686.582 235.173 686.17 235.541 685.758 235.901C664.087 236.798 630.621 235.034 610.098 236.996C607.977 230.558 603.451 220.108 600.821 213.493C594.388 197.502 588.113 181.446 581.994 165.332Z"/> 26 + <path d="M710.057 165.015C716.317 145.973 729.153 99.3514 738.66 85.6755C742.179 80.6207 746.653 76.7058 752.201 74.0015C761.899 69.2659 774.08 68.7422 784.249 72.3629C793.954 75.8173 802.322 82.6424 806.657 92.1358C812.652 105.27 809.692 118.15 804.666 130.871C798.906 145.436 792.69 159.829 786.996 174.419C778.003 196.221 769.15 218.079 760.444 239.996C747.506 236.297 704.415 237.473 689.206 235.525C688.802 235.135 688.398 234.737 687.994 234.348C695.635 212.291 703.004 187.396 710.057 165.015Z"/> 27 + <path d="M687.994 234.346C695.635 212.284 703.004 187.383 710.057 164.996C714.781 166.428 731.892 167.321 737.755 167.967C754.264 169.784 770.61 171.303 786.994 174.402C778.001 196.21 769.148 218.074 760.442 239.996C747.504 236.296 704.415 237.473 689.206 235.523C688.802 235.133 688.398 234.736 687.994 234.346Z"/> 28 + <path d="M686.812 235.003L687.481 234.996C687.886 235.384 688.29 235.779 688.695 236.167C703.917 238.106 747.045 236.935 759.994 240.615C751.302 261.247 743.544 282.246 734.617 302.871C728.639 316.684 720.624 327.959 705.961 333.643C693.452 338.494 674.686 338.041 662.421 332.546C654.347 328.888 647.427 323.115 642.397 315.843C636.363 307.18 631.298 291.267 627.245 280.797L609.994 237.176C630.496 235.223 663.928 236.979 685.577 236.086C685.989 235.728 686.4 235.362 686.812 235.003Z"/> 29 + </mask> 30 + <path d="M320.132 201.184C321.683 186.461 325.516 172.069 331.494 158.526C335.776 148.794 341.667 139.226 348.379 131.077C392.112 77.9841 487.808 76.9853 530.626 131.984C541.251 145.632 546.222 157.166 552.272 173.071C559.743 198.749 561.501 219.036 558.799 245.647C548.182 320.908 494.724 365.408 418.12 354.309C389.235 350.403 363.206 334.846 346.082 311.258C336.515 298.327 331.977 289.015 326.797 273.922C319.18 247.016 317.556 228.701 320.132 201.184ZM441.692 261.373C459.846 252.65 455.889 185.406 437.476 185.255C419.614 193.476 424.145 240.241 433.35 254.842C435.801 258.733 437.272 260.042 441.692 261.373Z" fill="#F28C5B"/> 31 + <path d="M320.132 201.662C329.273 200.674 341.406 197.902 350.841 196.198C368.632 192.884 386.528 190.141 404.5 187.996C397.494 209.949 398.468 238.996 406.994 260.274C380.091 263.8 353.339 268.378 326.799 273.996C319.18 247.239 317.556 229.026 320.132 201.662Z" fill="#FFB36B"/> 32 + <path d="M469.994 179.65C497.382 176.837 524.826 174.618 552.308 172.996C559.744 198.883 561.494 219.333 558.805 246.161C533.354 246.094 502.416 249.757 477.029 251.996C481.694 225.984 479.912 203.991 469.994 179.65Z" fill="#FFB36B"/> 33 + <path d="M517.994 209.496C517.994 252.85 482.848 287.996 439.494 287.996C396.14 287.996 360.994 252.85 360.994 209.496C360.994 166.142 396.14 130.996 439.494 130.996C482.848 130.996 517.994 166.142 517.994 209.496Z" fill="#FA8E32"/> 34 + <path d="M517.994 209.496C517.994 166.142 482.848 130.996 439.494 130.996C396.14 130.996 360.994 166.142 360.994 209.496C360.994 252.85 396.14 287.996 439.494 287.996C482.848 287.996 517.994 252.85 517.994 209.496ZM530.994 209.496C530.994 260.03 490.028 300.996 439.494 300.996C388.96 300.996 347.994 260.03 347.994 209.496C347.994 158.962 388.96 117.996 439.494 117.996C490.028 117.996 530.994 158.962 530.994 209.496Z" fill="#1B2A2E"/> 35 + <path d="M498.994 248.996C526.494 238.496 527.994 240.996 557.494 251.996C546.877 327.018 494.919 365.376 418.316 354.312C389.432 350.419 363.402 334.911 346.279 311.397C333.994 299.496 323.494 267.996 321.494 251.996C345.494 239.81 383.097 244.53 409.994 240.996C420.816 240.997 430.028 246.525 442.494 248.996C472.494 240.996 475.494 238.996 498.994 248.996Z" fill="#5FB6B3"/> 36 + <path d="M399.258 231.707C396.133 233.134 392.723 235.274 391.587 236.559C389.172 239.698 378.233 239.841 375.392 236.844C367.863 229.424 349.963 228.425 341.155 235.132C338.03 237.7 333.91 239.27 329.649 239.698C321.835 240.411 318.994 242.409 318.994 246.975C318.994 249.401 320.131 250.97 322.688 251.826C330.359 254.823 338.314 252.825 347.264 245.976C352.378 241.838 360.333 242.552 368.289 247.546C373.829 251.113 376.386 251.826 383.773 251.826C389.882 251.826 393.575 251.113 395.848 249.258C406.219 241.695 411.617 241.41 421.845 247.831C427.954 251.684 430.511 252.397 437.898 252.397C448.268 252.54 450.825 250.828 448.837 245.12C447.7 241.695 446.422 240.982 438.608 239.555C433.778 238.699 428.664 236.987 427.244 235.703C423.408 232.278 414.884 228.996 409.628 228.996C407.071 228.996 402.383 230.28 399.258 231.707Z" fill="#1B2A2E"/> 37 + <path d="M512.426 231.707C509.301 233.134 505.891 235.274 504.755 236.559C502.34 239.698 491.401 239.841 488.56 236.844C481.031 229.424 463.131 228.425 454.323 235.132C451.198 237.7 447.078 239.27 442.817 239.698C435.003 240.411 432.162 242.409 432.162 246.975C432.162 249.401 433.299 250.97 435.856 251.826C443.527 254.823 451.482 252.825 460.432 245.976C465.546 241.838 473.501 242.552 481.457 247.546C486.997 251.113 489.554 251.826 496.941 251.826C503.05 251.826 506.743 251.113 509.016 249.258C519.387 241.695 524.785 241.41 535.013 247.831C541.122 251.684 543.679 252.397 551.066 252.397C561.436 252.54 563.993 250.828 562.005 245.12C560.868 241.695 559.59 240.982 551.776 239.555C546.946 238.699 541.832 236.987 540.412 235.703C536.576 232.278 528.052 228.996 522.796 228.996C520.239 228.996 515.551 230.28 512.426 231.707Z" fill="#1B2A2E"/> 38 + <path d="M460.753 260.501C456.713 262.346 452.305 265.113 450.836 266.774C447.714 270.832 433.573 271.017 429.901 267.143C420.167 257.55 397.028 256.258 385.643 264.929C381.602 268.25 376.277 270.279 370.767 270.832C360.667 271.755 356.994 274.338 356.994 280.241C356.994 283.377 358.463 285.407 361.769 286.513C371.686 290.388 381.97 287.805 393.539 278.95C400.15 273.6 410.434 274.522 420.718 280.979C427.88 285.591 431.186 286.513 440.736 286.513C448.632 286.513 453.407 285.591 456.345 283.193C469.751 273.415 476.73 273.046 489.952 281.348C497.849 286.329 501.154 287.251 510.704 287.251C524.11 287.436 527.415 285.222 524.844 277.843C523.375 273.415 521.722 272.493 511.622 270.648C505.378 269.541 498.767 267.327 496.93 265.667C491.972 261.239 480.953 256.996 474.159 256.996C470.853 256.996 464.793 258.657 460.753 260.501Z" fill="#1B2A2E"/> 39 + <path d="M22.9566 250.635C10.3594 190.03 12.1659 125.15 51.0851 73.5085C96.5037 13.243 198.985 -4.01784 259.516 42.7293C275.211 55.2342 286.283 70.5282 288.652 90.809C291.686 115.283 274.191 135.564 249.469 136.717C204.345 138.821 216.713 91.7167 165.596 96.3897C150.139 97.6612 135.866 105.173 126.066 117.193C106.394 141.458 106.305 180.184 109.349 209.609C114.428 234.642 116.301 253.73 131.801 276.771C123.23 280.571 114.099 283.739 105.378 287.362C85.0213 295.814 67.2742 304.913 48.8178 316.996C36.7828 299.577 27.739 271.31 22.9566 250.635Z" fill="#F08C59"/> 40 + <path d="M109.51 209.996C114.596 234.939 116.472 253.957 131.994 276.916C123.411 280.702 114.266 283.858 105.534 287.469C85.1476 295.89 67.375 304.957 48.8923 316.996C36.84 299.64 27.7834 271.475 22.9941 250.874C42.6972 235.928 80.6837 217.246 105.715 211.138C107.472 210.714 107.173 211.497 109.51 209.996Z" fill="#FFB468"/> 41 + <path d="M109.51 209.996C114.596 234.939 116.472 253.957 131.994 276.916C123.411 280.702 114.266 283.858 105.534 287.469C85.1476 295.89 67.375 304.957 48.8923 316.996C36.84 299.64 27.7834 271.475 22.9941 250.874C42.6972 235.928 80.6837 217.246 105.715 211.138C107.472 210.714 107.173 211.497 109.51 209.996Z" fill="#FFB468"/> 42 + <path d="M816.178 183.757C826.182 147.588 841.217 118.152 875.316 99.0176C926.881 70.0784 1007.15 82.8862 1036.26 138.022C1047.3 158.904 1051.35 179.225 1050.97 202.399C1049.74 232.205 1037.75 245.942 1006.9 243.317C968.524 240.05 929.968 237.418 891.581 234.291C892.539 247.122 893.718 252.063 898.955 263.839C895.206 265.093 870.174 258.478 864.082 257.077C847.419 253.198 830.624 249.88 813.74 247.137C810.403 224.314 812.2 206.019 816.178 183.757Z" fill="#F08C59"/> 43 + <path d="M816.179 183.996C833.83 187.143 853.692 195.502 871.388 200.207C919.342 212.963 969.034 218.227 1018.27 210.199C1028.36 208.567 1041.03 205.111 1050.99 202.582C1049.76 232.299 1037.77 245.996 1006.92 243.379C968.54 240.122 929.98 237.497 891.589 234.38C892.547 247.172 893.726 252.098 898.964 263.839C895.214 265.089 870.18 258.495 864.088 257.098C847.423 253.23 830.626 249.922 813.74 247.187C810.403 224.432 812.2 206.192 816.179 183.996Z" fill="#FFB468"/> 44 + <path d="M932.748 144.246C933.994 144.145 935.239 144.073 936.484 144.031C966.211 142.94 974.26 167.937 974.994 191.996C963.462 191.178 951.937 190.228 940.427 189.16C925.359 187.849 910.114 187.09 894.994 185.86C899.952 165.29 910.032 147.965 932.748 144.246Z" fill="#1B2A2E"/> 45 + <path d="M1084.21 186.781C1083.91 179.865 1083.84 174.425 1084.53 167.552C1089.3 119.599 1129.08 91.6561 1175.6 91.0148C1213.3 90.4949 1246.99 100.795 1276.63 126.238C1302.22 148.198 1301.51 194.336 1261.09 197.458C1251.78 198.179 1240.24 193.253 1234.14 186.288C1230.05 181.708 1226.44 176.662 1222.62 171.376C1212.02 156.705 1184.3 149.617 1169.61 161.522C1162.7 167.125 1162.74 182.194 1169.91 187.856C1192.54 207.464 1221.84 217.441 1244.77 236.873C1273.97 258.432 1282.8 290.411 1274.49 324.996C1253.42 308.385 1234.98 297.148 1209.18 289.189C1201.42 286.788 1189.2 280.883 1181.33 280.942C1139.8 253.418 1093.94 242.322 1084.21 186.781Z" fill="#F08C59"/> 46 + <path d="M1083.99 186.996C1092.98 190.282 1117.58 194.135 1128.67 196.892C1160.25 204.905 1191.13 215.521 1220.97 228.636C1225.13 230.496 1239.46 237.451 1243.05 238.164C1243.44 237.841 1244.07 237.385 1244.34 237.01C1273.5 258.536 1282.32 290.465 1274.02 324.996C1252.98 308.411 1234.56 297.192 1208.8 289.244C1201.05 286.848 1188.85 280.952 1180.98 281.01C1139.51 253.53 1093.72 242.45 1083.99 186.996Z" fill="#FFB468"/> 47 + <path d="M131.972 276.481C143.384 291.69 156.742 302.131 174.684 304.393C205.909 308.349 227.403 294.825 244.046 269.486C249.743 260.813 268.339 255.763 279.297 257.256C289.731 258.595 299.158 264.185 305.367 272.732C313.338 283.579 315.197 301.495 310.302 313.991C289.136 367.99 225.109 388.922 172.003 388.996C124.165 389.062 81.4467 365.964 54.7831 326.258C52.8782 323.403 50.4904 320.032 48.9941 316.948C67.4494 304.793 85.1955 295.639 105.551 287.136C114.271 283.49 123.402 280.304 131.972 276.481Z" fill="#63B5B1"/> 48 + <path d="M1273.99 325.145C1260.62 367.51 1227.16 389.564 1182.77 389.988C1143.87 390.354 1099.25 378.57 1070.4 351.718C1051.64 334.251 1042.09 305.037 1062.22 284.512C1069.32 277.19 1076.68 275.003 1086.71 274.996C1109.67 275.135 1116.98 293.78 1130.39 308.416C1143.18 322.387 1173.7 330.162 1189.03 316.47C1192.61 313.266 1194.56 305.447 1194.11 300.751C1193.3 292.339 1186.99 286.516 1180.9 281.382C1188.77 281.323 1200.98 287.189 1208.73 289.574C1234.51 297.481 1252.93 308.643 1273.99 325.145Z" fill="#63B5B1"/> 49 + <path d="M813.994 246.996C830.791 249.742 847.5 253.064 864.078 256.946C870.138 258.349 895.041 264.97 898.771 263.715C914.894 288.377 941.797 292.067 967.938 281.519C976.835 277.932 983.819 272.669 993.435 270.787C1010.19 267.502 1025.34 278.22 1028.22 295.049C1035.15 330.156 994.204 345.753 967.337 349.886C916.228 357.747 860.069 344.357 831.546 297.618C821.601 281.313 817.006 265.804 813.994 246.996Z" fill="#63B5B1"/> 50 + <path d="M581.926 165.286L569.757 134.93C563.996 120.394 559.705 108.308 566.391 92.5046C578.002 65.0612 623.989 62.1057 639.595 86.9899C646.777 98.4495 650.519 115.389 654.909 128.484C658.827 140.188 661.766 152.594 665.943 164.44L680.284 212.177C682.391 219.207 684.659 228.12 686.994 234.812C686.582 235.172 686.169 235.54 685.757 235.9C664.072 236.797 630.584 235.033 610.047 236.996C607.925 230.554 603.396 220.097 600.764 213.478C594.327 197.476 588.048 181.41 581.926 165.286Z" fill="#F08C59"/> 51 + <path d="M581.994 165.332C602.958 163.139 644.573 164.251 665.956 164.487L680.288 212.193C682.394 219.218 684.661 228.126 686.994 234.813C686.582 235.173 686.17 235.541 685.758 235.901C664.087 236.798 630.621 235.034 610.098 236.996C607.977 230.558 603.451 220.108 600.821 213.493C594.388 197.502 588.113 181.446 581.994 165.332Z" fill="#FFB468"/> 52 + <path d="M710.057 165.015C716.317 145.973 729.153 99.3514 738.66 85.6755C742.179 80.6207 746.653 76.7058 752.201 74.0015C761.899 69.2659 774.08 68.7422 784.249 72.3629C793.954 75.8173 802.322 82.6424 806.657 92.1358C812.652 105.27 809.692 118.15 804.666 130.871C798.906 145.436 792.69 159.829 786.996 174.419C778.003 196.221 769.15 218.079 760.444 239.996C747.506 236.297 704.415 237.473 689.206 235.525C688.802 235.135 688.398 234.737 687.994 234.348C695.635 212.291 703.004 187.396 710.057 165.015Z" fill="#F08C59"/> 53 + <path d="M687.994 234.346C695.635 212.284 703.004 187.383 710.057 164.996C714.781 166.428 731.892 167.321 737.755 167.967C754.264 169.784 770.61 171.303 786.994 174.402C778.001 196.21 769.148 218.074 760.442 239.996C747.504 236.296 704.415 237.473 689.206 235.523C688.802 235.133 688.398 234.736 687.994 234.346Z" fill="#FFB468"/> 54 + <path d="M686.812 235.003L687.481 234.996C687.886 235.384 688.29 235.779 688.695 236.167C703.917 238.106 747.045 236.935 759.994 240.615C751.302 261.247 743.544 282.246 734.617 302.871C728.639 316.684 720.624 327.959 705.961 333.643C693.452 338.494 674.686 338.041 662.421 332.546C654.347 328.888 647.427 323.115 642.397 315.843C636.363 307.18 631.298 291.267 627.245 280.797L609.994 237.176C630.496 235.223 663.928 236.979 685.577 236.086C685.989 235.728 686.4 235.362 686.812 235.003Z" fill="#63B5B1"/> 55 + <path d="M320.132 201.184C321.683 186.461 325.516 172.069 331.494 158.526C335.776 148.794 341.667 139.226 348.379 131.077C392.112 77.9841 487.808 76.9853 530.626 131.984C541.251 145.632 546.222 157.166 552.272 173.071C559.743 198.749 561.501 219.036 558.799 245.647C548.182 320.908 494.724 365.408 418.12 354.309C389.235 350.403 363.206 334.846 346.082 311.258C336.515 298.327 331.977 289.015 326.797 273.922C319.18 247.016 317.556 228.701 320.132 201.184ZM441.692 261.373C459.846 252.65 455.889 185.406 437.476 185.255C419.614 193.476 424.145 240.241 433.35 254.842C435.801 258.733 437.272 260.042 441.692 261.373Z" stroke="#1B2A2E" stroke-width="32" mask="url(#path-1-outside-1_50_75)"/> 56 + <path d="M320.132 201.662C329.273 200.674 341.406 197.902 350.841 196.198C368.632 192.884 386.528 190.141 404.5 187.996C397.494 209.949 398.468 238.996 406.994 260.274C380.091 263.8 353.339 268.378 326.799 273.996C319.18 247.239 317.556 229.026 320.132 201.662Z" stroke="#1B2A2E" stroke-width="32" mask="url(#path-1-outside-1_50_75)"/> 57 + <path d="M469.994 179.65C497.382 176.837 524.826 174.618 552.308 172.996C559.744 198.883 561.494 219.333 558.805 246.161C533.354 246.094 502.416 249.757 477.029 251.996C481.694 225.984 479.912 203.991 469.994 179.65Z" stroke="#1B2A2E" stroke-width="32" mask="url(#path-1-outside-1_50_75)"/> 58 + <path d="M517.994 209.496C517.994 252.85 482.848 287.996 439.494 287.996C396.14 287.996 360.994 252.85 360.994 209.496C360.994 166.142 396.14 130.996 439.494 130.996C482.848 130.996 517.994 166.142 517.994 209.496Z" stroke="#1B2A2E" stroke-width="32" mask="url(#path-1-outside-1_50_75)"/> 59 + <path d="M517.994 209.496C517.994 166.142 482.848 130.996 439.494 130.996C396.14 130.996 360.994 166.142 360.994 209.496C360.994 252.85 396.14 287.996 439.494 287.996C482.848 287.996 517.994 252.85 517.994 209.496ZM530.994 209.496C530.994 260.03 490.028 300.996 439.494 300.996C388.96 300.996 347.994 260.03 347.994 209.496C347.994 158.962 388.96 117.996 439.494 117.996C490.028 117.996 530.994 158.962 530.994 209.496Z" stroke="#1B2A2E" stroke-width="32" mask="url(#path-1-outside-1_50_75)"/> 60 + <path d="M498.994 248.996C526.494 238.496 527.994 240.996 557.494 251.996C546.877 327.018 494.919 365.376 418.316 354.312C389.432 350.419 363.402 334.911 346.279 311.397C333.994 299.496 323.494 267.996 321.494 251.996C345.494 239.81 383.097 244.53 409.994 240.996C420.816 240.997 430.028 246.525 442.494 248.996C472.494 240.996 475.494 238.996 498.994 248.996Z" stroke="#1B2A2E" stroke-width="32" mask="url(#path-1-outside-1_50_75)"/> 61 + <path d="M399.258 231.707C396.133 233.134 392.723 235.274 391.587 236.559C389.172 239.698 378.233 239.841 375.392 236.844C367.863 229.424 349.963 228.425 341.155 235.132C338.03 237.7 333.91 239.27 329.649 239.698C321.835 240.411 318.994 242.409 318.994 246.975C318.994 249.401 320.131 250.97 322.688 251.826C330.359 254.823 338.314 252.825 347.264 245.976C352.378 241.838 360.333 242.552 368.289 247.546C373.829 251.113 376.386 251.826 383.773 251.826C389.882 251.826 393.575 251.113 395.848 249.258C406.219 241.695 411.617 241.41 421.845 247.831C427.954 251.684 430.511 252.397 437.898 252.397C448.268 252.54 450.825 250.828 448.837 245.12C447.7 241.695 446.422 240.982 438.608 239.555C433.778 238.699 428.664 236.987 427.244 235.703C423.408 232.278 414.884 228.996 409.628 228.996C407.071 228.996 402.383 230.28 399.258 231.707Z" stroke="#1B2A2E" stroke-width="32" mask="url(#path-1-outside-1_50_75)"/> 62 + <path d="M512.426 231.707C509.301 233.134 505.891 235.274 504.755 236.559C502.34 239.698 491.401 239.841 488.56 236.844C481.031 229.424 463.131 228.425 454.323 235.132C451.198 237.7 447.078 239.27 442.817 239.698C435.003 240.411 432.162 242.409 432.162 246.975C432.162 249.401 433.299 250.97 435.856 251.826C443.527 254.823 451.482 252.825 460.432 245.976C465.546 241.838 473.501 242.552 481.457 247.546C486.997 251.113 489.554 251.826 496.941 251.826C503.05 251.826 506.743 251.113 509.016 249.258C519.387 241.695 524.785 241.41 535.013 247.831C541.122 251.684 543.679 252.397 551.066 252.397C561.436 252.54 563.993 250.828 562.005 245.12C560.868 241.695 559.59 240.982 551.776 239.555C546.946 238.699 541.832 236.987 540.412 235.703C536.576 232.278 528.052 228.996 522.796 228.996C520.239 228.996 515.551 230.28 512.426 231.707Z" stroke="#1B2A2E" stroke-width="32" mask="url(#path-1-outside-1_50_75)"/> 63 + <path d="M460.753 260.501C456.713 262.346 452.305 265.113 450.836 266.774C447.714 270.832 433.573 271.017 429.901 267.143C420.167 257.55 397.028 256.258 385.643 264.929C381.602 268.25 376.277 270.279 370.767 270.832C360.667 271.755 356.994 274.338 356.994 280.241C356.994 283.377 358.463 285.407 361.769 286.513C371.686 290.388 381.97 287.805 393.539 278.95C400.15 273.6 410.434 274.522 420.718 280.979C427.88 285.591 431.186 286.513 440.736 286.513C448.632 286.513 453.407 285.591 456.345 283.193C469.751 273.415 476.73 273.046 489.952 281.348C497.849 286.329 501.154 287.251 510.704 287.251C524.11 287.436 527.415 285.222 524.844 277.843C523.375 273.415 521.722 272.493 511.622 270.648C505.378 269.541 498.767 267.327 496.93 265.667C491.972 261.239 480.953 256.996 474.159 256.996C470.853 256.996 464.793 258.657 460.753 260.501Z" stroke="#1B2A2E" stroke-width="32" mask="url(#path-1-outside-1_50_75)"/> 64 + <path d="M22.9566 250.635C10.3594 190.03 12.1659 125.15 51.0851 73.5085C96.5037 13.243 198.985 -4.01784 259.516 42.7293C275.211 55.2342 286.283 70.5282 288.652 90.809C291.686 115.283 274.191 135.564 249.469 136.717C204.345 138.821 216.713 91.7167 165.596 96.3897C150.139 97.6612 135.866 105.173 126.066 117.193C106.394 141.458 106.305 180.184 109.349 209.609C114.428 234.642 116.301 253.73 131.801 276.771C123.23 280.571 114.099 283.739 105.378 287.362C85.0213 295.814 67.2742 304.913 48.8178 316.996C36.7828 299.577 27.739 271.31 22.9566 250.635Z" stroke="#1B2A2E" stroke-width="32" mask="url(#path-1-outside-1_50_75)"/> 65 + <path d="M109.51 209.996C114.596 234.939 116.472 253.957 131.994 276.916C123.411 280.702 114.266 283.858 105.534 287.469C85.1476 295.89 67.375 304.957 48.8923 316.996C36.84 299.64 27.7834 271.475 22.9941 250.874C42.6972 235.928 80.6837 217.246 105.715 211.138C107.472 210.714 107.173 211.497 109.51 209.996Z" stroke="#1B2A2E" stroke-width="32" mask="url(#path-1-outside-1_50_75)"/> 66 + <path d="M109.51 209.996C114.596 234.939 116.472 253.957 131.994 276.916C123.411 280.702 114.266 283.858 105.534 287.469C85.1476 295.89 67.375 304.957 48.8923 316.996C36.84 299.64 27.7834 271.475 22.9941 250.874C42.6972 235.928 80.6837 217.246 105.715 211.138C107.472 210.714 107.173 211.497 109.51 209.996Z" stroke="#1B2A2E" stroke-width="32" mask="url(#path-1-outside-1_50_75)"/> 67 + <path d="M816.178 183.757C826.182 147.588 841.217 118.152 875.316 99.0176C926.881 70.0784 1007.15 82.8862 1036.26 138.022C1047.3 158.904 1051.35 179.225 1050.97 202.399C1049.74 232.205 1037.75 245.942 1006.9 243.317C968.524 240.05 929.968 237.418 891.581 234.291C892.539 247.122 893.718 252.063 898.955 263.839C895.206 265.093 870.174 258.478 864.082 257.077C847.419 253.198 830.624 249.88 813.74 247.137C810.403 224.314 812.2 206.019 816.178 183.757Z" stroke="#1B2A2E" stroke-width="32" mask="url(#path-1-outside-1_50_75)"/> 68 + <path d="M816.179 183.996C833.83 187.143 853.692 195.502 871.388 200.207C919.342 212.963 969.034 218.227 1018.27 210.199C1028.36 208.567 1041.03 205.111 1050.99 202.582C1049.76 232.299 1037.77 245.996 1006.92 243.379C968.54 240.122 929.98 237.497 891.589 234.38C892.547 247.172 893.726 252.098 898.964 263.839C895.214 265.089 870.18 258.495 864.088 257.098C847.423 253.23 830.626 249.922 813.74 247.187C810.403 224.432 812.2 206.192 816.179 183.996Z" stroke="#1B2A2E" stroke-width="32" mask="url(#path-1-outside-1_50_75)"/> 69 + <path d="M932.748 144.246C933.994 144.145 935.239 144.073 936.484 144.031C966.211 142.94 974.26 167.937 974.994 191.996C963.462 191.178 951.937 190.228 940.427 189.16C925.359 187.849 910.114 187.09 894.994 185.86C899.952 165.29 910.032 147.965 932.748 144.246Z" stroke="#1B2A2E" stroke-width="32" mask="url(#path-1-outside-1_50_75)"/> 70 + <path d="M1084.21 186.781C1083.91 179.865 1083.84 174.425 1084.53 167.552C1089.3 119.599 1129.08 91.6561 1175.6 91.0148C1213.3 90.4949 1246.99 100.795 1276.63 126.238C1302.22 148.198 1301.51 194.336 1261.09 197.458C1251.78 198.179 1240.24 193.253 1234.14 186.288C1230.05 181.708 1226.44 176.662 1222.62 171.376C1212.02 156.705 1184.3 149.617 1169.61 161.522C1162.7 167.125 1162.74 182.194 1169.91 187.856C1192.54 207.464 1221.84 217.441 1244.77 236.873C1273.97 258.432 1282.8 290.411 1274.49 324.996C1253.42 308.385 1234.98 297.148 1209.18 289.189C1201.42 286.788 1189.2 280.883 1181.33 280.942C1139.8 253.418 1093.94 242.322 1084.21 186.781Z" stroke="#1B2A2E" stroke-width="32" mask="url(#path-1-outside-1_50_75)"/> 71 + <path d="M1083.99 186.996C1092.98 190.282 1117.58 194.135 1128.67 196.892C1160.25 204.905 1191.13 215.521 1220.97 228.636C1225.13 230.496 1239.46 237.451 1243.05 238.164C1243.44 237.841 1244.07 237.385 1244.34 237.01C1273.5 258.536 1282.32 290.465 1274.02 324.996C1252.98 308.411 1234.56 297.192 1208.8 289.244C1201.05 286.848 1188.85 280.952 1180.98 281.01C1139.51 253.53 1093.72 242.45 1083.99 186.996Z" stroke="#1B2A2E" stroke-width="32" mask="url(#path-1-outside-1_50_75)"/> 72 + <path d="M131.972 276.481C143.384 291.69 156.742 302.131 174.684 304.393C205.909 308.349 227.403 294.825 244.046 269.486C249.743 260.813 268.339 255.763 279.297 257.256C289.731 258.595 299.158 264.185 305.367 272.732C313.338 283.579 315.197 301.495 310.302 313.991C289.136 367.99 225.109 388.922 172.003 388.996C124.165 389.062 81.4467 365.964 54.7831 326.258C52.8782 323.403 50.4904 320.032 48.9941 316.948C67.4494 304.793 85.1955 295.639 105.551 287.136C114.271 283.49 123.402 280.304 131.972 276.481Z" stroke="#1B2A2E" stroke-width="32" mask="url(#path-1-outside-1_50_75)"/> 73 + <path d="M1273.99 325.145C1260.62 367.51 1227.16 389.564 1182.77 389.988C1143.87 390.354 1099.25 378.57 1070.4 351.718C1051.64 334.251 1042.09 305.037 1062.22 284.512C1069.32 277.19 1076.68 275.003 1086.71 274.996C1109.67 275.135 1116.98 293.78 1130.39 308.416C1143.18 322.387 1173.7 330.162 1189.03 316.47C1192.61 313.266 1194.56 305.447 1194.11 300.751C1193.3 292.339 1186.99 286.516 1180.9 281.382C1188.77 281.323 1200.98 287.189 1208.73 289.574C1234.51 297.481 1252.93 308.643 1273.99 325.145Z" stroke="#1B2A2E" stroke-width="32" mask="url(#path-1-outside-1_50_75)"/> 74 + <path d="M813.994 246.996C830.791 249.742 847.5 253.064 864.078 256.946C870.138 258.349 895.041 264.97 898.771 263.715C914.894 288.377 941.797 292.067 967.938 281.519C976.835 277.932 983.819 272.669 993.435 270.787C1010.19 267.502 1025.34 278.22 1028.22 295.049C1035.15 330.156 994.204 345.753 967.337 349.886C916.228 357.747 860.069 344.357 831.546 297.618C821.601 281.313 817.006 265.804 813.994 246.996Z" stroke="#1B2A2E" stroke-width="32" mask="url(#path-1-outside-1_50_75)"/> 75 + <path d="M581.926 165.286L569.757 134.93C563.996 120.394 559.705 108.308 566.391 92.5046C578.002 65.0612 623.989 62.1057 639.595 86.9899C646.777 98.4495 650.519 115.389 654.909 128.484C658.827 140.188 661.766 152.594 665.943 164.44L680.284 212.177C682.391 219.207 684.659 228.12 686.994 234.812C686.582 235.172 686.169 235.54 685.757 235.9C664.072 236.797 630.584 235.033 610.047 236.996C607.925 230.554 603.396 220.097 600.764 213.478C594.327 197.476 588.048 181.41 581.926 165.286Z" stroke="#1B2A2E" stroke-width="32" mask="url(#path-1-outside-1_50_75)"/> 76 + <path d="M581.994 165.332C602.958 163.139 644.573 164.251 665.956 164.487L680.288 212.193C682.394 219.218 684.661 228.126 686.994 234.813C686.582 235.173 686.17 235.541 685.758 235.901C664.087 236.798 630.621 235.034 610.098 236.996C607.977 230.558 603.451 220.108 600.821 213.493C594.388 197.502 588.113 181.446 581.994 165.332Z" stroke="#1B2A2E" stroke-width="32" mask="url(#path-1-outside-1_50_75)"/> 77 + <path d="M710.057 165.015C716.317 145.973 729.153 99.3514 738.66 85.6755C742.179 80.6207 746.653 76.7058 752.201 74.0015C761.899 69.2659 774.08 68.7422 784.249 72.3629C793.954 75.8173 802.322 82.6424 806.657 92.1358C812.652 105.27 809.692 118.15 804.666 130.871C798.906 145.436 792.69 159.829 786.996 174.419C778.003 196.221 769.15 218.079 760.444 239.996C747.506 236.297 704.415 237.473 689.206 235.525C688.802 235.135 688.398 234.737 687.994 234.348C695.635 212.291 703.004 187.396 710.057 165.015Z" stroke="#1B2A2E" stroke-width="32" mask="url(#path-1-outside-1_50_75)"/> 78 + <path d="M687.994 234.346C695.635 212.284 703.004 187.383 710.057 164.996C714.781 166.428 731.892 167.321 737.755 167.967C754.264 169.784 770.61 171.303 786.994 174.402C778.001 196.21 769.148 218.074 760.442 239.996C747.504 236.296 704.415 237.473 689.206 235.523C688.802 235.133 688.398 234.736 687.994 234.346Z" stroke="#1B2A2E" stroke-width="32" mask="url(#path-1-outside-1_50_75)"/> 79 + <path d="M686.812 235.003L687.481 234.996C687.886 235.384 688.29 235.779 688.695 236.167C703.917 238.106 747.045 236.935 759.994 240.615C751.302 261.247 743.544 282.246 734.617 302.871C728.639 316.684 720.624 327.959 705.961 333.643C693.452 338.494 674.686 338.041 662.421 332.546C654.347 328.888 647.427 323.115 642.397 315.843C636.363 307.18 631.298 291.267 627.245 280.797L609.994 237.176C630.496 235.223 663.928 236.979 685.577 236.086C685.989 235.728 686.4 235.362 686.812 235.003Z" stroke="#1B2A2E" stroke-width="32" mask="url(#path-1-outside-1_50_75)"/> 80 + </svg>
+90
static/images/lil_dude.svg
··· 1 + <svg width="689" height="638" viewBox="0 0 689 638" fill="none" xmlns="http://www.w3.org/2000/svg"> 2 + <path d="M406.938 34.3899C416.833 34.6814 426.593 36.8124 435.708 40.6754C452.263 47.9869 465.227 61.5904 471.737 78.4804C478.437 95.6824 478.037 114.843 470.617 131.749C460.727 154.037 446.887 163.022 425.242 171.365C416.532 199.198 409.042 227.209 405.592 256.217C404.812 262.815 404.032 270.162 402.667 276.621C442.442 287.48 474.827 307.827 503.812 336.683C509.233 329.128 515.558 325.778 523.698 321.773C525.298 310.536 529.908 301.708 536.628 292.64C531.693 284.818 527.398 278.225 524.008 269.489C504.843 219.844 522.912 155.639 566.492 124.584C579.027 114.998 592.363 113.086 587.318 133.965C582.208 155.143 584.447 171.679 591.087 192.076C596.042 187.945 604.703 180.914 608.333 175.944C619.133 161.151 618.978 140.427 617.883 122.942C617.668 118.239 615.937 112.802 617.782 108.267C622.362 97.0024 636.997 108.286 642.602 112.701C691.382 151.111 700.827 223.318 673.287 277.065C658.957 305.023 643.673 319.083 614.208 329.073C605.498 353.658 592.277 367.278 568.352 373.228C567.662 373.398 561.092 378.548 559.587 379.573C574.942 394.223 551.272 416.023 543.652 429.288L543.307 429.898C552.087 426.973 563.342 422.728 572.562 422.098C576.702 421.818 578.283 422.868 581.148 425.513C587.538 426.378 596.138 426.978 601.958 429.593C605.323 431.108 609.287 437.213 611.662 440.328C632.507 467.643 644.517 501.283 648.862 535.168C648.967 539.663 647.313 544.018 646.698 548.413C646.348 550.953 646.157 553.593 645.927 556.148C644.277 574.293 639.657 592.408 631.152 608.583C628.747 613.158 622.928 623.158 616.693 618.718C615.618 617.953 614.477 616.643 614.292 615.308C612.197 606.918 612.353 598.128 611.458 589.568C610.373 579.978 608.973 570.383 607.768 560.813C607.248 560.523 606.742 560.218 606.247 559.898C588.857 548.463 579.587 504.668 575.612 484.703C563.722 490.573 556.952 493.553 544.417 498.318C556.227 508.308 560.307 506.833 563.727 524.018C568.232 546.648 567.662 567.118 563.557 589.678L558.422 591.473C548.122 607.963 538.398 619.313 521.133 629.203C514.603 632.713 506.052 637.683 498.347 636.303C495.472 635.788 493.573 631.283 494.693 628.533C497.293 622.148 500.643 616.078 503.698 609.878C508.158 600.618 512.402 591.253 516.422 581.793C512.237 568.573 515.662 557.023 518.177 543.493C489.647 540.088 474.717 534.503 449.652 521.018C438.597 524.208 430.473 527.088 418.943 529.843C399.758 533.603 380.222 535.338 360.672 535.008C350.202 534.928 339.407 534.103 329.002 534.163C319.197 534.218 309.28 534.748 299.404 534.813C280.713 535.038 262.03 533.943 243.495 531.533C249.876 554.403 253.227 584.903 224.019 555.788C215.07 546.868 198.789 541.583 186.633 538.323C187.124 540.393 187.668 542.458 188.264 544.503C194.566 565.653 202.489 574.983 222.754 583.613C228.404 586.023 242.398 590.253 244.089 596.188C242.843 609.938 205.882 621.108 193.916 623.528C159.446 630.503 129.488 622.143 100.535 603.188C102.718 609.348 111.667 626.988 109.696 633.258C106.817 642.413 92.614 634.043 87.4275 630.753C71.9165 620.918 62.1905 608.223 54.0855 592.038C44.3805 587.068 47.2265 566.403 48.014 557.188L41.0285 560.738C40.8045 563.318 40.2905 566.398 39.851 568.963C37.451 582.943 37.011 597.123 35.2925 611.163C34.8975 614.083 33.737 619.933 29.8845 620.043C20.014 620.313 13.893 601.408 11.223 594.493C5.17999 578.838 3.13749 562.753 1.79399 546.238C1.58249 543.643 0.347 541.108 0 538.533C3.05 501.033 17.7055 464.138 41.132 434.698C48.076 425.968 56.0255 426.923 66.2645 426.033C67.136 425.168 68.5575 423.743 69.6805 423.373C79.992 419.968 101.062 429.318 110.671 432.978C104.835 419.278 83.0795 399.853 89.281 383.838C92.6065 375.253 109.757 375.163 116.805 369.428C127.696 360.563 136.384 349.148 145.905 338.868C171.953 310.773 202.315 291.307 238.689 279.563C235.018 260.148 231.209 241.042 225.112 222.204C221.884 212.23 217.778 202.097 214.259 192.131C199.805 189.855 187.996 185.853 176.485 176.332C162.355 164.661 153.572 147.752 152.147 129.481C150.601 111.25 156.044 92.7139 168.037 78.7759C179.996 64.9194 196.961 56.3669 215.214 54.9919C233.403 53.6509 251.371 59.6459 265.111 71.6394C278.786 83.8304 287.125 100.904 288.335 119.183C289.661 142.233 280.944 157.979 266.172 174.468C267.539 182.909 268.568 191.132 270.163 199.581C274.633 222.494 280.597 245.092 288.016 267.227C306.479 263.865 334.437 264.418 353.102 266.032C356.472 249.588 360.787 233.728 363.847 216.983C367.292 198.156 369.262 181.746 371.037 162.791C367.977 160.785 365.667 159.313 362.852 156.912C348.972 145.044 340.373 128.153 338.943 109.949C335.933 67.8009 365.643 37.3889 406.938 34.3899Z" fill="black"/> 3 + <path d="M255.399 382.428C262.857 381.573 271.886 383.413 278.763 386.553C280.951 389.443 284.919 394.528 287.827 396.348C302.155 405.308 323.257 408.113 339.572 404.518C352.882 401.583 362.957 395.478 370.277 384.143C382.052 382.128 384.602 383.758 394.737 383.168C402.852 385.598 412.452 388.638 420.122 392.153C442.772 402.533 458.987 413.958 483.947 418.948C507.482 422.623 510.337 420.713 533.127 419.183C527.412 429.023 522.287 438.873 515.927 448.318C492.797 482.648 466.612 503.508 426.207 514.038C392.222 522.893 363.222 521.788 328.541 521.098C308.976 520.708 288.232 521.833 268.669 520.863C258.791 520.373 246.533 518.393 236.588 516.993C232.355 510.818 228.627 504.983 223.927 499.108C210.667 482.538 192.669 474.178 172.08 470.273C166.742 443.378 156.502 434.318 128.951 436.853C125.817 431.558 121.95 425.048 119.577 419.403C137.182 422.618 144.66 420.933 161.397 420.013C189.139 413.993 205.116 403.373 229.988 391.298C236.661 388.058 248.065 384.528 255.399 382.428Z" fill="#FBCA90"/> 4 + <path d="M483.947 418.948C507.482 422.623 510.337 420.713 533.127 419.183C527.412 429.023 522.287 438.873 515.927 448.318C492.797 482.648 466.612 503.508 426.207 514.038C392.222 522.893 363.222 521.788 328.541 521.098C308.976 520.708 288.232 521.833 268.669 520.863C258.791 520.373 246.533 518.393 236.588 516.993C232.355 510.818 228.627 504.983 223.927 499.108C210.667 482.538 192.669 474.178 172.08 470.273C166.742 443.378 156.502 434.318 128.951 436.853C125.817 431.558 121.95 425.048 119.577 419.403C137.182 422.618 144.66 420.933 161.397 420.013C162.497 423.773 166.507 428.713 168.918 431.758C181.021 447.053 195.089 457.863 212.544 466.528C235.812 477.883 261.489 483.418 287.368 482.658C298.925 482.433 310.653 481.263 322.201 481.418C337.422 481.588 352.857 483.093 368.062 482.438C407.567 480.738 447.987 465.643 473.237 434.043C476.797 429.588 481.412 424.073 483.947 418.948Z" fill="#DAA66F"/> 5 + <path d="M290.927 279.73C305.49 277.811 335.272 277.646 349.782 279.8C348.787 283.708 347.632 287.709 346.562 291.609C345.712 304.291 354.077 311.966 365.047 316.138C379.512 321.638 398.732 320.928 401.432 302.1L401.557 290.38C427.012 299.258 467.412 316.428 484.837 337.578L499.777 352.708C503.267 377.098 512.867 392.008 540.372 387.163C543.867 388.523 547.252 389.848 550.797 391.078C547.977 398.078 546.907 401.198 542.322 407.293C522.367 412.713 501.402 413.268 481.192 408.913C474.472 407.363 467.872 405.358 461.427 402.913C446.167 397.103 409.757 379.728 394.737 383.168C384.602 383.758 382.052 382.128 370.277 384.143C362.957 395.478 352.882 401.583 339.572 404.518C323.257 408.113 302.155 405.308 287.827 396.348C284.919 394.528 280.951 389.443 278.763 386.553C271.886 383.413 262.857 381.573 255.399 382.428C246.118 377.313 202.738 396.158 192.671 400.443C166.454 411.608 140.085 415.173 112.029 408.653C108.188 403.713 105.94 400.148 103.062 394.563C102.344 393.043 102.278 393.113 102.211 391.463C104.171 387.868 107.964 388.023 111.734 386.748C130.724 380.308 142.756 362.153 155.768 347.673C179.907 320.818 207.839 304.887 241.316 292.189C241.32 297.356 241.229 302.629 241.64 307.77C254 333.798 301.619 312.137 295.897 292.733C293.895 288.097 292.559 284.457 290.927 279.73Z" fill="#DF7E40"/> 6 + <path d="M103.062 394.563C102.344 393.043 102.278 393.113 102.211 391.463C104.171 387.868 107.964 388.023 111.734 386.748C130.724 380.308 142.756 362.153 155.768 347.673C179.907 320.818 207.839 304.887 241.316 292.189C241.32 297.356 241.229 302.629 241.64 307.77C236.466 310.59 230.917 312.955 225.698 315.518C203.634 326.358 183.835 340.168 167.311 358.408C156.897 369.903 146.949 382.573 131.988 387.888C121.223 392.058 112.704 391.838 103.062 394.563Z" fill="#DAA66F"/> 7 + <path d="M278.763 386.553C277.792 383.098 277.118 380.533 277.739 376.908C278.732 375.743 278.865 375.608 280.811 376.698C284.096 378.603 286.937 381.338 290.149 383.343C309.701 395.563 335.692 396.458 355.362 384.093C358.882 381.878 364.387 376.833 368.372 376.443C371.912 378.123 370.842 380.783 370.277 384.143C362.957 395.478 352.882 401.583 339.572 404.518C323.257 408.113 302.155 405.308 287.827 396.348C284.919 394.528 280.951 389.443 278.763 386.553Z" fill="black"/> 8 + <path d="M290.927 279.73C305.49 277.811 335.272 277.646 349.782 279.8C348.787 283.708 347.632 287.709 346.562 291.609C328.753 291.588 313.763 291.715 295.897 292.733C293.895 288.097 292.559 284.457 290.927 279.73Z" fill="#DAA66F"/> 9 + <path d="M401.557 290.38C427.012 299.258 467.412 316.428 484.837 337.578C480.157 338.238 469.447 329.303 464.942 326.898C446.767 317.203 421.602 305.086 401.432 302.1L401.557 290.38Z" fill="#DAA66F"/> 10 + <path d="M188.218 352.723C200.675 352.353 198.265 361.203 191.428 367.303C188.828 369.618 186.631 370.428 183.51 371.758C164.943 371.768 177.098 356.773 188.218 352.723Z" fill="#DAA66F"/> 11 + <path d="M242.995 334.978C247.068 334.298 250.928 337.023 251.647 341.093C252.366 345.158 249.676 349.043 245.617 349.803C241.501 350.573 237.549 347.833 236.82 343.713C236.091 339.588 238.866 335.663 242.995 334.978Z" fill="black"/> 12 + <path d="M401.092 334.993C405.017 334.418 408.712 337.008 409.512 340.893C410.312 344.783 407.942 348.618 404.107 349.643C401.422 350.358 398.557 349.528 396.672 347.488C394.787 345.448 394.187 342.528 395.112 339.908C396.037 337.288 398.342 335.393 401.092 334.993Z" fill="black"/> 13 + <path d="M209.537 338.898C213.48 337.943 217.453 340.353 218.435 344.288C219.417 348.223 217.038 352.213 213.11 353.223C209.141 354.243 205.102 351.838 204.11 347.858C203.119 343.883 205.554 339.863 209.537 338.898Z" fill="black"/> 14 + <path d="M316.08 306.207C326.399 307.582 328.821 314.238 318.954 319.758C306.624 320.228 305.312 309.618 316.08 306.207Z" fill="#DAA66F"/> 15 + <path d="M433.888 339.433C437.713 338.583 441.523 340.903 442.523 344.693C443.523 348.478 441.353 352.378 437.608 353.528C435.048 354.313 432.268 353.633 430.358 351.758C428.448 349.883 427.718 347.118 428.458 344.543C429.193 341.973 431.278 340.013 433.888 339.433Z" fill="black"/> 16 + <path d="M630.267 121.668L630.147 120.766L630.842 120.325C639.712 122.706 655.427 144.106 659.937 152.022C676.232 180.11 679.662 213.783 671.717 245.123C662.932 279.787 636.427 318.493 596.937 318.803C584.327 318.903 572.912 310.875 566.997 300.068C566.682 299.48 566.377 298.885 566.087 298.281L565.512 296.848C552.497 270.2 568.522 231.94 588.127 212.76C608.517 192.812 621.987 187.081 629.167 157.708C631.382 145.249 631.377 134.223 630.267 121.668Z" fill="#EC7558"/> 17 + <path d="M630.267 121.668L630.147 120.766L630.842 120.325C639.712 122.706 655.427 144.106 659.937 152.022C676.232 180.11 679.662 213.783 671.717 245.123C662.932 279.787 636.427 318.493 596.937 318.803C584.327 318.903 572.912 310.875 566.997 300.068C566.682 299.48 566.377 298.885 566.087 298.281C577.417 300.905 594.667 302.945 605.117 297.717C657.917 271.295 666.642 193.445 643.562 144.331C641.532 140.012 633.402 122.926 630.267 121.668Z" fill="#D25742"/> 18 + <path d="M629.167 157.708C630.637 159.133 630.722 159.46 630.747 161.489C631.052 183.609 622.067 198.628 607.702 214.398C595.362 227.948 582.707 242.648 574.702 259.181C571.807 265.327 570.867 270.573 569.342 276.939C568.317 281.243 567.407 293.901 565.512 296.848C552.497 270.2 568.522 231.94 588.127 212.76C608.517 192.812 621.987 187.081 629.167 157.708Z" fill="#FCA78D"/> 19 + <path d="M587.637 249.122C597.787 248.864 594.557 257.504 589.827 262.528C580.507 262.37 582.487 253.971 587.637 249.122Z" fill="#FCA78D"/> 20 + <path d="M103.195 502.338C123.881 495.133 142.727 503.038 158.016 517.268C174.306 532.428 176.731 550.338 185.25 569.643C195.315 584.778 207.622 590.113 223.788 597.263L225.347 597.863L225.561 598.533C217.103 604.418 197.959 610.218 187.743 611.748C159.83 616.003 131.298 610.493 108.467 593.398C85.0304 575.853 68.9984 539.043 88.6734 513.073C93.7114 507.863 96.4574 505.173 103.195 502.338Z" fill="#EC7558"/> 21 + <path d="M88.6734 513.073C89.2499 519.703 89.3974 527.758 90.3449 533.993C92.8219 550.293 104.732 568.108 117.475 578.388C142.11 598.268 172.487 603.813 203.33 600.333C206.991 599.918 221.312 597.698 223.548 597.743L223.788 597.263L225.347 597.863L225.561 598.533C217.103 604.418 197.959 610.218 187.743 611.748C159.83 616.003 131.298 610.493 108.467 593.398C85.0304 575.853 68.9984 539.043 88.6734 513.073Z" fill="#D25742"/> 22 + <path d="M103.195 502.338C123.881 495.133 142.727 503.038 158.016 517.268C174.306 532.428 176.731 550.338 185.25 569.643C178.476 569.478 165.297 542.483 160.837 536.588C157.568 532.273 154.479 527.163 150.074 523.223C140.683 514.878 129.258 508.393 116.999 505.458C112.954 504.488 106.79 504.288 103.195 502.338Z" fill="#FCA78D"/> 23 + <path d="M137.579 521.523C144.501 521.993 149.123 526.218 143.388 532.623C136.974 531.533 131.871 527.923 137.579 521.523Z" fill="#FCA78D"/> 24 + <path d="M353.837 90.4498C359.452 73.8303 367.342 62.2478 383.522 54.2008C396.532 47.8333 411.527 46.8383 425.272 51.4308C439.502 56.3343 451.182 66.7208 457.717 80.2798C460.507 86.1208 461.527 90.4803 462.742 96.7608C463.607 102.468 463.092 110.088 461.892 115.736C458.692 130.167 449.932 142.754 437.507 150.762C425.132 158.725 409.372 161.191 395.087 157.973C380.692 154.649 368.222 145.708 360.452 133.139C352.572 120.484 350.467 104.881 353.837 90.4498Z" fill="white"/> 25 + <path d="M353.837 90.4498C357.122 94.6063 359.612 101.952 361.922 106.942C368.787 121.772 385.107 131.843 400.887 134.148C415.372 136.22 430.087 132.457 441.797 123.687C449.007 118.236 453.357 111.985 458.017 104.323C459.322 102.175 461.262 98.6463 462.742 96.7608C463.607 102.468 463.092 110.088 461.892 115.736C458.692 130.167 449.932 142.754 437.507 150.762C425.132 158.725 409.372 161.191 395.087 157.973C380.692 154.649 368.222 145.708 360.452 133.139C352.572 120.484 350.467 104.881 353.837 90.4498Z" fill="#CBCBCB"/> 26 + <path d="M388.342 79.9167C392.292 79.6912 395.907 79.4488 399.797 80.3078C420.127 84.7558 421.472 113.43 404.662 123.189C397.832 127.153 390.652 126.481 383.437 124.46C381.412 123.545 380.067 122.888 378.277 121.528C373.637 118.021 370.642 112.759 369.997 106.978C369.232 99.7773 371.992 92.1377 376.547 86.5822C377.497 90.3352 378.822 95.9243 383.122 97.1873C386.867 98.2893 392.662 94.7797 393.347 90.9117C393.932 87.6387 390.147 83.3413 388.177 80.9138L388.342 79.9167Z" fill="black"/> 27 + <path d="M165.475 119.031C167.666 93.0158 187.94 72.1763 213.885 69.2718C239.83 66.3678 264.21 82.2083 272.099 107.095C278.778 128.169 272.113 151.191 255.208 165.436C238.303 179.682 214.484 182.348 194.848 172.193C175.212 162.038 163.621 141.06 165.475 119.031Z" fill="white"/> 28 + <path d="M272.099 107.095C278.778 128.169 272.113 151.191 255.208 165.436C238.303 179.682 214.484 182.348 194.848 172.193C175.212 162.038 163.621 141.06 165.475 119.031C168.482 122.38 170.249 127.31 172.898 131.043C186.146 149.712 209.444 157.783 231.448 151.535C234.924 150.548 243.589 147.883 244.95 144.338C244.448 143.319 244.692 143.603 243.915 142.819C245.99 141.578 248.211 139.977 250.226 138.596L251.649 139.189C258.416 137.498 264.252 126.015 266.841 119.896C268.386 116.244 269.901 110.122 272.099 107.095Z" fill="#CBCBCB"/> 29 + <path d="M224.677 100.037C232.673 97.4117 241.565 97.8652 248.379 103.208C253.056 106.921 256.069 112.338 256.753 118.271C257.727 126.269 254.976 132.495 250.226 138.596C248.211 139.977 245.99 141.578 243.915 142.819C239.157 144.811 233.928 145.395 228.848 144.503C215.224 142.1 208.111 128.444 210.842 115.628C211.381 113.099 211.845 110.62 214.109 109.105C217.095 110.191 219.322 118.813 224.839 116.879C237.837 112.324 233.6 105.027 224.677 100.037Z" fill="black"/> 30 + <path d="M571.682 136.256L572.662 135.567L573.267 135.956C573.597 139.022 572.262 151.077 572.017 155.099C570.882 173.83 575.437 185.601 581.817 202.617C577.077 207.596 572.917 212.055 568.702 217.56C559.412 230.646 553.222 243.369 550.662 259.395C549.962 263.781 549.947 267.79 549.417 271.816C549.682 278.786 550.497 284.363 551.737 291.199C529.307 262.437 524.557 230.091 533.547 194.954C538.467 175.711 553.957 146.542 571.682 136.256Z" fill="#EC7558"/> 31 + <path d="M551.737 291.199C529.307 262.437 524.557 230.091 533.547 194.954C538.467 175.711 553.957 146.542 571.682 136.256C569.317 145.164 565.942 154.032 563.577 163.197C545.887 188.281 539.297 224.112 543.587 254.389C544.147 258.352 547.032 268.9 549.417 271.816C549.682 278.786 550.497 284.363 551.737 291.199Z" fill="#FCA78D"/> 32 + <path d="M571.682 136.256L572.662 135.567L573.267 135.956C573.597 139.022 572.262 151.077 572.017 155.099C570.882 173.83 575.437 185.601 581.817 202.617C577.077 207.596 572.917 212.055 568.702 217.56C564.542 203.949 562.878 196.493 563.008 181.863C563.063 175.932 563.652 168.977 563.577 163.197C565.942 154.032 569.317 145.164 571.682 136.256Z" fill="#D25742"/> 33 + <path d="M125.905 488.768C143.79 479.983 163.771 477.843 182.788 484.403C202.503 491.308 218.678 505.743 227.769 524.553C230.265 529.753 232.697 536.558 234.16 542.178C234.865 544.418 235.272 547.163 235.702 549.503C231.529 546.628 227.522 543.123 223.057 540.198C207.421 529.938 196.352 527.793 178.497 525.123C175.75 520.383 172.071 515.743 168.622 511.478C158.348 500.768 151.894 496.873 138.223 491.728C134.165 490.743 129.967 489.663 125.905 488.768Z" fill="#EC7558"/> 34 + <path d="M125.905 488.768C143.79 479.983 163.771 477.843 182.788 484.403C202.503 491.308 218.678 505.743 227.769 524.553C230.265 529.753 232.697 536.558 234.16 542.178L233.248 542.328C230.914 540.458 227.385 536.478 225.206 534.158C221.174 524.323 205.62 512.248 197.21 505.928C181.679 494.263 157.47 488.293 138.223 491.728C134.165 490.743 129.967 489.663 125.905 488.768Z" fill="#FCA78D"/> 35 + <path d="M168.622 511.478L169.413 511.678C174.417 512.908 179.094 513.378 184.125 514.263C193.36 515.893 202.259 519.053 210.456 523.608C215.387 526.348 221.14 532.363 225.206 534.158C227.385 536.478 230.914 540.458 233.248 542.328L234.16 542.178C234.865 544.418 235.272 547.163 235.702 549.503C231.529 546.628 227.522 543.123 223.057 540.198C207.421 529.938 196.352 527.793 178.497 525.123C175.75 520.383 172.071 515.743 168.622 511.478Z" fill="#D25742"/> 36 + <path d="M382.522 183.94C384.327 183.074 386.942 184.987 388.607 185.954C394.787 189.142 400.647 189.292 404.772 191.163C395.532 221.024 387.832 272.307 387.837 303.509C380.297 305.63 375.922 305.824 368.432 303.116C363.867 300.9 361.917 299.3 358.982 295.333C369.652 258.855 377.522 221.616 382.522 183.94Z" fill="#EC7558"/> 37 + <path d="M382.522 183.94C384.327 183.074 386.942 184.987 388.607 185.954C386.387 198.175 384.322 210.424 382.427 222.7C380.907 232.459 371.897 298.778 368.432 303.116C363.867 300.9 361.917 299.3 358.982 295.333C369.652 258.855 377.522 221.616 382.522 183.94Z" fill="#FCA78D"/> 38 + <path d="M597.977 459.548C599.347 456.188 600.927 453.068 602.527 449.813C620.497 473.113 632.577 508.983 635.627 537.988L631.152 540.588C628.537 541.913 623.822 544.108 621.462 545.528C618.632 546.848 615.617 547.013 612.542 547.338C599.647 536.633 589.772 493.078 586.962 476.188L592.887 468.733C595.317 465.498 596.712 463.363 597.977 459.548Z" fill="#EC7558"/> 39 + <path d="M586.962 476.188L592.887 468.733C596.607 478.033 598.732 486.538 601.682 496.033C607.277 514.018 612.792 528.898 621.462 545.528C618.632 546.848 615.617 547.013 612.542 547.338C599.647 536.633 589.772 493.078 586.962 476.188Z" fill="#D25742"/> 40 + <path d="M597.977 459.548C599.347 456.188 600.927 453.068 602.527 449.813C620.497 473.113 632.577 508.983 635.627 537.988L631.152 540.588C628.967 534.053 627.872 525.003 625.997 518.393C621.132 501.223 610.352 471.583 597.977 459.548Z" fill="#FCA78D"/> 41 + <path d="M46.1465 449.888C47.436 452.763 48.6755 455.663 49.8655 458.578C51.7055 462.243 53.2465 465.323 55.383 468.808L61.4075 476.193C57.699 495.823 53.352 514.603 45.0825 532.918C40.496 543.078 38.763 550.938 26.31 545.458C23.143 543.888 20.741 542.493 17.702 540.663C16.4095 539.823 14.768 538.538 13.486 537.603C17.5475 504.138 26.2425 477.328 46.1465 449.888Z" fill="#EC7558"/> 42 + <path d="M55.383 468.808L61.4075 476.193C57.699 495.823 53.352 514.603 45.0825 532.918C40.496 543.078 38.763 550.938 26.31 545.458C27.9915 540.588 34.1014 531.733 36.5774 524.748C43.1459 506.218 49.1495 487.443 55.383 468.808Z" fill="#D25742"/> 43 + <path d="M46.1465 449.888C47.436 452.763 48.6755 455.663 49.8655 458.578C47.22 463.088 43.8825 467.528 41.417 472.118C32.374 488.948 25.4485 507.483 21.044 526.063C20.3975 528.788 18.779 538.953 17.702 540.663C16.4095 539.823 14.768 538.538 13.486 537.603C17.5475 504.138 26.2425 477.328 46.1465 449.888Z" fill="#FCA78D"/> 44 + <path d="M255.63 196.465C258.685 210.541 261.493 223.563 265.147 237.502C270.494 257.897 276.722 276.73 283.299 296.669C280.673 299.073 277.485 302.032 274.24 303.569C267.007 306.338 262.279 306.15 254.968 304.502C251.896 267.566 246.202 242.253 234.508 206.736C238.401 205.339 247.111 202.467 250.114 200.546C251.916 199.129 253.774 197.81 255.63 196.465Z" fill="#EC7558"/> 45 + <path d="M255.63 196.465C258.685 210.541 261.493 223.563 265.147 237.502C270.494 257.897 276.722 276.73 283.299 296.669C280.673 299.073 277.485 302.032 274.24 303.569C272.541 302.092 261.876 249.582 260.581 243.571C257.698 230.188 253.071 213.858 250.114 200.546C251.916 199.129 253.774 197.81 255.63 196.465Z" fill="#FCA78D"/> 46 + <path d="M545.867 303.084C551.982 307.991 557.002 310.809 563.562 314.983C565.202 316.028 568.147 319.658 570.197 321.133C579.172 327.583 588.657 329.653 599.357 330.273C597.672 334.233 596.132 337.728 593.562 341.198C580.692 358.588 549.767 373.023 537.492 346.588C537.097 345.793 536.762 344.963 536.487 344.118C533.012 333.528 537.257 317.638 542.107 307.999C543.267 306.411 544.562 304.524 545.867 303.084Z" fill="#D25742"/> 47 + <path d="M542.107 307.999L542.437 308.392C547.887 315.003 551.707 322.913 558.607 328.383C563.397 332.178 568.617 334.778 573.992 337.603C563.717 347.413 551.592 354.718 537.492 346.588C537.097 345.793 536.762 344.963 536.487 344.118C533.012 333.528 537.257 317.638 542.107 307.999Z" fill="#EC7558"/> 48 + <path d="M538.252 446.813C546.957 442.398 558.467 438.343 567.842 436.248C567.397 439.088 567.397 441.798 567.312 444.668C567.307 450.173 567.347 453.893 568.107 459.323C568.727 464.473 569.187 467.098 570.292 472.243C557.767 476.918 541.477 485.663 528.102 487.593C525.747 487.933 508.752 484.263 505.087 483.578C510.517 477.838 514.677 472.983 519.342 466.643C522.257 462.683 527.027 455.238 530.222 451.923L530.852 451.278C532.897 449.153 535.302 448.293 538.007 447.043L538.252 446.813Z" fill="#D25742"/> 49 + <path d="M538.252 446.813C546.957 442.398 558.467 438.343 567.842 436.248C567.397 439.088 567.397 441.798 567.312 444.668C567.307 450.173 567.347 453.893 568.107 459.323L567.967 460.718C565.287 464.478 534.342 474.198 528.092 476.598C532.187 467.948 537.327 456.513 538.007 447.043L538.252 446.813Z" fill="#EC7558"/> 50 + <path d="M538.252 446.813C546.957 442.398 558.467 438.343 567.842 436.248C567.397 439.088 567.397 441.798 567.312 444.668C558.337 444.793 552.437 446.073 543.842 448.658C542.587 449.038 539.452 450.188 538.502 449.708C538.412 448.753 538.302 447.768 538.252 446.813Z" fill="#FCA78D"/> 51 + <path d="M82.907 473.073C87.2555 461.633 100.359 450.873 112.933 452.163C120.9 452.978 125.246 456.363 130.245 462.078C132.571 464.653 133.629 466.838 135.31 469.863C135.281 472.118 135.732 471.383 134.615 472.658C121.201 477.283 115.223 481.203 103.97 489.818C101.06 492.048 93.736 493.183 90.7705 495.913C86.384 499.373 81.7335 504.998 77.977 509.303C77.3485 504.718 76.0979 497.153 77.6469 492.643C78.3649 485.468 79.8345 479.548 82.907 473.073Z" fill="#EC7558"/> 52 + <path d="M135.31 469.863C135.281 472.118 135.732 471.383 134.615 472.658C121.201 477.283 115.223 481.203 103.97 489.818C101.06 492.048 93.736 493.183 90.7705 495.913C86.384 499.373 81.7335 504.998 77.977 509.303C77.3485 504.718 76.0979 497.153 77.6469 492.643C79.1059 493.208 83.0855 488.693 84.3455 487.558C87.607 484.593 91.1055 481.903 94.805 479.503C108.878 470.453 119.242 469.623 135.31 469.863Z" fill="#D25742"/> 53 + <path d="M82.907 473.073C87.2555 461.633 100.359 450.873 112.933 452.163C120.9 452.978 125.246 456.363 130.245 462.078C123.46 462.993 115.782 456.168 104.2 460.283C96.7105 462.943 87.0495 473.193 82.907 473.073Z" fill="#FCA78D"/> 54 + <path d="M490.862 496.533C496.012 496.918 501.152 497.363 506.287 497.873C513.867 498.868 520.267 499.953 527.667 501.993C523.647 509.698 522.137 512.473 519.757 520.878C519.237 523.588 518.812 527.173 518.397 529.968C499.652 527.448 481.237 522.373 464.337 513.783C474.877 507.908 481.217 503.723 490.862 496.533Z" fill="#D25742"/> 55 + <path d="M506.287 497.873C513.867 498.868 520.267 499.953 527.667 501.993C523.647 509.698 522.137 512.473 519.757 520.878C509.532 518.613 502.397 517.153 492.792 512.708C495.562 509.753 503.507 498.993 506.287 497.873Z" fill="#EC7558"/> 56 + <path d="M540.027 538.163C543.567 535.708 547.923 532.853 551.148 530.108C553.618 548.918 553.673 559.673 551.828 578.503C545.463 578.613 541.017 578.428 534.688 577.463C531.953 576.673 529.507 575.388 527.062 573.968C527.647 565.033 529.702 551.528 531.597 542.788C534.257 541.023 537.177 539.623 540.027 538.163Z" fill="#EC7558"/> 57 + <path d="M540.027 538.163C537.952 546.693 535.342 568.693 534.688 577.463C531.953 576.673 529.507 575.388 527.062 573.968C527.647 565.033 529.702 551.528 531.597 542.788C534.257 541.023 537.177 539.623 540.027 538.163Z" fill="#D25742"/> 58 + <path d="M524.987 336.233L525.832 342.868C526.332 345.278 526.782 347.738 527.477 350.088C532.662 361.698 537.587 365.323 548.822 370.518C535.172 377.668 521.912 382.063 512.892 365.303C512.057 363.293 511.522 360.973 510.957 358.853C509.477 346.033 514.117 341.293 524.987 336.233Z" fill="#D25742"/> 59 + <path d="M524.987 336.233L525.832 342.868C526.332 345.278 526.782 347.738 527.477 350.088C526.952 361.673 525.057 365.318 512.892 365.303C512.057 363.293 511.522 360.973 510.957 358.853C509.477 346.033 514.117 341.293 524.987 336.233Z" fill="#EC7558"/> 60 + <path d="M524.987 336.233L525.832 342.868C516.527 348.173 515.482 355.238 510.957 358.853C509.477 346.033 514.117 341.293 524.987 336.233Z" fill="#FCA78D"/> 61 + <path d="M63.1015 543.668C63.705 539.218 64.87 532.123 67.78 528.553L68.5795 528.563C70.3855 532.328 68.879 543.683 69.458 548.413C70.145 554.028 71.899 559.428 72.94 564.858C74.287 569.323 77.087 574.453 79.317 578.528C72.021 579.988 68.2095 579.643 60.878 578.548C60.875 565.023 61.044 557.058 63.1015 543.668Z" fill="#EC7558"/> 62 + <path d="M63.1015 543.668C63.705 539.218 64.87 532.123 67.78 528.553L68.5795 528.563C70.3855 532.328 68.879 543.683 69.458 548.413C70.145 554.028 71.899 559.428 72.94 564.858C65.741 558.988 67.554 547.478 63.1015 543.668Z" fill="#D25742"/> 63 + <path d="M383.927 169.306C392.892 171.49 400.472 173.211 409.867 173.297C409.207 175.506 404.812 189.758 404.772 191.163C400.647 189.292 394.787 189.142 388.607 185.954C386.942 184.987 384.327 183.074 382.522 183.94C383.237 179.114 383.547 174.176 383.927 169.306Z" fill="#D25742"/> 64 + <path d="M129.305 447.048C137.482 445.878 145.265 445.083 152.292 450.078C154.382 451.758 155.976 453.168 157.36 455.518C159.5 459.733 160.807 464.318 161.207 469.028C155.553 468.868 152.214 468.843 146.665 469.973C144.881 465.228 143.442 461.563 140.684 457.263C138.804 454.778 137.236 453.313 135.014 451.138L129.305 447.048Z" fill="#D25742"/> 65 + <path d="M129.305 447.048C137.482 445.878 145.265 445.083 152.292 450.078C154.382 451.758 155.976 453.168 157.36 455.518C154.72 457.033 144.194 457.228 140.684 457.263C138.804 454.778 137.236 453.313 135.014 451.138L129.305 447.048Z" fill="#EC7558"/> 66 + <path d="M129.305 447.048C137.482 445.878 145.265 445.083 152.292 450.078C150.161 451.043 138.313 451.003 135.014 451.138L129.305 447.048Z" fill="#FCA78D"/> 67 + <path d="M228.779 191.537C238.128 189.715 244.519 187.479 253.121 183.867C254.1 187.87 254.549 192.118 255.63 196.465C253.774 197.81 251.916 199.129 250.114 200.546C247.111 202.467 238.401 205.339 234.508 206.736C232.684 201.699 230.677 196.56 228.779 191.537Z" fill="#D25742"/> 68 + <path d="M527.552 589.008L532.242 590.343L541.612 592.333C534.042 602.043 531.297 605.003 521.582 612.703C519.627 614.578 517.417 615.863 515.142 617.343C517.227 610.748 524.222 594.998 527.552 589.008Z" fill="#EC7558"/> 69 + <path d="M527.552 589.008L532.242 590.343C529.987 592.138 521.382 609.828 521.582 612.703C519.627 614.578 517.417 615.863 515.142 617.343C517.227 610.748 524.222 594.998 527.552 589.008Z" fill="#D25742"/> 70 + <path d="M80.606 591.863C81.8665 591.693 81.787 591.653 82.963 592.108C86.4145 595.743 90.2175 611.928 91.8115 617.693C89.7535 616.163 87.886 614.403 85.977 612.688C78.5545 605.248 75.3425 602.018 69.688 593.283L80.606 591.863Z" fill="url(#paint0_linear_12_761)"/> 71 + <path d="M625.938 558.418C628.697 557.458 630.458 556.788 633.148 555.568C631.518 565.678 629.138 580.943 624.703 590.043C624.353 586.598 624.032 583.023 623.587 579.598C622.447 572.933 621.608 566.223 621.062 559.488L625.938 558.418Z" fill="#EC7558"/> 72 + <path d="M621.062 559.488L625.938 558.418L625.888 559.118C625.433 565.788 627.462 575.483 623.662 579.443C623.637 579.493 623.612 579.548 623.587 579.598C622.447 572.933 621.608 566.223 621.062 559.488Z" fill="#D25742"/> 73 + <path d="M15.4434 555.588C18.0874 557.013 19.8183 557.708 22.5948 558.823C24.3158 559.318 25.5999 559.418 26.7989 560.518C27.1469 564.513 25.2134 575.628 24.5164 580.158C24.1304 582.998 23.9274 587.288 23.6929 590.248C19.8154 580.073 16.9349 566.418 15.4434 555.588Z" fill="#EC7558"/> 74 + <path d="M22.5948 558.823C24.3158 559.318 25.5999 559.418 26.7989 560.518C27.1469 564.513 25.2134 575.628 24.5164 580.158C20.9659 574.903 22.3613 565.498 22.5948 558.823Z" fill="#D25742"/> 75 + <path d="M80.1954 436.793C85.8729 438.053 92.2999 440.673 97.8129 442.743C94.7574 444.208 92.7519 445.373 89.8454 447.123C86.3229 449.618 84.3154 451.808 81.4064 454.963C81.2269 448.918 81.0179 442.773 80.1954 436.793Z" fill="#EC7558"/> 76 + <path d="M62.7345 439.883C64.3905 439.623 65.0345 439.338 66.493 440.128C68.912 443.283 67.6455 457.073 65.875 459.098L65.2039 458.493C61.7704 452.188 59.7124 447.143 57.0854 440.543L62.7345 439.883Z" fill="#FCA78D"/> 77 + <path d="M537.837 511.223C540.742 512.813 543.153 514.343 545.943 516.128C542.798 519.208 540.277 521.493 536.907 524.323L532.407 527.483C533.592 520.608 534.762 517.483 537.837 511.223Z" fill="#EC7558"/> 78 + <path d="M580.767 438.983L591.102 440.353L587.687 449.008C585.252 449.478 582.797 449.863 580.332 450.173C580.322 446.053 580.432 443.078 580.767 438.983Z" fill="#FCA78D"/> 79 + <path d="M580.332 450.173C582.797 449.863 585.252 449.478 587.687 449.008C585.752 453.788 584.162 456.743 581.722 461.248C580.957 457.773 580.367 453.728 580.332 450.173Z" fill="#D25742"/> 80 + <path d="M412.442 0.292289C429.932 -1.94271 450.812 8.87979 459.012 24.5403C462.002 30.2538 464.367 43.0648 453.577 36.7678C445.037 30.9748 436.292 26.1793 425.837 25.2133C415.502 24.2583 407.397 26.2433 400.842 16.5408C400.847 6.74379 402.117 2.30929 412.442 0.292289Z" fill="black"/> 81 + <path d="M413.347 6.67285C422.967 7.14585 433.182 9.88436 441.147 15.4429C443.652 17.1899 450.242 22.7168 450.757 25.6548C449.252 25.7103 447.792 24.8294 446.302 24.1714C440.062 21.2564 439.282 21.1389 432.407 19.0634C425.447 16.5084 415.252 18.7633 409.057 15.2413C404.982 12.9223 411.442 7.79085 413.347 6.67285Z" fill="#EC7558"/> 82 + <path d="M197.02 22.2794C205.885 21.8509 219.143 23.5194 217.439 37.2884C216.248 46.9104 195.42 46.4919 188.391 49.0604C182.824 51.0949 178.852 53.2069 173.402 57.0939C170.384 59.5219 164.819 64.7769 160.372 63.0674C158.319 62.2974 157.561 59.1034 157.919 57.1019C160.272 43.9374 172.288 32.4194 183.876 26.7324C188.359 24.5324 192.464 23.3444 197.02 22.2794Z" fill="black"/> 83 + <path d="M200.139 29.2489C204.609 28.8759 211.262 30.2984 209.651 36.3009C209.276 36.7954 208.565 37.8339 207.939 37.9684C199.539 39.7744 191.092 40.8314 183.012 43.9704C179.761 45.2334 177.013 46.5834 173.915 48.2249C170.735 50.3139 169.086 51.6794 166.18 54.1789C175.724 39.2179 182.96 33.4139 200.139 29.2489Z" fill="#EC7558"/> 84 + <defs> 85 + <linearGradient id="paint0_linear_12_761" x1="544.278" y1="228.288" x2="284.127" y2="411.499" gradientUnits="userSpaceOnUse"> 86 + <stop stop-color="#D55C47"/> 87 + <stop offset="1" stop-color="#F3876A"/> 88 + </linearGradient> 89 + </defs> 90 + </svg>