CINXE.COM
Associated Societies - eage.org
<!doctype html> <html lang="en-US" prefix="og: https://ogp.me/ns#"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="profile" href="https://gmpg.org/xfn/11"> <style>img:is([sizes="auto" i], [sizes^="auto," i]) { contain-intrinsic-size: 3000px 1500px }</style> <!-- Search Engine Optimization by Rank Math - https://rankmath.com/ --> <title>Associated Societies - eage.org</title> <meta name="description" content="EAGE Associated Societies receive the following benefits:"/> <meta name="robots" content="follow, index, max-snippet:-1, max-video-preview:-1, max-image-preview:large"/> <link rel="canonical" href="https://eage.org/about_eage/associated-societies/" /> <meta property="og:locale" content="en_US" /> <meta property="og:type" content="article" /> <meta property="og:title" content="Associated Societies - eage.org" /> <meta property="og:description" content="EAGE Associated Societies receive the following benefits:" /> <meta property="og:url" content="https://eage.org/about_eage/associated-societies/" /> <meta property="og:site_name" content="eage.org" /> <meta property="og:updated_time" content="2024-11-05T21:11:02+00:00" /> <meta property="og:image" content="https://eage.org/wp-content/uploads/2020/04/Template_RevSlider_BG.jpg" /> <meta property="og:image:secure_url" content="https://eage.org/wp-content/uploads/2020/04/Template_RevSlider_BG.jpg" /> <meta property="og:image:width" content="800" /> <meta property="og:image:height" content="217" /> <meta property="og:image:alt" content="societies" /> <meta property="og:image:type" content="image/jpeg" /> <meta name="twitter:card" content="summary_large_image" /> <meta name="twitter:title" content="Associated Societies - eage.org" /> <meta name="twitter:description" content="EAGE Associated Societies receive the following benefits:" /> <meta name="twitter:image" content="https://eage.org/wp-content/uploads/2020/04/Template_RevSlider_BG.jpg" /> <!-- /Rank Math WordPress SEO plugin --> <link rel='dns-prefetch' href='//www.googletagmanager.com' /> <link rel='dns-prefetch' href='//stats.wp.com' /> <link rel='dns-prefetch' href='//pagead2.googlesyndication.com' /> <link rel="alternate" type="application/rss+xml" title="eage.org » Feed" href="https://eage.org/feed/" /> <link rel="alternate" type="application/rss+xml" title="eage.org » Comments Feed" href="https://eage.org/comments/feed/" /> <link rel="alternate" type="application/rss+xml" title="eage.org » Associated Societies Comments Feed" href="https://eage.org/about_eage/associated-societies/feed/" /> <script type="text/javascript"> /* <![CDATA[ */ window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/svg\/","svgExt":".svg","source":{"wpemoji":"https:\/\/eage.org\/wp-includes\/js\/wp-emoji.js?ver=6.7.1","twemoji":"https:\/\/eage.org\/wp-includes\/js\/twemoji.js?ver=6.7.1"}}; /** * @output wp-includes/js/wp-emoji-loader.js */ /** * Emoji Settings as exported in PHP via _print_emoji_detection_script(). * @typedef WPEmojiSettings * @type {object} * @property {?object} source * @property {?string} source.concatemoji * @property {?string} source.twemoji * @property {?string} source.wpemoji * @property {?boolean} DOMReady * @property {?Function} readyCallback */ /** * Support tests. * @typedef SupportTests * @type {object} * @property {?boolean} flag * @property {?boolean} emoji */ /** * IIFE to detect emoji support and load Twemoji if needed. * * @param {Window} window * @param {Document} document * @param {WPEmojiSettings} settings */ ( function wpEmojiLoader( window, document, settings ) { if ( typeof Promise === 'undefined' ) { return; } var sessionStorageKey = 'wpEmojiSettingsSupports'; var tests = [ 'flag', 'emoji' ]; /** * Checks whether the browser supports offloading to a Worker. * * @since 6.3.0 * * @private * * @returns {boolean} */ function supportsWorkerOffloading() { return ( typeof Worker !== 'undefined' && typeof OffscreenCanvas !== 'undefined' && typeof URL !== 'undefined' && URL.createObjectURL && typeof Blob !== 'undefined' ); } /** * @typedef SessionSupportTests * @type {object} * @property {number} timestamp * @property {SupportTests} supportTests */ /** * Get support tests from session. * * @since 6.3.0 * * @private * * @returns {?SupportTests} Support tests, or null if not set or older than 1 week. */ function getSessionSupportTests() { try { /** @type {SessionSupportTests} */ var item = JSON.parse( sessionStorage.getItem( sessionStorageKey ) ); if ( typeof item === 'object' && typeof item.timestamp === 'number' && new Date().valueOf() < item.timestamp + 604800 && // Note: Number is a week in seconds. typeof item.supportTests === 'object' ) { return item.supportTests; } } catch ( e ) {} return null; } /** * Persist the supports in session storage. * * @since 6.3.0 * * @private * * @param {SupportTests} supportTests Support tests. */ function setSessionSupportTests( supportTests ) { try { /** @type {SessionSupportTests} */ var item = { supportTests: supportTests, timestamp: new Date().valueOf() }; sessionStorage.setItem( sessionStorageKey, JSON.stringify( item ) ); } catch ( e ) {} } /** * Checks if two sets of Emoji characters render the same visually. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 4.9.0 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} set1 Set of Emoji to test. * @param {string} set2 Set of Emoji to test. * * @return {boolean} True if the two sets render the same. */ function emojiSetsRenderIdentically( context, set1, set2 ) { // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( set1, 0, 0 ); var rendered1 = new Uint32Array( context.getImageData( 0, 0, context.canvas.width, context.canvas.height ).data ); // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( set2, 0, 0 ); var rendered2 = new Uint32Array( context.getImageData( 0, 0, context.canvas.width, context.canvas.height ).data ); return rendered1.every( function ( rendered2Data, index ) { return rendered2Data === rendered2[ index ]; } ); } /** * Determines if the browser properly renders Emoji that Twemoji can supplement. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 4.2.0 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} type Whether to test for support of "flag" or "emoji". * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification. * * @return {boolean} True if the browser can render emoji, false if it cannot. */ function browserSupportsEmoji( context, type, emojiSetsRenderIdentically ) { var isIdentical; switch ( type ) { case 'flag': /* * Test for Transgender flag compatibility. Added in Unicode 13. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (white flag emoji + transgender symbol). */ isIdentical = emojiSetsRenderIdentically( context, '\uD83C\uDFF3\uFE0F\u200D\u26A7\uFE0F', // as a zero-width joiner sequence '\uD83C\uDFF3\uFE0F\u200B\u26A7\uFE0F' // separated by a zero-width space ); if ( isIdentical ) { return false; } /* * Test for UN flag compatibility. This is the least supported of the letter locale flags, * so gives us an easy test for full support. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly ([U] + [N]). */ isIdentical = emojiSetsRenderIdentically( context, '\uD83C\uDDFA\uD83C\uDDF3', // as the sequence of two code points '\uD83C\uDDFA\u200B\uD83C\uDDF3' // as the two code points separated by a zero-width space ); if ( isIdentical ) { return false; } /* * Test for English flag compatibility. England is a country in the United Kingdom, it * does not have a two letter locale code but rather a five letter sub-division code. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (black flag emoji + [G] + [B] + [E] + [N] + [G]). */ isIdentical = emojiSetsRenderIdentically( context, // as the flag sequence '\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67\uDB40\uDC7F', // with each code point separated by a zero-width space '\uD83C\uDFF4\u200B\uDB40\uDC67\u200B\uDB40\uDC62\u200B\uDB40\uDC65\u200B\uDB40\uDC6E\u200B\uDB40\uDC67\u200B\uDB40\uDC7F' ); return ! isIdentical; case 'emoji': /* * Four and twenty blackbirds baked in a pie. * * To test for Emoji 15.0 support, try to render a new emoji: Blackbird. * * The Blackbird is a ZWJ sequence combining 🐦 Bird and ⬛ large black square., * * 0x1F426 (\uD83D\uDC26) == Bird * 0x200D == Zero-Width Joiner (ZWJ) that links the code points for the new emoji or * 0x200B == Zero-Width Space (ZWS) that is rendered for clients not supporting the new emoji. * 0x2B1B == Large Black Square * * When updating this test for future Emoji releases, ensure that individual emoji that make up the * sequence come from older emoji standards. */ isIdentical = emojiSetsRenderIdentically( context, '\uD83D\uDC26\u200D\u2B1B', // as the zero-width joiner sequence '\uD83D\uDC26\u200B\u2B1B' // separated by a zero-width space ); return ! isIdentical; } return false; } /** * Checks emoji support tests. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 6.3.0 * * @private * * @param {string[]} tests Tests. * @param {Function} browserSupportsEmoji Reference to browserSupportsEmoji function, needed due to minification. * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification. * * @return {SupportTests} Support tests. */ function testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically ) { var canvas; if ( typeof WorkerGlobalScope !== 'undefined' && self instanceof WorkerGlobalScope ) { canvas = new OffscreenCanvas( 300, 150 ); // Dimensions are default for HTMLCanvasElement. } else { canvas = document.createElement( 'canvas' ); } var context = canvas.getContext( '2d', { willReadFrequently: true } ); /* * Chrome on OS X added native emoji rendering in M41. Unfortunately, * it doesn't work when the font is bolder than 500 weight. So, we * check for bold rendering support to avoid invisible emoji in Chrome. */ context.textBaseline = 'top'; context.font = '600 32px Arial'; var supports = {}; tests.forEach( function ( test ) { supports[ test ] = browserSupportsEmoji( context, test, emojiSetsRenderIdentically ); } ); return supports; } /** * Adds a script to the head of the document. * * @ignore * * @since 4.2.0 * * @param {string} src The url where the script is located. * * @return {void} */ function addScript( src ) { var script = document.createElement( 'script' ); script.src = src; script.defer = true; document.head.appendChild( script ); } settings.supports = { everything: true, everythingExceptFlag: true }; // Create a promise for DOMContentLoaded since the worker logic may finish after the event has fired. var domReadyPromise = new Promise( function ( resolve ) { document.addEventListener( 'DOMContentLoaded', resolve, { once: true } ); } ); // Obtain the emoji support from the browser, asynchronously when possible. new Promise( function ( resolve ) { var supportTests = getSessionSupportTests(); if ( supportTests ) { resolve( supportTests ); return; } if ( supportsWorkerOffloading() ) { try { // Note that the functions are being passed as arguments due to minification. var workerScript = 'postMessage(' + testEmojiSupports.toString() + '(' + [ JSON.stringify( tests ), browserSupportsEmoji.toString(), emojiSetsRenderIdentically.toString() ].join( ',' ) + '));'; var blob = new Blob( [ workerScript ], { type: 'text/javascript' } ); var worker = new Worker( URL.createObjectURL( blob ), { name: 'wpTestEmojiSupports' } ); worker.onmessage = function ( event ) { supportTests = event.data; setSessionSupportTests( supportTests ); worker.terminate(); resolve( supportTests ); }; return; } catch ( e ) {} } supportTests = testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically ); setSessionSupportTests( supportTests ); resolve( supportTests ); } ) // Once the browser emoji support has been obtained from the session, finalize the settings. .then( function ( supportTests ) { /* * Tests the browser support for flag emojis and other emojis, and adjusts the * support settings accordingly. */ for ( var test in supportTests ) { settings.supports[ test ] = supportTests[ test ]; settings.supports.everything = settings.supports.everything && settings.supports[ test ]; if ( 'flag' !== test ) { settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && settings.supports[ test ]; } } settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && ! settings.supports.flag; // Sets DOMReady to false and assigns a ready function to settings. settings.DOMReady = false; settings.readyCallback = function () { settings.DOMReady = true; }; } ) .then( function () { return domReadyPromise; } ) .then( function () { // When the browser can not render everything we need to load a polyfill. if ( ! settings.supports.everything ) { settings.readyCallback(); var src = settings.source || {}; if ( src.concatemoji ) { addScript( src.concatemoji ); } else if ( src.wpemoji && src.twemoji ) { addScript( src.twemoji ); addScript( src.wpemoji ); } } } ); } )( window, document, window._wpemojiSettings ); /* ]]> */ </script> <style id='wp-emoji-styles-inline-css'> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } </style> <link rel='stylesheet' id='all-css-4' href='https://eage.org/_static/??-eJzTLy/QzcxLzilNSS3WzyrWz01NyUxMzUnNTc0rQeEU5CRWphbp5qSmJyZX6uVm5uklFxfr6OPTDpRD5oM02OfaGpobGxkZmBkYGQMAhH8tYw==' type='text/css' media='all' /> <style id='jetpack-sharing-buttons-style-inline-css'> .jetpack-sharing-buttons__services-list{display:flex;flex-direction:row;flex-wrap:wrap;gap:0;list-style-type:none;margin:5px;padding:0}.jetpack-sharing-buttons__services-list.has-small-icon-size{font-size:12px}.jetpack-sharing-buttons__services-list.has-normal-icon-size{font-size:16px}.jetpack-sharing-buttons__services-list.has-large-icon-size{font-size:24px}.jetpack-sharing-buttons__services-list.has-huge-icon-size{font-size:36px}@media print{.jetpack-sharing-buttons__services-list{display:none!important}}.editor-styles-wrapper .wp-block-jetpack-sharing-buttons{gap:0;padding-inline-start:0}ul.jetpack-sharing-buttons__services-list.has-background{padding:1.25em 2.375em} </style> <style id='rank-math-toc-block-style-inline-css'> .wp-block-rank-math-toc-block nav ol{counter-reset:item}.wp-block-rank-math-toc-block nav ol li{display:block}.wp-block-rank-math-toc-block nav ol li:before{content:counters(item, ".") ". ";counter-increment:item} </style> <style id='filebird-block-filebird-gallery-style-inline-css'> ul.filebird-block-filebird-gallery{margin:auto!important;padding:0!important;width:100%}ul.filebird-block-filebird-gallery.layout-grid{display:grid;grid-gap:20px;align-items:stretch;grid-template-columns:repeat(var(--columns),1fr);justify-items:stretch}ul.filebird-block-filebird-gallery.layout-grid li img{border:1px solid #ccc;box-shadow:2px 2px 6px 0 rgba(0,0,0,.3);height:100%;max-width:100%;-o-object-fit:cover;object-fit:cover;width:100%}ul.filebird-block-filebird-gallery.layout-masonry{-moz-column-count:var(--columns);-moz-column-gap:var(--space);column-gap:var(--space);-moz-column-width:var(--min-width);columns:var(--min-width) var(--columns);display:block;overflow:auto}ul.filebird-block-filebird-gallery.layout-masonry li{margin-bottom:var(--space)}ul.filebird-block-filebird-gallery li{list-style:none}ul.filebird-block-filebird-gallery li figure{height:100%;margin:0;padding:0;position:relative;width:100%}ul.filebird-block-filebird-gallery li figure figcaption{background:linear-gradient(0deg,rgba(0,0,0,.7),rgba(0,0,0,.3) 70%,transparent);bottom:0;box-sizing:border-box;color:#fff;font-size:.8em;margin:0;max-height:100%;overflow:auto;padding:3em .77em .7em;position:absolute;text-align:center;width:100%;z-index:2}ul.filebird-block-filebird-gallery li figure figcaption a{color:inherit} </style> <style id='classic-theme-styles-inline-css'> /** * These rules are needed for backwards compatibility. * They should match the button element rules in the base theme.json file. */ .wp-block-button__link { color: #ffffff; background-color: #32373c; border-radius: 9999px; /* 100% causes an oval, but any explicit but really high value retains the pill shape. */ /* This needs a low specificity so it won't override the rules from the button element if defined in theme.json. */ box-shadow: none; text-decoration: none; /* The extra 2px are added to size solids the same as the outline versions.*/ padding: calc(0.667em + 2px) calc(1.333em + 2px); font-size: 1.125em; } .wp-block-file__button { background: #32373c; color: #ffffff; text-decoration: none; } </style> <style id='global-styles-inline-css'> :root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;} :where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;} :where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;} :root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;} </style> <link rel='stylesheet' id='all-css-14' href='https://eage.org/_static/??-eJylkt1OwzAMhV+I1DAEaBeIR0Fe4rWG/Cl2GHt70hYkkCir6E2UHNufjh3DKRubolJUyL72HAUw9qcMKEIqcGzB+TR4IkmBwMpPoQscuyZewSWYY9FZ6Q41Ok/di1yo5Gh9dQT03oLCqQUkl2ebfA1j0gweLWHkgLrGzXrmN3mZmc18NWILZ6UExzLluNnXiAPRc2t3G6MKFZMxkv8/yG+onUx8jXkbxQ5YdCPjINhZLKmNZWtTY0eF0RtHwv0f+7Pun9g4VMxsX6kss5wzQljsYDSZQLFCrgfPdiLxWyrnz/ivK60DBRIYyPtkyLdH1FQW9mwheZLH5KfwePOw299d397vdx8gPo3X' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-frontend-css' href='https://eage.org/wp-content/uploads/elementor/css/custom-frontend.css?ver=1731931279' media='all' /> <link rel='stylesheet' id='all-css-16' href='https://eage.org/wp-content/plugins/elementor/assets/css/widget-image.min.css?m=1730132665g' type='text/css' media='all' /> <link rel='stylesheet' id='widget-nav-menu-css' href='https://eage.org/wp-content/uploads/elementor/css/custom-pro-widget-nav-menu.min.css?ver=1731931322' media='all' /> <link rel='stylesheet' id='all-css-18' href='https://eage.org/_static/??-eJylkdEOwjAIRX9IrHNxPhm/pW44SdrSFEz1761mLnuaTh/hXk64YHKEloNiUBPdtacgBh36UnMyVgRVjKOTsYG8VeKii94dFhuMPegT53UrsjJzPIiJ38xiNpm6HhX0UnQYXLL2FD6jpqudiwlsRmGPL+6zMdR/koQddd8zJqEk2hbTsjDTm+BNATsq6vKDzP8qcvwtEbdkHVCZGZ909IdqX2+qets0uwfqOt+z' type='text/css' media='all' /> <link rel='stylesheet' id='e-apple-webkit-css' href='https://eage.org/wp-content/uploads/elementor/css/custom-apple-webkit.min.css?ver=1731931271' media='all' /> <link rel='stylesheet' id='all-css-20' href='https://eage.org/wp-content/plugins/elementor/assets/css/widget-divider.min.css?m=1730132665g' type='text/css' media='all' /> <link rel='stylesheet' id='widget-icon-box-css' href='https://eage.org/wp-content/uploads/elementor/css/custom-widget-icon-box.min.css?ver=1731931288' media='all' /> <link rel='stylesheet' id='all-css-22' href='https://eage.org/_static/??-eJytkc0KwkAMhF/IbazF6kW8eBF8ibWb1sD+0UQX395tPfQiwkKPM5n5IAmkqLrgBb1AtM+BPANadFmHUcUxgGZGYeiYIZEZUFQMLFw58lU2N/CP8KP9QG3ID2V9S3fQnpwWCnnO8rbI0GuD15Uol5BWIt2wlzISUjdRpiMtt5+9Mg4nijjC6zijvqrsRzlkaNpJ25xQC+LsTvWh2dbNrm33H6RZ1sg=' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-post-3378-css' href='https://eage.org/wp-content/uploads/elementor/css/post-3378.css?ver=1731931340' media='all' /> <link rel='stylesheet' id='all-css-24' href='https://eage.org/wp-content/plugins/powerpack-elements/assets/css/frontend.css?m=1712303166g' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-pro-css' href='https://eage.org/wp-content/uploads/elementor/css/custom-pro-frontend.css?ver=1731931340' media='all' /> <link rel='stylesheet' id='widget-accordion-css' href='https://eage.org/wp-content/uploads/elementor/css/custom-widget-accordion.min.css?ver=1731931282' media='all' /> <link rel='stylesheet' id='elementor-post-2116-css' href='https://eage.org/wp-content/uploads/elementor/css/post-2116.css?ver=1731934886' media='all' /> <link rel='stylesheet' id='elementor-post-147-css' href='https://eage.org/wp-content/uploads/elementor/css/post-147.css?ver=1731931342' media='all' /> <link rel='stylesheet' id='elementor-post-174-css' href='https://eage.org/wp-content/uploads/elementor/css/post-174.css?ver=1731931346' media='all' /> <link rel='stylesheet' id='elementor-post-3360-css' href='https://eage.org/wp-content/uploads/elementor/css/post-3360.css?ver=1731931422' media='all' /> <link rel='stylesheet' id='all-css-36' href='https://eage.org/wp-content/themes/hello-elementor/elementorRights.css?m=1712303167g' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-post-15640-css' href='https://eage.org/wp-content/uploads/elementor/css/post-15640.css?ver=1731931349' media='all' /> <link rel='stylesheet' id='elementor-post-14898-css' href='https://eage.org/wp-content/uploads/elementor/css/post-14898.css?ver=1731931353' media='all' /> <link rel='stylesheet' id='elementor-post-4198-css' href='https://eage.org/wp-content/uploads/elementor/css/post-4198.css?ver=1731931356' media='all' /> <link rel='stylesheet' id='elementor-post-1653-css' href='https://eage.org/wp-content/uploads/elementor/css/post-1653.css?ver=1731931356' media='all' /> <link rel='stylesheet' id='elementor-post-1650-css' href='https://eage.org/wp-content/uploads/elementor/css/post-1650.css?ver=1731931358' media='all' /> <link rel='stylesheet' id='elementor-post-1647-css' href='https://eage.org/wp-content/uploads/elementor/css/post-1647.css?ver=1731931361' media='all' /> <link rel='stylesheet' id='elementor-post-1644-css' href='https://eage.org/wp-content/uploads/elementor/css/post-1644.css?ver=1731931364' media='all' /> <link rel='stylesheet' id='elementor-post-1641-css' href='https://eage.org/wp-content/uploads/elementor/css/post-1641.css?ver=1731931367' media='all' /> <link rel='stylesheet' id='elementor-post-1588-css' href='https://eage.org/wp-content/uploads/elementor/css/post-1588.css?ver=1731931371' media='all' /> <link rel='stylesheet' id='elementor-post-1566-css' href='https://eage.org/wp-content/uploads/elementor/css/post-1566.css?ver=1731931371' media='all' /> <link rel='stylesheet' id='elementor-post-1137-css' href='https://eage.org/wp-content/uploads/elementor/css/post-1137.css?ver=1731931374' media='all' /> <link rel='stylesheet' id='all-css-58' href='https://eage.org/_static/??-eJylj7sOwjAMRX+IEEpFmRDfkodbIrlxFNtU/D0BlYEBBhi8HPke+9qlmEBZIIstqFPKbMV5hFKB2YY2XhNGG2F0irJtZGO/h2aKivAWduKeC7z1KkKZ//YEQp3zmFCgLilOID86Gy7toXQF81J/0IxU2xnjPKkYvlCVQBHM2sgW9ZjCan4gw3Jbfef51B37Xdfvh+FwB8Ojjik=' type='text/css' media='all' /> <link rel='stylesheet' id='google-fonts-1-css' href='https://fonts.googleapis.com/css?family=Roboto%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic&display=auto&ver=6.7.1' media='all' /> <link rel='stylesheet' id='all-css-60' href='https://eage.org/_static/??-eJydjF0KgCAQBi9UfZlgT9FZtDYR/GPX6PrZFXqbgWHw1PEouVFuqPH2IQsoUupeGFaEmiAGh6tHo31ISiIcImDyd7Q8dR7w++LY5lO+yZ42tapFz1oZ8wItFTfm' type='text/css' media='all' /> <link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin><script type="text/javascript" id="jquery-core-js-extra"> /* <![CDATA[ */ var pp = {"ajax_url":"https:\/\/eage.org\/wp-admin\/admin-ajax.php"}; /* ]]> */ </script> <script type="text/javascript" id="thickbox-js-extra"> /* <![CDATA[ */ var thickboxL10n = {"next":"Next >","prev":"< Prev","image":"Image","of":"of","close":"Close","noiframes":"This feature requires inline frames. You have iframes disabled or your browser does not support them.","loadingAnimation":"https:\/\/eage.org\/wp-includes\/js\/thickbox\/loadingAnimation.gif"}; /* ]]> */ </script> <script type="text/javascript" id="ap_plugin_js_script-js-extra"> /* <![CDATA[ */ var bsa_object = {"ajax_url":"https:\/\/eage.org\/wp-admin\/admin-ajax.php"}; /* ]]> */ </script> <script type="text/javascript" src="https://eage.org/_static/??-eJydkU1uAyEMRi9UQjqRmlXVs7jYnfEUDLUhP7cvmSZRFkkXkZAw6D37Q/h9cSwhNiTzc18/jfR43lazvfj/AJd4VKh0AUOWSlJ9iW1kMZ9IWrddyVZPcoJ+SCyPeJBxXzyYUTWPtDs5gDvSysYy3stTJw7fn/lwLe5BTZDUQlZa3Uy/JWzKWkPG61MAO7lkJmRwrcQM+DB3cX+ls6BcKmX/pQuDS/Pl8kk5TKDPuudvNE4lHjuRY+ydPtL763YzDOu39bCZfwEEWsDX" ></script> <!-- Google tag (gtag.js) snippet added by Site Kit --> <!-- Google Analytics snippet added by Site Kit --> <script type="text/javascript" src="https://www.googletagmanager.com/gtag/js?id=GT-PHPCHVB" id="google_gtagjs-js" async></script> <script type="text/javascript" id="google_gtagjs-js-after"> /* <![CDATA[ */ window.dataLayer = window.dataLayer || [];function gtag(){dataLayer.push(arguments);} gtag("set","linker",{"domains":["eage.org"]}); gtag("js", new Date()); gtag("set", "developer_id.dZTNiMT", true); gtag("config", "GT-PHPCHVB"); /* ]]> */ </script> <!-- End Google tag (gtag.js) snippet added by Site Kit --> <link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://eage.org/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress 6.7.1" /> <link rel='shortlink' href='https://eage.org/?p=2116' /> <link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://eage.org/wp-json/oembed/1.0/embed?url=https%3A%2F%2Feage.org%2Fabout_eage%2Fassociated-societies%2F" /> <link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://eage.org/wp-json/oembed/1.0/embed?url=https%3A%2F%2Feage.org%2Fabout_eage%2Fassociated-societies%2F&format=xml" /> <style> /* Custom BSA_PRO Styles */ /* fonts */ /* form */ .bsaProOrderingForm { } .bsaProInput input, .bsaProInput input[type='file'], .bsaProSelectSpace select, .bsaProInputsRight .bsaInputInner, .bsaProInputsRight .bsaInputInner label { } .bsaProPrice { } .bsaProDiscount { } .bsaProOrderingForm .bsaProSubmit, .bsaProOrderingForm .bsaProSubmit:hover, .bsaProOrderingForm .bsaProSubmit:active { } /* alerts */ .bsaProAlert, .bsaProAlert > a, .bsaProAlert > a:hover, .bsaProAlert > a:focus { } .bsaProAlertSuccess { } .bsaProAlertFailed { } /* stats */ .bsaStatsWrapper .ct-chart .ct-series.ct-series-b .ct-bar, .bsaStatsWrapper .ct-chart .ct-series.ct-series-b .ct-line, .bsaStatsWrapper .ct-chart .ct-series.ct-series-b .ct-point, .bsaStatsWrapper .ct-chart .ct-series.ct-series-b .ct-slice.ct-donut { stroke: #673AB7 !important; } .bsaStatsWrapper .ct-chart .ct-series.ct-series-a .ct-bar, .bsaStatsWrapper .ct-chart .ct-series.ct-series-a .ct-line, .bsaStatsWrapper .ct-chart .ct-series.ct-series-a .ct-point, .bsaStatsWrapper .ct-chart .ct-series.ct-series-a .ct-slice.ct-donut { stroke: #FBCD39 !important; } /* Custom CSS */ </style><meta name="generator" content="Site Kit by Google 1.138.0" /> <style>img#wpstats{display:none}</style> <script> (function(h,o,t,j,a,r){ h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)}; h._hjSettings={hjid:3431110,hjsv:5}; a=o.getElementsByTagName('head')[0]; r=o.createElement('script');r.async=1; r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv; a.appendChild(r); })(window,document,'//static.hotjar.com/c/hotjar-','.js?sv='); </script> <!-- Google AdSense meta tags added by Site Kit --> <meta name="google-adsense-platform-account" content="ca-host-pub-2644536267352236"> <meta name="google-adsense-platform-domain" content="sitekit.withgoogle.com"> <!-- End Google AdSense meta tags added by Site Kit --> <meta name="generator" content="Elementor 3.24.7; features: additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-auto"> <script id="Cookiebot" src="https://consent.cookiebot.com/uc.js" data-cbid="c57ea602-a439-4584-a2dd-45c9e1c9a468" data-blockingmode="auto" type="text/javascript"></script> <script async src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script> <script> window.googletag = window.googletag || {cmd: []}; let adSlot; // Declare adSlot at a scope accessible by the resize handler and manual refresh googletag.cmd.push(function() { var mapping1 = googletag.sizeMapping() //.addSize([1600, 0], [[1140, 140]]) .addSize([1380, 0], [[1000, 123]]) .addSize([1150, 0], [[728, 90]]) .addSize([1100, 0], [[500, 62]]) .build(); adSlot = googletag.defineSlot('/20287594127/WP_EAGE_leaderboard', [[500, 62], [1140, 140], [728, 90], [1000, 123], 'fluid'], 'div-gpt-ad-1724414516259-0') .defineSizeMapping(mapping1) .addService(googletag.pubads()); googletag.pubads().enableSingleRequest(); googletag.enableServices(); }); let resizeTimer; window.addEventListener('resize', () => { console.log("Resize event triggered."); clearTimeout(resizeTimer); resizeTimer = setTimeout(() => { googletag.cmd.push(function() { console.log("Refreshing adSlot via resize."); googletag.pubads().refresh([adSlot]); }); }, 500); // Refresh the ad 500 ms after resizing stops }); </script> <script async src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script> <script> window.googletag = window.googletag || {cmd: []}; googletag.cmd.push(function() { googletag.defineSlot('/20287594127/WP_EAGE_skyscraper', [[310, 360], 'fluid'], 'div-gpt-ad-1721216353239-0').addService(googletag.pubads()); googletag.pubads().enableSingleRequest(); googletag.enableServices(); }); </script> <script async src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script> <script> window.googletag = window.googletag || {cmd: []}; googletag.cmd.push(function() { googletag.defineSlot('/20287594127/WP_EAGE_leaderboard_Mobile', ['fluid', [320, 180]], 'div-gpt-ad-1721216301701-0').addService(googletag.pubads()); googletag.pubads().enableSingleRequest(); googletag.enableServices(); }); </script> <script async src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script> <script> window.googletag = window.googletag || {cmd: []}; googletag.cmd.push(function() { googletag.defineSlot('/20287594127/WP_EAGE_skyscraper-homepage', ['fluid', [152, 435]], 'div-gpt-ad-1721216397689-0').addService(googletag.pubads()); googletag.pubads().enableSingleRequest(); googletag.enableServices(); }); </script> <script async src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script> <script> window.googletag = window.googletag || {cmd: []}; googletag.cmd.push(function() { googletag.defineSlot('/20287594127/WP_EAGE_skyscraper_Mobile-homepage', ['fluid', [310, 360]], 'div-gpt-ad-1721216479067-0').addService(googletag.pubads()); googletag.pubads().enableSingleRequest(); googletag.enableServices(); }); </script> <script async src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script> <script> window.googletag = window.googletag || {cmd: []}; let adSlot; // Declare adSlot at a scope accessible by the resize handler and manual refresh googletag.cmd.push(function() { var mapping2 = googletag.sizeMapping() //.addSize([1600, 0], [[1140, 140]]) .addSize([1380, 0], [[1000, 123]]) .addSize([1150, 0], [[728, 90]]) .addSize([1100, 0], [[500, 62]]) .build(); adSlot = googletag.defineSlot('/20287594127/WP_EAGE_CR_leaderboard', [[1000, 123], [1140, 140], [500, 62], 'fluid', [728, 90]], 'div-gpt-ad-1724424183457-0') .defineSizeMapping(mapping2) .addService(googletag.pubads()); googletag.pubads().enableSingleRequest(); googletag.enableServices(); }); let resizeTimer; window.addEventListener('resize', () => { console.log("Resize event triggered."); clearTimeout(resizeTimer); resizeTimer = setTimeout(() => { googletag.cmd.push(function() { console.log("Refreshing adSlot via resize."); googletag.pubads().refresh([adSlot]); }); }, 500); // Refresh the ad 500 ms after resizing stops }); </script> <script async src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script> <script> window.googletag = window.googletag || {cmd: []}; googletag.cmd.push(function() { googletag.defineSlot('/20287594127/WP_EAGE_CR_skyscraper', [[310, 360], 'fluid'], 'div-gpt-ad-1721216112322-0').addService(googletag.pubads()); googletag.pubads().enableSingleRequest(); googletag.enableServices(); }); </script> <script async src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script> <script> window.googletag = window.googletag || {cmd: []}; googletag.cmd.push(function() { googletag.defineSlot('/20287594127/WP_EAGE_CR_leaderboard_Mobile', [[320, 180], 'fluid'], 'div-gpt-ad-1721216053156-0').addService(googletag.pubads()); googletag.pubads().enableSingleRequest(); googletag.enableServices(); }); </script> <meta http-equiv="Content-type" content="text/html; charset=UTF-8"> <script src="https://www.google.com/recaptcha/api.js"></script> <script> function timestamp() { var response = document.getElementById("g-recaptcha-response"); if (response == null || response.value.trim() == "") {var elems = JSON.parse(document.getElementsByName("captcha_settings")[0].value);elems["ts"] = JSON.stringify(new Date().getTime());document.getElementsByName("captcha_settings")[0].value = JSON.stringify(elems); } } setInterval(timestamp, 500); </script> <style> .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } @media screen and (max-height: 1024px) { .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } } @media screen and (max-height: 640px) { .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } } </style> <!-- Google AdSense snippet added by Site Kit --> <script type="text/javascript" async="async" src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-9577946690838398&host=ca-host-pub-2644536267352236" crossorigin="anonymous"></script> <!-- End Google AdSense snippet added by Site Kit --> <meta name="generator" content="Powered by Slider Revolution 6.6.18 - responsive, Mobile-Friendly Slider Plugin for WordPress with comfortable drag and drop interface." /> <!-- Ads on this site are served by Adning v1.6.2 - adning.com --> <style></style><!-- / Adning. --> <!-- CJT Global Block (288) - Google tag manager - START --> <!-- Google tag (gtag.js) --> <script type="text/plain" data-cookieconsent="statistics" src="https://www.googletagmanager.com/gtag/js?id=G-7TGFG8T62W"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-7TGFG8T62W'); </script> <!-- CJT Global Block (288) - Google tag manager - END --> <!-- CJT Global Block (8) - Accordion default close - START --> <script> jQuery(document).ready(function($) { var delay = 100; setTimeout(function() { $('.elementor-tab-title').removeClass('elementor-active'); $('.elementor-tab-content').css('display', 'none'); }, delay); }); </script> <!-- CJT Global Block (8) - Accordion default close - END --> <!-- CJT Global Block (1) - FAQ widget - START --> <script> window.fwSettings={ 'widget_id':25000000070 }; !function(){if("function"!=typeof window.FreshworksWidget){var n=function(){n.q.push(arguments)};n.q=[],window.FreshworksWidget=n}}() </script> <script type='text/javascript' src='https://widget.freshworks.com/widgets/25000000070.js' async defer></script> <!-- CJT Global Block (1) - FAQ widget - END --> <link rel="icon" href="https://eage.org/wp-content/uploads/2020/07/favicon.png?w=32" sizes="32x32" /> <link rel="icon" href="https://eage.org/wp-content/uploads/2020/07/favicon.png?w=192" sizes="192x192" /> <link rel="apple-touch-icon" href="https://eage.org/wp-content/uploads/2020/07/favicon.png?w=180" /> <meta name="msapplication-TileImage" content="https://eage.org/wp-content/uploads/2020/07/favicon.png?w=270" /> <script>function setREVStartSize(e){ //window.requestAnimationFrame(function() { window.RSIW = window.RSIW===undefined ? window.innerWidth : window.RSIW; window.RSIH = window.RSIH===undefined ? window.innerHeight : window.RSIH; try { var pw = document.getElementById(e.c).parentNode.offsetWidth, newh; pw = pw===0 || isNaN(pw) || (e.l=="fullwidth" || e.layout=="fullwidth") ? window.RSIW : pw; e.tabw = e.tabw===undefined ? 0 : parseInt(e.tabw); e.thumbw = e.thumbw===undefined ? 0 : parseInt(e.thumbw); e.tabh = e.tabh===undefined ? 0 : parseInt(e.tabh); e.thumbh = e.thumbh===undefined ? 0 : parseInt(e.thumbh); e.tabhide = e.tabhide===undefined ? 0 : parseInt(e.tabhide); e.thumbhide = e.thumbhide===undefined ? 0 : parseInt(e.thumbhide); e.mh = e.mh===undefined || e.mh=="" || e.mh==="auto" ? 0 : parseInt(e.mh,0); if(e.layout==="fullscreen" || e.l==="fullscreen") newh = Math.max(e.mh,window.RSIH); else{ e.gw = Array.isArray(e.gw) ? e.gw : [e.gw]; for (var i in e.rl) if (e.gw[i]===undefined || e.gw[i]===0) e.gw[i] = e.gw[i-1]; e.gh = e.el===undefined || e.el==="" || (Array.isArray(e.el) && e.el.length==0)? e.gh : e.el; e.gh = Array.isArray(e.gh) ? e.gh : [e.gh]; for (var i in e.rl) if (e.gh[i]===undefined || e.gh[i]===0) e.gh[i] = e.gh[i-1]; var nl = new Array(e.rl.length), ix = 0, sl; e.tabw = e.tabhide>=pw ? 0 : e.tabw; e.thumbw = e.thumbhide>=pw ? 0 : e.thumbw; e.tabh = e.tabhide>=pw ? 0 : e.tabh; e.thumbh = e.thumbhide>=pw ? 0 : e.thumbh; for (var i in e.rl) nl[i] = e.rl[i]<window.RSIW ? 0 : e.rl[i]; sl = nl[0]; for (var i in nl) if (sl>nl[i] && nl[i]>0) { sl = nl[i]; ix=i;} var m = pw>(e.gw[ix]+e.tabw+e.thumbw) ? 1 : (pw-(e.tabw+e.thumbw)) / (e.gw[ix]); newh = (e.gh[ix] * m) + (e.tabh + e.thumbh); } var el = document.getElementById(e.c); if (el!==null && el) el.style.height = newh+"px"; el = document.getElementById(e.c+"_wrapper"); if (el!==null && el) { el.style.height = newh+"px"; el.style.display = "block"; } } catch(e){ console.log("Failure at Presize of Slider:" + e) } //}); };</script> </head> <body class="about_eage-template-default single single-about_eage postid-2116 single-format-standard viewable-enabled hello-elementor elementor-default elementor-template-full-width elementor-kit-3378 elementor-page elementor-page-2116 elementor-page-3360"> <a class="skip-link screen-reader-text" href="#content"> Skip to content</a> <div data-elementor-type="header" data-elementor-id="147" class="elementor elementor-147 elementor-location-header" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-a64099a elementor-hidden-phone header_container elementor-hidden-tablet elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="a64099a" data-element_type="section" data-settings="{"background_background":"classic"}"> <div class="elementor-background-overlay"></div> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-e09b592" data-id="e09b592" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-c7dbf89 elementor-absolute elementor-widget elementor-widget-image" data-id="c7dbf89" data-element_type="widget" data-settings="{"_position":"absolute"}" data-widget_type="image.default"> <div class="elementor-widget-container"> <a href="https://eage.org/"> <img fetchpriority="high" width="360" height="280" src="https://eage.org/wp-content/uploads/2020/03/eagelogo.png" class="attachment-full size-full wp-image-2743" alt="Logo EAGE" srcset="https://eage.org/wp-content/uploads/2020/03/eagelogo.png 360w, https://eage.org/wp-content/uploads/2020/03/eagelogo.png?resize=768,597 768w" sizes="(max-width: 360px) 100vw, 360px" /> </a> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-6ebdae5" data-id="6ebdae5" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-ae96cbf elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="ae96cbf" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-e4ad795" data-id="e4ad795" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-f03e66e elementor-widget__width-auto elementor-nav-menu--dropdown-mobile elementor-nav-menu__text-align-aside elementor-nav-menu--toggle elementor-nav-menu--burger elementor-widget elementor-widget-nav-menu" data-id="f03e66e" data-element_type="widget" data-settings="{"layout":"horizontal","submenu_icon":{"value":"<i class=\"fas fa-caret-down\"><\/i>","library":"fa-solid"},"toggle":"burger"}" data-widget_type="nav-menu.default"> <div class="elementor-widget-container"> <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-horizontal e--pointer-none"> <ul id="menu-1-f03e66e" class="elementor-nav-menu"><li class="hide_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-151"><a href="#" class="elementor-item elementor-item-anchor">Corporate Relations</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-152"><a href="https://www.firstbreak.org/" class="elementor-item">First Break</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-153"><a href="https://www.earthdoc.org/" class="elementor-item">EarthDoc</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-14370"><a href="https://learninggeoscience.org/" class="elementor-item">Learning Geoscience</a></li> </ul> </nav> <div class="elementor-menu-toggle" role="button" tabindex="0" aria-label="Menu Toggle" aria-expanded="false"> <i aria-hidden="true" role="presentation" class="elementor-menu-toggle__icon--open eicon-menu-bar"></i><i aria-hidden="true" role="presentation" class="elementor-menu-toggle__icon--close eicon-close"></i> <span class="elementor-screen-only">Menu</span> </div> <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true"> <ul id="menu-2-f03e66e" class="elementor-nav-menu"><li class="hide_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-151"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Corporate Relations</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-152"><a href="https://www.firstbreak.org/" class="elementor-item" tabindex="-1">First Break</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-153"><a href="https://www.earthdoc.org/" class="elementor-item" tabindex="-1">EarthDoc</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-14370"><a href="https://learninggeoscience.org/" class="elementor-item" tabindex="-1">Learning Geoscience</a></li> </ul> </nav> </div> </div> <div class="elementor-element elementor-element-e578b89 elementor-align-right elementor-widget__width-auto elementor-widget elementor-widget-button" data-id="e578b89" data-element_type="widget" data-widget_type="button.default"> <div class="elementor-widget-container"> <div class="elementor-button-wrapper"> <a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-grow" href="https://eage.eventsair.com/eage-membership-module/sso" target="_blank"> <span class="elementor-button-content-wrapper"> <span class="elementor-button-text">My EAGE</span> </span> </a> </div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-inner-section elementor-element elementor-element-407aca5 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="407aca5" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <nav class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-e03fa9e" data-id="e03fa9e" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-0d0b11d elementor-widget__width-auto elementor-view-default elementor-widget elementor-widget-icon" data-id="0d0b11d" data-element_type="widget" data-widget_type="icon.default"> <div class="elementor-widget-container"> <div class="elementor-icon-wrapper"> <a class="elementor-icon" href="https://eage.org/"> <i aria-hidden="true" class="fas fa-home"></i> </a> </div> </div> </div> <div class="elementor-element elementor-element-bcaf978 elementor-hidden-phone elementor-widget__width-auto elementor-widget elementor-widget-wp-widget-nav_menu" data-id="bcaf978" data-element_type="widget" data-widget_type="wp-widget-nav_menu.default"> <div class="elementor-widget-container"> <div class="menu-eage-main-menu-desktop-container"><ul id="menu-eage-main-menu-desktop" class="menu"><li id="menu-item-1298" class="pop_abouteage menu-item menu-item-type-custom menu-item-object-custom menu-item-1298"><a href="#">About EAGE</a></li> <li id="menu-item-1300" class="pop_events menu-item menu-item-type-custom menu-item-object-custom menu-item-1300"><a href="#">Events</a></li> <li id="menu-item-1301" class="pop_membership menu-item menu-item-type-custom menu-item-object-custom menu-item-1301"><a href="#">Membership</a></li> <li id="menu-item-1302" class="pop_communities menu-item menu-item-type-custom menu-item-object-custom menu-item-1302"><a href="#">Communities</a></li> <li id="menu-item-1303" class="pop_students menu-item menu-item-type-custom menu-item-object-custom menu-item-1303"><a href="#">Students</a></li> <li id="menu-item-1304" class="pop_education menu-item menu-item-type-custom menu-item-object-custom menu-item-1304"><a href="#">Education</a></li> <li id="menu-item-1305" class="pop_media2 menu-item menu-item-type-custom menu-item-object-custom menu-item-1305"><a href="#">Media</a></li> </ul></div> </div> </div> </div> </nav> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-1182b96" data-id="1182b96" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-d444e1c menu-search elementor-widget elementor-widget-shortcode" data-id="d444e1c" data-element_type="widget" data-widget_type="shortcode.default"> <div class="elementor-widget-container"> <div class="elementor-shortcode"><form class="is-search-form is-form-style is-form-style-3 is-form-id-6048 " action="https://eage.org/" method="get" role="search" ><label for="is-search-input-6048"><span class="is-screen-reader-text">Search for:</span><input type="search" id="is-search-input-6048" name="s" value="" class="is-search-input" placeholder="Search here..." autocomplete=off /></label><button type="submit" class="is-search-submit"><span class="is-screen-reader-text">Search Button</span><span class="is-search-icon"><svg focusable="false" aria-label="Search" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24px"><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"></path></svg></span></button><input type="hidden" name="id" value="6048" /></form></div> </div> </div> </div> </div> </div> </section> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-99d6739 elementor-hidden-phone header_container elementor-hidden-desktop elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="99d6739" data-element_type="section" data-settings="{"background_background":"classic"}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-d041004" data-id="d041004" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-60d1405 elementor-absolute elementor-widget elementor-widget-image" data-id="60d1405" data-element_type="widget" data-settings="{"_position":"absolute"}" data-widget_type="image.default"> <div class="elementor-widget-container"> <a href="https://www.eage.org/"> <img fetchpriority="high" width="360" height="280" src="https://eage.org/wp-content/uploads/2020/03/eagelogo.png" class="attachment-full size-full wp-image-2743" alt="Logo EAGE" srcset="https://eage.org/wp-content/uploads/2020/03/eagelogo.png 360w, https://eage.org/wp-content/uploads/2020/03/eagelogo.png?resize=768,597 768w" sizes="(max-width: 360px) 100vw, 360px" /> </a> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-e77b52a" data-id="e77b52a" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-d9d1a2b elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="d9d1a2b" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-0f7c7e6" data-id="0f7c7e6" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-e111f86 elementor-widget__width-auto elementor-nav-menu--dropdown-mobile elementor-nav-menu__text-align-aside elementor-nav-menu--toggle elementor-nav-menu--burger elementor-widget elementor-widget-nav-menu" data-id="e111f86" data-element_type="widget" data-settings="{"layout":"horizontal","submenu_icon":{"value":"<i class=\"fas fa-caret-down\"><\/i>","library":"fa-solid"},"toggle":"burger"}" data-widget_type="nav-menu.default"> <div class="elementor-widget-container"> <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-horizontal e--pointer-none"> <ul id="menu-1-e111f86" class="elementor-nav-menu"><li class="hide_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-151"><a href="#" class="elementor-item elementor-item-anchor">Corporate Relations</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-152"><a href="https://www.firstbreak.org/" class="elementor-item">First Break</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-153"><a href="https://www.earthdoc.org/" class="elementor-item">EarthDoc</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-14370"><a href="https://learninggeoscience.org/" class="elementor-item">Learning Geoscience</a></li> </ul> </nav> <div class="elementor-menu-toggle" role="button" tabindex="0" aria-label="Menu Toggle" aria-expanded="false"> <i aria-hidden="true" role="presentation" class="elementor-menu-toggle__icon--open eicon-menu-bar"></i><i aria-hidden="true" role="presentation" class="elementor-menu-toggle__icon--close eicon-close"></i> <span class="elementor-screen-only">Menu</span> </div> <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true"> <ul id="menu-2-e111f86" class="elementor-nav-menu"><li class="hide_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-151"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Corporate Relations</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-152"><a href="https://www.firstbreak.org/" class="elementor-item" tabindex="-1">First Break</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-153"><a href="https://www.earthdoc.org/" class="elementor-item" tabindex="-1">EarthDoc</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-14370"><a href="https://learninggeoscience.org/" class="elementor-item" tabindex="-1">Learning Geoscience</a></li> </ul> </nav> </div> </div> <div class="elementor-element elementor-element-dfd2106 elementor-align-right elementor-widget__width-auto elementor-widget elementor-widget-button" data-id="dfd2106" data-element_type="widget" data-widget_type="button.default"> <div class="elementor-widget-container"> <div class="elementor-button-wrapper"> <a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-grow" href="https://eage.eventsair.com/eage-membership-module/sso" target="_blank"> <span class="elementor-button-content-wrapper"> <span class="elementor-button-text">My EAGE</span> </span> </a> </div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-inner-section elementor-element elementor-element-96e68d5 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="96e68d5" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-3ac397d" data-id="3ac397d" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> <nav class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-75f8507" data-id="75f8507" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-3316de1 elementor-search-form--skin-classic elementor-search-form--button-type-icon elementor-search-form--icon-search elementor-widget elementor-widget-search-form" data-id="3316de1" data-element_type="widget" data-settings="{"skin":"classic"}" data-widget_type="search-form.default"> <div class="elementor-widget-container"> <search role="search"> <form class="elementor-search-form" action="https://eage.org" method="get"> <div class="elementor-search-form__container"> <label class="elementor-screen-only" for="elementor-search-form-3316de1">Search</label> <input id="elementor-search-form-3316de1" placeholder="Search..." class="elementor-search-form__input" type="search" name="s" value=""> <button class="elementor-search-form__submit" type="submit" aria-label="Search"> <i aria-hidden="true" class="fas fa-search"></i> <span class="elementor-screen-only">Search</span> </button> </div> </form> </search> </div> </div> </div> </nav> <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-8759959" data-id="8759959" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-da90082 tablet_overlay_menu elementor-widget elementor-widget-image" data-id="da90082" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <img src="https://eage.org/wp-content/uploads/2020/05/Mobile_MenuIcon_open.svg?w=150&h=150&crop=1" title="Mobile_MenuIcon_open" alt="" loading="lazy" /> </div> </div> </div> </div> </div> </section> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-319dd42 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="319dd42" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-bd6b030" data-id="bd6b030" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-b4fba76 elementor-widget elementor-widget-spacer" data-id="b4fba76" data-element_type="widget" data-widget_type="spacer.default"> <div class="elementor-widget-container"> <div class="elementor-spacer"> <div class="elementor-spacer-inner"></div> </div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-4574d12 elementor-section-full_width mobile_menu_container elementor-hidden-desktop elementor-hidden-tablet elementor-section-height-default elementor-section-height-default" data-id="4574d12" data-element_type="section" data-settings="{"background_background":"classic"}"> <div class="elementor-background-overlay"></div> <div class="elementor-container elementor-column-gap-no"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-1d1e04a" data-id="1d1e04a" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-d014211 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="d014211" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-d804c22" data-id="d804c22" data-element_type="column" data-settings="{"background_background":"classic"}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-a8f0ca8 elementor-widget elementor-widget-image" data-id="a8f0ca8" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <a href="http://www.eage.org"> <img src="https://eage.org/wp-content/uploads/2020/05/EAGE_logo_header.svg?w=800" title="EAGE_logo" alt="" loading="lazy" /> </a> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-fceaa7e" data-id="fceaa7e" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-23ab4b2 pop_mobile elementor-widget elementor-widget-image" data-id="23ab4b2" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <img src="https://eage.org/wp-content/uploads/2020/05/Mobile_MenuIcon_open.svg?w=150&h=150&crop=1" title="Mobile_MenuIcon_open" alt="" loading="lazy" /> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-inner-section elementor-element elementor-element-00edc04 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="00edc04" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-f6683e1" data-id="f6683e1" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-13410e6 mobile_top_menu elementor-widget elementor-widget-text-editor" data-id="13410e6" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p style="text-align: center;"><a href="https://www.firstbreak.org/">First Break</a> <a href="https://www.earthdoc.org/">EarthDoc</a> <a href="https://learninggeoscience.org/">Learning Geoscience</a></p> </div> </div> </div> </div> </div> </section> </div> </div> </div> </section> </div> <div data-elementor-type="single" data-elementor-id="3360" class="elementor elementor-3360 elementor-location-single post-2116 about_eage type-about_eage status-publish format-standard has-post-thumbnail hentry" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-30e5088e elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="30e5088e" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-25a73b5c" data-id="25a73b5c" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-5b4cced3 elementor-widget elementor-widget-template" data-id="5b4cced3" data-element_type="widget" data-widget_type="template.default"> <div class="elementor-widget-container"> <div class="elementor-template"> <style id="elementor-post-dynamic-3293">.elementor-3293 .elementor-element.elementor-element-c608feb:not(.elementor-motion-effects-element-type-background), .elementor-3293 .elementor-element.elementor-element-c608feb > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url("https://eage.org/wp-content/uploads/2020/04/Template_RevSlider_BG.jpg");}.elementor-3293 .elementor-element.elementor-element-57216984:not(.elementor-motion-effects-element-type-background), .elementor-3293 .elementor-element.elementor-element-57216984 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url("https://eage.org/wp-content/uploads/2020/04/Template_RevSlider_BG.jpg");}@media(max-width:767px){.elementor-3293 .elementor-element.elementor-element-7845140:not(.elementor-motion-effects-element-type-background), .elementor-3293 .elementor-element.elementor-element-7845140 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url("https://eage.org/wp-content/uploads/2020/04/Template_RevSlider_BG.jpg");}.elementor-3293 .elementor-element.elementor-element-75cdfcea:not(.elementor-motion-effects-element-type-background), .elementor-3293 .elementor-element.elementor-element-75cdfcea > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url("https://eage.org/wp-content/uploads/2020/04/Template_RevSlider_BG.jpg");}}</style> <div data-elementor-type="single" data-elementor-id="3293" class="elementor elementor-3293 elementor-location-single post-2116 about_eage type-about_eage status-publish format-standard has-post-thumbnail hentry" data-elementor-post-type="elementor_library"> <div class="elementor-element elementor-element-c608feb elementor-hidden-mobile e-flex e-con-boxed e-con e-parent" data-id="c608feb" data-element_type="container" data-settings="{"background_background":"classic"}"> <div class="e-con-inner"> <div class="elementor-element elementor-element-49e5527 e-flex e-con-boxed e-con e-child" data-id="49e5527" data-element_type="container"> <div class="e-con-inner"> <div class="elementor-element elementor-element-3c2d0b6 e-con-full e-flex e-con e-child" data-id="3c2d0b6" data-element_type="container" data-settings="{"background_background":"classic"}"> <div class="elementor-element elementor-element-3423288 elementor-widget elementor-widget-heading" data-id="3423288" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h1 class="elementor-heading-title elementor-size-default">Cooperation</h1> </div> </div> <div class="elementor-element elementor-element-26e1525 elementor-widget elementor-widget-heading" data-id="26e1525" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-default">Associated Societies </h2> </div> </div> <div class="elementor-element elementor-element-5f010a9 elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="5f010a9" data-element_type="widget" data-widget_type="divider.default"> <div class="elementor-widget-container"> <div class="elementor-divider"> <span class="elementor-divider-separator"> </span> </div> </div> </div> </div> <div class="elementor-element elementor-element-ba8a818 e-con-full e-flex e-con e-child" data-id="ba8a818" data-element_type="container"> </div> </div> </div> </div> </div> <div class="elementor-element elementor-element-f120ebb e-con-full elementor-hidden-mobile e-flex e-con e-parent" data-id="f120ebb" data-element_type="container" data-settings="{"position":"absolute"}"> <div class="elementor-element elementor-element-4d17865 e-con-full e-flex e-con e-child" data-id="4d17865" data-element_type="container" data-settings="{"background_background":"classic"}"> </div> <div class="elementor-element elementor-element-e917d2a e-con-full e-flex e-con e-child" data-id="e917d2a" data-element_type="container"> </div> </div> <div class="elementor-element elementor-element-7845140 e-con-full elementor-hidden-desktop elementor-hidden-tablet section-page-title-mobile e-flex e-con e-parent" data-id="7845140" data-element_type="container" data-settings="{"background_background":"classic"}"> <div class="elementor-element elementor-element-2041f66 e-con-full e-flex e-con e-child" data-id="2041f66" data-element_type="container" data-settings="{"background_background":"classic"}"> <div class="elementor-element elementor-element-644af27 elementor-widget elementor-widget-heading" data-id="644af27" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h1 class="elementor-heading-title elementor-size-default">Cooperation</h1> </div> </div> <div class="elementor-element elementor-element-227dc0c elementor-widget elementor-widget-heading" data-id="227dc0c" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-default">Associated Societies </h2> </div> </div> <div class="elementor-element elementor-element-1b0c1ab elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="1b0c1ab" data-element_type="widget" data-widget_type="divider.default"> <div class="elementor-widget-container"> <div class="elementor-divider"> <span class="elementor-divider-separator"> </span> </div> </div> </div> </div> </div> <section class="elementor-section elementor-top-section elementor-element elementor-element-57216984 elementor-hidden-mobile elementor-section-full_width section-page-title-desktop elementor-hidden-desktop elementor-hidden-tablet elementor-section-height-default elementor-section-height-default" data-id="57216984" data-element_type="section" data-settings="{"background_background":"classic"}"> <div class="elementor-container elementor-column-gap-no"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-223d1cd9" data-id="223d1cd9" data-element_type="column" data-settings="{"background_background":"classic"}"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-1031b76b PageTitle_InnerSection_1 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="1031b76b" data-element_type="section" data-settings="{"background_background":"classic"}"> <div class="elementor-container elementor-column-gap-no"> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-5aedab8c" data-id="5aedab8c" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-2793141d elementor-widget elementor-widget-heading" data-id="2793141d" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h1 class="elementor-heading-title elementor-size-default">Cooperation</h1> </div> </div> <div class="elementor-element elementor-element-1d1391d6 elementor-widget elementor-widget-heading" data-id="1d1391d6" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-default">Associated Societies </h2> </div> </div> <div class="elementor-element elementor-element-610c0e4a elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="610c0e4a" data-element_type="widget" data-widget_type="divider.default"> <div class="elementor-widget-container"> <div class="elementor-divider"> <span class="elementor-divider-separator"> </span> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-72cbc049 elementor-hidden-phone" data-id="72cbc049" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> </div> </section> <section class="elementor-section elementor-inner-section elementor-element elementor-element-41a10f8a elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="41a10f8a" data-element_type="section"> <div class="elementor-container elementor-column-gap-no"> <div class="elementor-column elementor-col-66 elementor-inner-column elementor-element elementor-element-efc45f4" data-id="efc45f4" data-element_type="column" data-settings="{"background_background":"classic"}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-51662483 elementor-widget elementor-widget-spacer" data-id="51662483" data-element_type="widget" data-widget_type="spacer.default"> <div class="elementor-widget-container"> <div class="elementor-spacer"> <div class="elementor-spacer-inner"></div> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-7148767b elementor-hidden-phone" data-id="7148767b" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> </div> </section> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-f86f455 elementor-hidden-mobile elementor-section-full_width section-page-title-desktop elementor-hidden-desktop elementor-hidden-tablet elementor-section-height-default elementor-section-height-default" data-id="f86f455" data-element_type="section" data-settings="{"background_background":"classic"}"> <div class="elementor-container elementor-column-gap-no"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-1c76ff6" data-id="1c76ff6" data-element_type="column" data-settings="{"background_background":"classic"}"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-ba3c70b PageTitle_InnerSection_1 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="ba3c70b" data-element_type="section" data-settings="{"background_background":"classic"}"> <div class="elementor-container elementor-column-gap-no"> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-5e406bf" data-id="5e406bf" data-element_type="column" data-settings="{"background_background":"classic"}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-background-overlay"></div> <div class="elementor-element elementor-element-7a5ad6e elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="7a5ad6e" data-element_type="widget" data-widget_type="divider.default"> <div class="elementor-widget-container"> <div class="elementor-divider"> <span class="elementor-divider-separator"> </span> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-582d055 elementor-hidden-phone" data-id="582d055" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> </div> </section> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-75cdfcea elementor-section-full_width elementor-hidden-desktop elementor-hidden-tablet section-page-title-mobile elementor-hidden-mobile elementor-section-height-default elementor-section-height-default" data-id="75cdfcea" data-element_type="section" data-settings="{"background_background":"classic"}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-755066d6" data-id="755066d6" data-element_type="column" data-settings="{"background_background":"classic"}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-background-overlay"></div> <div class="elementor-element elementor-element-1c6edbed elementor-widget elementor-widget-heading" data-id="1c6edbed" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h1 class="elementor-heading-title elementor-size-default">Cooperation</h1> </div> </div> <div class="elementor-element elementor-element-20a84402 elementor-widget elementor-widget-heading" data-id="20a84402" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-default">Associated Societies </h2> </div> </div> <div class="elementor-element elementor-element-5a801f02 elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="5a801f02" data-element_type="widget" data-widget_type="divider.default"> <div class="elementor-widget-container"> <div class="elementor-divider"> <span class="elementor-divider-separator"> </span> </div> </div> </div> </div> </div> </div> </section> </div> </div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-2b62c27b elementor-section-full_width elementor-section-height-min-height section-interesting-topic elementor-hidden-phone elementor-section-height-default elementor-section-items-middle" data-id="2b62c27b" data-element_type="section" data-settings="{"background_background":"classic"}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-242cabfd" data-id="242cabfd" data-element_type="column" data-settings="{"background_background":"classic"}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-b3af1e9 elementor-widget elementor-widget-text-editor" data-id="b3af1e9" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <div id="topics-toolcontainer" class="hide-1"><ul id="topics-toolmenu" class="menu"><li id="menu-item-2765" class="topics_menu menu-item menu-item-type-custom menu-item-object-custom menu-item-2765"><a href="#">These topics might be interesting too.</a></li> <li id="menu-item-2767" class="topics_menu_sub menu-item menu-item-type-post_type menu-item-object-about_eage current-menu-item menu-item-2767"><a href="https://eage.org/about_eage/associated-societies/" aria-current="page">Associated Societies</a></li> <li id="menu-item-2769" class="topics_menu_sub menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2769"><a href="https://eage.org/about_eage/joint-events/">Joint Events</a></li> <li id="menu-item-3705" class="topics_last menu-item menu-item-type-custom menu-item-object-custom menu-item-3705"><a href="#">.</a></li> </ul></div> </div> </div> </div> </div> </div> </section> <div class="elementor-element elementor-element-8fd5180 e-flex e-con-boxed e-con e-parent" data-id="8fd5180" data-element_type="container"> <div class="e-con-inner"> <div class="elementor-element elementor-element-4f228df e-con-full e-flex e-con e-child" data-id="4f228df" data-element_type="container"> <div class="elementor-element elementor-element-55ff472 elementor-hidden-mobile elementor-widget elementor-widget-html" data-id="55ff472" data-element_type="widget" data-widget_type="html.default"> <div class="elementor-widget-container"> <!-- /20287594127/WP_EAGE_leaderboard --> <div id='div-gpt-ad-1724414516259-0' style='min-width: 500px; min-height: 62px;'> <script> googletag.cmd.push(function() { googletag.display('div-gpt-ad-1724414516259-0'); }); </script> </div> </div> </div> <div class="elementor-element elementor-element-b26ead5 elementor-hidden-desktop elementor-hidden-tablet elementor-widget elementor-widget-html" data-id="b26ead5" data-element_type="widget" data-widget_type="html.default"> <div class="elementor-widget-container"> <!-- /20287594127/WP_EAGE_leaderboard_Mobile --> <div id='div-gpt-ad-1721216301701-0' style='min-width: 320px; min-height: 180px;'> <script> googletag.cmd.push(function() { googletag.display('div-gpt-ad-1721216301701-0'); }); </script> </div> </div> </div> <div class="elementor-element elementor-element-3f77f3b elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="3f77f3b" data-element_type="widget" data-widget_type="divider.default"> <div class="elementor-widget-container"> <div class="elementor-divider"> <span class="elementor-divider-separator"> </span> </div> </div> </div> <div class="elementor-element elementor-element-93377e3 elementor-widget elementor-widget-theme-post-content" data-id="93377e3" data-element_type="widget" data-widget_type="theme-post-content.default"> <div class="elementor-widget-container"> <div data-elementor-type="wp-post" data-elementor-id="2116" class="elementor elementor-2116" data-elementor-post-type="about_eage"> <section class="elementor-section elementor-top-section elementor-element elementor-element-db16b8c elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="db16b8c" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-377a67c7" data-id="377a67c7" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-705d6a0 elementor-widget elementor-widget-text-editor" data-id="705d6a0" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p>EAGE actively collaborates with a global network of professional associations in the fields of geoscience and engineering to share knowledge and opportunities.</p> </div> </div> <div class="elementor-element elementor-element-07359a7 elementor-widget elementor-widget-spacer" data-id="07359a7" data-element_type="widget" data-widget_type="spacer.default"> <div class="elementor-widget-container"> <div class="elementor-spacer"> <div class="elementor-spacer-inner"></div> </div> </div> </div> <div class="elementor-element elementor-element-601cc9ee elementor-widget elementor-widget-text-editor" data-id="601cc9ee" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong>EAGE Associated Societies receive the following benefits:</strong></p><ol><li><em>Possibility of requesting free <a href="https://eage.org/education/webinars/">webinars</a> from the EAGE DLP (Distinguished Lecturer Programme) on a wide range of topics</em></li><li><em>Display area at <a href="https://eageannual.org/" target="_blank" rel="noopener">EAGE Annual Exhibition</a></em></li><li><em>Possibility to have news items published via EAGE channels and journals</em></li><li><em>Possible support and cooperation on matters such as the organization of local events and joint events</em></li></ol> </div> </div> <div class="elementor-element elementor-element-4005ba2 elementor-widget elementor-widget-spacer" data-id="4005ba2" data-element_type="widget" data-widget_type="spacer.default"> <div class="elementor-widget-container"> <div class="elementor-spacer"> <div class="elementor-spacer-inner"></div> </div> </div> </div> <div class="elementor-element elementor-element-178e39b elementor-widget elementor-widget-text-editor" data-id="178e39b" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p>If you wish to know more, <a href="mailto:communities@eage.org?subject=Enquiry%20on%20EAGE%20Associated%20Societies">contact us</a>!</p> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-bc45daf elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="bc45daf" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-2144294" data-id="2144294" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-3423d6d student_map_accordion elementor-widget elementor-widget-accordion" data-id="3423d6d" data-element_type="widget" data-widget_type="accordion.default"> <div class="elementor-widget-container"> <div class="elementor-accordion"> <div class="elementor-accordion-item"> <div id="elementor-tab-title-5461" class="elementor-tab-title" data-tab="1" role="button" aria-controls="elementor-tab-content-5461" aria-expanded="false"> <span class="elementor-accordion-icon elementor-accordion-icon-left" aria-hidden="true"> <span class="elementor-accordion-icon-closed"><i class="fas fa-plus"></i></span> <span class="elementor-accordion-icon-opened"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 1000 1000"><defs><radialGradient id="Sfumatura_senza_nome_2" cx="608.8" cy="391.07" r="647.11" gradientUnits="userSpaceOnUse"><stop offset="0.41" stop-color="#fff"></stop><stop offset="0.51" stop-color="#f9f9f9"></stop><stop offset="0.64" stop-color="#e9e9e9"></stop><stop offset="0.79" stop-color="#cecece"></stop><stop offset="0.86" stop-color="#bfbfbf"></stop><stop offset="0.99" stop-color="#e6e6e6"></stop></radialGradient></defs><g style="isolation:isolate"><g id="Layer_1" data-name="Layer 1"><path d="M511.9,23.19c270,0,488.79,218.84,488.79,488.79S781.85,1000.77,511.9,1000.77,23.11,781.93,23.11,512,242,23.19,511.9,23.19m0-11.21A500.13,500.13,0,0,0,317.28,972.69,500.13,500.13,0,0,0,706.53,51.28,496.84,496.84,0,0,0,511.9,12Z" transform="translate(-11.9 -11.98)" style="fill:#fff"></path><path d="M511.89,1002.54c-131,0-254.21-51-346.86-143.68S21.35,643,21.35,512,72.37,257.76,165,165.11,380.87,21.43,511.89,21.43s254.23,51,346.88,143.68S1002.45,381,1002.45,512s-51,254.22-143.68,346.88S642.93,1002.54,511.89,1002.54Z" transform="translate(-11.9 -11.98)" style="fill:url(#Sfumatura_senza_nome_2)"></path><path d="M511.9,23.19c270,0,488.78,218.84,488.78,488.79S781.85,1000.77,511.9,1000.77,23.11,781.93,23.11,512,242,23.19,511.9,23.19m0-3.53a492.45,492.45,0,0,0-191.63,946A492.45,492.45,0,0,0,703.53,58.35,489.29,489.29,0,0,0,511.9,19.66Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><g style="mix-blend-mode:multiply"><path d="M445.09,116.49a219.41,219.41,0,0,1-27.65-5.87c-.45.38-.9.76-1.34,1.15a223.8,223.8,0,0,0,28.11,6Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M394.92,102.1a62,62,0,0,1-15-10.1l-1.95.85a63.17,63.17,0,0,0,15.23,10.26Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M477.81,120.87c.11-.44.23-.87.34-1.3-2.76-.12-5.53-.26-8.29-.44-8.51-.56-16.61-1.43-24.25-2.56l-.87,1.25c7.76,1.15,16,2,24.64,2.6Q473.6,120.69,477.81,120.87Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M521.59,25.86c-11.45-.46-22.85-.33-34,.3l.19.23c10.93-.63,22.14-.75,33.4-.3Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M487.06,26.2c-11.1.65-21.91,1.82-32.19,3.45l.71.17c10.12-1.6,20.75-2.75,31.67-3.4Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M400.68,44.74l1.59-.07a168.3,168.3,0,0,1,23.85-8.51l-1.2-.07A171.67,171.67,0,0,0,400.68,44.74Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M512.35,120.57l-.21-1.29c-10.93.63-22.14.75-33.41.31l-.33,1.3C489.85,121.34,501.24,121.22,512.35,120.57Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M382.25,55.61l1.89-.25A86.23,86.23,0,0,1,401.9,44.83l-1.59.08A87.62,87.62,0,0,0,382.25,55.61Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M455.06,29.9l-.72-.17A264.61,264.61,0,0,0,425.39,36l1.18.06A262,262,0,0,1,455.06,29.9Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M379.74,91.82c-3.75-3.62-6.24-7.46-7.33-11.43q-1,.31-2.07.66c1.11,4,3.64,7.93,7.44,11.61Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M370.28,80.84l2.08-.66a17.94,17.94,0,0,1,1.22-12.26l-2.05.45A18.19,18.19,0,0,0,370.28,80.84Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M373.37,65.05a23.62,23.62,0,0,0-1.74,3.11l2.05-.46a25.47,25.47,0,0,1,1.72-3,39.55,39.55,0,0,1,8.49-9.09l-1.88.25A40.25,40.25,0,0,0,373.37,65.05Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M417,110.49a129.72,129.72,0,0,1-21.77-8.24l-1.7,1a132.88,132.88,0,0,0,22.12,8.38Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M599.27,102l-1.61-1a167.36,167.36,0,0,1-23.84,8.51l1.22,1.14A171.07,171.07,0,0,0,599.27,102Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M617.68,91.1l-1.91-.82A86.14,86.14,0,0,1,598,100.81l1.62,1A86.74,86.74,0,0,0,617.68,91.1Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M545.11,117.08l-.75-1.24c-10.11,1.6-20.74,2.76-31.66,3.41.08.43.15.86.23,1.29C524,119.88,534.83,118.71,545.11,117.08Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M629.6,65.87l-2.1-.41a17.93,17.93,0,0,1-1.2,12.26l2.08.62A18.18,18.18,0,0,0,629.6,65.87Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M530,26.55c8.47.56,16.55,1.42,24.16,2.54l.9-.18c-7.74-1.14-15.94-2-24.56-2.59Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M626.52,81.7a24.88,24.88,0,0,0,1.76-3.15l-2.08-.61A26,26,0,0,1,624.47,81a39.47,39.47,0,0,1-8.46,9l1.92.82A40.27,40.27,0,0,0,626.52,81.7Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M574.58,110.76l-1.22-1.14a259.18,259.18,0,0,1-28.47,6.14l.75,1.24A266.77,266.77,0,0,0,574.58,110.76Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M522.18,25.88l-.37.23,8.2.44.5-.23Q526.34,26.05,522.18,25.88Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M629.54,65.67c-1.11-4-3.65-7.94-7.46-11.62l-2-.22c3.75,3.62,6.24,7.45,7.34,11.43Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M604.89,43.55a62.4,62.4,0,0,1,15,10.09l2,.22a63.31,63.31,0,0,0-15.25-10.25Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M582.79,35.16a131.06,131.06,0,0,1,21.78,8.24l1.73.05a132.29,132.29,0,0,0-22.14-8.37Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M554.69,29.17A220.14,220.14,0,0,1,582.36,35l1.37-.09a224.6,224.6,0,0,0-28.13-6Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M724.31,152.92l-1.68-1.25c-9.11,7.27-20.57,14-33.94,20.14l1.43,1.4C703.6,167.05,715.14,160.24,724.31,152.92Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M679.08,52.6A218,218,0,0,1,701.22,62l1.53.58a217.13,217.13,0,0,0-20.93-9Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M746.92,105.1l-1.86-.9a34.2,34.2,0,0,1-2.3,23.45c.62.35,1.23.71,1.84,1.07A34.46,34.46,0,0,0,746.92,105.1Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M741.08,135.09a48.88,48.88,0,0,0,3.33-6l-1.84-1.07a48.63,48.63,0,0,1-3.3,5.91,76,76,0,0,1-16.17,17.32l1.69,1.25A76.62,76.62,0,0,0,741.08,135.09Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M525.75,208.72c21-1.25,41.52-3.47,61-6.56l-.66-1.61c-19.34,3.06-39.67,5.27-60.55,6.5Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M689.43,173.53,688,172.12a321.39,321.39,0,0,1-45.59,16.29l1.09,1.52A323.63,323.63,0,0,0,689.43,173.53Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M587.09,200.39c.22.53.44,1.07.67,1.61a498.48,498.48,0,0,0,54.86-11.82l-1.08-1.53A499.46,499.46,0,0,1,587.09,200.39Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M701.83,62.31c11.79,5.91,21.44,12.39,28.7,19.29l1.75.73c-7.31-7-17-13.49-28.91-19.44Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M746.81,104.7c-2.12-7.65-6.92-15-14.15-22L730.91,82c7.17,6.92,12,14.25,14,21.85Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M271.28,154.6c-7.16-6.92-11.92-14.25-14-21.85l-1.8,1.1c2.1,7.66,6.89,15.05,14.11,22Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M255.36,133.46l1.81-1.11a34.27,34.27,0,0,1,2.34-23.45l-1.79.93A34.56,34.56,0,0,0,255.36,133.46Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M342.55,190.32a249.92,249.92,0,0,1-41.63-15.76L299.45,176a251.62,251.62,0,0,0,41.93,15.88Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M460.58,207.72l-.27,1.67c21.69.85,43.3.61,64.36-.61l-.21-1.66C503.56,208.32,482.12,208.56,460.58,207.72Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M396.25,201.79a420.49,420.49,0,0,1-52.88-11.24c-.39.52-.78,1-1.16,1.55a426.14,426.14,0,0,0,53.28,11.32C395.74,202.87,396,202.33,396.25,201.79Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M300.31,174.26c-11.77-5.91-21.41-12.39-28.66-19.3l-1.7,1.28c7.3,6.95,17,13.49,28.88,19.44Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M278.06,85.64l1.63-.75c9.12-7.27,20.59-14,34-20.13l-1.37.6C298.8,71.52,287.24,78.32,278.06,85.64Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M396.49,203.57c14.72,2.18,30.33,3.84,46.72,4.92q8,.52,16,.85c.09-.56.19-1.11.28-1.67q-7.92-.33-15.86-.84c-16.27-1.07-31.76-2.73-46.36-4.89Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M319.49,62.19l-3.1,1.34L313,65l1.38-.6Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M261.21,103.53a49.07,49.07,0,0,0-3.29,5.89l1.78-.93a49.21,49.21,0,0,1,3.27-5.85,76.34,76.34,0,0,1,16.25-17.37l-1.63.75A76.48,76.48,0,0,0,261.21,103.53Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M847.12,170.61l-1.53-1.3c2.82,10.68,1.87,21.73-3.22,32.93l1.51,1.44C849,192.44,850,181.34,847.12,170.61Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M847,170.06c-3-10.72-9.69-21.07-19.82-30.83l-1.43-1.17c10.07,9.72,16.78,20,19.72,30.7Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M816.72,130.25q4.56,3.58,8.47,7.31l1.44,1.17c-2.47-2.35-5.15-4.67-8-6.95Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M624.28,306.29a701.13,701.13,0,0,0,76.82-16.55l-.9-1.82a697.43,697.43,0,0,1-76.49,16.48Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M537.46,315.7c29.45-1.75,58.13-4.86,85.41-9.18-.19-.63-.37-1.27-.56-1.9-27.15,4.31-55.71,7.41-85,9.15Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M815.48,237.57l-1.39-1.6c-12.79,10.22-28.89,19.7-47.67,28.29.4.57.79,1.15,1.18,1.72C786.47,257.35,802.63,247.82,815.48,237.57Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M701.42,287.57l.9,1.82a453,453,0,0,0,64.31-23l-1.18-1.71A452.41,452.41,0,0,1,701.42,287.57Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M839,212.61a67.91,67.91,0,0,0,4.66-8.35l-1.51-1.45a66.57,66.57,0,0,1-4.64,8.31c-5.51,8.48-13.17,16.61-22.72,24.32.47.53.93,1.06,1.39,1.6C825.73,229.29,833.42,221.12,839,212.61Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M220.93,267.7c-16.53-8.29-30.08-17.4-40.26-27.1l-1.36,1.61c10.22,9.74,23.83,18.89,40.43,27.22Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M180.15,240.1c-10.06-9.72-16.74-20-19.67-30.7L159,210.87c2.94,10.72,9.65,21.08,19.75,30.84C179.24,241.17,179.69,240.63,180.15,240.1Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M446,314.69c-.07.65-.14,1.29-.22,1.94,30.39,1.19,60.63.86,90.12-.84l-.18-1.94C506.4,315.55,476.29,315.88,446,314.69Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M185.81,147.38l-1.74,1.56a99.8,99.8,0,0,0-17,19.47,69.93,69.93,0,0,0-4.62,8.25l1.44-1.33C172.35,160.79,172.68,160.23,185.81,147.38Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M280.25,290.26c-22.21-6.41-41.83-13.86-58.46-22.13-.4.58-.8,1.15-1.19,1.73,16.71,8.31,36.41,15.79,58.72,22.23Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M158.88,210.32c.48-.49,1-1,1.45-1.48-2.79-10.68-1.83-21.74,3.29-32.93l-1.44,1.33C157,188.49,156.07,199.59,158.88,210.32Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M356.48,308.48c20.6,3.06,42.46,5.39,65.41,6.89q11.19.75,22.37,1.2l.21-1.94q-11.12-.45-22.27-1.19c-22.85-1.5-44.61-3.82-65.12-6.86Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M355.07,308.27c.21-.63.41-1.27.61-1.9a590.13,590.13,0,0,1-74.28-15.78l-.93,1.83A594.45,594.45,0,0,0,355.07,308.27Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M925.44,258.34l-1.12-1.65c3.45,13.07,2.29,26.58-3.94,40.27l1.1,1.75C927.73,285,928.89,271.44,925.44,258.34Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M748.7,403.33c28.93-8.13,55.35-17.54,78.49-28l-.87-2c-23.08,10.48-49.43,19.86-78.29,28C748.25,402,748.48,402.65,748.7,403.33Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M547.47,435.43c35.95-2.13,71-5.93,104.25-11.2l-.42-2.07c-33.21,5.26-68.12,9-104,11.17Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M653.44,424a852.52,852.52,0,0,0,93.76-20.21l-.66-2A853,853,0,0,1,653,421.88C653.15,422.57,653.3,423.26,653.44,424Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M915.47,309.6a85.37,85.37,0,0,0,5.69-10.18l-1.11-1.75a84.83,84.83,0,0,1-5.67,10.15c-6.74,10.37-16.11,20.31-27.78,29.75l1,1.85C899.32,330,908.72,320,915.47,309.6Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M435.75,434.47c0,.7-.09,1.4-.13,2.1,37.08,1.45,74,1.05,110-1-.05-.7-.09-1.4-.14-2.1C509.57,435.51,472.74,435.92,435.75,434.47Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M827.51,372.8l.87,1.95c23-10.54,42.76-22.16,58.43-34.68l-1-1.86C870.16,350.7,850.48,362.29,827.51,372.8Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M925.26,257.67a72,72,0,0,0-10.75-22.13l-1.34-1.93a71.87,71.87,0,0,1,11,22.41Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M94,257.76l-.83,1.55c.65-1.18,1.32-2.35,2.05-3.53Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M92.48,260.66l-2.74,5.07,1-1.67C91.29,262.93,91.88,261.79,92.48,260.66Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M92.48,260.66l.73-1.35C93,259.76,92.72,260.21,92.48,260.66Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M110.64,343.25c-12.3-11.88-20.48-24.48-24.06-37.54l-1,1.78c3.58,13.08,11.78,25.72,24.11,37.63Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M160.5,377c-20.22-10.14-36.78-21.28-49.23-33.14l-1,1.87c12.48,11.89,29.08,23.05,49.35,33.22Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M326.57,426.63c25.14,3.72,51.82,6.57,79.83,8.41q13.67.9,27.31,1.45c0-.7.09-1.4.13-2.1q-13.6-.56-27.23-1.45c-27.94-1.84-54.55-4.67-79.63-8.39C326.84,425.24,326.71,425.93,326.57,426.63Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M324.85,426.37l.42-2.08A724.16,724.16,0,0,1,234.44,405c-.22.67-.43,1.35-.65,2A723.81,723.81,0,0,0,324.85,426.37Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M232.38,406.62l.66-2c-27.16-7.84-51.15-16.95-71.49-27.06l-.84,2C181.11,389.62,205.15,398.76,232.38,406.62Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M85.38,306.81l1-1.77c-3.42-13.07-2.23-26.58,4-40.27l-1,1.67C83.13,280.16,82,293.71,85.38,306.81Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M868.77,494.15c25.7-11.76,47.73-24.73,65.22-38.71l-.57-2.05c-17.48,14-39.48,26.92-65.15,38.67C868.44,492.75,868.6,493.45,868.77,494.15Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M779.82,526.05c32.29-9.07,61.79-19.57,87.62-31.29-.17-.7-.33-1.4-.5-2.1-25.8,11.71-55.25,22.2-87.51,31.26C779.57,524.63,779.69,525.34,779.82,526.05Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M555.2,561.89c40.13-2.38,79.21-6.62,116.37-12.5-.08-.73-.17-1.45-.25-2.17-37.12,5.88-76.15,10.11-116.23,12.49C555.13,560.44,555.17,561.17,555.2,561.89Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M673.49,549.08a956.27,956.27,0,0,0,104.66-22.56c-.12-.71-.25-1.42-.38-2.14a950,950,0,0,1-104.54,22.53C673.32,547.64,673.4,548.36,673.49,549.08Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M977.11,364.21l-.63-1.93c3.85,14.6,2.55,29.71-4.41,45l.63,2C979.67,394,981,378.84,977.11,364.21Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M965.36,419.43c-7.52,11.58-18,22.7-31.05,33.24.2.68.39,1.37.58,2.05C948,444.16,958.45,433,966,421.44a94.08,94.08,0,0,0,6.35-11.37l-.63-2A92.52,92.52,0,0,1,965.36,419.43Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M975.89,360.12l-.74-2.25c.41,1.21.79,2.43,1.12,3.66.22.64.43,1.28.64,1.93C976.6,362.34,976.26,361.23,975.89,360.12Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M67.22,461.77c13.93,13.27,32.47,25.74,55.09,37.09.14-.7.28-1.4.43-2.1-22.6-11.34-41.11-23.79-55-37.05C67.55,460.4,67.39,461.08,67.22,461.77Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M203.49,529.73c.1-.72.21-1.43.32-2.14-30.36-8.77-57.17-19-79.9-30.25-.15.7-.29,1.4-.43,2.1C146.25,510.76,173.09,521,203.49,529.73Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M39.56,385.2a63.72,63.72,0,0,0-.17,33.12c.17-.67.35-1.34.53-2a63.68,63.68,0,0,1,.25-33.41Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M430.39,561c0,.73,0,1.46,0,2.18,41.39,1.63,82.61,1.17,122.78-1.15,0-.72-.07-1.45-.11-2.18C512.9,562.15,471.74,562.6,430.39,561Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M67,459c-13.75-13.29-22.88-27.37-26.88-42-.18.67-.36,1.34-.53,2,4,14.61,13.15,28.71,26.92,42C66.67,460.4,66.84,459.71,67,459Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M308.62,552.06c28.07,4.16,57.85,7.34,89.12,9.39q15.24,1,30.47,1.63c0-.73,0-1.46.05-2.18q-15.21-.63-30.44-1.63c-31.23-2-61-5.22-89-9.38C308.75,550.62,308.68,551.34,308.62,552.06Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M306.7,551.78c.07-.73.13-1.45.2-2.17A809.44,809.44,0,0,1,205.38,528c-.11.71-.21,1.43-.32,2.14A810.94,810.94,0,0,0,306.7,551.78Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M682.62,673.62l0,1.08,0,1a989.91,989.91,0,0,0,108.48-23.39l0-1c0-.36,0-.72,0-1.08A989.65,989.65,0,0,1,682.62,673.62Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M792.84,649.76l0,1.08c0,.35,0,.69,0,1,33.47-9.4,64-20.29,90.81-32.44,0-.34,0-.69,0-1l0-1.08C856.87,629.47,826.31,640.35,792.84,649.76Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M999.51,497a71,71,0,0,1-6.76,31.68l0,1.08c0,.35,0,.7,0,1a71,71,0,0,0,6.77-31.34l0-1.21Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M992.37,529.54a97.38,97.38,0,0,1-6.58,11.78c-7.82,12-18.68,23.56-32.23,34.5l0,1.08,0,1C967.16,567,978,555.47,985.84,543.45a96.89,96.89,0,0,0,6.58-11.79c0-.34,0-.69,0-1Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M885,616.69l0,1.08c0,.35,0,.7,0,1.05,26.64-12.19,49.47-25.64,67.61-40.13l0-1,0-1.08C934.5,591.06,911.66,604.5,885,616.69Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M560,686.9l0,1.08,0,1c41.59-2.47,82.09-6.86,120.61-13l0-1,0-1.08C642.12,680,601.62,684.44,560,686.9Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M112.55,622.18l0,1.08,0,1C136.2,636,164,646.59,195.53,655.69l0-1c0-.36,0-.72,0-1.08C164,644.47,136.15,633.9,112.55,622.18Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M25.6,538.88l0,1.07,0,1c4.15,15.14,13.63,29.76,27.9,43.54l0-1,0-1.08C39.23,568.63,29.75,554,25.6,538.88Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M23.23,522.86l0,1.24,0,1.21a66.51,66.51,0,0,0,2.16,14.91l0-1.05,0-1.08A66.3,66.3,0,0,1,23.23,522.86Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M430.61,688.22l0,1.08,0,1c42.9,1.69,85.62,1.22,127.26-1.19l0-1,0-1.08C516.24,689.43,473.52,689.9,430.61,688.22Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M54.24,583.13l0,1.08,0,1C68.73,599,88,611.93,111.4,623.69l0-1,0-1.08C87.89,609.81,68.68,596.89,54.24,583.13Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M396.81,686.45c-32.41-2.13-63.28-5.42-92.37-9.74l0,1.08,0,1.05c29.09,4.31,60,7.6,92.37,9.73q15.79,1,31.59,1.69l0-1,0-1.08Q412.62,687.49,396.81,686.45Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M197.11,654c0,.36,0,.72,0,1.08l0,1a838.22,838.22,0,0,0,105.35,22.38c0-.35,0-.69,0-1l0-1.08A837.39,837.39,0,0,1,197.11,654Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M784.15,768c.09-.59.18-1.19.28-1.78a954.69,954.69,0,0,1-104.67,22.55l-.15,1.76A952.28,952.28,0,0,0,784.15,768Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M785.81,767.56c32.26-9.07,61.71-19.56,87.51-31.26l.39-1.83c-25.83,11.72-55.32,22.23-87.61,31.3C786,766.37,785.91,767,785.81,767.56Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M941.17,694.43l-.48,1.88c13.06-10.55,23.53-21.66,31.06-33.25a94.36,94.36,0,0,0,6.34-11.35l.51-1.93a94,94,0,0,1-6.34,11.37C964.72,672.75,954.23,683.87,941.17,694.43Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M978.45,650.92a77.12,77.12,0,0,0,4.19-11.49l.61-2.29A75.85,75.85,0,0,1,979,649C978.8,649.63,978.63,650.28,978.45,650.92Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M561.47,803.35c40.08-2.38,79.11-6.61,116.22-12.49l.15-1.76c-37.16,5.89-76.24,10.13-116.37,12.51Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M939.8,697c.15-.62.31-1.25.47-1.87-17.5,14-39.53,27-65.23,38.71l-.39,1.82C900.32,724,922.32,711,939.8,697Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M436.77,804.62c41.34,1.62,82.5,1.17,122.63-1.15v-1.74c-40.17,2.32-81.39,2.77-122.78,1.15Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M314.89,791.78l.3,1.75c28,4.16,57.77,7.33,89,9.38q15.22,1,30.44,1.62c-.05-.57-.1-1.16-.15-1.74q-15.23-.62-30.47-1.62C372.74,799.11,343,795.94,314.89,791.78Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M74.08,703.35c13.91,13.26,32.43,25.71,55,37-.17-.6-.35-1.21-.52-1.82C106,727.22,87.42,714.76,73.49,701.48,73.69,702.11,73.88,702.73,74.08,703.35Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M47.64,664.48c4.46,13.25,13.17,26,25.73,38.19-.2-.63-.4-1.25-.59-1.87-12.68-12.25-21.44-25.17-25.87-38.55Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M130.27,741c22.74,11.3,49.55,21.48,79.91,30.25l-.42-1.79c-30.4-8.77-57.24-19-80-30.28C129.92,739.77,130.1,740.37,130.27,741Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M211.75,771.68a809.44,809.44,0,0,0,101.52,21.57l-.3-1.76a807.39,807.39,0,0,1-101.64-21.6Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M447.8,895c37,1.45,73.82,1,109.71-1l.06-1.32c-36,2.07-72.91,2.48-110,1C447.65,894.11,447.73,894.55,447.8,895Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M758.59,862.25l.58-1.41a857.37,857.37,0,0,1-93.77,20.21c-.11.45-.23.9-.34,1.36A855.31,855.31,0,0,0,758.59,862.25Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M559.37,893.86c35.86-2.13,70.77-5.92,104-11.18l.33-1.36c-33.29,5.28-68.3,9.07-104.25,11.21Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M839.56,833.32c23-10.5,42.65-22.1,58.29-34.59l.93-1.57c-15.67,12.52-35.41,24.14-58.43,34.68C840.09,832.34,839.82,832.83,839.56,833.32Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M838.37,833.87l.78-1.49c-23.14,10.5-49.56,19.91-78.49,28-.19.47-.38.94-.58,1.41C788.94,853.72,815.29,844.34,838.37,833.87Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M926.43,768.35c.39-.61.78-1.22,1.15-1.82l1.23-2c-.44.73-.9,1.46-1.37,2.18-6.75,10.4-16.15,20.36-27.85,29.82l-.94,1.58C910.32,788.65,919.69,778.71,926.43,768.35Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M108.28,786.81l1.35,2a108,108,0,0,0,13.05,15c-.36-.52-.71-1-1.06-1.57A107.34,107.34,0,0,1,108.28,786.81Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M172.55,837.53c-.32-.49-.63-1-.94-1.47-20.27-10.17-36.88-21.34-49.35-33.23l1.06,1.56C135.76,816.25,152.33,827.39,172.55,837.53Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M173.59,838.05c20.34,10.11,44.33,19.22,71.49,27.06l-.75-1.4c-27.23-7.86-51.27-17-71.67-27.13Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M338.52,883.72l.51,1.35c25.08,3.72,51.69,6.56,79.63,8.39q13.62.9,27.23,1.46c-.08-.45-.15-.89-.23-1.33q-13.64-.55-27.3-1.46C390.34,890.29,363.66,887.45,338.52,883.72Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M246.49,865.52a723.53,723.53,0,0,0,90.82,19.3l-.51-1.36a723.81,723.81,0,0,1-91.06-19.35Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M717.06,932l.82-1a702.91,702.91,0,0,1-76.82,16.56l-.49.89A697.38,697.38,0,0,0,717.06,932Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M554.13,957.88c29.32-1.74,57.88-4.84,85-9.14l.48-.89c-27.28,4.32-56,7.44-85.41,9.18C554.2,957.32,554.17,957.6,554.13,957.88Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M718.28,931.69a452.38,452.38,0,0,0,64-22.87l1.11-1.06a454.19,454.19,0,0,1-64.31,23Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M832.27,878.9c-12.85,10.26-29,19.78-47.88,28.41l-1.11,1.07c18.78-8.6,34.88-18.08,47.67-28.29Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M838.74,873.41q-2.78,2.51-5.81,5l-1.32,1.19q2.8-2.26,5.39-4.59Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M204.16,890.57l1.9,1.54a187.24,187.24,0,0,0,31.71,19.71l-1.26-1.05A185.5,185.5,0,0,1,204.16,890.57Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M297.09,934.37l-1-1c-22.31-6.44-42-13.92-58.72-22.22.42.35.83.7,1.26,1C255.26,920.51,274.88,928,297.09,934.37Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M462.88,958.81c30.26,1.18,60.37.85,89.73-.84,0-.28.07-.56.11-.85-29.49,1.7-59.74,2-90.12.85C462.7,958.25,462.79,958.53,462.88,958.81Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M298.24,934.7a591.84,591.84,0,0,0,74.28,15.79l-.67-.88a594.24,594.24,0,0,1-74.61-15.85Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M373.25,949.82c.23.29.45.58.67.88,20.51,3,42.28,5.36,65.13,6.86q11.15.74,22.27,1.19c-.09-.28-.19-.56-.29-.85q-11.17-.45-22.37-1.19C415.71,955.2,393.85,952.87,373.25,949.82Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M606.65,986.29l.61-.39c-19.48,3.09-40,5.31-61,6.56l-.16.33C567,991.56,587.31,989.35,606.65,986.29Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M607.65,986.13a500.17,500.17,0,0,0,54.46-11.74l1-.47a499,499,0,0,1-54.86,11.82Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M706.42,958.83A331.55,331.55,0,0,1,664,973.67l-1,.48a335.64,335.64,0,0,0,40.35-14Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M341,968.74l2.74,1q9.15,3.35,19.38,6.3l-1.21-.46Q350.81,972.41,341,968.74Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M416.8,987.53l-.81-.37a426.31,426.31,0,0,1-53.29-11.32l1.21.45A421,421,0,0,0,416.8,987.53Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M481.14,993.46c21.54.84,43,.6,63.88-.6l.15-.34c-21.06,1.22-42.66,1.46-64.36.61Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M417,987.31l.81.37c14.6,2.16,30.1,3.82,46.37,4.89q7.92.51,15.85.84l-.33-.33q-8-.33-16-.85C447.32,991.15,431.71,989.49,417,987.31Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M521.22,26.09c-7.05,4.59-14.33,14.76-21.7,30.94,7.57-16.17,15.05-26.34,22.29-30.92l.37-.23a16.06,16.06,0,0,1,9.2-2.6l-.84,0a15.47,15.47,0,0,0-8.95,2.62Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M483.39,23.65l-.8.05c1.43-.09,2.92.73,4.47,2.5l.19.22C491,30.91,495.13,41,499.52,57c-4.19-16.08-8.11-26.15-11.7-30.64l-.19-.23C486.16,24.4,484.75,23.57,483.39,23.65Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M435.19,28.85l-.84.13a52.14,52.14,0,0,1,20,.75l.72.17c14,3.38,28.93,12.27,44.46,27.13-15.35-14.89-30.07-23.81-43.94-27.21l-.71-.17A50.78,50.78,0,0,0,435.19,28.85Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M380.12,40.86l-1,.3a140.06,140.06,0,0,1,45.84-5.07l1.2.07C449.37,37.54,474,44.34,499.52,57c-25.39-12.74-49.84-19.58-72.95-21L425.39,36A138.53,138.53,0,0,0,380.12,40.86Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M400.68,44.74a248.69,248.69,0,0,0-86.32,19.7L313,65c-1.13.49-2.25,1-3.37,1.5l-1.56.72c1.4-.65,2.82-1.28,4.24-1.9l1.37-.6a250.64,250.64,0,0,1,86.65-19.85l1.59-.08C421.55,44,455,44.31,499.52,57c-44.38-12.8-77.72-13.2-97.25-12.36Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M212,125.6c-.83.63-1.64,1.29-2.46,1.93C210.33,126.88,211.14,126.23,212,125.6Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M203,132.69c2.14-1.75,4.32-3.46,6.51-5.16-1.51,1.18-3,2.35-4.54,3.56Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M382.25,55.61A364.57,364.57,0,0,0,279.69,84.89l-1.63.75a345.53,345.53,0,0,0-66.09,40A347.2,347.2,0,0,1,277.59,86l1.63-.75A366.25,366.25,0,0,1,382,55.81l1.88-.25c47.27-5.88,78.95-2.48,115.63,1.47a415.09,415.09,0,0,0-115.38-1.67Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M71.81,298.64c-.51,1-1,2.07-1.49,3.11C70.81,300.71,71.3,299.67,71.81,298.64Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M371.63,68.16A461.74,461.74,0,0,0,259.7,108.49l-1.78.93a437.57,437.57,0,0,0-94,65.91l-1.44,1.33a417.58,417.58,0,0,0-71.7,87.4l-1,1.67q-9.7,16-17.93,32.91,8.1-16.53,17.6-32.2l1-1.67a418.19,418.19,0,0,1,71.75-87.53l1.44-1.33a439.07,439.07,0,0,1,94.1-66.08l1.79-.93a463.51,463.51,0,0,1,112-40.53l2.05-.45A498.67,498.67,0,0,1,499.52,57,497.5,497.5,0,0,0,373.68,67.7Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M66,310.94c1.39-3.09,2.84-6.14,4.31-9.19-.75,1.56-1.52,3.11-2.25,4.68Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M36.5,625.07c.17.72.35,1.44.52,2.16C36.84,626.51,36.67,625.79,36.5,625.07Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M39.6,637.53c-.91-3.41-1.76-6.85-2.58-10.3.39,1.62.75,3.25,1.16,4.86Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M40.12,417.07A452.3,452.3,0,0,1,85.56,307.49l1-1.78A484.64,484.64,0,0,1,159,210.87l1.45-1.47a509.12,509.12,0,0,1,95-75.55l1.8-1.1a519.83,519.83,0,0,1,113.07-51.7q1-.35,2.07-.66A526,526,0,0,1,499.52,57,526.32,526.32,0,0,0,372.36,80.18l-2.08.66a519.57,519.57,0,0,0-113.11,51.51l-1.81,1.11a508.88,508.88,0,0,0-95,75.38c-.48.5-1,1-1.45,1.48A483.45,483.45,0,0,0,86.4,305l-1,1.77A451.14,451.14,0,0,0,39.92,416.32c-.18.66-.36,1.33-.53,2a432.18,432.18,0,0,0-14,119.77l0,1.08,0,1.05A423,423,0,0,0,36.5,625.07,422.77,422.77,0,0,1,25.66,541l0-1,0-1.07a432.88,432.88,0,0,1,14-119.81C39.76,418.41,39.94,417.74,40.12,417.07Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M172,862.1c-4.1-4-8.07-8.05-12-12.21,3.22,3.41,6.44,6.8,9.78,10.08Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M158.64,848.51c.44.47.91.91,1.35,1.38C159.55,849.43,159.08,849,158.64,848.51Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M67.72,459.71a516.87,516.87,0,0,1,42.59-114l1-1.87a553.06,553.06,0,0,1,68-101.66l1.36-1.61A559,559,0,0,1,270,156.24l1.7-1.28A535.76,535.76,0,0,1,378,92.85l1.95-.85A500.26,500.26,0,0,1,499.52,57,500.34,500.34,0,0,0,379.74,91.82l-2,.84a536,536,0,0,0-106.5,61.94l-1.7,1.28a557.88,557.88,0,0,0-89.43,84.22c-.46.53-.91,1.07-1.37,1.61a551,551,0,0,0-68.14,101.54l-1,1.87A515.76,515.76,0,0,0,67,459c-.16.68-.33,1.37-.49,2.05a473.65,473.65,0,0,0-13,121.34l0,1.08,0,1A426.18,426.18,0,0,0,72.78,700.8c.19.62.39,1.24.59,1.87a388.43,388.43,0,0,0,48.25,99.54c.35.53.7,1,1.06,1.57a378.47,378.47,0,0,0,36,44.73,377.38,377.38,0,0,1-35.32-44.12l-1.06-1.56a388,388,0,0,1-48.18-99.48c-.2-.62-.39-1.24-.59-1.87A426.91,426.91,0,0,1,54.3,585.25l0-1,0-1.08a474.82,474.82,0,0,1,13-121.36C67.39,461.08,67.55,460.4,67.72,459.71Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M274,937.32c1.8,1.08,3.59,2.16,5.41,3.2C277.6,939.48,275.81,938.4,274,937.32Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M269.56,934.58c1.48.92,3,1.84,4.45,2.74C272.52,936.42,271,935.5,269.56,934.58Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M279.42,940.52c3.66,2.1,7.37,4.09,11.12,6Q284.92,943.66,279.42,940.52Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M394.92,102.1l-1.71,1a523.37,523.37,0,0,0-92.9,71.15l-1.48,1.42a602.36,602.36,0,0,0-77.9,92l-1.19,1.73A636.81,636.81,0,0,0,160.5,377l-.84,1.95a614.85,614.85,0,0,0-36.92,117.8c-.15.7-.29,1.4-.43,2.1a555.87,555.87,0,0,0-11,122.71l0,1.08,0,1c1.15,41.09,7.09,79.56,17.18,114.88.17.61.35,1.22.52,1.82a375.75,375.75,0,0,0,42.51,95.67c.31.49.62,1,.94,1.47a316.84,316.84,0,0,0,64,73.24l1.26,1.05a296.11,296.11,0,0,0,31.79,22.76,293.33,293.33,0,0,1-30.93-22.34c-.43-.34-.84-.69-1.26-1a316.17,316.17,0,0,1-63.78-73.15l-.93-1.47A375.93,375.93,0,0,1,130.27,741c-.17-.61-.35-1.21-.52-1.82-10.06-35.31-16-73.77-17.14-114.86l0-1,0-1.08a558,558,0,0,1,10.93-122.74c.14-.7.28-1.4.43-2.1a616.6,616.6,0,0,1,36.8-117.85l.84-2a638.54,638.54,0,0,1,59-107.67c.39-.58.79-1.15,1.19-1.73A603,603,0,0,1,299.45,176l1.47-1.42a523.16,523.16,0,0,1,92.62-71.29l1.7-1h0c42.61-25,71.19-34.39,104.28-45.22A434.9,434.9,0,0,0,394.92,102.1Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M293.74,948.21c-1.07-.54-2.13-1.11-3.2-1.66.45.23.89.5,1.34.72Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M457.56,80.33q5.07-3.33,10.21-6.43C464.23,76,460.84,78.17,457.56,80.33Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M457.48,80.38l.08,0Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M449.15,86c2.77-1.93,5.54-3.83,8.33-5.66Q453.23,83.17,449.15,86Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M467.77,73.9l.17-.11Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M430.91,99.59C437,94.84,443,90.36,449.15,86Q439.93,92.46,430.91,99.59Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M467.94,73.79c2.79-1.68,5.59-3.29,8.4-4.88C473.44,70.54,470.65,72.16,467.94,73.79Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M205.38,528a794.87,794.87,0,0,1,28.41-121c.22-.67.43-1.35.65-2a781.93,781.93,0,0,1,46-112.58l.93-1.83a674,674,0,0,1,60.81-98.49c.38-.52.77-1,1.16-1.55,22.44-29.79,46.84-56.36,72.73-78.78.44-.39.89-.77,1.34-1.15,4.44-3.82,8.94-7.47,13.47-11-4.49,3.47-9.07,7.09-13.9,10.9l-1.35,1.16c-26,22.38-50.55,48.91-73.11,78.67l-1.17,1.54a672.64,672.64,0,0,0-61.13,98.4l-.93,1.83A778.41,778.41,0,0,0,233,404.59l-.66,2a790.83,790.83,0,0,0-28.57,121c-.11.71-.22,1.42-.32,2.14a714.7,714.7,0,0,0-8,123.84c0,.36,0,.72,0,1.08l0,1c1.14,41.08,6.05,79.16,14.23,113.75l.42,1.79c8.29,34.47,19.84,65.45,34.15,92.48l.75,1.4c14.41,26.89,31.58,49.82,51,68.31l1,1c19.51,18.35,41.27,32.24,64.79,41.23l1.21.46q6.15,2.3,12.43,4.14l1.21.35q-6.5-1.89-12.82-4.26l-1.21-.45c-23.4-9-45.05-22.82-64.46-41.14l-1-.94c-19.33-18.47-36.41-41.37-50.75-68.24l-.75-1.41c-14.24-27-25.74-58-34-92.43l-.42-1.79c-8.14-34.58-13-72.65-14.17-113.73l0-1c0-.36,0-.72,0-1.08a718.79,718.79,0,0,1,7.95-123.85C205.17,529.47,205.27,528.75,205.38,528Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M492.66,60.33c2.29-1.11,4.56-2.25,6.86-3.3C497.16,58.14,494.88,59.24,492.66,60.33Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M476.34,68.91c5.07-2.84,10.46-5.68,16.32-8.58C487.18,63,481.74,65.86,476.34,68.91Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M308.82,549.89a1200.56,1200.56,0,0,1,17.75-123.26c.14-.7.27-1.39.41-2.08a1123.24,1123.24,0,0,1,29.5-116.07l.6-1.9a876.47,876.47,0,0,1,39.41-103l.76-1.63c14.6-31.45,30.53-59.81,47.49-84.12l.87-1.25c17-24.24,35.11-44.41,53.91-59.54-19,15.1-37.22,35.24-54.43,59.46l-.88,1.25c-17.12,24.29-33.21,52.62-48,84.05-.25.54-.51,1.08-.76,1.63a870.05,870.05,0,0,0-39.81,103c-.2.63-.4,1.27-.61,1.9a1114.58,1114.58,0,0,0-29.8,116l-.42,2.08a1189.07,1189.07,0,0,0-18,123.24c-.07.72-.13,1.44-.2,2.17a1087.54,1087.54,0,0,0-4.24,124.64l0,1.08c0,.35,0,.69,0,1,1.12,41.08,4.72,78.87,10.46,113l.3,1.76c5.82,33.94,13.77,64.16,23.53,90.21l.51,1.36c9.83,25.91,21.45,47.65,34.54,64.79l.67.88c13.14,17,27.74,29.35,43.47,36.67l.81.37A82.54,82.54,0,0,0,438.41,994l.92.14a80.85,80.85,0,0,1-21.53-6.47l-.81-.37c-15.58-7.3-30-19.65-43.07-36.61-.22-.3-.44-.59-.67-.88-13-17.12-24.49-38.85-34.22-64.75l-.51-1.35c-9.68-26-17.56-56.25-23.33-90.19l-.3-1.75c-5.7-34.07-9.27-71.86-10.39-112.94l0-1.05,0-1.08a1097,1097,0,0,1,4.18-124.65C308.68,551.34,308.75,550.62,308.82,549.89Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M430.39,561c.88-41.9,2.66-83.69,5.23-124.41,0-.7.09-1.4.13-2.1,2.6-40.69,6-80.29,10.07-117.84.08-.65.15-1.29.22-1.94,4.1-37.48,8.89-72.9,14.27-105.3l.27-1.67c5.4-32.3,11.37-61.56,17.82-86.83l.33-1.3c6.49-25.21,13.45-46.38,20.79-62.56-7.54,16.17-14.7,37.34-21.37,62.54-.11.43-.23.86-.34,1.3-6.64,25.26-12.78,54.51-18.34,86.8-.09.56-.19,1.11-.28,1.67-5.54,32.4-10.48,67.81-14.72,105.29l-.21,1.94c-4.21,37.55-7.72,77.14-10.42,117.82,0,.7-.09,1.4-.13,2.1-2.67,40.72-4.52,82.5-5.45,124.41,0,.72,0,1.45-.05,2.18-.89,41.9-.87,83.91.19,125l0,1.08,0,1c1.09,41.07,3.15,78.72,6,112.53,0,.58.1,1.17.15,1.74,2.91,33.68,6.63,63.5,11,89.06.08.44.15.88.23,1.33,4.42,25.4,9.52,46.54,15.14,63,.1.29.2.57.29.85,5.65,16.28,11.81,27.87,18.37,34.33l.33.33c3.73,3.57,7.58,5.49,11.53,5.68l.85,0c-3.86-.18-7.62-2.09-11.26-5.66l-.33-.33c-6.39-6.46-12.41-18-17.93-34.32-.09-.28-.18-.56-.28-.84-5.49-16.44-10.47-37.57-14.8-63-.07-.44-.15-.88-.22-1.33-4.31-25.55-8-55.37-10.81-89l-.15-1.74c-2.83-33.81-4.86-71.46-5.95-112.54l0-1,0-1.08c-1.05-41.14-1.11-83.15-.26-125.06C430.36,562.44,430.38,561.71,430.39,561Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M557.57,892.64l-.06,1.32c-1.13,25.46-2.74,46.65-4.79,63.16,0,.29-.07.57-.11.85-2.06,16.35-4.56,28-7.44,34.55l-.15.34c-1.7,3.74-3.53,5.72-5.48,5.84l.79-.05c2-.13,4-2.11,5.77-5.86l.16-.33c3-6.55,5.67-18.22,7.87-34.58,0-.28.07-.56.11-.85,2.18-16.51,3.9-37.71,5.13-63.17l.06-1.33c1.2-25.61,1.9-55.48,2-89.18v-1.74c.12-33.84-.33-71.51-1.39-112.58l0-1,0-1.08c-1.08-41.14-2.72-83.13-4.82-125,0-.72-.07-1.45-.11-2.18-2.11-41.87-4.68-83.62-7.62-124.28l-.15-2.1c-3-40.63-6.27-80.16-9.86-117.63l-.18-1.93c-3.6-37.41-7.48-72.74-11.53-105l-.21-1.67c-4-32.19-8.29-61.35-12.61-86.51-.08-.43-.15-.86-.23-1.29-4.34-25.1-8.76-46.16-13.18-62.22,4.22,16.07,8.46,37.14,12.62,62.25l.21,1.29c4.15,25.17,8.21,54.34,12.11,86.55l.21,1.66c3.89,32.32,7.62,67.66,11.09,105.07l.18,1.94c3.46,37.48,6.67,77,9.53,117.65,0,.7.09,1.4.14,2.1C548.46,476.21,551,518,553,559.83c0,.73.07,1.46.11,2.18,2,41.88,3.66,83.87,4.74,125l0,1.08,0,1c1.06,41.08,1.54,78.75,1.47,112.58v1.74C559.31,837.17,558.68,867,557.57,892.64Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M677.69,790.86c-2.92,34-7.67,64.3-14,90.46l-.33,1.36c-6.39,26-14.37,47.89-23.7,65.17l-.48.89c-9.37,17.13-20.09,29.66-31.91,37.16l-.61.39a51.47,51.47,0,0,1-18.9,7.2l.84-.13a52.56,52.56,0,0,0,19.06-7.23l.62-.39c12-7.52,22.81-20.07,32.3-37.22l.49-.89c9.44-17.31,17.52-39.19,24-65.22.11-.46.23-.91.34-1.36,6.42-26.18,11.24-56.49,14.21-90.5l.15-1.76a1031.19,1031.19,0,0,0,2.92-113l0-1,0-1.08c-1.11-41.14-4.25-83-9.13-124.54-.09-.72-.17-1.44-.26-2.17-5-41.56-11.64-82.86-19.79-123-.14-.69-.29-1.38-.43-2.07-8.21-40.06-17.88-78.9-28.73-115.59l-.57-1.89a1055.82,1055.82,0,0,0-36-102.4c-.23-.54-.45-1.08-.67-1.61-13-31.23-26.92-59.34-41.45-83.39l-.75-1.24c-14.6-24-29.81-43.88-45.37-58.73,15.37,14.88,30.42,34.8,44.84,58.81l.75,1.24c14.36,24.08,28.11,52.22,41,83.47l.66,1.61a1067.88,1067.88,0,0,1,35.56,102.46c.19.63.37,1.27.56,1.9,10.74,36.7,20.31,75.56,28.43,115.64l.42,2.07c8.07,40.11,14.7,81.42,19.6,123,.08.72.17,1.44.25,2.17,4.84,41.58,7.95,83.41,9.06,124.55l0,1.08,0,1a1044.79,1044.79,0,0,1-2.85,113Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M784.15,768c-5.48,34.55-13.94,65.65-25,92.82l-.58,1.41c-11.13,27-24.84,50.13-40.71,68.82l-.82,1c-15.95,18.54-34.06,32.66-53.93,41.89l-1,.47a135.88,135.88,0,0,1-19.26,7.06l1-.29a137.76,137.76,0,0,0,19.09-7l1-.48c20-9.26,38.22-23.41,54.27-42l.83-1c16-18.72,29.77-41.84,41-68.9.2-.47.39-.94.58-1.41,11.12-27.19,19.64-58.31,25.15-92.86.1-.6.19-1.19.29-1.79,5.41-34.68,7.81-72.81,6.79-113.89,0-.35,0-.69,0-1l0-1.08a828.27,828.27,0,0,0-13-123.71c-.13-.71-.25-1.42-.39-2.13A911,911,0,0,0,748.7,403.33c-.22-.68-.45-1.35-.67-2a878.65,878.65,0,0,0-45.71-111.92l-.9-1.82a728.34,728.34,0,0,0-57.92-97.64l-1.09-1.52c-21.06-29.49-43.66-55.71-67.37-77.78l-1.22-1.14C550,87.5,525.09,69.71,499.52,57c25.41,12.73,50.17,30.56,73.84,52.59l1.22,1.14c23.56,22.11,46,48.37,67,77.89l1.08,1.53a728.77,728.77,0,0,1,57.58,97.74l.9,1.82a884.66,884.66,0,0,1,45.44,112l.66,2a918.29,918.29,0,0,1,30.57,120.64c.13.72.26,1.43.38,2.14a833.58,833.58,0,0,1,13,123.72c0,.36,0,.72,0,1.08l0,1c1,41.09-1.36,79.2-6.73,113.88C784.33,766.83,784.24,767.43,784.15,768Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M873.32,736.3c-7.61,35.31-19.18,67.51-34.17,96.08l-.78,1.49c-15.1,28.44-33.6,53.25-55,73.89l-1.11,1.06a249.53,249.53,0,0,1-68.86,46.88L715,955a251.12,251.12,0,0,0,68.27-46.61l1.11-1.07c21.44-20.68,40-45.51,55.17-74,.26-.49.53-1,.79-1.48,15-28.6,26.65-60.82,34.3-96.15l.39-1.82c7.51-35.44,11-74,10-115,0-.35,0-.7,0-1.05l0-1.08a610.15,610.15,0,0,0-16.26-122.54c-.17-.7-.33-1.4-.5-2.09a675.64,675.64,0,0,0-39.89-117.31l-.87-1.95A684.84,684.84,0,0,0,767.6,266c-.39-.57-.78-1.15-1.18-1.72a625.49,625.49,0,0,0-76.3-91l-1.43-1.4a515.53,515.53,0,0,0-89.05-70l-1.62-1c-31.67-19.3-64.73-34.15-98.5-43.78,33.64,9.69,66.59,24.59,98.14,44l1.61,1A515.23,515.23,0,0,1,688,172.12l1.43,1.41a626.88,626.88,0,0,1,76,91.18l1.18,1.71a688.14,688.14,0,0,1,59.69,106.92l.87,2a678,678,0,0,1,39.75,117.37c.17.7.33,1.4.5,2.1a612.53,612.53,0,0,1,16.21,122.56l0,1.08c0,.35,0,.7,0,1,1,41.09-2.51,79.61-10,115Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M939.8,697a380.34,380.34,0,0,1-41,100.13l-.93,1.57a351.36,351.36,0,0,1-65.58,80.17L831,880.09q-6.27,5.61-12.8,10.92l2-1.6q5.85-4.8,11.49-9.85l1.32-1.19a352.43,352.43,0,0,0,65.72-80.28l.94-1.58a380.77,380.77,0,0,0,41.1-100.2l.48-1.88a437.17,437.17,0,0,0,12.45-116.49l0-1,0-1.08a500.14,500.14,0,0,0-18.67-121.1c-.19-.68-.38-1.37-.58-2.05a549.67,549.67,0,0,0-46.69-113.25l-1-1.85A581.49,581.49,0,0,0,816.13,237c-.46-.54-.92-1.07-1.39-1.6a575.29,575.29,0,0,0-90-82.9l-1.69-1.25A533.67,533.67,0,0,0,617.93,90.9L616,90.08A478.69,478.69,0,0,0,499.52,57,477.11,477.11,0,0,1,615.77,90.28l1.91.82a533.33,533.33,0,0,1,105,60.57l1.68,1.25A576.53,576.53,0,0,1,814.09,236l1.39,1.6a582.41,582.41,0,0,1,70.31,100.64l1,1.86a551.54,551.54,0,0,1,46.61,113.32l.57,2.05a502,502,0,0,1,18.64,121.13l0,1.08,0,1a438.22,438.22,0,0,1-12.42,116.47C940.11,695.78,940,696.41,939.8,697Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M961.51,700.39c-.51,1.22-1,2.42-1.56,3.62C960.46,702.8,961,701.61,961.51,700.39Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M956.28,712.56c1.28-2.82,2.45-5.69,3.67-8.55-1.84,4.34-3.7,8.67-5.69,12.93Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M992.78,529.8l0-1.08a443.33,443.33,0,0,0-20-119.44l-.63-2a471.54,471.54,0,0,0-50.59-108.57l-1.1-1.75a505.9,505.9,0,0,0-76.5-93.28l-1.51-1.44a527.12,527.12,0,0,0-97.77-73.52c-.61-.36-1.22-.72-1.84-1.07A528.81,528.81,0,0,0,628.38,78.34l-2.08-.62A523.41,523.41,0,0,0,499.52,57,522.36,522.36,0,0,1,626.2,77.94l2.08.61a529.41,529.41,0,0,1,114.29,49.51l1.84,1.07a529,529,0,0,1,97.69,73.68l1.51,1.45a507.06,507.06,0,0,1,76.44,93.41l1.11,1.75A472.13,472.13,0,0,1,971.7,408.07l.63,2a444,444,0,0,1,20,119.47l0,1.08c0,.35,0,.7,0,1A419.43,419.43,0,0,1,978.6,649.78l-.51,1.93a408.82,408.82,0,0,1-16.58,48.68,407.12,407.12,0,0,0,16.94-49.47c.18-.64.35-1.29.52-1.93A419.73,419.73,0,0,0,992.8,530.84C992.79,530.5,992.78,530.15,992.78,529.8Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M981.4,378.42c-.22-.77-.43-1.55-.65-2.33C981,376.87,981.18,377.65,981.4,378.42Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M984.4,389.41,983,384c-.5-1.86-1-3.7-1.57-5.55C982.44,382.07,983.45,385.72,984.4,389.41Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M976.27,361.53a420,420,0,0,0-51-103.86L924.14,256a439.43,439.43,0,0,0-77.17-86l-1.53-1.3a463.11,463.11,0,0,0-98.63-64.06l-1.86-.89A485.7,485.7,0,0,0,629.54,65.67l-2.1-.41A513.06,513.06,0,0,0,499.52,57a514.44,514.44,0,0,1,128,8.43l2.1.41A488,488,0,0,1,745.06,104.2l1.86.9a464.61,464.61,0,0,1,98.67,64.21l1.53,1.3a440.83,440.83,0,0,1,77.2,86.08l1.12,1.65a421,421,0,0,1,51,103.94l.63,1.93q1.9,5.91,3.64,11.88c-1.23-4.23-2.49-8.45-3.84-12.63C976.7,362.81,976.49,362.17,976.27,361.53Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M841.86,151.93c-.64-.58-1.25-1.18-1.89-1.75C840.61,150.75,841.23,151.35,841.86,151.93Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M852.67,162l-2.2-2.12c-2.81-2.73-5.71-5.36-8.61-8C845.52,155.24,849.14,158.59,852.67,162Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M825.19,137.56a381.61,381.61,0,0,0-92.91-55.23l-1.75-.73A405.19,405.19,0,0,0,621.88,53.86l-2-.22h0a420.57,420.57,0,0,0-64.21-1.93c22.51-.73,41.63.56,64.41,2.12l2,.22A406.76,406.76,0,0,1,730.91,82l1.75.72a383.68,383.68,0,0,1,93.06,55.38l1.43,1.17q6.54,5.33,12.82,11c-4.36-3.91-8.8-7.75-13.34-11.45Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M555.69,51.71A490.07,490.07,0,0,0,499.52,57C518.62,54.74,536.42,52.61,555.69,51.71Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M701.22,62A297.39,297.39,0,0,0,606.3,43.45l-1.73-.05C571,42.47,535.73,46.84,499.52,57c46.53-12.36,71.21-12.83,105.37-13.48l1.74.06a299.41,299.41,0,0,1,95.2,18.7l1.54.58a286.83,286.83,0,0,1,27.24,12L728.76,74q-12.69-6.33-26-11.41Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M583.73,35l-1.37.09C555.82,36.78,528,44,499.52,57c28.67-13,56.59-20.17,83.27-21.87l1.37-.08a185.21,185.21,0,0,1,62.92,7l-1.21-.35A183.49,183.49,0,0,0,583.73,35Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M584.25,28.32l-.92-.13-.72,0C583.16,28.22,583.7,28.24,584.25,28.32Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M554.17,29.09c-17.56,3.63-35.88,12.8-54.65,27.94,19-15.11,37.45-24.25,55.17-27.86l.91-.18c.72-.14,1.45-.21,2.16-.33-.92.08-1.83.16-2.69.25Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M557.76,28.66a176.35,176.35,0,0,1,24.85-.51A82.61,82.61,0,0,0,557.76,28.66Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M717.91,511.11h0l.46-4.69-21.9,10.34L687.07,529l-1,5.75c-1.5.27-3,.52-4.52.78L677.12,530l-11.55-3.1-2.66,3-5.49-1.81,1.81,7.87-4.75,2.46L663.19,568l11.56-2.35,3.8-7.56,16.9-8.74,5.19-.82,4.25-5.7,19.38-11.95-.23-5.27,3.74-2.77Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="735.3 540.6 723.64 544.83 728.11 549.39 735.12 546.44 735.12 546.44 735.3 540.6" style="fill:#d9dadb"></polygon><path d="M718.37,506.41l-.46,4.69h0l9.87,11.68,1.34-1,6.51-4.94,6.66-1.54,1.31-7,6.06-2.29,1.86-7.2,6.17-3.36.3-11.91L764.63,466l-9.21-8.78-11-.55-5.7-5-4.35,2.65,2.24,5.3-3,1.78,0,9.42,5.16,5.91-1,16.72Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M737.12,450.24l-1-7.24-.61-4.22-2.11-.6-3.34,11.23-3.34,4.19-2.57,6.24q-5.24,1.2-10.54,2.34l-2.71,2.13-6.26-1.58,6.78,10.78,23-1.45.17-.1-1-1.17,0-9.42,3-1.78-2.24-5.3,4.35-2.65Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="691.5 448.75 691.5 448.75 691.5 448.75 691.5 448.75" style="fill:#d9dadb"></polygon><polygon points="692.08 437.33 689.51 435.76 687.67 440.25 687.29 445.12 691.5 448.75 693.85 443.29 692.08 437.33" style="fill:#d9dadb"></polygon><path d="M665.57,526.94l11.55,3.1,4.41,5.45c1.51-.26,3-.51,4.52-.78l1-5.75,9.4-12.21,21.9-10.34,19.37-13,1-16.72L734.63,472l-.17.1-23,1.45-6.78-10.78-1.26-2-4.21-3.64L694,450.64l-.73-5.45-7.72-5.91-2.95-.13-3.11-4.87-6.73,1.22-2.88-4.05q-8.58,1.5-17.32,2.88l-21-14.59-13-6.66-8.55.44-13.48,7.13,6.89,7.19L601,433.17l-5.65,1.26L592.06,441l-9.53-.81.62,8.73h3.06l17.11,21.68,2.82,6.76,8,4,6.61,10.76,1.52,10.68,5.15,5.76,8,3.71,9.65,14.35,4.29,2.51,4.66,8,.46,1.46,4.75-2.46-1.81-7.87,5.49,1.81Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="561.64 373.78 556.97 376.44 551.83 376.73 546.95 380.48 550.13 383.09 554.6 382.63 557.29 380.25 560.19 379.4 559.3 377.99 561.49 375.58 561.64 373.78" style="fill:#d9dadb"></polygon><polygon points="572.22 382.46 568.46 394.66 568.21 396.42 573.45 394.88 574.99 394.44 575.29 394.34 578.95 385.61 576.96 381.7 572.22 382.46 572.22 382.46" style="fill:#d9dadb"></polygon><path d="M717.69,782.07l-1-11.61-4.49-5.89L708,774.45l-3.66,3.61-2.55-.17-2.61,5.39,2,2-11.9,7.55-2.22,1.21-4.47,3.07-2.53-.36-6.17,2.64-4.94,10,1.35,8.94,1.57,2.06-.26,3-6.18,8.72-4.2,4.51-.44,5.68,2.47,4-1.44,4.6,2,3.17,7.25,2.4,14.34-5.74,6.4-10.39,2-5.5L709,806.16c.28-1.94.55-3.9.81-5.86l3.23-3.34-.47-8.51,6.47-2.83Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><polygon points="573.85 399.17 573.45 394.88 568.21 396.42 566.97 404.7 564.05 410.29 563.08 410.54 569.42 426.66 570.37 424.62 575.01 411.7 573.86 399.18 573.85 399.17 573.85 399.17" style="fill:#d9dadb"></polygon><polygon points="594.27 392.51 580.38 402.44 573.89 399.1 573.86 399.18 575.01 411.7 570.37 424.62 570.63 428.19 580.16 429 583.41 422.44 589.06 421.19 591.53 415.86 584.64 408.67 598.12 401.54 594.27 392.51" style="fill:#d9dadb"></polygon><path d="M568.36,877.52l3.87-.6c.13-2.34.26-4.72.38-7.12L567.84,868l-4.25,5.43Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M486.78,917.66l3.38-1.68,9.25-.42,5.46-1.93,16.11.7,1.4-1.18,10.67-1.41,9.79-4,15.56-9.89L568.81,887l7.76-4.83,3.86-7.89a1.15,1.15,0,0,0,0-.19c-2.69.21-5.38.41-8.09.6l-.12,2.25-3.87.6-4.77-4.1,4.25-5.43,4.77,1.81,1.95-3c.09-1.87.19-3.76.28-5.66l-3.91-5.3,1.66-2.38-3.21-3.81-1.07-1.25-6.54,1.39-3.71-1.53-4.43,1.22-2.25.62-1,1.76-5,.87-2.3,3.34-5.75.65-3.46,7.62-6.55.68-3.56,6.11q-3.53.11-7.06.18l-7.62-3.22L504,869.54l-1.34,4.14-5.17,3.82c-2.85,0-5.71,0-8.58,0l-1.72-2.45,3.07-2.3-3.65-5.59-4.93-1.57q.84,10.35,1.72,20l-4.61,1-.48,2.13-8.05-.12-6.75-1.76,1.24-2.3-3.94-1.3-4.21,1.8.29.27,2.61,2.43,4.44,6.7,8.56,8.4.52,4.65-3-.41,4.8,5-.51,2.29Zm54.34-29.86,7.21-2.55,5.51,2.38-2.92,4.62h0l-5.28.26-3.71,3.87L537.28,892Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M553.84,887.63l-5.51-2.38-7.21,2.55L537.28,892l4.65,4.43,3.71-3.87,5.28-.26h0Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M582.8,818.17l2.34-4.58-5.49-2.9L575.16,813,571,809.74l-7.32.23c0-.76,0-1.52,0-2.28h-5.35l-7.26,2.75-.93,4-8.45,3.18L538,823.45l-3.83,1.84-5.12-2.4L522.9,824l5.2,6.18c0,1.24,0,2.48.07,3.71l9.06,2.45.72,3,4.11.21,2.18,5.68,8.74.29.66,3.81a1.48,1.48,0,0,1,0,.21l4.43-1.22,3.71,1.53,6.54-1.39,1.07,1.25,9-7,0-5.58,3.47-.14,3.43-4.1-3.05-2,1.28-2.22-2.87-1.49,5.07-6.31Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M488.89,877.52c2.87,0,5.73,0,8.58,0l5.17-3.82,1.34-4.14,5.09-1.42,7.62,3.22q3.54-.08,7.06-.18l3.56-6.11,6.55-.68,3.46-7.62,5.75-.65,2.3-3.34,5-.87,1-1.76,2.25-.62a1.48,1.48,0,0,0,0-.21l-.66-3.81-8.74-.29-2.18-5.68-4.11-.21-.72-3-9.06-2.45c0-1.23,0-2.47-.07-3.71L522.89,824l-8.23,1.36-5.1,3.56-2.93-2.51-19,2.71q.6,10.54,1.22,20.51l-8.38,0q.6,8.22,1.22,16l4.93,1.57,3.65,5.59-3.07,2.3Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><polygon points="493.35 808.93 493.34 808.93 493.35 808.93 493.35 808.93" style="fill:#ff7b00"></polygon><path d="M509.56,828.89l5.1-3.56,8.23-1.36-3.45-4.12-6.91-.43-7.29,1.5-16,3.1q-10,0-20.13-.13l-3.68-2.75q-17.56-.3-35.2-1.1l-4.86-3.69-6-.31-4.1,3-4.79-.29.53,3.37,13,13.55,2.28,4.2,9.08,9.06,1.5,2.44-.32,2.63.92,5.84,3.74,5.38.42,3.94,4.89,8.78,4,4,6.06,3.11,4.21-1.8,3.94,1.3-1.24,2.3,6.75,1.76,8.05.12.48-2.13,4.61-1q-.88-9.62-1.72-20-.63-7.82-1.22-16l8.38,0q-.63-10-1.22-20.51l19-2.71Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><polygon points="362.2 649.75 364.92 643.41 359.08 640.86 355.25 645.59 362.2 649.75" style="fill:#ff7b00"></polygon><path d="M599.26,814.76l4.71.06,5.83-17.5-6.07-3.66L603,798l-6.67-.88-2.92-5.5c0-1.81.07-3.63.1-5.47l-2.8-2.8L592.9,779l-1.16-9.55-1.52-2.69,1.3-5.24h0l-8.44-1L586.74,771l-2.7,2.19,1.7,9.45-4.46,8,3.17,4.71,3.38,5,4.57-.38,2.47,3.55-2,3.42Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M646.31,778.25l-1.94-9.65,2.54-5.15-16.48,8.88-4.32-1-4.64,3.94-3.62-1.52-5.1,3.91-4.85-3.9-6.28,2.82-2.3,4.66.73,9.53,2.35,1.86,1.33,1.06,6.07,3.66L604,814.82l-4.71-.05L592.91,807l2-3.42L592.4,800l-4.57.38-3.38-5h0l-22.31,7.56,1.57,4.75c0,.76,0,1.52,0,2.28l7.32-.23,4.15,3.29,4.49-2.34,5.49,2.9-2.34,4.58,3,2.61-5.07,6.31,2.87,1.49-1.28,2.22,3.05,2-3.43,4.1h0l-3.47.14,0,5.58-9,7,3.22,3.81h0l-1.66,2.38,3.91,5.3c-.09,1.9-.19,3.79-.28,5.66l-1.95,3c-.08,1.63-.17,3.26-.26,4.87,2.71-.19,5.4-.39,8.09-.6l.07-1.26.34-7L584,863.9l14.1-5,3.65-3.4-.44-9.9-1.18-8.77-3.35-2.16-.49-5.62L610.84,823l3.73-6.3,10-5.66,7.85-2.12,6.19-4.5h0l8.52-12.79Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><polygon points="897.15 519.48 895.15 513.86 891.17 511.1 890.81 515.1 891.75 526.32 890.9 527.23 894.46 540.61 896.9 542.31 902.05 534.87 902.05 534.87 902.12 527.26 897.15 519.48" style="fill:#d9dadb"></polygon><path d="M992.64,551.39l-.89-10.59-1.39.42.14-8.44-1.53-1-4.42-7.44-.41,3.73-2.14-3L981,521l-3.74-3.3-.79-2.52-2.79-4.61-3,3.77L967,515l1.3,5.77,4,5.57,1.17-.55,2.51,4.68.77,4.63,2.78,2.94,1.52,9.72,1.24,0,2.93,15.2c2.09,4.93,3.87,11.88,5.42,17l1.69-4.41,1.08-15.14.53-4.64-.4-5.52Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="935.4 443.67 935.05 445.86 937.45 460.57 939.9 463.51 938.61 452.71 935.4 443.67" style="fill:#d9dadb"></polygon><polygon points="939.9 463.51 939.9 463.51 939.9 463.51 939.9 463.51" style="fill:#d9dadb"></polygon><path d="M994.57,536.84l-1.19,3.54-.12,5.54c.22-.49.43-1,.63-1.45l.78,6,.93-7.09-.9-1.61Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="951.87 346.36 953.09 353.81 955.41 359.5 957.04 359.09 955.94 351.9 952.77 342.32 951.87 346.36" style="fill:#d9dadb"></polygon><path d="M950,297.65l-2.75-5.26L945,287.78l-.59-1-1-2-.59-.67,1.41,3.13,6,12.16,2,4.07,3.25,5.82c0-.17-.1-.33-.16-.5l-2-4.22Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="962.28 342.97 961.93 341.94 959.22 334.16 959.01 333.58 955.89 325.17 955.22 323.43 951.7 314.63 953.59 319.54 953.64 320.05 957.06 329 960.5 338.19 960.76 339.36 964.25 349.21 963.58 346.97 963.64 347.16 962.28 342.97" style="fill:#d9dadb"></polygon><polygon points="966.07 354.71 965.52 352.92 965.11 351.65 965.18 351.88 966.07 354.71" style="fill:#d9dadb"></polygon><polygon points="964.05 348.32 963.64 347.16 965.11 351.65 964.05 348.32" style="fill:#d9dadb"></polygon><polygon points="967.43 359.16 968.44 362.6 967.64 359.89 967.43 359.16" style="fill:#d9dadb"></polygon><polygon points="972.99 379.35 974.5 385.59 973.98 383.36 972.99 379.35" style="fill:#d9dadb"></polygon><polygon points="974.5 385.59 975.08 388.1 974.92 387.33 974.5 385.59" style="fill:#d9dadb"></polygon><polygon points="977.51 399.05 976.03 392.16 975.08 388.1 977.63 400.07 979.81 411.27 978.41 403.46 977.51 399.05" style="fill:#d9dadb"></polygon><polygon points="983.9 559.48 982.79 563.39 982.89 560.12 981.02 563.65 978.75 574.14 980.09 573.46 979.63 576.87 981.09 573.64 982.66 567.81 982.86 568.45 983.13 566.96 985.1 550.88 984.75 552.91 983.9 559.48" style="fill:#d9dadb"></polygon><path d="M508.63,777.11l-14.84,3.21.44-10.79L491.32,766l1-5.73-2.41-5.35,2-5.64q-6,0-12,0c-.05-1.21-.1-2.43-.14-3.65l-9.86,1.23-.75,8.54q-7.69-.09-15.42-.27l-7.91-9.87.6-4.75-2.92-3.25q-15.44-.47-30.9-1.31l-3.31,3.55,9.08,15.16c.05.9.11,1.8.17,2.7l-3.28,2.52,7.56,12.39.86,7.87-10,11-2,11.78-3,4.31,1.43,9.51.31,2.06,4.79.29,4.1-3,6,.31,4.86,3.69q17.63.81,35.2,1.1l3.68,2.75q10.08.15,20.13.13l16-3.1h0l-10.6-7.41-1.14-21.91q7.8,0,15.58-.19Q508.86,784.37,508.63,777.11Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M552.85,699.66l-4.17,6.82,1.78,4.36,6.51-1.38.25-2.64,6.27-.06,3.18-.19-4.62-10.74-6.43,2.69Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M557.22,706.82l-.25,2.64-6.51,1.38,2,6,2.45-.34,2.75,9.52,9.78-10.26c0-1.25,0-2.51-.08-3.76l-4.49.18.57-5.39Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M583.09,760.53l-5.5-.69-2-3.51-5.27-1.49.56,1.43L569.63,760l-6.87-2.56-.78-2.82-11.18,3.08-4.88,5.28,3.19,5.57-1.93,11.17,6.64,5.88,5.78-1.85c0,3.11,0,6.2,0,9.25l-6.77.37-5.94-5.91-7-2.62-3.38-3.88-4.07,2.84-9.81-1.89-1.34-3.31L515.71,780l-2.44-4.4-4.64,1.47q.22,7.25.45,14.29-7.77.14-15.58.19l1.14,21.91,10.6,7.41h0l7.29-1.5,6.91.43,3.45,4.12h0l6.16-1.08h0l5.11,2.4,3.83-1.84,3.71-5.78,8.45-3.18.93-4,7.26-2.75h5.35l-1.57-4.75,22.31-7.56h0l-3.17-4.71,4.46-8-1.7-9.45,2.7-2.19Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M601.62,776.55l6.28-2.82,4.85,3.9,5.1-3.91,3.62,1.52,4.64-3.94,4.32,1,16.48-8.88-1.72-.9-5.81-2.85-2.91-12.9-.21-3.86,2.48-6.71-6.15-6.8,2.88-9.85-12.63-7,2-4.41-31.71-15.93-6,9.75,4.27,1.59L587,707.85l-8.2-1-3.85,4.5L572.47,705,575,698l-1.9-2.84q-5.49.38-11,.71l4.62,10.74-3.18.19-.57,5.39,4.49-.18c0,1.25.05,2.51.08,3.76L557.71,726,562,740.68l4.31,4.05,4.05,10.11,5.27,1.49,2,3.51,5.5.69,8.44,1,7.06,4.17c0,2.75-.06,5.48-.09,8.19Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M722.08,564.81l-3.82-.64-4.65,5.06-19.67,6.53-6.76,5.45-5.77-2-5.74,6.21-4.9.48-7.89-7L658,589.09l10.78,11.66,22.42,3.87c2.85-.49,5.68-1,8.51-1.5l-20,30.92h0l-7.78-1.35L665,637.61l-.64,4.88q-3.58.53-7.2,1l-8.28,13.25q.46,11.4.76,22.75c.06,2.29.11,4.56.16,6.83l4.15,4.81.73-1.41,3-6,18.48-21.33,12.66-11,18.61-29.68,13.63-36.1-.29-7.48,3.66-1.87Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><polygon points="595.58 551.25 601.08 547.97 603.05 550.39 607.47 545.22 609.62 547.63 614.34 544.48 616.59 547.19 627.68 547.47 640.24 560.93 647.75 557.19 648.07 556.29 631.24 540.76 619.62 538.59 613.06 523.74 609.28 517.26 605.52 523.92 601.49 522.37 595.02 529.53 598.34 534.56 593.62 542.99 595.58 551.25" style="fill:#ff7b00"></polygon><polygon points="640.24 560.93 636.69 567.5 638.13 575.34 646.11 577.11 650.99 566.95 650.18 566.23 644.34 566.79 647.75 557.19 640.24 560.93" style="fill:#ff7b00"></polygon><path d="M592.24,685.39l2.65-7.76,5.91-7.4-2.37-8.94-4.29-3.6,1.45-3.59-5.5-3-4,4.46-3.59-1.87-7.26,2.7L568.11,654,565.06,659h0L563.89,661l2.27,3-1.31,3.55,4.42,3-8.5,7.83-4.66,9-.49,11.2,6.43-2.69q5.52-.33,11-.71l-.84-1.27L576,687Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><polygon points="636.96 644.77 636.96 644.77 636.96 644.77 636.96 644.77" style="fill:#ff7b00"></polygon><path d="M649.89,645.88l-3.7-2.23L640,647.42l-2.61,4.81-12.51-.6-10.41-6.17-6.47.93-1.81-1.68q-6,.57-12,1.1l-3.94,5.07-.18.21,5.5,3-1.45,3.59,4.29,3.6,2.37,8.94-5.91,7.4-2.65,7.76,7,3-6.09,3.86,31.71,15.93-2,4.41,12.63,7,.5-1.7,5.07-7.57-1-4,3.72-5.67,9-7.16,1.15-2.28-4.15-4.81c0-2.27-.1-4.54-.16-6.83q-.3-11.34-.76-22.75h0l7-11.25Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M582.21,620.05l6,.73,9,7.7,1.28,8.54,3.45,2.24,4-2,.33,7.34,0,.09,1.79,1.66,6.47-.93,10.41,6.17,12.51.6,2.61-4.81,6.16-3.77,3.7,2.23,6-.37,1.23-2q3.61-.5,7.2-1l.64-4.88,6.91-4.91,7.79,1.34h0l20-30.92c-2.83.51-5.66,1-8.51,1.5l-22.42-3.87L658,589.09l-8-1.77-1.44-7.83,3.55-6.58-12.56-13.45-11.09-.28-2.25-2.72-4.72,3.15-2.15-2.41L615,562.37,613,560l-5.5,3.27-2,5.55q.3,4.08.59,8.16l-5,.49-4.39,7.92q.25,4,.49,7.95l-4.61-.6-1.53,11.9c0,.51.06,1,.08,1.52.12,2.16.23,4.33.35,6.49l-8.66.94Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M996.77,459.09h0l-.18-1.1v0l.29,5.27.64,4.52-.27-4.47C997.1,461.92,996.94,460.5,996.77,459.09Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="987.48 517.33 987.45 517.23 987.42 517.66 987.41 519.31 987.48 517.33" style="fill:#d9dadb"></polygon><path d="M998.93,484.71l.13,2.41.08,4.92-.26-.67-.12,4.42.12,4.51-.31,3.28-.3,5.16-.84-2.72q-.18-3.74-.43-7.46l-.08,13.18.2,4.06.36.06-.05,5.15.77,4.13-.12,4.72.16,4.7-.13,4,.67-3.38.2-3.42-.2,6.52.54-8.61.22-31.35C999.5,494.13,999.26,489.49,998.93,484.71Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M998.46,476.41c-.09-1.26-.19-2.51-.3-3.77l-.38-4.9c-.23-2.45-.47-4.89-.74-7.32-.07-1-.16-2.07-.28-3.1.57,8.14,1.54,18,2.17,27.39l-.2-3.71Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M998.73,481l-.27-4.59c-.09-1.26-.19-2.51-.3-3.77l-.38-4.9c-.23-2.45-.47-4.89-.74-7.32-.07-1-.16-2.07-.28-3.1h0l-1.94-15.44-1.26-8.15q.09.64.15,1.29l2,14.53.25,2.58.35,2.52.45,4.44h0c.17,1.41.33,2.83.48,4.24l.27,4.47-.64-4.52,1,15.26-.22,7,0,2.09.69,11.52-1,1.8-.4-2.32v0q.25,3.72.43,7.46l.84,2.72.3-5.16.31-3.28-.12-4.51.12-4.42.26.67-.08-4.92Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="982.91 429.79 982.92 429.89 982.94 430.06 982.91 429.79" style="fill:#d9dadb"></polygon><polygon points="398.49 718.06 398.49 718.06 398.49 718.06 398.49 718.06" style="fill:#ff7b00"></polygon><path d="M410.79,722.1l-7.34,3.6,1.56,1.65,0,0,1.61,4.4,3.83,1.46c0-.1,0-.19.07-.29l-.15-2.92h0L415,727.2Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M555.62,698.52l.49-11.2,4.66-9,8.5-7.83-4.42-3h0l1.31-3.55-2.27-3,1.16-1.94H565l-7.57-9.54-4-1.31-2.71,3.49-3.56-1.33-2.88,2.51-5.93-2.74-.09-2.72-6.34-1.92-4.18.81-9.27-1.93-.75,3.78-5.23.89-2.57-2.56-8.69,3.87-4.41-.25-3.34,5.87-9.87-1.58L481,651.49l-4.67,2-5.24-7.5-6.52,1.78L462,652.6l-3.09.89,2.09,10L456,672.91l-.75,13.91-2.19,2.77c0,.13,0,.26,0,.4,0,1.31.07,2.62.1,3.93l-3.33,4.61-4.4.81-5.35,8.17,1.29,9.64L439,722.34l-3.54.89L430,729.68l-5-.22-.58-5.12-4.27,2.74-3.13,2h0l-2-1.88-4.62,2.85.15,2.92-.07.29,3.37,1.27-1.27,1.39q15.46.84,30.9,1.31l2.92,3.25-.59,4.75,7.9,9.87q7.73.18,15.42.27l.75-8.54,9.86-1.23c0,1.22.09,2.44.14,3.65q6,0,12,0l-2,5.64,2.41,5.35-1,5.73,2.91,3.57h0l-.44,10.79,14.84-3.21,4.64-1.47,2.44,4.39,5.62-1.48,1.34,3.31,9.81,1.89,4.07-2.84,3.38,3.88,7,2.62,5.94,5.91,6.77-.37c0-3.05,0-6.14,0-9.25l-5.78,1.85-6.64-5.88,1.93-11.17-3.19-5.57,4.87-5.28L562,754.57l-2-7-4.3-2.51L552,738.13l1.25-4.43-2.4-4,.41-12.75,1.25-.18-2-6-1.78-4.36,4.17-6.82Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M396.65,679.73l.87,0q-.11-4.78-.18-9.59l-.87-.06c-3-.19-5.88-.4-8.8-.61L383,666.29,384,676.8h0l-.81,2Q389.89,679.28,396.65,679.73Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M426.32,685.13l-4.63-8.49-8.31,2.09q-.09-4.31-.17-8.62l-6.33-2.88-9.59-.32c0,1.09,0,2.19,0,3.28q.07,4.8.18,9.59l-.87,0q-6.75-.45-13.42-1l-4.16,9.75-4,1.25,7.54,14.17,4.93.48.57,4.56,9.15,10.07,7.93-2.38-4.34-5.12c-.06-1.49-.12-3-.17-4.49l5.73.2,3.41-4.8h0l3.15,6.45,3.85.2,2.76-2.59,5.21,3-.2-16.51-5.9-3.45,2-4.8Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M456,672.91l4.93-9.44-.42-2,0,0-10.36-3.63-7.23,2.41,1.68,5.24-4.47,5.11,1.34,3.59-3.81,2.63-3.32-4.88-3.07,2.15-4.13-3.14-13.9-.82c0,2.88.1,5.75.16,8.62l8.31-2.09,4.63,8.49-5.58-.4-2,4.8,5.9,3.45.2,16.51-5.21-3-2.76,2.59-3.85-.2-3.15-6.45h0l-3.42,4.79-5.73-.19c.05,1.5.11,3,.17,4.48l4.34,5.12-7.93,2.38,6.17,6.65,7.34-3.6,4.22,5.1,2,1.88h0l3.13-2,4.27-2.75.58,5.13,5,.22,5.45-6.45,3.54-.89,2.42-5.19-1.29-9.64,5.35-8.17,4.4-.81,3.33-4.61c0-1.31-.07-2.62-.1-3.93,0-.14,0-.27,0-.4l2.19-2.77Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M464.59,647.76l6.52-1.78,5.24,7.5,4.67-2,2.56,2.86,9.87,1.58,3.34-5.87,4.41.25,8.69-3.87,2.57,2.56,5.23-.89.75-3.78,9.27,1.93,4.18-.81,4.78,1.45-1.07-5.67-4.55-4-4.38-.11-.15-5-9.32-5.28c0-1.16-.06-2.32-.1-3.48l-4.59-3.06-6.23.56h0l1.48-3.78-7.8-.39,3.07-9.19-6.65-7.66-3-3.54L485.71,600l.09,6-4.25.55-6.47,7.1q-5.71,0-11.43-.1l-4,8.25-7.08.62-7.07,3.76-3-3.4-10.74,4.49-1.64,3.92-2.6-.11-.27,4.47-5,1.26,3.9,8.26-.37,5.16,6.06,3.25-3.62,3.65,9.36,6.54,2.59,7,4.47-5.11-1.68-5.24,7.23-2.41,10.36,3.63,0,0-1.67-8,3.09-.89Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M528.89,610.42l-4.45-1.48-2.77-7.59-6.91,1.11-.82,4.11-4,3.51-2.2,7-1.47,3.78h0l6.23-.56,4.59,3.06c0,1.16.07,2.32.1,3.48l9.32,5.28.15,5,4.38.11,4.55,4,1.07,5.67,1.56.47.09,2.72,5.93,2.74,2.88-2.51,3.56,1.33,2.71-3.49,4,1.31L565,659h.08l3.05-5.07,7.16,2.43,7.26-2.7,3.59,1.87,4-4.46.18-.21,3.94-5.07q6-.52,12-1.1l0,0,0-.09-.33-7.34-4,2L598.45,637l-1.28-8.54-9-7.7-6-.73.64-6.5,8.66-.94c-.12-2.16-.23-4.33-.35-6.49l-6-2.35,1.18-5.44-4.6-4.4V581.6l-9.21,3.22,2.27,8.07-7.63,11.44-4.2.61-7-4.34-4.28,1.85c0,1.09.09,2.18.14,3.28l-19.16,2.06Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M509.35,445.74h0c.51,19.68,1,39.6,1.54,59.64,32.08-.82,63.68-2.89,94.33-6.09l-.86-1.83-.23-.5-12.07-9.6-.36-7.54-4.86-3.69L574.4,451.56,565.54,446l-2.25-14.28,7.36,11.74,6.67,3.6,4-8.41L575,422.52l-8,2.07-14-2.89-5.14,3.48h-2.3l-5.91,4.08L530.23,426,516,423.35l-4.34,1.14-4.55,3.82,3.76,5.26-4.4,5.25Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M613.39,534.35l4,1.56,3.76-6.66-.64-1.09-9.69-5.63-.7-4.11-2.39-13.76-2.54-5.36c-30.65,3.2-62.25,5.27-94.33,6.09q.21,8.08.42,16.2c-2.53.07-5.07.12-7.61.17,0,1.32.06,2.64.08,4q.3,14.91.62,29.87-4.86.1-9.72.16l2,5.11-6.45,4.83,2.91,4.71-7.9,7.55,2.38,6.63,5.73-1.46.44,5.56,4.52,3.43-1.89,7.73h0l6.65,7.66L500,616.68l7.8.39,2.2-7,4-3.51.82-4.11,6.91-1.11,2.77,7.59,4.45,1.48,3.72-2.63,19.16-2.06c0-1.1-.09-2.19-.14-3.28l4.28-1.85,7,4.34,4.2-.61,7.63-11.44-2.27-8.07,9.21-3.22v12.33l4.6,4.4-1.18,5.44,6,2.35c0-.51,0-1-.08-1.52l1.53-11.9,4.61.6q-.24-4-.49-7.95l4.39-7.92,5-.49q-.29-4.08-.59-8.16l2-5.55-2-8.26,4.73-8.43-3.32-5,6.47-7.15Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M503.78,525.71h0c-19.38-9.8-45-23.25-64.14-33.61l-8.31,4.33.4,12,6.87,10-3.46,3.72-1.41,24.11-17.91,17.95,4,11.1,5.83.26h0l5.07,14.87-1.08,7.68,5,7.61-12.14-1.1-3,4.49,10.05,7.29,4.8,4.76-2.54,6.09,10.75-4.49,3,3.4,7.07-3.76,7.08-.62,4-8.25q5.72.07,11.43.1l6.47-7.1,4.25-.55-.09-6,7.63-3.67,3,3.54h0l1.89-7.73-4.52-3.43-.44-5.56-5.73,1.46-2.38-6.63,7.9-7.55-2.91-4.71,6.45-4.83-2-5.11q4.86-.06,9.72-.16Q504.09,540.63,503.78,525.71Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><polygon points="386.65 350.69 392.37 347.99 395.19 338.58 392.33 332.51 388.56 335.29 385.75 334.31 386.17 343.3 383.63 349.29 386.65 350.69" style="fill:#d9dadb"></polygon><polygon points="502.31 350.88 499.56 347.85 495.65 352.36 500.3 354.41 500.3 354.41 502.31 350.88" style="fill:#d9dadb"></polygon><polygon points="396.09 316.94 394.67 317.27 392.92 319.04 390.9 319.44 390.05 321.68 390.84 324.07 390.01 326.58 390.52 329.05 392.57 330.5 394.64 327.44 394.5 324.66 396.75 318.84 396.09 316.94" style="fill:#d9dadb"></polygon><path d="M497.7,390.28l-2.34,4.39,8.74,4.87,12.25-2.24-1.65-4.8q-5.51.18-11,.3Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="420.24 358.16 415.9 356.56 411.56 357.13 410.7 359.37 421.76 365.12 424.18 368.17 427.62 369.46 429.5 365.57 427.87 362.56 431.5 356.22 420.24 358.16" style="fill:#d9dadb"></polygon><path d="M310.74,407.76l8.93,2.91,4.22-5-4.1-6q1.29-5.42,2.62-10.78l-2.73-8.1-14.88-4.22-1.25-5.24-2.82,1.06L289.67,386l-9.47,2.83-14.06,14.45L264.44,414l-15.35,12.06-8.93.67L238,428.56l-1.12,1.7h0q13.42,3.6,27.76,6.81,1-3.94,2-7.88l10-4.05,4.32.9,3.14-3.22q3.36.68,6.78,1.33l3.63-5.21,8.94-2.84-.71-5.44,4.95.89Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M227,438.37l-5.56,11.16-6.72,5.07-7.2,11-1.48.14-3,7.09-.74,1.8q11.53,3.57,23.81,6.83L228,469.56l3.79-3.22,4.35-.77q2.33-10.24,4.88-20.4h0q10,2.56,20.52,4.91,1.5-6.51,3.09-13-14.34-3.21-27.76-6.81l-3.28,5.06Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M410.65,414.76c.22-2.14.45-4.27.69-6.41l-.19-.11-8-4.92-1.89-4.13,5.77-3.86,3.54-4.58-4-7.78,5.24-7.81-8-2.68L395,375.15l-4.17,5.14L389.15,394l-7.53,5.09,1.64,6.14,3.9,2.44-.66,4.64,5.05,4.19-1,18.12,9.84-4.3-.2-6.21L412,417.62Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M343.39,521.13l13.35-1.28,14-11.57c10.24-6.54,25.51-12.39,36.43-17.71l-2.26-6.49-6.35-2.6-4.42.76.08-4.34L388,467.49l6.2-3.14-2.11-6.94,3.74-2.47-2.44-4.18c.29-2.74.57-5.47.87-8.2l-3.71-7.93,1-18.13-5.05-4.19.66-4.64-3.9-2.44-1.64-6.14,7.53-5.09,1.63-13.7h0l4.17-5.14-14.23-2.58-8.21,3-3.19-2.61-12.19-.61-2.76,1.49-10.57-.29-7.26,4.25-5.27-.23L323.85,382l-4.17-1.11,2.73,8.1q-1.34,5.37-2.62,10.78l4.1,6-4.22,5-8.93-2.91-3.07,3.8-4.95-.89.71,5.44L294.49,419l-3.63,5.21q-3.42-.66-6.78-1.33l-3.14,3.22-4.32-.9-10,4.05q-1.37,5.31-2.65,10.66l20.26,24.06c10.87,11.67,26,26.64,37.42,37.79-.17,1.33-.33,2.66-.5,4l6.06,4.79,3.08-.56,6,4.7L333.75,522Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M509.13,420.54,500,419l-3,.18-1.5-4.12-10.15-2.62-8.39,3.29-3.72,3.43.29,10.18-6.11,6-14.45-7.17-10.68-2.32-4.82-9.5-13.7-5.07-6.89.35-5.51-3.31c-.24,2.14-.47,4.27-.69,6.41l1.33,2.86-11.75,6.49.2,6.21-9.84,4.3h0l3.71,7.93c-.3,2.73-.58,5.46-.87,8.2l2.44,4.18-3.74,2.47,2.11,6.94-6.2,3.14,6.17,10.41-.08,4.34,4.42-.76,6.35,2.6,2.26,6.49L419.72,494l5.46,5.54,6.11-3.1,8.31-4.33c19.1,10.37,44.76,23.8,64.14,33.61h0c0-1.31,0-2.63-.08-4,2.54,0,5.08-.1,7.61-.17q-.21-8.12-.42-16.2c-.52-20-1-40-1.54-59.64l-2.86-6.93,4.4-5.25-3.76-5.26,4.55-3.82Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M413.21,670.11l13.91.82,4.13,3.14,3.07-2.15,3.32,4.88,3.81-2.63-3.93-10.56-9.36-6.54,3.62-3.65-6.06-3.25.37-5.16-3.9-8.26,5-1.26.27-4.47,2.6.11,1.63-3.92,2.54-6.09-4.8-4.76-10.05-7.29,3-4.49,12.14,1.1-5-7.6h0l1.08-7.68-5.08-14.87-5.83-.26.27,8.66,2.3,3-.88,5.17-2.28,1.45-3.52,9.64-4.34,1.51-1.21,9.63-4,.66-5.14,10.94-2.09,6.87-2.59-.17-2-.13-2.11-5.85-4.41,2.53-2.21-1.89-9.32,7.49,0,4.82-2.63,4.07,9.79,6.16,1.92,9.2-2.26,7.3v0l4.71,3.23c2.92.21,5.85.42,8.8.61l.87.06c0-1.09,0-2.19,0-3.28l9.59.32Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M284.21,463.92,264,439.86q-1.23,5.1-2.41,10.22Q251,447.74,241,445.17q-2.57,10.15-4.88,20.4l-4.36.77L228,469.56l-1.83,11.95q-12.27-3.27-23.81-6.83l-1.06,2.59,4,6L202.32,503l-5.06,10.61,12.63,1.51,3,5.67,3.8,1.08.13,5.07,4.81,8.6,3-1.07c.24-1.74.49-3.49.74-5.23l3.51-.79,2.45,5.93,3.76-2.16,4.86,1.15,4.57-2.33-.42,3.13q11.74,2.67,24,5.06l2.09-6.28-2.26-2.2c1-20.75,3.05-48.38,4.89-69.07Q278.45,462.83,284.21,463.92Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M201.22,534.55q-3.19-.93-6.33-1.88l-2,3.52-.47,2q2.56.8,5.18,1.56l5.7-1,1.89,2.42,5.76.72-.39-4.26-6.63-5.73Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M224.15,577.79l-4.31-1.08-1.9,1-2.38-2.1-3.92,7.22-1.24-.33.78,7.45,2.8,5,6.54,5.57.8,1,7.51-8.44-2.27-2.39c.16-2.39.33-4.79.52-7.18Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><polygon points="225.22 589.85 223.56 580.84 216.93 581.14 209.42 589.58 224.24 608.7 235.25 616.9 237.47 606.36 229.98 598.79 231.9 591.01 225.22 589.85" style="fill:#ff7b00"></polygon><polygon points="274.58 591.48 271.4 586.33 265.92 577.16 259.21 580.42 254.77 573.51 245.61 565.57 241.84 570.38 235.38 569.27 232.09 574.77 236.07 580.65 231.46 584.34 231.9 591.01 229.98 598.79 237.47 606.36 237.47 606.36 235.25 616.9 247.15 613.57 267.78 616.71 267.75 616.82 268.74 617.39 268.73 617.34 266.19 603.4 269.63 600.3 269.63 600.3 274.58 591.48" style="fill:#ff7b00"></polygon><path d="M203.27,538.77l-5.7,1q-2.61-.76-5.18-1.56l-.86,4.57.78,6,.74,1.16,7.29-1.13q5.07,1.47,10.27,2.89l2.87.77,2.22,2.47,2.69-1.49,1.66,3,3.85,1,1.32-5-.78-5.9-2.09.42-.9-2.87,1.34-3-1.17-5.36-4.81-8.6-.13-5.07-3.8-1.08-3-5.67-12.63-1.51-.6,1.26-3.32,7.6L190.62,524l4.27,8.65q3.13.95,6.33,1.88l2.68-2.63,6.63,5.73.39,4.26-5.76-.72Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M200.34,548.72l-7.29,1.13,2,3.09,4.86-.13L198.53,558l1.88,2.86.67,1,3.14-3.58c1.87.53,3.74,1,5.64,1.56l-1.62-5.15h0l2.37-3.11Q205.42,550.18,200.34,548.72Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M244,586.76l3.29-5.5-4.09-8.73,1.33-3.6-2.69-2.49L241.4,561l-3-2.41-2.8,4.88L231,560.58l-4.18,1.62-3.44-2.83.54-2.07-3.85-1-1.66-3-2.69,1.49-2.22-2.47-2.87-.77-2.37,3.12h0l1.62,5.15c-1.9-.51-3.77-1-5.64-1.56l-3.14,3.58,6.81,10,2,5.58.47,5,1.24.33,3.92-7.22,2.38,2.1,1.9-1,4.31,1.08,2.93,5.76c-.19,2.39-.36,4.79-.52,7.18l2.27,2.39,6.63-.3,1.66,9L243.8,603l-.44-6.67,4.61-3.69Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M247.28,581.26l6.46,1.1,3.77-4.81,6.4,5.58.29-5.16,3.34-1.8.32-5.55h0l2.81-.38,2.8-2c.26-3,.53-6,.82-9l2.35-1.46,4.51,2.7,4.64-3.25.85-2.9,5.31,1.54,1.27-4.56,8.9-4,3.32,2.66,2.63.39,7.05,1,2.77-2.25,13.11.57,3.9,1.65,6.54-8.18q.88-11,1.95-22l-9.64.85,2.52-7.34-6-4.7-3.08.56-6.06-4.79c.17-1.34.33-2.67.5-4-11.55-11-26.39-26.26-37.42-37.79q-5.76-1.1-11.39-2.25c-1.93,20.68-3.79,48.33-4.89,69.07l2.26,2.2-2.09,6.28q-12.28-2.4-24-5.06l.42-3.13-4.57,2.33-4.86-1.15-3.76,2.16-2.45-5.93-3.51.79c-.25,1.74-.5,3.49-.74,5.23l-3,1.07,1.18,5.36-1.35,3,.9,2.86,2.09-.41.78,5.9h0l-1.32,5-.54,2.07,3.44,2.83,4.18-1.63,4.63,2.88,2.8-4.88,3,2.41.44,5.46,2.68,2.49-1.33,3.6Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M278.09,615.39l2.54,13.94v0l6.65,3.77,22.68-7-3.55-8.9,1.6-13.55L303.53,596l2.91-12-4.78-2-3.44,2.86q-8-1.26-15.87-2.62L283.9,588c-.21,3.43-.41,6.87-.6,10.3l3.17,5.15-5,8.82Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M310,626.16l3-.95,4.78-.43-.91-3.93q.22-8.64.58-17.3L315,600.07l.81-4.93L311,591.47l.3-5.51-4.89-2-2.91,12,4.49,7.73-1.6,13.55Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M317.76,624.78l7.31-.36q.21-9.12.54-18.24l7.37-6.42c.06-1.56.13-3.13.2-4.69l4-3.47-4-7.28-4.49-8.21-4.7,1.32-3.33,7.85-5.11-4.15L311.33,586l-.3,5.51,4.76,3.67-.81,4.93,2.45,3.48q-.36,8.66-.58,17.3Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M301.66,582l9.67,4,4.22-4.83,5.11,4.15,3.33-7.85-2.36-4.25-5.22,1.12-3.64-7.74.57-3.8-5.27-12.44-2.63-.39-3.32-2.66-8.9,4L292,555.82l-5.31-1.54-.85,2.9-4.64,3.25-4.51-2.7-2.35,1.46c-.29,3-.56,6-.82,9l-2.8,2-2.81.38h0l-.32,5.55L264.2,578l-.29,5.16,2.75,2.37,4.45,6.9,6.7-3.26,5.49,9.17c.19-3.43.39-6.87.6-10.3l-1.55-5.78q7.84,1.37,15.87,2.62Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M435.1,522.1l3.46-3.72-6.87-10-.4-12-6.11,3.1L419.72,494l-12.57-3.41C396.27,496,379.88,499,369,504.32l-12.21,15.53-13.35,1.28q-1.06,11-1.95,22l-6.54,8.18-3.9-1.65-13.11-.57-2.77,2.25-7.05-1,5.27,12.44-.57,3.8,3.64,7.74,5.22-1.12,2.36,4.25,4.7-1.32,4.49,8.21,3.9-4.51q.35-6.18.73-12.34l4.9-4,6.13,3.68,6.69-2.87,3.66,4,1.73,7.24,7.27-4.22,7.77,6.23,7.45,1.39,3.61-6.07,11.15-.48,9.22,3.57,5.52-5.64,5-.22-2.09-5.91,17.91-17.95Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M352.45,645.87l13.1-.76,4.38-3.78,3.58,2.28,2.63-4.07,0-4.82,9.32-7.49,2.21,1.89,4.41-2.53h0l2.1,5.86,2,.13,2.59.17,2.09-6.87,5.14-10.94,4-.66,1.21-9.63,4.34-1.51,3.52-9.64,2.28-1.45.88-5.17-2.3-3-.27-8.66-1.86-5.19-5,.22-5.52,5.64-9.22-3.57-11.15.48-3.61,6.07L376,577.52l-7.77-6.23-7.27,4.22-1.73-7.24-3.66-4-6.69,2.87-6.13-3.68-4.9,4q-.39,6.16-.73,12.34l-3.9,4.51,4,7.28-4,3.47c-.07,1.56-.14,3.13-.2,4.69l-7.37,6.42q-.33,9.12-.54,18.24,6.74.86,13.58,1.65l5.22,6,5.63-1.49-2.27,9.64Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M497.26,98.49l.31,1,1.87.71,4.33-3.16-3.07-.42-1.37-1.78-1.42.52-.75-.75-1.36.73L492.69,94l-.42,1.78c-.91,0-1.83,0-2.74,0L492,97.13l2.17-.36-.23,1.74Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="469.59 97.55 471.17 96.91 471.29 98.43 472.83 99.94 476.89 92.99 478.21 92.61 478.65 90.88 480.55 90.46 481.46 91.43 483.65 90.91 482.75 89.36 480.22 87.74 478.71 87.64 478.17 85.5 475.23 84.12 474.41 88.17 473.22 85.52 472.38 84.57 470.76 86.95 470.3 85.47 470.79 84.6 468.81 84.04 467.55 85.14 465.69 85.42 466.07 89.66 467.67 90.12 467.77 91.49 472.4 88.95 471.9 91.39 468.08 93.05 468.14 93.85 469.15 94.37 468.59 95.76 469.59 97.55" style="fill:#d9dadb"></polygon><polygon points="484.77 97.56 489.24 94.6 485.42 93.66 485.22 92.34 481.91 93.04 482.42 94.23 481.52 95.82 484.93 95.54 484.77 97.56 484.77 97.56" style="fill:#d9dadb"></polygon><polygon points="329.55 148.01 327.74 149.76 331.64 150.53 336.18 155.51 343.69 154.08 348.07 154.65 351.82 151.77 352.75 153.37 355.15 151.17 357.84 151.19 358.35 148.97 360.3 148.14 360.6 143.8 361.67 141.74 359.13 140 355.22 140.76 352.85 141.89 350.15 139.16 346.37 142.06 346.98 139.01 343.82 141.75 341.2 141.85 344.08 138.28 342.06 134.8 333.36 138.99 335.09 140.37 337.6 139.74 339.65 140.61 337.67 142.3 330.62 142.58 331.77 145.09 335.58 146.08 333.9 147.84 329.55 148.01" style="fill:#d9dadb"></polygon><path d="M384.6,253.52l-2-2.67-3.73-.29-2.85.22q.92-2.37,1.84-4.71l1.05-1.12-.41-6.3-2.93-1.05,1-7.27-1.89-3.64-5.49-.88,6.67-3,6.22-6.39-5.55-1.64-4.43.76,8.22-6.25-6.34.07-1.41-1.49-6.34,6.3-.43,2.81-4.61,2,.34,2,4.31-1-6.72,5.81,1.29,2.14,3.94-.57-5.28,5.4,2.85,1.11,1.2-1.65,5.09-.64L365,236.42l.54,1.69,2.6.2-3.52,4.22,0,3-5.13-.9-1.61-1.78-3.8,4.55,2.84.43-1,3.32-6,2.4,5.68,3.25,7-.45-5.7,4.35-5.79-.77-9.56,6.44,7-2.09,2.85,2.07,2.15-1.76,4.31,1.66,5.51-2.1,7.66,2.17,7.83-3-4.93-1.67,5.5-2.32Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="356.48 194.59 356.84 192.25 353 193.35 351.63 197.34 356.48 194.59" style="fill:#d9dadb"></polygon><polygon points="353.07 198.76 347.3 201.5 350.35 203.85 353.07 198.76" style="fill:#d9dadb"></polygon><path d="M378.4,188l4.75-5.44c-1.9,0-3.8-.17-5.7,0l.52,2.31-1.18,1.72Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="384.93 185.18 385.14 182.98 378.88 186.46 379.67 190.37 384.93 185.18" style="fill:#d9dadb"></polygon><path d="M383,207.72l3.64-3.72-4.66-.17-2.38,3.3Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="333.96 222.71 334.55 224.62 338.56 222.66 339.6 225.67 345.18 222.66 344.25 216.47 341 217.49 341.01 216.06 333.96 222.71" style="fill:#d9dadb"></polygon><polygon points="332.55 238.72 332.55 238.72 332.55 238.72 332.55 238.72" style="fill:#d9dadb"></polygon><polygon points="338.39 217.22 338.62 215.16 332.17 218.13 333.89 219.91 330.6 222.44 325.19 220.21 325.25 223.31 321.56 225.53 325.47 228.45 314.7 234.77 316.33 237.65 314.91 240.74 320.86 240.89 326.78 238.19 332.55 238.72 336.89 233.43 339.6 225.67 338.56 222.66 334.55 224.62 333.96 222.71 341.01 216.06 338.39 217.22" style="fill:#d9dadb"></polygon><polygon points="11.22 504.47 11.22 504.41 11.22 504.28 11.22 504.47" style="fill:#d9dadb"></polygon><path d="M68.78,717.71l9.37,18.95,0,0L80,740.13l1.83,3.45,4.1,7.41h0l0,0,.2.36c6.2,10.54,14.58,23.45,22.07,34.82l-1.16-2.34L102.32,776l-5-8.24-1.44-3.58L95.77,761l1.9,1.81-.27-1,1.19.36-.5-1.73,6.18,4.57-1-3,1.38-.41q-1.16-2.48-2.27-5l-.43-6.15-3.4-10.35.35-2.54-2.66-9.92-6.46-20.25,1.91-1.28.62-10-.07-2.38,1.78-1.34,1.12-4.27-1.27-3.23,2.45.17-.13-14.24-4.78-16.16-1.79-2.89-4.07-2.48-5.77-10.54-2.16-6.17-6.22-11.15-4.19-1.93-2-3.63-2.36-1.64-3-6-1.17-1.39-1,3.5-2,.38,1-6.89-1-4.25L52.7,594l-1-2.95-.76-.29-.73-2.65-.91-.76L48.88,585l-2.36-3-2,7.32-.94-6.08.94-3v-4L42,570.94l-1.34-6,.4-8.63-1.81-5.56-.34-10,.11-6.69-.71-5.56-1.85,7.81-1.08,7.45-.69-.75-.2-3.2-.81-1.61-.53,2.2-1-2.27L31.49,532l-1.41.75.21,5.18-1.18-2.37h0l-1.21-2.69-.32,1.52-.47-2.88-.3,2.27-.58-.22-.58-7.39c0-2.26.05-4.51.1-6.77l-.21-5,.94-6,.05-12.63-.67-1.9-.54,4.79c-.09-.41-.17-.81-.24-1.21l-.49,2.68-.16-3.74-.37,2.88,0-9.14-.13-2.15-.47,15.8.09,6-.4,3.28v3.36l.14,7.71C26.27,616.64,50.84,675.06,68.78,717.71Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M114.19,795.23l-6-9,0,0Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="21.22 528.47 21.75 526.27 22.56 527.88 22.76 531.08 23.45 531.83 24.53 524.38 26.38 516.57 25.61 514.56 24.27 503.58 22.63 497.17 21.22 501.43 20.79 510.13 21.44 515.99 20.25 526.2 21.22 528.47" style="fill:#d9dadb"></polygon><path d="M34.52,509.16l-.22-1L32,502.55l-1,1.39-1.14-5.6-.58,7.4-.63-1.6-.93,7.42.77,8.7,0,5.31.49,4.11.13,5.88,1.18,2.38-.21-5.18,1.41-.75.66,6.17L33.34,528l-.65-5.87.43-8.7Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M29.32,505.74l.58-7.4-.64-10.4.43-4.84-.23-12.3-1.2,2.78-.52,6.13-.78-.9-.73,5.28-.37,9.74.67,1.9-.05,12.63-.94,6,.21,5c-.05,2.26-.09,4.51-.1,6.77l.58,7.39.58.22.3-2.27.47,2.88.32-1.52,1.21,2.69h0L29,529.68l-.49-4.11,0-5.31-.77-8.7.93-7.42Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M23.12,516.19c0-1.34.08-2.76.11-4.18l-.12,1Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M23.12,516.45v0Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M23.51,509.75l-.08-5.21c-.07,2.57-.13,5-.2,7.47Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M30.09,429.29,28.41,439l-2.86,22.94V462L25,467.83l0,.18c-.49,6.14-.81,13.16-1.07,20.31l.11,1.77,0,9.14.37-2.88.16,3.74.48-2.68c.08.4.16.8.25,1.21l.54-4.79.37-9.74.73-5.28.78.9.52-6.13h0l1.2-2.78v-1.52L29,467.22l.87-7.59-.06-3.39L29.35,452l.47-5.59.47,1.44.91-3.94-1-4.51-.21,0-.59,2.3-.35-1.1.75-6.81Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M23.42,503.74v.8c.14-5.27.29-10.78.48-16.22l0-.38Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="19.58 409.12 18.23 416.68 18.19 417.31 20.39 404.6 19.58 409.12" style="fill:#d9dadb"></polygon><polygon points="18.48 439.83 19.2 440.55 20 435.48 19.58 434.4 18.67 438.24 18.48 439.83" style="fill:#d9dadb"></polygon><polygon points="13.08 456.03 13.65 449.94 13.65 450 13.1 455.85 13.08 456.03" style="fill:#d9dadb"></polygon><polygon points="69.93 731.6 69.87 731.48 69.93 731.6 69.93 731.6" style="fill:#d9dadb"></polygon><polygon points="66.27 724.71 66.25 724.68 69.87 731.48 68.1 728.14 66.27 724.71" style="fill:#d9dadb"></polygon><polygon points="74.26 739.4 74.05 739.03 74.04 739.01 74.26 739.4" style="fill:#d9dadb"></polygon><polygon points="74.04 739.01 74.04 739.01 74.03 739.01 74.04 739.01" style="fill:#d9dadb"></polygon><polygon points="33.63 363.04 34.43 356.19 32.34 362.12 31.97 366.25 33.63 363.04" style="fill:#d9dadb"></polygon><path d="M51.54,346.81l-1.11,3.12-2.64,7.74-.11.32-.14.43-.77,2.38q1.21-3.71,2.49-7.36l.39-1q1.41-4,2.9-7.94c.43-1.48.92-3,1.46-4.44l-.43,1.13-1.27,3.44Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M46.68,364.64l4-13.57,1.79-6.16.12-.4q-1.48,3.94-2.9,7.94l-.39,1Q48,357.1,46.77,360.8L46,363.28l.77-1.75-1.25,5.7Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M201,182.18l-5,1.39-9.86,5.73L182,190.57l-.93,2.67-3.94,1.81-2.2,2.79,1.9,2.86.95,4.16-4.4,2.07.49,2.41,5-2.09.11,1.44L175.32,212l-.67,2.71,1.12.67,7.14-6,1.13-2.37-1.57-.21.94-2.51,4.11-1,2.44-2.16L188.5,200l2.9-2.95.25-2.27-2.72.81.09-1.86,2.62-1.93-.09-2.94,10.35-4.9C201.6,183.35,201.32,182.76,201,182.18Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M183.32,183.54l1.16-1.17,2.54-6.56c-1.15,1-2.28,1.93-3.42,2.9l-2.41,4.93Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="153.66 193.09 158.9 186.62 159.99 184.38 153.2 189.08 151.39 192.51 153.66 193.09" style="fill:#d9dadb"></polygon><polygon points="225.69 104.44 230.11 101 226.82 102.08 221.33 106.38 225.69 104.44" style="fill:#d9dadb"></polygon><polygon points="221.33 106.38 221.33 106.38 221.33 106.38 221.33 106.38" style="fill:#d9dadb"></polygon><path d="M365.16,60.41l5-.22q.87-.86,1.83-1.68L370,57.74l-2.9.32-2.87.08-7,1.45-4.69,2.74-2.14.7-.14-.7,3.15-1.58-4.62,1.4-3.94,1.93c-1.62,2.45-4.6,3.51-6.17,6L334.48,73c-.34.46-.66.91-1,1.37l2.55-.88,1.58-1,1.33.21-2.83,2-3.48,1-4.1,3-2.82.29c-.29.5-.56,1-.81,1.51l-3.75,1.48-3,3.13-7.55,3.6-.66-.34-5.7.55-5.63,3-1.08-1.19L300,88.32l.7-1.54c-3,.45-3,.45-7.25,2.2l-2.06,2.45,1.07.95-3,3.32-3.16,2.38-2.57,1-6.38,5.54-.53,1.41-3.05,2.34-4.81,7.25,2.48-1.36,3.71-3.49,6.73-6L283,105l-4.62,5.25-3.44,3.21L274.2,115c12.47-6.72,12.47-6.72,14.56-8.24l4.65-4.71,6.44-3.5,4-2.14-.12,1-3.47,3.32-7.19,4.11-1.89,2.81,5.1-2.07,1.11.82,5-2.44.84.59,4.46-2,9.37-8.55-1.78-.49,3-1.2L319.68,90l3.82-1.71,1.51.84,6.21-3,3.3-2.09L336.85,82l-.77-.8,3.56-1,6-4.16c.1-.27.21-.53.33-.8l3.95-1.26,4-2.16c.4-.77.84-1.55,1.33-2.33L352.65,69l2.1-1.23-2.42-.41,6.59-1.26,6.95-2.2L367.5,63l-1.14-1.6-3.94.44-5.15,1.65-2-.35,4-1.57Q362.2,61,365.16,60.41Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="301.29 71.36 302.3 72.23 307.58 70.19 309.23 68.25 305.95 68.6 303.14 69.82 301.29 71.36" style="fill:#d9dadb"></polygon><polygon points="277.59 76.17 279.38 75.87 285.75 72.27 288.84 69.94 292.11 68.37 294.32 66.97 294.55 66.16 301.35 63.21 299.47 63.51 292.25 65.73 288.49 67.31 286.08 67.81 285.54 68.82 281.58 70.68 282.71 71.15 282.8 71.69 283.54 71.88 280.8 73.55 277.59 76.17" style="fill:#d9dadb"></polygon><path d="M287,88.41c.66-.81,1.35-1.62,2.07-2.42l-4,1-2.41,2.25Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M274,96.17l6.71-2.44c.39-.56.79-1.13,1.2-1.69l-4.42,1.74L274,96.17Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="345.76 55.89 346.84 57 345.07 58.42 352.56 55.59 351.36 54.6 354.69 52.91 345.76 55.89" style="fill:#d9dadb"></polygon><polygon points="341.44 42.44 333.93 45.91 333.55 46.63 344.53 42.74 343.16 42.84 343.84 41.91 341.44 42.44" style="fill:#d9dadb"></polygon><polygon points="396.15 27.05 398.88 25.43 396.76 25.09 396.02 24.61 392.92 25.51 386.93 26.87 390.69 25.61 390.97 25.31 387.02 26.06 380.17 28.37 375.82 29.42 380.01 27.93 383.52 26.51 379.66 27.39 372.93 29.48 366.48 30.96 360.34 33.57 358.59 34.67 358.89 35.05 352.14 37.22 346.94 39.47 348.77 39.37 352.11 38.67 347.79 40.33 351.39 39.75 357.28 37.77 358.02 37.21 360.26 36.38 366.37 35.29 376.74 33.28 382.45 31.63 381.49 31.49 373.31 32.91 373.27 32.34 381.33 31.03 384.66 30.12 384.19 29.58 386.42 29.32 391.18 28.11 390 27.83 391.74 27.21 396.15 27.05" style="fill:#d9dadb"></polygon><polygon points="400.02 26.16 406.67 25.14 408.5 24.02 415.71 23.02 420.37 21.58 416.41 21.73 414.51 21.32 415.19 21.01 413.58 20.95 413.42 20.53 408.35 21.44 403.17 22.05 398.93 23.51 403.13 23.49 402.53 23.82 403.46 24.04 403.46 24.04 400.02 26.16" style="fill:#d9dadb"></polygon><polygon points="355.82 41.58 365.39 39.69 367.32 38.67 371.19 39.08 373.12 38.44 373.27 37.56 376.34 36.75 370.31 37.18 368.73 36.94 373.44 35.66 371.56 35.6 367.16 36.7 364.56 37.73 354.97 40.38 355.71 40.64 359.66 39.87 355.65 41.04 355.82 41.58" style="fill:#d9dadb"></polygon><path d="M448.94,86.36l6.51-2.11-1.06-1.72L451.62,82l-3.05,1.25-.17-1.32-3.12.59-3.11.78,4-1.92,2.66-1.52-1.91-.16-2,.83-4.5.14.69-.71,3-.6-1.8-1.41,3.42-.75,1.5,1.49,5.52-.25V77l-2.28-.46,2.48-.75-.65-.71-.66-.68,1.82-1.1-1-1.06c-.8-.39-1.84-1-2.62-1.39l-1.92.38,0-.49-2-1.11-1.36.32V68.89l-2.74.41-1.09.59c.41.41.85.8,1.32,1.2l-.38,1-2.26,1,.27-.9-1.94.47,1.56-1-.9-1-5.93,2.16,2.09-2.17,1.78-1.16-.38-.9-4,1.86-.73-.82.63-.88-4.2.66,6.54-1.93c-1.16-.36-2.69-.92-3.84-1.32l-2.64.85-2.8,1.61-.6-1.2,4.09-1.46-5.78.77.92-1.08-.94-.28-7.35-.64-2.75.73.57.88.49.74-7.58.36.45-2.07-2.79.72-2.14-2-2.79.22L395.15,67l-2.31.47-.63.6,2,1.27-1.8.82-4.19.74,1.45-3-1.51-.34-2.34,1.28L385,70.41l-2.14-.61-3.58,1.67,1.37.78-1.88.91,1.84.13-1.85.95,3.27-.3-.36,2.85-3,2.91-3,.7-5.63,4.14-7.65,2.85-2.06,1.8L355,90.58l-1.81,1.8-2.85.27L348.76,94l-2.39.51-1-.33L343,95.85l.94.82,5.42-1.11-4.49,2.71,1.3,1.06-4.1,2.36-3.43,2.25-1.61-.16,2.45-3.43L339,99l-1.83.2L333.31,104l1.3,2.27-8.31,3.5.21-2.3L317,110.26l-.52,1.88-4.49-.07-6.87,4.38-3.9,3.37,2.23.48-5.57,2-5.56,3.83,1.79,1.18-6.87,3.4-8.18,8.16.63,2-7.67,5.83.9,3.1,4-.3-6.37,5.69,3.3,2.66L287.13,150l5.4-6,7.24-.7,2.75-2.51.36,1.95,2.71-2,2.13-3.2,1.17,1.43,2.62-3.53,6.91-.91,0,2.09,5.93-3.26-2.48,3.44,8.86-.58,10.12-4.12,2.8.3,3.58-1.83-.32,1.59,3.64,1.29,10.75.36,4.77-1.72,2.7.33,6.43-1.6L371,127l-7.13.67-1.19-1.57,5-.81,7.21-2.42,1-2.82,1.89,1,.52,1.65-1.66,2.57,1.68,4.24,7.4-6.86c-.67-.24-1.32-.49-2-.74l2.54-1.07-.79-3.45-1.71-.59,3.53-3.69,6.25-1.16,1.07,2.75,4.46.18-.9-1.78,1.66-2.42,5.55.81,2.57-.73.73-3.42-2.37-.11.26-1.29,3.78-2.35,1.16,2.52,1.56.12,3.19-2.89L414,101.87l2.55-2.82,2.85.11,2,2.21,1.69-.74,3.11-3.84-.55-1.69-3.43.79,7.83-4,3.65,0,2.11-2,2.06.21,1.95-.46-1.6-.93-1.54-.12,1-.87,2.07-.43,2.42,1.09,2.7-.77-2.24-1,2.31-.88Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="423.68 59.18 427.26 57.85 426.44 57.33 424.62 58.23 423.68 59.18" style="fill:#d9dadb"></polygon><polygon points="423.04 56.54 424.94 55.35 422.19 55.95 421.37 56.87 423.04 56.54" style="fill:#d9dadb"></polygon><polygon points="380.79 54.84 382.72 53.55 380.09 53.61 378.21 54.7 380.79 54.84" style="fill:#d9dadb"></polygon><polygon points="317.45 93.89 321.17 88.84 314.46 91.25 313.6 93.32 317.45 93.89" style="fill:#d9dadb"></polygon><path d="M437.66,61.3l.13-.7,1-.41c.07-.3.15-.6.24-.89l1.75-.62.25-1.52-2.35-.28.52,0,.09-.15a14.72,14.72,0,0,1,.89-1.23l-2.8-.43-2.29.26c.17-.21.36-.42.55-.62l2.08-.5.41-.74L437,53.31l-2.39.3-.15-.38,2-.23.6-.61-1.37-.18,1.4-.3-1.35-.77-2.05.39-.94.73-1.6.28L430.5,52l-2.78.46-2.93,1.09L426,54l-1.71,0c-.44.43-.87.86-1.27,1.3l1.23.11-1.67.38-.39,1.49-1.65-.21L419.9,56l-2.87.66,3.05-1.23,1.54-1.11-2.56.16-1.59.49-5.36.9L410.54,57l-1.86-.21c.32-.37.66-.73,1-1.09l1.86-.34-.81-.68-3.21-.2-1.3.24-2.33,1.16-3.62.8-1.79,1-1-.71,1.25-.66,3.47-.6c.4-.39.82-.77,1.25-1.15l-4.27.77-1.79.1.79-.69-1.45-.87-3.31,1c-.57.48-1.12,1-1.65,1.45L389,57.5l-.28.87,2.8-.77-1.86,1.28-1.23.43-.6.58,1.7.14-1,.66-2.72.43.67,1,2.13.62,3.05-.9L390,61.59l1-.6,2.05-.16,2.35-.6-.39.87,1.64.13,3.29-.67c-.34.52-.64,1-.92,1.55l6.1,0L407,61c1.77.36,1.77.36,4.06-.32l.16.91,2.37-.48L412,62.23l.33.84,1.31-.42,3.09.43,2.16,0,6.3,1-.72-1.44,2.66-.07,1,1.43,4.21.57,1-.17,1.15-1,2.22-.59c0-.14,0-.29,0-.43l.83-.31-3-.47.74-.52Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M426.64,51.53l6.25-.68,1.23-.54-1.48-.14-.12-.43-3.39-.61-2.88.65.8-.68H425l-4,.72-1,1.08-2.65.74,1-1.05-1.07-.21L414,50.8l-1.11.78-.61-.31-2.42.57c-.44.33-.87.65-1.28,1l2.63-.06-3.32.61c-.23.18-.45.37-.67.56l4.75-.29L413.51,55l2.87-.37c.35-.34.73-.69,1.11-1l1.58.1,3.27-.58-.32-.46,2.57-.2Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M396.37,53.22q.86-.64,1.77-1.29l2.34-.54,3.57-1.31.24-.77c-5.71,1-5.71,1-7.94,2.13l-.42.6-5.44,1h-1.1l-2.69.18L382,54.48l1.19.25-2.34.61-.4.76.36.72-2,.17a47.76,47.76,0,0,0-3.9,3.69l2-.11-2.79,1c-.72.81-1.38,1.62-2,2.45l2.08,0,2.06-1,2.45.32,2.59-1.75,1.8-.3-.63-1.1,2.6-1.18-1.36-1.38,2.37-1.05-.23-.84,4.27-1.31,3.11-.64-.29.56Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="424.64 23.16 420.86 23.85 421.47 24.19 418.75 24.25 420.02 24.89 419.52 25.89 416 25.86 416.92 26.38 416.92 26.38 416.95 27.11 421.17 26.88 420.63 26.63 423.51 25.79 423.5 24.7 424.98 23.6 424.64 23.16" style="fill:#d9dadb"></polygon><path d="M420.25,40.12l1.85-.64,2.06,0,2.43-.87-2.22.17,1.13-.62L425,37.8l-2.43.25,1.54-.67L423,37.21l-4,.82-1.91.51.4.5-3.68.81.54-1-2.4.46c-1.06.36-2.12.73-3.15,1.11l.22.74-1.61,1c-1.34.53-2.65,1.07-3.92,1.63l4.33.3,3.2-.77-1.76-.19,3.66-.6,4.43-.15,2-.31-.81-.74-3.38.32-.62-.22-2.88.36,4-1.26Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M376.4,56.37l1.31-1.62,3.81-1.29.81-1.26-7.41.64-6.12,1.45-1.5,1,5.37-1-4.16,2Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M410.69,45.08l.91-.42-5.66.48-4.41.86-1.83.88-.46.95-2.18-.16-2.74.35-2.4,1.69,2.95-.38,2.36.08,5.58-.42,2.26-.76-1.53-.14,1.95-.42,1-.53-2.93.14,3-.64.72-.41-3.51.35-.83-.12,4-.67Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M385.3,52.61l4.16-.17,2.29-.73,1.24-.8-1.92-.36-4.23,1.14Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M422.33,44.61l-1.16.77-2.13.86-3.48.32L414,47.4l1.56.09,3.61-.31,3-.29.54-.28,2.33-.28,1.2-.59,2.58-.25c.79-.38,1.6-.74,2.42-1.11l-2.82-.07L426.8,45l-3,.18,1.19-.83Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="383.77 32.84 384.83 31.89 377.78 33.46 381.16 33.65 383.77 32.84" style="fill:#d9dadb"></polygon><path d="M423.91,41.72c.54,0,1.07,0,1.61,0l1.61.46,2.95-1.48-1.29-.44a15.58,15.58,0,0,0-2.47.3A19.45,19.45,0,0,0,423.91,41.72Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="403.09 38.03 408.32 36.5 408.86 35.82 400.85 36.65 400.34 37.97 403.09 38.03" style="fill:#d9dadb"></polygon><path d="M425.49,48.07h2.93l2-.65-3.11-.2-.87.48Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="395.54 39.12 398.34 37.59 397.24 37 392.87 39 395.54 39.12" style="fill:#d9dadb"></polygon><polygon points="388.24 41.84 390.75 41.78 392.48 41.16 392.9 40.43 389.58 40.79 389.12 41.43 388.24 41.84" style="fill:#d9dadb"></polygon><path d="M420.33,44.27l1.18-.52-5.54.34-2.84,1Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="420.92 30.16 422.65 28.82 421.29 28.8 416.5 30.54 420.92 30.16" style="fill:#d9dadb"></polygon><polygon points="420 28.29 422.17 28.11 422.35 27.82 419.02 27.71 419.02 27.71 420 28.29" style="fill:#d9dadb"></polygon><polygon points="388.13 33.19 388.19 33.68 390.12 33.43 391.62 33.03 390.23 32.74 388.13 33.19 388.13 33.19" style="fill:#d9dadb"></polygon><path d="M535.09,23.45l-6.94-.29-3.38-.09-.89,0h-.23c4.51.12,9.11.26,13,.43Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M499.54,23.34l1.44-.11.44.08,2.41,0,3.23-.19h4.7l5.79-.09,2.48,0h3.62l-10-.23c-9.51,0-9.51,0-28.38.69-9.47.51-9.47.51-28.38,2.36l-2.62.31a21.52,21.52,0,0,1,2.41-.17l4-.44,3.25-.28,5.81-.58,2.89-.21c1.29-.1,2.58-.21,3.87-.3l6.36-.36,2.52-.17,1.6-.06.56-.06,3.34-.11.83.05,3.13-.05,1.13-.12-2.18,0,.32-.1,3.83-.06-.3.09Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M391.34,37.9,391,38l-5.78,1.5h0l-3.68,1,.55-.07-.19,0,10.52-2.81Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M394.71,37l-2.25.6,6.1-1.51c-3.1.86-7.27,1.94-10.35,2.89l-2,.52.18-.14-5.72,1.66-2.12.38,3.42-1c-11.47,3.09-14.32,4-24.3,7.29l-14.26,5.1-4.76,1.82,1.36-.59c-10.84,3.95-15.29,5.82-26.74,10.85-29.07,13.86-33.53,16-55.6,29.13-14.44,9.44-33.41,22.49-47.27,32.76l.07-.06-5.79,4.63,2-1.27-3.56,3.22L196.27,139l-2,2-8.75,7.63L176,159l-8.34,8.38-2.68,2,7.36-7.72-9.78,9,0-.64-4.28,4.11.83.05-1.7,2.74,3.54-2.75-1.76,3.72-.6.81,3.74-1.82a56.5,56.5,0,0,0-3,7.83l2.62,0,2.89-3,4.62-2.46,1,1-1.42,2.35-7.22,6.32-3.58,4.93,3,2.24-2.13,2.36-5.52,2.11-5.4,6.34,4.6-1.1,3-2.21-.07,3.82,4-.26,3.26-5.7-1.88-.25,4.74-9.19,2.71-2.65,1-2.23,4.31-3.28,1.43-4.94,3.21.1-1.33,2.44,1.23.27,3.87-3.17.88-3.55-.88-1.65-6.24.29-4.22,1.63,8.29-6,5,.35,3.5-1.26,1.73,5-1.77,8.49,5.18-1.29,3.5-2.11,3,1.43,4.4-1.29,1.3.26,5.25-4.75,1.69-3.23-.74-1.13,3-2.2-.19-1.9-4.7-.27,5.19-3.81,4.71,1.39,2.43-2.88-.66-2.75,2-1,.14-2.29,3.92-3.34,2.07-4.09,2.26-.83,1.14-1.83,3-1.36,6.6-5.79.94-2.19,3.53-1.81.57-1.57,2.59-1.19,6-4.8.9-1.24-9.34,4.67-.11-.85-4.8.3,2-2.31,5.33-4.66c.05-.27.1-.54.16-.82l11.51-5.75,2.17-2.19.62-2.29,3.56-1.78,7.39-6.26-1.74-.38c.28-.62.57-1.24.88-1.85l3.57-1.61.92-2.22L278.54,96l-6.22,3.57-1.79.32-3.6,2.21-3.39,1.38-3,2.19-7.89,2.53-10.88,8.33-10.51,5.55-3.71-.69-6.71,5.22-4.28,2.61L209.23,135l-.12-.51L204.2,138l2.55-2.5-1.36.38,9-7.94,14.09-9.74,3.17-1.53,2.83-2,4.47-4.68-1.11.19,3.47-2.11,7.82-6,7.77-5,7.14-5,1.68-1.73,3.2-1.52,8.35-4.45L279,83.17l-.89.29,4.8-2.57,8.42-3.72,4.85-1.63.64.15,2.27-1.06.23.38,2.65-.86-2.2,1.55.61.24,5.73-3.19,3.27-1.33-5.72,3.39,2.83-.68-2.76,1.46-.16,1.09,4.82-1.17,4.6-3,5.2-2.89-1.12,2-5.19,2.79,3.47-.59,3.7-1.32L317.32,74l-2.32,1-1.8,1.59,2.55-.85-2.2,1.55,2.31.27-.27.53,2.82-.7,5.61-3,2.13.5,2.4-1.14,1.32,0L334.08,71l3.67-3.37L333.19,69l-2.46.31-3.93,1-2.6-.21,6.32-2.64,3.68-.79,5.27-2.34-5,1,2-1c2-.54,4.06-1.05,6.1-1.56l4.64-2.38,3.4-.59,4.57-1.67,8.18-2,3.3-1.5-2.18-.72L359.57,55,355,56l-6.66,2.76-3.31.73-.67.68-3.35.68v-1l-2.17.26,3.41-1.33L346.35,57l-4.44,1.38c2.76-1.47,6.39-3.5,9.19-4.88l5-1.75,1.48-.88,7.65-2.46,3.35-1.65-2.15.4-2.68,1.11-2,.22,2-.79-.74-.09,5-1.24,3.35-1.66,9.7-3.16,1.51-.28-1.9.78,2.94-.7,5.45-1.7,7.87-2,3.91-1,3.64-.7,3.63-1-.47-.09,2.88-.72,3.14-.27,2.2-.54-1.86,0,4.28-.83,2.2-.24,4.66-.72-1.88.11.31-.28,2.82-.62,2.2-.37-2.1.6,1.09-.1,2.94-.63,1.44-.44-1.25,0,1.42-.32,2.56-.4-1.68.39.88,0,2.19-.47,2.74-.4,2.5-.44.75-.17-2,.27h0c-4.52.66-9,1.35-12.9,2C406.57,34.16,405.76,34.31,394.71,37Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M345.09,52.18l2.08-.84-5.53,2h0l-1.66.71,3.4-1.23Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M448.85,27l-8,1.09-1.95.28,1.12-.11c3-.44,6-.87,8.84-1.26Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M456.63,26.05a21.52,21.52,0,0,0-2.41.17l-5.33.73,2.67-.3Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="198.55 114.75 197.65 115.47 198.47 114.82 198.55 114.75" style="fill:#d9dadb"></polygon><polygon points="192.59 119.51 192.75 119.39 192.76 119.39 197.65 115.47 191.91 120.05 192.59 119.51" style="fill:#d9dadb"></polygon><polygon points="168.61 140.22 172.05 137.09 172.05 137.09 168.61 140.22" style="fill:#d9dadb"></polygon><polygon points="176 133.97 179.39 130.66 183.77 126.9 184.53 126.18 183.99 126.62 174.59 134.79 172.05 137.09 171.46 138.18 176 133.97" style="fill:#d9dadb"></polygon><path d="M110.68,232.47l1.1-1.1.1.52,2.2-2.94.61-.46,1.86-2.47.89-.91,4.55-6.05,7-9.34,3.85-4.16-1.32,1.86-3.69,4.78-3.54,4.38,1-.53,2.71-3.15,3.45-4.58,1.43-1.08-3.32,4.25,2.83-2.5,3.16-3.75-.54,2.88,2.43-1.81.75-2.36,2.51-2.11-.32,4,3.06-4.15,4.07-3.75,4.63-1.72,3.18-2.52.06.77-1.66,2.27,1.64.15,3.06-3,3.57-4.92,7.22-6.32,1.42-2.35-1-1-4.62,2.46-2.89,3-2.62,0a56.5,56.5,0,0,1,3-7.83l-3.74,1.82L156.9,181,154.09,183v-2l-1.68,1.23-.26-1.34,4.94-5.35C138.93,194.54,133.9,201.16,110.68,232.47Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M167.18,165.64l2.37-2.71,2.79-2.28,3.71-3.46,3.19-3.41L177.65,155,174,158.35l-6.16,6-.58.59c-3.1,3.2-5.85,6.07-8.37,8.7l3.75-3.6Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M108.72,235.08l-.21.31,2.17-2.92-.14.14Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M158.33,174.13l-1.25,1.36,1.78-1.87Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="423.16 223.71 426.34 229.11 430.1 223.64 428.72 220.72 426.5 223.42 423.16 223.71" style="fill:#d9dadb"></polygon><polygon points="417.77 172.55 412.46 173.87 415.13 176.03 417.77 172.55" style="fill:#d9dadb"></polygon><polygon points="485.11 129.07 481.03 130.9 484.11 132.64 485.11 129.07" style="fill:#d9dadb"></polygon><path d="M473.39,222,471.72,230l4.45-4.18.18-2.16h0l2.38-3.26Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="563.16 135.53 564.82 132.67 559.85 132.68 559.52 135.05 563.16 135.53" style="fill:#d9dadb"></polygon><polygon points="568.42 87.79 568.42 87.79 568.42 87.79 568.42 87.79" style="fill:#d9dadb"></polygon><path d="M583.16,134.81l1.18-.94,5.39-1.23-5.51-1.74-8.31-6.19.57-3-3.66-1.39.22-1.26,2.66-.13-.44-1.95-2.13-.8,1.81-1.21-2.77-2.69.9-1.29,1.94.42.17-1.2-1.81-.73.76-2.14,4-4,0-.8,2.23-2.84-1.22-1.6-2.32-1.11-2.12.76.84,2.16-3.57,3.18-2.73.33.14,1.56-2.51,2.45,1.14,1.66-1.28,3.21,2.78.54.36,2.73-3.1,2.61,2.06.78,2.52,7.36-1.81,2.09.74,1.76,6.32,1,1-.42,2.27,1.7-.56,2.11Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="565.37 62.16 569.05 61.97 566.66 60.6 567.39 59.05 564.39 57.99 558.38 57.9 559.44 58.69 559.6 59.78 562.64 60.68 562.51 61.2 565.37 62.16" style="fill:#d9dadb"></polygon><polygon points="567.86 64.09 570.59 64.18 570.13 62.86 568.73 63.13 567.86 64.09" style="fill:#d9dadb"></polygon><polygon points="569.75 60.99 570.36 61.56 572.85 63.43 573.63 63.03 576.82 63.62 578.43 62.62 580.25 62.63 580.94 61.04 577.75 60.41 573.16 58.62 571.59 59.28 572.28 60.31 570.28 59.78 569.75 60.99" style="fill:#d9dadb"></polygon><path d="M599.67,75.15l.35-.48-1.5-1.32,1-1.2-2-2.13-5.07-.23,1.44,1-3.63-.92-1.38.12L594,72.24l-.34.51Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="588.49 58.18 591.7 58.07 589.42 57.2 586.77 56.91 588.49 58.18" style="fill:#d9dadb"></polygon><polygon points="598.8 39.36 604.4 40.16 607.12 39.62 606.58 38.72 601.86 36.83 602.67 36.56 600.51 35.64 594.52 34.3 593.81 35.15 595 36 593.69 36.66 598.5 37.35 595.7 38.34 598.8 39.36" style="fill:#d9dadb"></polygon><polygon points="611.85 38.83 615 38.64 614.34 37.04 612.44 36.66 609.41 36.99 610.48 37.96 609.48 38.62 611.85 38.83" style="fill:#d9dadb"></polygon><polygon points="594.68 31.74 592.76 31.15 590.65 30.89 591.64 31.87 593 32.35 591.87 32.43 594.07 33.34 592.85 33.58 595.89 33.95 596.21 33.33 595.88 32.98 596.37 32.67 594.68 31.74" style="fill:#d9dadb"></polygon><polygon points="553.67 14.85 549.98 14.49 550.84 14.91 555.49 15.48 560.41 15.94 561 15.79 557.76 15.4 553.67 14.85 553.67 14.85" style="fill:#d9dadb"></polygon><polygon points="749.45 79.98 745.84 78.05 740.1 74.9 743.57 76.98 748.6 79.71 749.29 80.24 759.55 86.26 762.75 88.12 765.23 89.73 775.42 96.45 761.88 87.5 755.07 83.34 749.45 79.98" style="fill:#d9dadb"></polygon><polygon points="878.82 191.73 878.34 191.13 878.79 191.69 878.82 191.73" style="fill:#d9dadb"></polygon><polygon points="888.09 203.48 887.4 202.6 887.58 202.82 888.09 203.48" style="fill:#d9dadb"></polygon><polygon points="880.33 193.59 885.48 200.11 887.4 202.6 886.62 201.59 885.11 199.63 885.26 199.83 880.51 193.81 880.33 193.59" style="fill:#d9dadb"></polygon><polygon points="477.22 141.09 477.22 141.08 477.22 141.08 477.22 141.09" style="fill:#d9dadb"></polygon><path d="M515.23,154l2.93-3,2.3.47-.62-3.18h0l-4.08-.77,4-2-6.13-3.3-2.62-.75-1.71-.51-1.14,1.59-1.58-.77-3.89,5.92-.57-2.71.77-2.88-4.63,2.35-1.33,4.12-1-1.62L493,145.78l-2.59,1.08,2.36,1.1-.85,2.6-4.37-2.87-3.28,1.69.69,2.37-2,.59-2-2.22-1.51,1.56-2.69-.12,2.65,3-4,2.24-.28-3.45-1.73.28-.78-1.17-8.09,7.07,6.44-2.27,1.73,1.51-4.5,2,1.55,1.8-3.57-.09-4.61,2.36.71,1.73L457.92,168l-3.48,5.55-.12,2.26-8.16,3.75,3.72,2.67-4,1.68-2.08-1.4-1.72,1.19L440,180.92l-2.14,2.49.43,4.23-2.2,1.14-1.23-3.18-3.36.41-4,5.17-4.61-1.35,1,2.71-2.36.69-.29,1.76,7,.28,1.93,3-10.64-.18,2,2.16L419.08,202l3,1.82,4.64-1.43-4.07,4.51-5.5-.69-1.05,6.16,4.92,2.94-1.32,1.81,6.27-.84,1,1.2,6.16-4.27,1.75-.17.32-2.81,3.07,1.2,2.12-4.07,2.48,5.82,0,.57,2.5-1.29.34-4.09,4-1.2-.24-6.32,2.26.13,1.5-2.9-2.32-3.37,1.05-3,.3-5.94,4.83-4.8,4.24,1.28,1.12-3L461,177.18l4-3.25c.33-1.64.67-3.27,1-4.89l3.37-.7.08-1.29,3.42-2.11.51-2.87,4-2.95,2.7.74,1-3.18,4.51,1.51,1.53-.66-.31-3.78,2.21-.68,2.75-.88,1,1.28,1,1.27,3,.48,1.71-.91,4.06,2.26,2.7-2.44-1.28-2.39,1.69-2.81,4.73-1.34,3.5,2.33-.79,1.89Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="423.25 219.66 423.25 219.66 423.25 219.66 423.25 219.66" style="fill:#d9dadb"></polygon><polygon points="421.86 214.28 424.25 212.01 425.11 208.76 415.89 211.37 416.56 213.82 411.29 215.45 409.34 223.05 411.42 225.38 410.92 230.03 417.41 231.01 415.31 228.04 419.19 222.52 421.67 218.71 423.25 219.66 425.68 216.45 421.86 214.28" style="fill:#d9dadb"></polygon><path d="M499.17,170l-1.22-2.5h0l1.2-1.69-1.68-2.05.87-1.44-1.72-.6.94-2.1-3.07-2-2.42,0-1.82-1.68-1.13-2.81h0l-2.21.68.31,3.78-1.53.66-4.51-1.51-1,3.18-2.7-.74-4,2.95-.51,2.87-3.42,2.11-.08,1.29-3.37.7c-.33,1.62-.67,3.25-1,4.89l-4,3.25,1.41,2.12-1.12,3L457.07,181l-4.83,4.8-.3,5.94-1.05,3,2.32,3.37-1.49,2.9h0l-2.26-.13.24,6.32-4,1.2-.34,4.09-2.5,1.29-.56,7.54L445,226l2.14,2.14-.66,2.17-1.89.09,2.13,4.69-1.52,2,6,.95,3.36-5.52,5.49.8,3.36-6.92,2-2.52L464,221.44l2-.22.38-1.91-1.58-1.2-.18-2.54,5.75.39,4-2.41-6.74-1.71,4.12-3.16,1.69,2.4,4.24-1.23-4.25-6-3.27-.8.27-6.28,1.92-.31V191.2l4-2,5.13-4.59,4.88-1.42,3.7-4-2-2.33,1.88-1.6-.85-1.43,2.75-1.05-.46-2.26,1.83-.71Zm-48.54,47.18-4.27.26,2.9-4.12,2.1-1,3.62-.47-.42,2.91Zm8.07,1.1-4.58,4.94.41-5,4.37-3.92Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M526.86,186.09l-4.22-2.24,2-1.73-.33-1.63L521,179l.64-2.18-2.52-2.72,1.76-2.67-5.3-7.41,2.52-2.11.37-2-2.45-2.35-2.63-.35.25-2-.92-1,1.45-1.39-1-1.08.79-1.89-3.5-2.33-4.73,1.34-1.69,2.81,1.28,2.39-2.7,2.44-4.06-2.26-1.71.91-3-.47-1-1.28-1-1.28-2.75.88h0l1.13,2.81,1.82,1.68,2.42,0,3.07,2-.94,2.1,1.72.6-.87,1.44,1.68,2.05-1.2,1.69,1.22,2.5h.47l4.15,2.52.6,3.41-3.28,1-3.45,4.85-1.37,1.35-1.81-.79-1.54,3-4.06-.18,1.38,3-2.59,1.5,2.13,7.8L488.26,204l4.09,2.42,2.12-1.29L496,206.7l-1.53,2.74,7.22-2.28,2.23-.06,2.5-1.8,1.11.92,2.62-2.72.64,1.3,4.77-1.28h0l.64.32,11.14-12.68h0l1.27-2.95Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M307.08,332.41l5.75-3.17-1-4.64-7.51-.24.9-4.76-4.53,2.21L298,331.47l-7.18,9.31-1.3.09-2.2,4.6,2.38,2.38-3,9c2.78.63,5.59,1.24,8.43,1.85l4.63-6.76L298.62,350l3-1-1.7-4.82,3.88-1.9Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M352.79,339l7-1,8.17-4,1-2.63-4.87-1.9-3.12.87-5.08-5.74-3.13,1.72-4.94-1.48L342.48,318l-7.1-.65-2.56-2.1-5.24.15-6.49-3.58-6.84.13-3.53-3.11-8.82,3.6-.5.3-.67,9.11,4.53-2.21-.9,4.76,7.51.24,1,4.64-5.75,3.18-3.3,9.87-3.88,1.9,1.7,4.82-3,1,1.21,1.93-4.63,6.76,3-1,2.36,4.89,0,5.94,3.84,1,.1,0,7-3.6,11.38.28,2.4,2,6.19-6.49,4.42.62,1.48-4.33,6.2-3.12-2-3.57,1.93-3.9Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M399.34,274.22l-2.68,2.66,0,.15,1.55,4.06c4.59-3,4.88-3.1,5-3.18h0a20.85,20.85,0,0,0-2.29-2.18C400.46,275.22,399.91,274.71,399.34,274.22Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M410.23,292.27,408,294.08l-4.71-.21-3.08-.16-.07.2-.51,2.18-5.08,2.73-3.85,6.26,6.82-2.66.6,3.4,4.72,1.26,1.79-3.25,2.56-.53,2.4,4.9,3.16-4.45,3.25,1.77,4.5-4.47-6.23-2,1.2-4.55Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M399.61,296.09l.51-2.18.07-.2,3.08.16,2.84-6.27,4.81-3,.79-2.22q-3.54-.3-7-.63l-3.49-2.33a18.27,18.27,0,0,1-2.91,1.7l-.92-2-8.13-3.93-1.74-5q-2.28-.27-4.53-.57v-4.93l-3.37,1.16-2.15,4.92-9,1.3,1.44,2.53-2.91.62-5.42-3.42-3.31-.76.26,7.52-7.11-.12-1.6-3.18L341,276.38l-.12,5.71,6.06,1.48-.81,2.11,4,.43,1.78,1.88-2.42,3.34,1.64,6.41-1.44,11.08L342.48,318l5.33,6.89,4.94,1.48,3.13-1.72,5.08,5.74,3.12-.87,4.87,1.9.63-1.64v0l-1-2.5,2.23-4,5.51-2.49L388,326.81l9.36-4.83,1.34-.7-4.73-4h0l2.73-2.48-2.3-1.64,3.38-3.25-1.5-2.93,1.82-1.19-.6-3.4-6.82,2.66,3.85-6.26Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M401,275.72l.07-.17L402.9,271l-3.18-1.21,1.42-2.12-3.92-2.77-7,1.38-1.06-3.81L383,264.63v4.93q2.25.3,4.53.57l1.74,5,8.13,3.93-.63-2.07,0-.15,2.68-2.66C399.9,274.71,400.46,275.22,401,275.72Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M413,248.68l-2.45,0-7.08,3.19-.57,4.18-3.07,1.06-.19-5.27L394.27,258l-1,4-3.53.25-.57.21,1.06,3.81,7-1.38,3.92,2.77,2.73-2.72-.45-3,4.1-.29,1.71-2.24-.79-2.53,3.05-2.77C412,252.3,412.48,250.49,413,248.68Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="449.18 281.24 447.32 279.39 448.64 277.19 447.72 275.63 447.73 275.63 447.35 274.98 443.17 276.35 437.61 272.83 435.8 275.97 424.61 279.08 423.81 283.8 418.96 281.73 413.38 283.71 403.55 282.54 402.36 287.09 408.58 289.07 411.76 290.13 413.2 288.42 418.5 287.7 419.25 290.6 428.88 291.81 431.19 293.59 433.88 291.11 436.86 292.23 438.44 289.61 443.06 289.64 445.44 284.69 448.32 285.05 448.32 285.05 449.18 281.24" style="fill:#d9dadb"></polygon><path d="M457.89,353.47l2.89.6.7,2.49,2.5,0,.7-2.28L461.62,350l-6.09-3.74-6.84-2.36.09-1.66,2-1.14L450.1,340l-9-1.67-4.09-5-1.72-7-7.05-5.68.35-4.89,1.22-1.45-.86-3.37,6.56-2.39.75.52,1.95-5.61-7-.9-.76-2.9-5.3.73-1.43,1.71-3.18-1.07-4.5,4.47-3.25-1.77-3.16,4.45-2.4-4.9-2.56.53-1.79,3.25-4.72-1.26L396.28,307l1.5,2.93-3.38,3.25,2.3,1.64L394,317.31h0l4.73,4,7.41-3.89,7.59,3.91,1.07,8.76,3.75,3.13,10.78,11.6,3.61.57,2.59,3.12,4.58.8,1.57,3.27,4,2.59,2.73,8.46-4.13,5.54,1.74,2.58,3.16-1.49,2.7-6.14,3.79-.44-.3-3.47L452,358.09l0-3.24,3.09-3.8Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="441.8 261.81 440.84 260.75 437.36 261.96 434.87 259.7 430.36 260.78 428.24 264.19 425.24 263.72 421.29 265.62 423.92 271.17 426.99 271.02 426.99 271.02 426.99 271.02 431.73 277.11 435.8 275.97 437.61 272.83 443.17 276.35 447.35 274.98 447.73 275.62 452.88 276 454.15 272.91 459.12 271 457.79 267.62 452.94 267.99 452.86 264.97 449.07 264.49 447.41 267.62 444.59 264.64 446.12 262.1 441.8 261.81" style="fill:#d9dadb"></polygon><path d="M446.82,257.06l4-6.31-2.59-2.08L447,246.41l1.21-2.1L446,242.66l-1.74,2-2.47-.5-2.66,2.67-6.46.69L429.31,243l-6.5-1-.22,2.29,1.83,4.27-4.25-1.06-3.47,4.11-2.61-3-1.1,0c-.51,1.81-1,3.62-1.5,5.44l-3.05,2.77.79,2.53-1.71,2.24-4.1.29.45,3h0l-2.73,2.72-1.42,2.12L402.9,271l-1.81,4.56-.07.17a13.9,13.9,0,0,1,2.28,2.19c-.21.11-.67.43-2.13,1.48l3.49,2.33q3.51.33,7,.63l-.79,2.22-4.81,3-2.84,6.27,4.71.21,2.25-1.81,5.22,2.25,9.83,1.17,5.58-2h0l4.85,2.08.79-4.73,7.13-2-4.74-6.1h0l-3.07.15-2.63-5.54,3.94-1.91h0l3,.47,2.12-3.41,4.5-1.08,2.5,2.27,1.62-5.41-1.47-2.23,1.49-6.19Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M500.21,276.81l.76-3.18-3.72-4.37.57-5-3-.85.89-2.81,3.58-1.19,0-3.23-1.8-2.8c0-1.27,0-2.54,0-3.81L495,247l-10.3.64-7-2.2-.16-.06-5,.26-.69-3.54-9.62,2.38-2.19,2L452.48,248l-1.63,2.8-4,6.31,4.08,3.06-1.49,6.19,1.47,2.23L449.26,274l3.48-1.22.95,1.06,4.32.29-1.53,2.54,2.83,3,1.66-3.13,3.79.48.08,3,4.85-.37L471,283l1.3,1.3,2.69-.93,2.32,1.15,2.92-1.16,2.64,1.39,2-1.34,3.62.69.53.56,2.64,1,1.92.71-.19-4.2,4.29-5.26Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M489,284.64l-.53-.56-3.62-.69-2,1.34-2.64-1.39-2.92,1.16L475,283.35l-2.69.93L471,283l-5,1.92L464.78,288l-5.16-.38h0l.92,1.56-1.32,2.2,1.86,1.85-.11.5,4.78,2.37,4.4-.67,1.19-2.11,4.48-1.05,2.8.57,1.34-3.05h4l1.47,3,4-1.13h0l2.21-6.06Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="515.31 327.55 510.43 329.82 507.88 327.15 505.38 327.68 504.78 337.3 507.73 338.1 512.81 334.04 521.48 334.14 520.36 332.01 516.48 330.07 515.31 327.55" style="fill:#d9dadb"></polygon><polygon points="504.78 337.3 505.38 327.68 501.46 328.49 501.01 331.38 495.72 331.8 493.06 330.19 488.78 332.19 482.77 332.13 480.07 334.45 475.66 334.35 473.93 337.23 469.06 337.81 468.52 341.79 463.19 347.85 468.47 354.58 476.12 354.76 477.86 356.32 468.97 357.86 475.46 364.81 475.71 372.65 480 368.47 485.57 370.91 482.32 361.61 485.78 361.77 483.78 356.6 489.13 356.16 481.63 353.21 482.29 350.07 486.5 350.2 479.57 344.02 479.7 340.2 482.32 338.06 488.16 342.53 487.58 336.93 496.27 335.44 504.78 337.3" style="fill:#d9dadb"></polygon><path d="M448.76,304.21h0l-3-1.12-2.69,2.48-2.31-1.78-2.61-.31-1.95,5.61,1.28.87q6,.3,11.9.51l6.23-5-.67-3.82-4.62,0Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="454.85 323.9 447.44 317.06 443.21 320 451.58 324.87 454.69 323.9 454.69 323.9 454.85 323.9" style="fill:#d9dadb"></polygon><path d="M455.66,317l2.09-1.86,7.44,1.15,2.12,2.3,3.83-.08-2.07-8.86-3.57,2-4.89-2.16-5-4.06-6.23,5q-6-.21-11.9-.51l-.54,2.8,2.36,4.57,2.29-3.89,1.57,1.07,2.28,7.26,4.5,5.6,9.38,1.68L450,316l2.75-1Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="454.85 323.9 458.98 329 458.99 329.04 461.68 326.39 463.63 324.46 459.55 316.38 455.95 319.18 454.85 323.9" style="fill:#d9dadb"></polygon><polygon points="459.24 306.55 459.24 306.55 455.41 306.63 453.3 304.33 445.85 303.18 443.76 305.04 440.8 303.03 438.05 304.05 447.44 317.06 454.85 323.9 455.95 319.18 459.55 316.38 461 312.97 457.76 310.61 461.1 306.61 459.24 306.55" style="fill:#d9dadb"></polygon><path d="M494.14,294.2l-4.68-2.53-4,1.13-1.47-3h-4l-1.34,3.05-2.8-.57-4.48,1.05-1.19,2.11-4.4.67L461,293.72l-.75,3.31-2.88-.36-2.38,5,.67,3.82,5,4.06,4.89,2.16,3.57-2,5.42-2.49,8.42-.14,1.11-2.2,2.06-1.42,3.2-6.42,3.27-.68h0Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="482.75 319.72 479.28 317.55 478.2 314.71 481.34 309.22 478.75 307.62 476.25 308.72 472.28 307.1 473.43 304.15 468.76 301.88 469.64 299.87 462.6 295.2 457.18 297.69 459.24 306.55 459.24 306.55 461.1 306.61 457.76 310.61 461 312.97 459.55 316.38 463.63 324.46 461.68 326.39 461.73 326.41 467.14 329.58 471.5 327.99 477.91 326.61 478.1 326.52 478.01 322.03 481.19 322.92 482.75 319.72" style="fill:#d9dadb"></polygon><polygon points="461.73 326.41 461.68 326.39 458.99 329.04 457.94 340.6 461.21 345.3 463.18 347.85 468.52 341.79 469.06 337.81 465.76 334.22 467.14 329.58 461.73 326.41" style="fill:#d9dadb"></polygon><path d="M490,338.59v-.09l-.19.09L483.4,340,479,341.56l-1.38,4.64,3.3,3.6,4.87-.59,1.73-2.88,4.41.11,2.7-2.33h.47l-1.41-3.56-2.7,0Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M525.23,328.67l3.66-1.41.26-2.24-4,.19-4.64-2.66-6.12,1.89L510.57,328l-6.19-1.52-1.56,1.72-8.18-1,.57-3.1-2.84-1.34-2.27,4,1.08,2.83,3.47,2.17-1.56,3.2L489.9,334l.1,4.49v.09l1,2,2.7,0,1.41,3.56,5.54.05,4.28-2,2.65,1.61,5.3-.41.44-2.9,6.43-1.34,2.55,2.67,4.88-2.27L523,334.38l2.23-2.21Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M502.82,328.19l1.56-1.72,6.19,1.52,3.83-3.55,6.12-1.89,4.64,2.66,4-.19.05-.47.83-8.05-6.09-4.31,1-7.34-1.41-4.42-3.1-2.27-3.53-6.39-3.76.14-1.59,2-3.48.11-2.05,2-3.44-2.81-7-.8-1.44,1.86-1.59,2.12-3.27.68-3.2,6.42L484,304.84l-1.11,2.2-8.42.14,7.05,4.67-.88,2,4.66,2.27-1.14,2.94,4,1.62,2.5-1.1,2.59,1.6-.87,1.54,2.84,1.34-.57,3.1Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M537.29,307.51l-4-8.93-3.34-1.33.77-3.19-1.11-1.93-4.59-.71-3.26-2.49-4.12.28-2.26,2.62,1.58-.06,3.53,6.39,3.1,2.27,1.41,4.42-1,7.34L530,316.5h0l4.44-.24.58-3.25-1.49-1,1.06-3.21Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M574.12,298.63l3.66-3.77,3.79-.56,2.23-5.49q2.9-.33,5.76-.69l.42-2.27-2.55-3-.39-3.13,1.61-1.66-.72-2.83-5.39,1.05-5.31-2.66-1.38,2.06-4.14-3.88-3.19,2-5.52,0-1.32-1.29.13-2.4-1.43-2.31-6.13-.24L553,264.8l1.18-2-3.38-3.68-7.4,1.26-.62,2.34-6.07-.88-1.48,3.57,1.14,2.6-2.4,1.86-2.43-2.75-4-.8-1.25,2.5-3.2-2.27-2.44,2.54-3.18-3.4-6.64-.84-9.2,0-.72,3-3.55.65-.08.72,3.71,4.37-.76,3.18-2.52.05-4.29,5.26.19,4.2-1.92-.71-2.21,6.06,4.68,2.53,1.44-1.86,7,.8,3.44,2.81,2.05-2,3.48-.11,1.59-2,2.18-.08,2.26-2.62,4.12-.28,3.26,2.49,4.59.71,1.11,1.93-.77,3.19,3.34,1.33,4,8.93,2.7-5.4,3.64-2.18,4.11.26-1.62,3.59,3.3,1.47,5.06-1.58,3.4,1.94L551,310.34l1.64,1.5,5.19.56,1,5,3.39.37,2-3.11,3.48-.19,1.53-2.11c1.67-.15,3.34-.32,5-.48l-.15-4.4-6.83,2.43-5.18-5.55,6.71-5Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="480.23 235.22 480.23 235.22 480.23 235.22 480.23 235.22" style="fill:#d9dadb"></polygon><polygon points="480.23 235.22 480.23 235.22 480.23 235.22 480.23 235.22" style="fill:#d9dadb"></polygon><rect x="480.23" y="235.22" style="fill:#d9dadb"></rect><path d="M489.94,241.88l-4.2-1.92.2,1.95c-2.13,0-4.26,0-6.39,0l-2.06,3.5,7.16,2.26,7.47-.45h0l2.45-5.38Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M513.48,241.05l-2-1h0l.62-1.81-3.64-4-3.43-.45-1.67-2.06-1.93,2.15-4.48-.91L495,234.44l-4.85-2-4.89,2.69.42,4.41,0,.38,4.2,1.93,4.63,0-2.45,5.38h0L495,247l2.54,2.53v.88h5.33l2.58-2.95,1.37,2.23,2.44-.07-.22-6.44,3.2-.11Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M544.19,252.52l-1-3.11-6.95-3.25-3.05-4,0-5.4-3.64-2.21-4.09,2.53h0l-1.66-3.51-4.11,0-1.7,0-1.6,3.22-2.85-1.46-1.39,3-.62,1.81h0l2,1-1.29,2-3.2.11.22,6.44-2.44.07-1.37-2.23-2.58,2.95h-5.33c0,1,0,1.95,0,2.93l1.8,2.8,0,3.23-3.58,1.19-.89,2.81,3,.85-.48,4.3,3.55-.65.72-3,9.2,0,6.64.84,3.18,3.4,2.44-2.54,3.2,2.27,1.25-2.5,4,.8,2.43,2.75,2.4-1.86-1.14-2.6,1.48-3.57,3.91.57v0l-3.81-8.67,4.91.9Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M512.14,224.16l-2.49.82-4.43-3.11-3.77,1.79-.17,1.79c-1.86,0-3.72.08-5.59.1L493,222.3l-4.11,1.19L485,231.7l.31,3.46,4.89-2.69,4.85,2,1.89-1.48,4.48.91,1.93-2.15h0l1.66,2.07,3.43.45,3.64,4,1.39-3,2.85,1.46,1.6-3.22,1.7,0h0l0-.24-1.29-3.76-2-.42.12-2.2Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M517.46,212.34,516,210.8l-4.35.18-4.92-1L497,213l5,5.54-.48,5.09,3.77-1.79,4.43,3.11,2.49-.82,1.82,1.13,1.67-2.84-2.78-3.73,0-3.47,2.54.09Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M914.92,385.74c.69-.59,1.37-1.17,2-1.76l.72-4.62L924,391.69l1.83-1.69-5.59-15.35,3.52.61-3-10.68-1.65-1.25.46-4.37-3.38-6.89,1.59-9.28-1.7-6.73-4-1.11-1-3.6-3.42-2.69v7.14l-2.68-.15-.51,5.62-1.73,2.09,1.07,5.21-1.43,4.87,4.06,6L903.43,363l-2.81-1.22-1.56,4.77-5.16-1.9-1-3.3-1-3.23-2.59,4.08L891,369l2,1,.82,4.51-3.72,1.83-9.15.84-1.2-2.61-3.46,0-2.42,3.25-6.5-2.41-1.22,2.3-11.22-3.5-.36-5.39-1.13-1.95.78-4.81-8.77-2.45-2.1-2.69-3,.77L834.82,350l3-1.56.9-2.23-2.35-3.39-5.17-3-1.78-2.58.52-3.08-5.05-.93-4.2-5.78-2.27,1.14-5.39-.67-3.45,2.67-.89,4.24q-2.43,1.11-4.91,2.19l-.81,5.06,5.91,10.79,5.8,3.35,3-1.34,3.78,2,.52,4.67-2.06,3.37,2.9,4.14-1.74,7.1,1.75,13.21L819,392.1l.26,7-4.62,5.25-3.42-3.2-2,8.9.87,3.73,4.73-1.72,2.89,8.74,3.39-1.33,5.51,8.47-13.31,4.7-.63,6.05,6.4,4.25,6.35-4.8.56,6.33-6.33,3.78,8.81,6.69,4,1.52,6.31-6.85-.16-10.6,5.63,12.17.6,8,3.49,3.81.13,4.67,4.14,7.5,2.68,8,6,9.62,3.75,3.46,3.16,5.7,1.53,5.14,4.14,9,3.83,3.88,4,8.69,1.87,1.3.09,3.58,1.64,4.26,4.08,5.56,4.45-5.12,1.48-6.78,2-1.9-.12-3.25,1.08-5.26,1.69-.73-1.27-9.06-1.1-.62L898,499.7l-1.12-9.22-3.1-5.86-1.64-6.81-.16-5.3,3.35-7.74,4-4-1-3.71,4.81-14.12.46-8,1.12-3.62-1.35-5.3,2.94,1.46,2-4.17.26-6.22-2.28-5,1.7-6.4-.74-7,4.32,4.08,1.1-.79v0l-5.17-7.44q-1.44-3.45-2.91-6.87l-3-.47c-.52-1.2-1-2.4-1.58-3.6l2.33-4.16-3.71-2-1.57-5,5.66-.74q1.19,2.55,2.36,5.11l2.31-.9,1.63-2.34,1.9.36,1.47-3.82,3.25,3.53-2.24,7.61Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M924,391.69l-6.28-12.33L917,384c-.67.59-1.35,1.17-2,1.76l-1.57-4.65,2.24-7.61L912.34,370l-1.47,3.82-1.9-.36-1.63,2.34-2.31.9q-1.17-2.56-2.36-5.11l-5.66.74,1.57,5,3.71,2L900,383.47c.53,1.2,1.06,2.4,1.58,3.6l3,.47q1.47,3.42,2.91,6.87l5.17,7.44v0l3.87-2.86-.27-4.31.16-4,1.36-1.22,2.5,3.15,4.23,7.22v-.15c.68-.6,1.35-1.2,2-1.81Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M870.85,361.91,868.91,364l-3.11-2.63-5-.9c-.47-1-.94-1.92-1.42-2.87L856,358.73l-.15,3.73-1.66-.45-.78,4.81,1.13,1.95.36,5.39,11.22,3.5,1.22-2.3,6.5,2.41,2.42-3.25,3.46,0,1.2,2.61,9.15-.84,3.72-1.83-.82-4.51-2-1-1.73-6.72-2,2.2L883.16,363l.11,2.81-6.09-.68Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M892.87,361.38l1,3.3,5.16,1.9,1.56-4.77,2.81,1.22,3.05-3.55-4.06-6-3.1-2.72L897.6,355l-1.42-2.78c-.72.6-1.44,1.18-2.18,1.77a22,22,0,0,1,.28,4.2C894.1,359.4,893.24,360.28,892.87,361.38Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="874.04 188.12 877.92 192.09 881.08 196.09 881.9 196.93 884.52 200.41 885.97 201.91 882.27 196.82 882.29 196.61 880.42 194.27 880.16 193.75 877.61 190.66 877.61 190.48 872.36 184.21 872.45 184.41 866.96 178.22 861.9 173.32 864.45 176.31 864.79 177.39 867.99 181.24 871.29 184.51 872.3 185.65 872.19 185.77 874.04 188.12" style="fill:#d9dadb"></polygon><path d="M860.86,174.09l4.52,4.75,5.93,7.61h0l1.35.16,3.38,3.73.57.3.92.83.7,1.26,2.09,2.53,1.85,1.57-.6-1.1-1.7-1.75,0-.22.83.59-.78-1.14-3.2-3.85-.34-1.08-2.55-3-.41-.39-1.41-.83-2.76-2.83-2.84-3.19-1.27-1.76-2.37-2.63-1.39-1.43-1.67-1.92L855.12,166l-4.64-4.8-2.27-1.88-.31.19,5,4.71,3.43,4.14,3.12,2.59,2.16,3-2.85-2.4Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M606.17,404.49l3.85,9,8.55-.44,13,6.66,21,14.59q6.11-1,12.14-2l2.4-8.05c2.8-.48,5.58-1,8.36-1.49l.09-.21.82-1.87,1.32-.43h0l-8.12-7.9-.18-5.38-3.92-5-2.94.47-4-2.93-3.9.66-1.16-5.94-4.54-1.53-.59-6.5,3.93-4.76-2-3,.58-3.16-6,0-4-7.18-5.2,2.47-2.31-4.1h-6.71l-4.9,8.08-3.78.51-.12,4.53,2.8,4.87h0l-.35,7.94Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M667.08,424.3l-2.4,8.05,5.18-.9,2.88,4.05,6.73-1.22-1.33-2.09-3.46-7.68.76-1.7C672.66,423.32,669.88,423.82,667.08,424.3Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M623.51,371.57l-1.84-4.31-8.48,2.58-5.8,4.92-6.18.74-4.35-1.3-4.4,2.84-5-.52.93,4.65-2.18,4-3.15,0,1.49,7.77-.44,1.48h0l4.74-.76,2,3.91-3.65,8.74-.32.09-1.53.44.4,4.29h0l0-.07,6.5,3.34,13.89-9.93,14-12,.35-7.94h0l-2.8-4.87.12-4.53,3.78-.51h0Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M596.86,374.2l4.35,1.3,6.18-.74,5.8-4.92,8.48-2.58h0l1.84,4.31,3-5h6.71l2.31,4.1,5.2-2.47-2.63-4.72-5.36-2.78.5-2.7-3.64-6.48,3.55-4.16L626,345.51l-.14-4.92-2.65-1.91L618.47,335l-4.66,3.33L609.45,336,603,341.08l-4.8-1-6.13,2.35-10.57-2.24-2.21.9-2.56-3.27L572,338l-2.53-2.86-2.66,1.36-7.23.16-11.52,7.72-13.77,1.17,2.11,2.66-2.48,3.5-8,.11L524.12,353l-5.64-.58-3.38,3.44L519,364.3l-2.2,3.42,5.71.53-1.16,4.94,6.16,1.22-.35,5,7.49.41,2.38,2.81,3.49,1.27,5.26-1.24,1-3.83,4.81-.73,9,5.58,8.83-2.67,4-5.26,5.93,1.75,3-2.87,1.57,2.37-1.42.79-.16,2,1.61,2.48-.83,2.93,3.15,0,2.18-4-.93-4.65h0l5,.53Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="631.53 342.75 627.96 336.74 621.27 335.36 624.78 341.95 624.78 341.95 631.53 342.75" style="fill:#d9dadb"></polygon><polygon points="620.49 323.8 619.82 324.46 611.34 326.7 613.99 328.61 614.13 333.52 621.27 335.36 627.96 336.74 631.53 342.75 634.16 338.71 632.62 334.19 628.81 332.67 628.8 330.85 624.89 329.13 625.2 327.34 620.49 323.8" style="fill:#d9dadb"></polygon><path d="M657,333.51l-5.62-5.33-1.8,4.76-3.06.55-2.36-3.71-5-2.53-1.07,1.29-.9,1.06,4.19,3.07L640.3,336l-5.78-2.33-2.14,2.13,4.71,3.54-.3,1.79,3.9,1.72,0,1.83,3.81,1.51,1.54,4.52,5.5-6.61,2.8,2.17,1.86,5.92h5.23l-2.24-4.44h0l4.91-11.36Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="597.55 324.04 601.91 326.29 606.58 322.97 611.34 326.7 619.82 324.46 622.62 321.67 628.4 324 629.5 320.69 625.3 317.63 625.3 317.62 626.2 316.55 626.2 316.55 621.37 314.82 621.16 312.26 616.59 311.14 611.31 314.84 608.71 311.5 602.78 309.78 597.13 310.28 587.58 306.52 586.87 309.06 595.88 313.96 599.35 320.53 598.38 323.39 597.55 324.04" style="fill:#d9dadb"></polygon><polygon points="657.06 37.03 653.02 35.68 651.48 35.19 654.22 36.11 657.41 37.15 657.06 37.03" style="fill:#d9dadb"></polygon><path d="M810.39,126.45l1.14.69,2.23,1.74,2.08,1.84,15.35,12.46.21.85,3.82,3.71,4.67,3.74h0l5.64,5.19,2.68,2.65,2.27,1.88-.59-.59-3.21-3.22-4.85-4.57,1.43.74-2.77-2.73-6.15-5.65L828,139.67l-12.44-10.31L800,117.49l-5.87-4.26-8-5.48-1.88-1.28-3.31-2.09-8.11-5.18-5.38-3.1-3.31-1.94-.38,0-2.91-1.47,1.75,1.48,6,3.44.68.91-2.84-1.47,3.4,2.33L764,96.16l3.07,2.38-1.76-.61-10.23-6.66L749.25,88l-1.51-1.08L743.86,85l-8.69-5-3.49-1.69-11.35-6-5.49-3.34,0-.25-5.7-2.94-.57-.44-3.44-1.55-5.08-2.53,1.62.6,3.51,1.59.92.33-3.31-1.58L698.6,60.3,694,58.36l-1.81-.71,2.09.9-6.17-2.41-4.87-1.88-5.14-1.88-2-.68-3.48-1.26-5.3-1.92-.34-.15-.83-.27L655,44.47l-1.89-.58-6-1.79h0l-19.28-5.17c-22.26-5-25.68-5.79-36.64-7.51h0c-7.63-1.13-17.82-2.6-25.48-3.52l4.08.53,1.8.23h-.39l2.11.24.1.09,4.87.94,4.73.91.89.26,5.49,1.1,2.63.38,2.14.63,4,1,1.11.12L598.6,32l.88-.1,2.91.42,2.5.61-.77,0,1.74.54-2-.16-1.57-.4-2.27-.35,2.67.76,6.16,1,4.48,1.44.38.27,6.82,1.79,3.2.62-1.85.05,1.24.54-3.95-.59-1.67.3.51.73,3.4,1.41,2.08.42c.78.32,1.55.64,2.31,1l4.21,1.42-2.23.4,3.37,1.23L628,44.79l-.1.23,1.11.56-3.71-.69-.88.21,2.53,1.38,6,1.35L635,48.94l-7.48-1.83,1,1.62,2,1.7v.8l6.16,1.09,3,1,3,.27.1.63,2,.74,3.5.87-1.87.15-.52.77,4.21,1.63L646,59.1l11.73,3.63-1.93.7-5.37-1-2.13.1-6.43-1.34-1,1,7.94,1.7-.46,1.21-10.39-2.85.84,1.17-3.77,0,4.63,1.3.79.85,4.54.7-.74,1.87-1.93.27,1.63.86-2.07.45-3.06-.9-1.52,2.08,1.41,1.68,7.27,2.48-8-1.38,1.58,1.23-3.29-.25,6.8,4.87,1.14,3.83-4.44-2.52-2.2-1.79.13-.88-3.34-2-.32-.81-5.34-2.74.84-.19L625.4,70l-7.2-1.06-2.44.32-3.53-.21,1.43,1.13-1.69.15,1.47,1.52L613.18,73,610,71.34l-1.14.26,1,1.31-1.42.73-2.28-2.29-1.79-.1-1.5,1.83,3.79,2.53,7.22,1-2.75.71-.79,1,3.58.7,7.49,2.1L617.7,81l-5.88-1.61,1.64,1.48,0,1.94L611,82l-1.72,2.07,3.16.8-.27,2-1.74,1.83,2.82,3.18,1.45,1.44-2,.44,5,2.39,7.7,1.65-1.91,1.54-3.31-1L617,99l-2.09,3.44,6.46,3.22,3.8.17,2.65,1.3,6,.54,5.74,5,4.93,2.57L639,113.94l-5.74-4.61-3.49-.12-5.15-1.38-4.61.94,3,2.65-3.14.21,2.19,2.68,4.13.28.33-.71,4.32.67,3,3.72-4.78-1.85-5,1.16L619.6,114l-6.84-3.25,3.36,3-.34,1.62,1.74,2.32,7.25,2.53,2.92,3.84,5.38,3.53,2.76-2.12,6.46-.65,5,3.71,5.22.29-2.79,2.49-2.37-.33-4.23-3.11-3.34-.82-3.4,2.26,6.34,3.48,1.83,3.83-1.09,3,1.28,2.47-7.59,1.19-3.24-1.94,5.18-.85-1.11-6.6-2.54-1.45v-1.68l-4.16-1.43-7.39-5.48-3.12-3.31L615,118.37l-3.42-4.74-2.85-1.92-7.47,1.05.9,1.81,5,5.36.15,4.66,2.81.34,6,6.61,2.94-.95,3.58,2.15,1.82-.48,1.84,3.22-.86.42-5.19-1.5-12.27-.76-7.88,1-7.28-2.85,1.29,3.17,6.72,1.79,4.61,2.13-1,3.54-4.5-2.58-2.39,2.14-.08,1.05c-1.71.44-3.43.86-5.18,1.28l.56,2.89L588,147l1.12-1.77-.47-2.63c-4,2.47-9.31,5.77-13.4,8.07l2.68,1.71-3.57.93,1.2,3.73-4.79.92-4.52-2,.43-2.15,3.75-1.08-3.82-2.87-8.19.14,3.5,2.19,1.08,5,3.22,1.32-.46,2,1.79,3.41-4.1-2.4-3.71-.11-1,2.15-4.49,4.56,4.52,6.11-3.37.22-10.56-2.62,1.69,4,4,.82-.92,4.32-6.06-3.88-5.09-.77-1.46-8.23-9.52-5.94,6.51-.14,1.2,2.09,8.68.78,3,.58,4.18-.66,5-4.52-.29-1.95-2.2-2.48-9.13-2.15-6.57-2.87-8.37-.86-4.63.42,1.6-2.3-3.67-.83-.12,1.44-2.7-.48.62,3.18-2.3-.47-2.93,3-1-1.09-1.45,1.39.92,1-.25,2,2.63.35,2.45,2.35-.37,2L515.62,164l5.3,7.41-1.76,2.67,2.52,2.72L521,179l3.23,1.48.33,1.63-2,1.73,4.22,2.24,1.7,2.12-1.27,2.95-11.14,12.68,6.81,3.35-6,1.6-.05,2-.94.05,1.49,1.54-2.09,3,1.3,0,.39,2.94L519,222.2l-1.89,2.2-1.48-2L514,225.29l2.41,1.59-.12,2.2,2,.42,1.29,3.76,0,.24h0l4.11,0,1.66,3.51h0l4.09-2.53,3.64,2.21,0,5.4,3.05,4,6.95,3.25,1,3.11-2.47,2.09-4.91-.9,3.81,8.67v0l2.16.31.62-2.34,7.4-1.26,3.39,3.68-1.19,2,1.24,2.78,6.14.25,1.43,2.31-.13,2.4,1.32,1.29,5.52,0,3.19-2,4.14,3.88,1.38-2.06,5.31,2.66,5.39-1.05.72,2.83L587,279.74l.39,3.13,2.55,3-.42,2.27q-2.87.36-5.76.69l-2.23,5.49,6.92-2.16-.41,2.35-7.54,4,.76,1.92,3.78,1-2.61,2-.84,4.91L576.5,308l1.33,2.06,5.66,3,2.28,2.12,3.39.55,9.6,5.35.71-2.54,9.55,3.76,5.66-.5,5.93,1.73,2.6,3.33,5.28-3.69,4.57,1.12.21,2.55,4.82,1.73h0l1.07-1.29,5,2.53,2.36,3.71,3.06-.55,1.8-4.76-9.14-8.73-3-8.71-6-1.8,2.72-4.26.8-7.69,4.41-.05.67-2.56-3.38-2,1-4.7-5.61-4.55-5.88-.08c-.32-.92-.64-1.84-.95-2.76l-2.94-1.09.37-5.81L622,271.87l1.35-3.67-1.08-2.58,1.58-1.95,5.36,3.67,2-1.63-2-3,1.94-5.2,3.58-1.85.3-2.42,2.62-.53,1.12,1,2.29-.47.29-1.66,2.84-.61.6,1.31,3.78-.62,3.23,2.35,2.88,2.5,2.4-.37c-.42-.86-.84-1.72-1.25-2.58l6,2.39,1.26-4.08,2.87-1.11,2,1.81,2-1.25-.34-2,3.07-.49,2,2,5.59.63.46-2.29,5.39-1.76-1.66-4.48-8.38-.38-1.63-1.93,4.86-2.63-3.63-2.58.16-2.17,5.26-.27L680,229.76l-4.7.07-3.75-4.19,5.88-3.57,7.88-3.48-.69-2.28,9-5.38-1.89-2.64,1.78-2.64,4.44.22,3.19-1.37,3.88,3,.93,3.64,3.38,1.65,1.56-3.88,2.18,1.47,1.61-2.92,2.34,1.9.07,2.79,3.61,1.75,1.37-12,2.81-1,2.12,4.74,7.44,2,21,12.71.28-1.83L754.09,216l2.46-1.13,4.05,3.06,3.25-1.55-.72-3.36,3.57-.2,4.52,3.46,2.73-.57,3.16,2.08,2.42-.81-.93-3.31,2.87.46.82,1.17,4.73,1.33-1.2-4,3.44-1.92-2.28-2.3-.31-6,2.08-.94-1.4-3.23,3.25-1,2.6-1.79,3.94,3,2.88-1.17-.32-2.61,4.35.14.18-3.13-2.72-3.38-4.38-2.22-3.35-4-2.8-5.49,4.5.64,3.08-1.17,1.54-1.8c1.86,1.5,3.7,3,5.54,4.54l6,.26-2-6.42,5.72-2.61h0l2.63,2.1,2.48-1.17,2.15-1.75-2-2.83.9-3.27-2.9-2.71-3.66-4.86,3.13.06-1.64-2.63,2.35.43h0l1.73-.5-3-3.53-1-2.23-2.2-1.8-.62.15-9-7.63-2.3-2.67-4.21-2.56.63,1.33L796,132.36l-3.1-3.22-3.76-5.61,2.11-.47-1.16-1.42,5.06,1.45,7.09,4.11,8.66,5.12,1,.13L810,130.58l.48-.64,1.17.61L810.26,129l8.93,6.29L817,133.06l-.54-1-3.95-3-5.67-5.12,1.36.83ZM536.32,205.89l-.44,3.12-3.6-1.36-.11,2.44-2.13,0-4.27-7.19-1.71-1.07,2.53-3.89,3.22-.44,1,2.61,3.65.32L538,205Zm13.36-3.64-2.86-.54-.4-3-5-2.17.76-3.2,1.73-.26-2.3-4.1,4.58,1.55,1.12,3.25,3.07,3.79ZM790.14,149l4.78,4.91,3.15,6.2,5.35,7-3.28,3.74-2.48-7.1-7.36-8.83-2.41-5.12-11.37-9.68-1.39-2.35Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M860.94,223.75l3.18,1.95-2.23-11.41,1.92-4.56-5.09-8.53-.15-2.55-3.28-4.52-3.46-1.06-4.51-5.55,2.77.84-.18-3.44-4.53-5.34,1.56-.87-3-4.24-4.5-4.31-3.26-5.91,2.16-.52L835.61,161l-7.6-3.88.47,2.15,2.82,3-.06,1.91,1.58,2.14-3.66-1.91-10.43-10.89h0l-2.35-.43,1.64,2.63-3.13-.06,3.66,4.86,2.9,2.71-.9,3.27,2,2.83-2.15,1.75L818,172.22l-2.62-2.1-5.73,2.6,2,6.42-6-.26c-1.84-1.52-3.68-3-5.54-4.54l-1.54,1.8-3.08,1.17-4.5-.64,2.8,5.49,3.35,4,4.38,2.22,2.72,3.38-.18,3.13-4.35-.14.32,2.61-2.88,1.17-3.94-3-2.6,1.79-3.25,1,1.4,3.23-2.08.94.31,6,2.28,2.3-3.44,1.92,1.2,4,3.31,2.84,6.31,1.67c.94-.73,1.87-1.46,2.78-2.19l9.36,6.06h0l4.65,7.22,4,3,6.87-5.68,11,3.1,7.81,5.54.32-3.15,7.26-2.74-.64-3.8,6.86-3.14Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M988.56,509.1,987,493.3l-3.6-8-.28-.41.26,8.15-1.61,3.7c-.21-1.65-.43-3.29-.67-4.93l-2.48-.68,2,9.72,1.09,2.56.12,3.26,2.93,5.67-.22,3.3,5.24,7.32,1.22-4.09-1.45-8.07Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M980.75,482.73l-.36,2.88-2.25-2.11-2.21-9.37-2.16-5.65-1.35,2.34-2.83-17.44-.68-8.28-3-10.41.24-2.6.9,1.3,2.74,5.34,2.59-3.13,1.25,2.29,2.44,2.77c-.7-2.8-1.42-5.6-2.17-8.38l-3.3-6.9-.07-6q1.62-2.9,3-5.78l-.12-4.09L971,402.1l-3.19-3.54L966,392.74,962.64,388l-1.37,1.14.41,6.05-2.12-1.63.19,8.78-1.87-.48-2-11.17q-.93-2.42-1.87-4.83l-2.43,3.3-1.35-6.49-2.75,1.69,1.55,8c-.58.76-1.16,1.51-1.76,2.26l-2-1.11q2.07,5.28,4,10.59c-.44.54-.89,1.08-1.34,1.61l9,10.57,3.31,14.8,2.67,4.09,5,14.66-.17,9.68.83,5.79.5,8L971.81,484l.86-3,3.35,3.57,2.36,5.82,0,.08.16.72,2.48.68c.24,1.64.46,3.28.67,4.93l1.61-3.7-.26-8.15Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M984.72,431.58l-.88-10.53,0-1.38L981,407.84l-2.25-6.74L976,394.76l-.71-2.49-2.74-4.61-.87.49-4.63-5.34-1.66-3.47-3.18-3.17-1.81-5.44-2.07-10.89-1.23-2c.27-.71.53-1.43.78-2.14l-1-2.45-.11-2-2.75.65-2.33-6.06c-.29.75-.59,1.51-.91,2.27l-2.95-2.34,1.35,6.31.1,4.21-1.78-1,.6,3.22h0l-2.21-.84,1,4.89,2.83,2.91.65-1.15,1.64,6.25,2.6-.53-.42-4,3.81,5,.74,3.67-.87,1.46,1.11,4.67,3.79.14,7.37,11.07,2.32,1.35.73,3.39,1.45,1,1.35,4.35,2.48,9.4,2.73,9.18-.39,10c.43,1.68.84,3.37,1.25,5.06l-.72,1.71-.16,8.65.95.79,2.18,9.74,1.09-11.32-1.36-8.78Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M981.24,420.75l-2.73-9.18-2.48-9.4-.18,4.1-1-1.28,0,3.33,1.57,5.53-2.87-.21q-1.35,2.88-3,5.78l.06,6,3.3,6.9c.75,2.78,1.47,5.58,2.17,8.38l1.44,1.71.65-3.66,1.47,6.21,1.59,1.27.16-8.65.72-1.71c-.41-1.69-.82-3.38-1.25-5.06Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M966,392.74l1.85,5.82L971,402.1l2.36,7.44.13,4.1,2.87.21-1.57-5.53,0-3.33,1,1.28.18-4.1-1.35-4.35-1.45-1-.73-3.39-2.32-1.35L962.81,381l-3.79-.14-1.11-4.67.87-1.46-.74-3.67-3.81-5,.42,4-2.6.53-1.64-6.25-.65,1.15-2.83-2.91-1.3.21.7,2.82,2.35,3.1h0l1.94,5.15c-.38.62-.77,1.23-1.17,1.85L948,373.2l.63,10.44,1.58-1,1.35,6.49,2.43-3.3q.94,2.41,1.87,4.83l2,11.17,1.87.48-.19-8.78,2.12,1.63-.41-6.05,1.37-1.14Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M954,421.46l6.71,17.65.42-2.42,4.52,15.91,1.18.42,1,6.49.17-9.68-5-14.66-2.67-4.09L957,416.28l-9-10.57c.45-.53.9-1.07,1.34-1.61q-1.93-5.31-4-10.59l2,1.11c.6-.75,1.18-1.5,1.76-2.26l-1.55-8,1.17-.71L948,373.2l-2.53-4.36.25,6.58-2.35-3.15-2.22.82-1.46-4.49.13-2.17L937.2,366l-2-2.93L934,359.85l-1.62,1.76.11,4.16L929.32,360l-.13-2.64L927.75,354l-.52-6.33L925,341.86l-3.35-5.61-2.07-.31-2.2-3-2.23-.4.89,3.5,1.7,6.73-1.59,9.28,3.38,6.89-.46,4.37,1.65,1.25,3,10.68-3.52-.61L925.79,390,924,391.69l2.55,6.18c-.66.61-1.33,1.21-2,1.81v.15h0l6.62,5.12,2.33-.54,2.45,2.94,1.3,4.05,5.09,7.87,1.48,8.55,1.3,4.25,4.12-4.07,1.18-9-1.58-5.69,4.39,3.95Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M768.9,433.17l.5,5.79,11.28-3.29,3-3.25,3.89,1.2,6.18-4.23,2.42-2.57,2.54,3.91,2.26-.62,5.87,8.13,4.31-.52,1.56,1h0l.63-6.05,13.31-4.7-5.51-8.47-3.39,1.33-2.89-8.74-4.73,1.72-.87-3.73,2-8.9,3.42,3.2,4.62-5.25-.26-7,3.83-2.74-1.75-13.21,1.74-7.1-2.9-4.14,2.06-3.37-.52-4.67-3.78-2-3,1.34-5.8-3.35L803,342.08l.81-5.06q2.48-1.08,4.91-2.19l.89-4.24h0l3.45-2.67-5.4-3-3.21-1.12-3.34,1.52-1.8,3.39-7.7,3-1.91,6.56,4.16,4.66-.8,6.08c.76,1.62,1.53,3.23,2.28,4.86l-6.17-.08,1.34,5,3.42,1.27,0,3.62-3.32,1.27,3.27,8.26-.56,3.71-5.24.13-.44,4.43-5.4,3.57,1.47,9.63-7.41,6.13-.81,2.69-5.69-.62-4.62,3.21L754,404.22l7.13,7.93,8.33,3.07c.83,2.55,1.66,5.12,2.48,7.68,1.07-.32,2.14-.65,3.2-1h0l1.05,5.54-5,1.53Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M799.3,328.69l1.8-3.39-1.33-4h0l-2.64-1.46-5.68,2L791,325.2l-4.34,4.5c-1.21-2.34-2.42-4.67-3.66-7l-1.84-.6-2-4-2.22,1.38-2.11,3.7c.79,1.52,1.57,3,2.34,4.55l-2.19,4.83-2.48-2-2.58,5.52-3-2.81-10.38,1.9L757,338c-1.34.45-2.68.9-4,1.34l1.65,9-5.31,4.15,1.21,4.2-3.1,4.52-3.57-4.66-3.21.65-2.15.44L741,367.74l-1.2,3.39,1.32,3.56,2.93,1.18-1.13,3.74,6.81,12.07,4.56-.51,2.19,4.25-2.48,8.8,11.19,1.86,4.62-3.21,5.69.62.81-2.69,7.41-6.13L782.26,385l5.4-3.57.44-4.43,5.24-.13.56-3.71-3.27-8.26,3.32-1.27,0-3.62-3.42-1.27h0l-1.34-5,6.17.08c-.75-1.63-1.52-3.24-2.28-4.86l.8-6.08-4.16-4.66,1.91-6.56Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M776.2,427.46l-1.05-5.54h0c-1.06.34-2.13.67-3.2,1-.82-2.56-1.65-5.13-2.48-7.68l-8.33-3.07L754,404.22l2.48-8.8-2.19-4.25-4.56.51-6.81-12.07,1.13-3.74-2.93-1.18-1.32-3.56,1.19-3.4-2.5-10.06h.07l-4-8.35-4.18.46-9.47-5.43-4,3.27-6.85-2.3-1.64-3.09-10,3.61L697,352.44l-4.31.93,2.36,6.22-6.35-.62-7.11,3.9L664,357.94l-2.53-5.78h-5.23l-1.86-5.92-2.8-2.17-5.5,6.61-2.63,4-6.75-.8-3.51-6.58-3.55,4.16,3.64,6.48-.5,2.7,5.36,2.78,2.63,4.72,4,7.18,6,0-.58,3.16,2,3-3.93,4.76.59,6.5,4.54,1.53,1.16,5.94,3.9-.66,4,2.93,2.94-.47,3.92,5,.18,5.38,8.12,7.9h0l8.59-3,7.54,7.52,4.45,7.46,8.61,2,7.37,3.85,2.37,1.72,6.33.25,3.38-3.21,1.53-.21,4.56-4.79,3.09-.19,2.69,3.28,3.37,6.66,11.68.19L762.4,439l7,0-.5-5.79,2.3-4.18Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M760.52,334.28q-1.57-3.33-3.18-6.63l-4.72,1.13-7.72-2.07-3,2-11.43-5.46-4.77-7.44-3.61-1.34-3.38,2.94-4.82-1.31.69-3.15-3.47-4.24-3.78.93-4.48-2.32-2.37,1.87,1,3.67-3.54,3.35,3.63,5.83-7,.63-2.85,1.45-5.85-5.44-9.16-5.19-6.6,7.15L673.3,325l1-4.93,5.87-.47,7.57,7.13-10.45,3.39,1.09,5.62,5,.87.23,4.11,5,2.61,4,10.08,4.31-.93,1.46-6.61,10-3.61,1.64,3.09,6.85,2.3,4-3.27,9.47,5.43,4.18-.46,4,8.35,2.08-.42,3.21-.65,3.57,4.66,3.1-4.52-1.21-4.2,5.31-4.15-1.65-9c1.36-.44,2.7-.89,4-1.34l-.5-2.78,4.11-.73Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M779.59,280.82l5.48-3.56,7.65-4h0l1.58,1.36,5.58.33L796.62,271l1.34-2.92L790.3,260l-5.81-1.79,4.11-7.74,5.24,2.31-2.24-5.12L789,246.22,783.7,236l6.84-1.21.2-3.4q-2.88-3.32-5.81-6.58c.74-.49,1.48-1,2.2-1.49l-1.64-3.81,1.53-2.83-4.73-1.33-.82-1.17-2.87-.46.93,3.31-2.42.81L774,215.71l-2.73.57-4.52-3.46-3.57.2.72,3.36-3.25,1.55-4.05-3.06L754.09,216l1.61,2.36-.28,1.83-21-12.71-7.44-2-2.12-4.74-2.81,1-1.37,12-3.61-1.75-.07-2.79-2.34-1.9-1.61,2.92-2.18-1.47-1.56,3.89L706,211.1l-.93-3.64-3.88-3L698,205.87l-4.44-.22-1.78,2.64,1.89,2.64-9,5.38.69,2.28-7.88,3.48-5.88,3.57,3.75,4.19,4.7-.07,1.14,3.13-5.26.27-.16,2.17,3.63,2.58-4.86,2.63,1.63,1.93,8.38.38,1.66,4.48-5.39,1.76-.46,2.29-5.59-.63-2-2-3.07.49.34,2-2,1.25-2-1.81-2.87,1.11-1.26,4.08-6-2.39c.41.86.83,1.72,1.25,2.58l-2.4.37L651.9,254l-3.24-2.36-3.77.62h0l-.6-1.31-2.84.61-.29,1.66-2.29.47-1.12-1-2.62.53-.3,2.42-3.58,1.85-1.94,5.2,2,3-2,1.63-5.36-3.67-1.58,1.95,1.08,2.58L622,271.87l2.49,1.54-.37,5.81,2.94,1.09c.31.92.63,1.84.95,2.76l5.88.08,5.61,4.55-1,4.7,3.38,2,.71-2.85,9-6.49,8.93.31,2.29,9.34-7.41,5.37,1.56,3.32-2.68,2,6.51,7.78,9.69,2.17-.36,5.27,6.6-7.15,9.16,5.19,5.85,5.44,2.85-1.45q-5.67-14.11-11.71-27.8l9.61-7.07,1-8,7.49.93-1.84,4.45,6.05,6.17,11.86,7.25,9.9-3.07,3.23-4.24,8.24,5q1.75,3.25,3.48,6.54l2.36-.81,4,6,5.5-1.95,4.3,2.89-.33-5.48,4.52-11.71-.55-4.34h10.74l-1.72-3.76,1.44-2.91Zm-14.35-10.48-8.07-3.76v-12l14.2-4.15-.2-3.07,3.15-.91,2.84,6.67h0l-14.65,6.07-.73,4.58Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M799.89,274.94l-5.58-.33-1.58-1.36h0l-7.66,4-5.48,3.56h0l-7.46-.1-1.44,2.91,1.72,3.76H761.67l.55,4.34,3.76,2.09-1.88,4.61,4.32,1.06,1.53-3,9.42,2.43-3.81,7.93h0l-3.35-1-1.52,3.49-3.67.92,1.07,4.76,6.95-1.18,3.46-1.94,4,1.64,4.3-4.52.92-1-1.78-3.95.69-4.94,3-2.54,2.56,2.76,2.55-1.79-1.71-5.84q2.87-1.38,5.63-2.79l-1.25-4.79,4.11-7.35Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M770.68,309.33l1.52-3.49,3.35,1h0l3.82-7.93L770,296.5l-1.53,3-4.32-1.06,1.88-4.61-3.76-2.09-4.52,11.71.33,5.48-4.3-2.89-5.5,1.95-4-6-2.36.81q-1.73-3.29-3.48-6.54l-8.24-5L727,295.51l-9.9,3.07-11.86-7.25-.83,5.71-2.46-.12-4.1-6.55-.3,5.69-2.93.58-2.53-6.08.41-2.79-9.61,7.07q6,13.68,11.71,27.8l7-.63-3.63-5.83,3.54-3.35-1-3.67,2.37-1.87,4.48,2.32,3.78-.93,3.47,4.24-.69,3.15,4.82,1.31,3.38-2.94,3.61,1.34,4.77,7.44,11.43,5.46,3-2h0l7.72,2.07,4.72-1.13q1.6,3.3,3.18,6.63l.11.21,6.27-1.17-.12-7.49-3.46-3.63-4.87-1,.25-3.39,4-1.06-.59-4.23,1.62-1.54-1.35-3.27,1.84-.37,2.41-3.93,2.11,1.17-.19,2.62Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M779.12,318.13l2,4,1.84.6c1.24,2.33,2.45,4.66,3.66,7l4.34-4.5.51-3.28,5.68-2,2.64,1.46,1.21-2.61-6.24-7-2.79.46-1,1.24L786.75,309h0l-4.3,4.52-4-1.64L775,313.83,768.08,315,767,310.25l3.67-.92-2.13-2.16.19-2.62-2.11-1.17-2.41,3.93-1.84.37,1.35,3.27-1.62,1.54.59,4.23-4,1.06-.25,3.39,4.87,1,3.46,3.63.12,7.49,3,2.81,2.58-5.52,2.48,2,2.19-4.83c-.77-1.52-1.55-3-2.34-4.55l2.11-3.7Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M958.54,344.63l1.41,4.24,2.26,4.88-.39-3.84-2.79-7,.29-3.48-.93-6.46-1.76-4.3,1,.4-2.31-5.45,1.11.87-1.32-6,.58.18-.85-3.36-2.23-5.36-3.12-8.37-.77-.57-.72-1.95.09-1.15-1.4-2.75-.7-2-1.48-2.66-.34-1.34-2.54-4.74-.64-.87-.92-2.05-.73-.79-.9-1.75-.36-1.25-5.21-9.36-2.78-5.1,1.6,2.47-1.4-2.64-1-1.39-1-1.77-.72-.79-.85-1.46.22-.15L924.55,254l-2.18-2.61,1.07,2.47-1.53-2.09-1.75-3.29-1-2.25-1.4-1.67-.4.28-1.74-1.76.05-1.59L914,239.08l-2.09-1.42-3-4.08-4.32-4.28-1.37.12L901.26,227l-6.38-10.13L893,214.72,889.71,209l-.08-.71-3.49-4.18L887.3,207,886,207l4.64,6.54.52,1.44-1.87-1.36-1.63-2.41-1.65-1.1,1,2.21-2.61-1.42-3.62-4.79-.81-3-4.36-5.49-1.9-3.29-4.14-5.27-.82-1.86,1.93,1.17,3.64,4.36,1.46,2.29,1.56,1.61h.32l.26,0,1.94,2.89,1.59,1.71-1.54-2.62-6.52-8.78-.39-1.43-1.63-1.93-5.93-7.61-4.52-4.75-2.12-2.52,2.85,2.4-2.16-3-3.12-2.59h0l-3.43-4.13-5-4.71.31-.19-2.68-2.65-5.64-5.19h0l-4.67-3.74L831.4,144l-.21-.85-15.35-12.46-2.08-1.84-2.23-1.74-1.14-.69-2.24-1.74-1.36-.83,5.67,5.12,3.95,3,.54,1,2.24,2.22L810.26,129l1.36,1.56-1.17-.61-.48.64,1.89,1.87-1-.13-8.66-5.12-7.09-4.11-5.06-1.45,1.16,1.42-2.11.47,3.76,5.61,3.1,3.22,2.84,1.69-.63-1.33,4.21,2.56,2.3,2.67,9,7.63.62-.15,2.2,1.8,1,2.23,3,3.53-1.73.5,10.42,10.89,3.66,1.91-1.58-2.14.06-1.91-2.82-3-.47-2.15,7.6,3.88,2.71,2.77-2.16.52,3.26,5.91,4.5,4.31,3,4.24-1.56.87,4.53,5.34.18,3.44-2.77-.84,4.51,5.55,3.46,1.06,3.28,4.52.15,2.56,5.09,8.52-1.92,4.56,2.23,11.41-3.18-1.95-4,1.63L850,228.52l.64,3.8-7.26,2.74-.32,3.15-7.81-5.54-11-3.1-6.87,5.68-4-3L808.78,225h0L799.42,219c-.91.73-1.84,1.46-2.78,2.19l-6.31-1.67L787,216.63l-1.53,2.83,1.64,3.81c-.72.5-1.46,1-2.2,1.49q2.93,3.27,5.81,6.58l-.2,3.4L783.7,236,789,246.22l2.61,1.39,2.24,5.12-5.24-2.31-4.11,7.74L790.3,260l7.66,8.14L796.62,271l4.81,5.79-4.11,7.35,1.25,4.79q-2.76,1.41-5.63,2.79l1.71,5.84-2.55,1.79-2.56-2.76-3,2.54-.69,4.94,1.78,3.95-.92,1h0l4.19,4.37,1-1.23,2.79-.47,6.24,7.05-1.21,2.61h0l1.33,4,3.34-1.52,3.21,1.12,5.4,3,5.39.67,2.27-1.14,4.2,5.78,5.05.93-.52,3.08,1.78,2.58,5.17,3,2.35,3.39-.9,2.23-3,1.56,5.48,7.61,3-.77,2.1,2.69,8.77,2.45,1.66.45.15-3.73,3.32-1.14c.48,1,.95,1.91,1.42,2.87l5,.9,3.11,2.63,1.94-2.08,6.33,3.19,6.09.68-.12-2.81h0l4.13,1.46,2-2.2,2.59-4.08c.32.91.76,2.12,1.08,3l1.34-3L894,354c.74-.59,1.46-1.17,2.18-1.77L897.6,355l1.72-4.3,3.1,2.72,1.43-4.87-1.07-5.21,1.73-2.09.51-5.62,2.68.15v-7.14l3.42,2.69,1,3.6,4,1.11-.89-3.5,2.23.4,2.2,3,2.07.31,3.35,5.61,2.21,5.77.52,6.33,1.44,3.36.13,2.64,3.16,5.81-.11-4.16,1.62-1.76,1.21,3.21,2,2.93,2.63.44-.13,2.17,1.46,4.49,2.22-.82,2.34,3.14-.24-6.57,4,6.89c.4-.62.79-1.23,1.17-1.85l-1.94-5.15h0l-2.35-3.1-.7-2.82,1.3-.21-1-4.89,2.21.83h0l-.6-3.22,1.78,1-.1-4.21-1.35-6.31,2.95,2.34c.32-.76.62-1.52.91-2.27l2.33,6.06,2.75-.65-.2-2.86,1.63-.75Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="749.53 82.54 751.66 83.39 747.14 80.6 746.99 80.92 749.53 82.54" style="fill:#d9dadb"></polygon><path d="M903.51,221.28c-.27-.48-.55-.95-.83-1.42l-1.51-2.11-1-1.2,1.54,2.09-.1,0Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="911.93 240.69 911.92 240.69 911.93 240.69 911.93 240.69" style="fill:#d9dadb"></polygon><polygon points="909.34 236.82 910.54 238.93 911.92 240.69 910.82 238.76 909.34 236.82" style="fill:#d9dadb"></polygon><path d="M995.56,550.26c.3-.88.58-1.76.85-2.64l.41-6-.79.86Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="44.64 321.5 44.65 321.48 44.64 321.5 44.64 321.5" style="fill:#d9dadb"></polygon><polygon points="44.65 321.48 45.65 319.08 46.72 316.28 45.78 318.58 45.64 318.93 44.65 321.48" style="fill:#d9dadb"></polygon><polygon points="27.57 401.45 28.61 396.85 28.48 394.69 27.37 399.25 27.57 401.45" style="fill:#d9dadb"></polygon><path d="M36.21,424.7c.11.51.22,1,.34,1.53l1.15-3.81.64-4.27v-2l-1.28,6.06Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="22.56 421.79 23.27 417.74 22.41 419.52 21.85 422.97 22.56 421.79" style="fill:#d9dadb"></polygon><path d="M41.4,404l.83-3.44c-.11-.58-.21-1.16-.31-1.74l-.82,3.57C41.19,402.91,41.29,403.45,41.4,404Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M43.2,393l.91-3.41c-.08-.58-.16-1.16-.22-1.74l-.9,3.54C43.05,392,43.12,392.49,43.2,393Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M33.87,408.88l-.6,2.84c-.19.89-.37,1.79-.55,2.68Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M32.7,414.5l0-.1v.1Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="583.91 980.16 583.66 980.2 580.69 980.71 580.39 980.76 583.75 980.19 583.75 980.19 583.91 980.16" style="fill:#d9dadb"></polygon><polygon points="587.99 979.42 591.82 978.7 591.08 978.84 587.61 979.49 587.99 979.42" style="fill:#d9dadb"></polygon><path d="M618.9,987.48l6-1.36C623,986.52,621,987,618.9,987.48Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M613,988.79l-3.34.68-2.28.49.12,0c3.42-.61,7.52-1.56,11.41-2.46l-1,.23Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M553.83,997.66l.27,0-3.31.28-1.11.1Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="142.62 503.05 142.62 503.05 142.62 503.05 142.62 503.05" style="fill:#ff7b00"></polygon><polygon points="142.91 496.21 141.44 498.26 142.62 503.05 145.06 500.25 142.91 496.21" style="fill:#ff7b00"></polygon><polygon points="150.31 494.94 150.82 490.44 148.03 489.74 147.55 494.08 150.31 494.94" style="fill:#ff7b00"></polygon><polygon points="139.9 478.19 135.89 479.92 139.66 483.76 139.9 478.19" style="fill:#ff7b00"></polygon><polygon points="349.97 342.76 354.73 338.99 351.23 335.76 345.35 338.32 349.97 342.76" style="fill:#d9dadb"></polygon><polygon points="211.47 412 215.64 410.62 214.03 406.08 211.18 407.83 211.47 412" style="fill:#d9dadb"></polygon><polygon points="212.87 402.4 206.08 402.56 207.42 407.99 212.87 402.4" style="fill:#d9dadb"></polygon><path d="M235.65,421.2l2.54-5-.4-2.13-4.92,6.38Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M203.58,327.57l4.78,2.32.89-3.34-3.29-1.4-2.38,2.42Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="187.4 307.31 189.53 305.68 189.08 302.56 186.06 304.65 187.4 307.31" style="fill:#d9dadb"></polygon><path d="M744.18,934l4.3-3.08-6.16,1.73c-1.23,1-2.48,2.09-3.73,3.12Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="735.36 806.32 739.62 802.74 736.43 800.16 732.46 803.69 735.36 806.32" style="fill:#ff7b00"></polygon><polygon points="748.19 798.54 755.1 792.09 751.42 790.96 747.06 796.5 748.19 798.54" style="fill:#ff7b00"></polygon><polygon points="965.97 531.48 964 529.36 963.84 533.2 965.8 538.08 965.8 538.08 965.97 531.48" style="fill:#d9dadb"></polygon><polygon points="967.99 548.9 969.14 553.44 970 548.91 968.99 544.68 967.99 548.9" style="fill:#d9dadb"></polygon><polygon points="950.05 498.28 950.05 498.28 950.05 498.28 950.05 498.28" style="fill:#d9dadb"></polygon><polygon points="947.57 491.1 948.01 496.07 950.05 498.28 949.7 492.94 947.57 491.1" style="fill:#d9dadb"></polygon><polygon points="938.75 470.61 940.05 471.68 940.01 467.62 938.63 467.01 938.75 470.61" style="fill:#d9dadb"></polygon><polygon points="959.01 525.79 961.89 528.12 961.57 524.31 959.07 522.29 959.01 525.79" style="fill:#d9dadb"></polygon><polygon points="982.13 475.49 982.91 478.82 982.91 473.93 982.14 470.87 982.13 475.49" style="fill:#d9dadb"></polygon><polygon points="858.68 550.73 856.61 550.13 855.91 554.51 857.97 555.13 857.97 555.13 858.68 550.73" style="fill:#d9dadb"></polygon><polygon points="861.95 561.91 860.08 560.51 859.38 565.62 861.68 566.47 861.68 566.47 861.95 561.91" style="fill:#d9dadb"></polygon><polygon points="731.4 926.82 729.77 927.34 727.66 929.09 731.4 926.82" style="fill:#d9dadb"></polygon><polygon points="630.39 714.26 626.3 716.74 628.83 719.89 630.39 714.26" style="fill:#ff7b00"></polygon><polygon points="655.24 758.07 658.27 756.02 656.52 751.92 654.72 754.03 655.24 758.07" style="fill:#ff7b00"></polygon><polygon points="748.35 687.16 750.41 685.4 749.57 682.84 746.81 685.26 748.35 687.16" style="fill:#ff7b00"></polygon><polygon points="664.04 761.04 666.35 758.65 664.8 756.39 662.25 758.6 664.04 761.04" style="fill:#ff7b00"></polygon><polygon points="677.22 735.36 681.51 736.29 681.42 732.75 677.22 735.36 677.22 735.36" style="fill:#ff7b00"></polygon></g><circle cx="511.9" cy="511.98" r="488.79" transform="translate(-223.99 499.94) rotate(-45)" style="fill:none"></circle></g></g></svg></span> </span> <a class="elementor-accordion-title" tabindex="0">Africa</a> </div> <div id="elementor-tab-content-5461" class="elementor-tab-content elementor-clearfix" data-tab="1" role="region" aria-labelledby="elementor-tab-title-5461"><p> <div data-elementor-type="page" data-elementor-id="20487" class="elementor elementor-20487" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-64e206ef local-chapter_section elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="64e206ef" data-element_type="section"> <div class="elementor-container elementor-column-gap-extended"> <div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-5d4fb41c" data-id="5d4fb41c" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-5f88a08 elementor-widget elementor-widget-text-editor" data-id="5f88a08" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong><span data-sheets-value="{"1":2,"2":"Angolan Geophysical Association (ASGA)"}" data-sheets-userformat="{"2":14461,"3":{"1":0,"3":1},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"9":0,"14":{"1":3,"3":1},"15":"Arial","16":10}">Angolan Geophysical Association (ASGA)</span><br /></strong>Angola</p> </div> </div> <div class="elementor-element elementor-element-39d8aca7 elementor-widget elementor-widget-text-editor" data-id="39d8aca7" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong><span data-sheets-value="{"1":2,"2":"Moroccan Association of Geosciences (MAG)"}" data-sheets-userformat="{"2":14461,"3":{"1":0,"3":1},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"9":0,"14":{"1":3,"3":1},"15":"Arial","16":10}">Moroccan Association of Geosciences (MAG)</span></strong><br />Morroco</p> </div> </div> <div class="elementor-element elementor-element-63ad8486 e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="63ad8486" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://sites.google.com/site/assomarocgeosciences/home" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-4a50b0c5" data-id="4a50b0c5" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-2167b54c elementor-widget elementor-widget-text-editor" data-id="2167b54c" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong>Nigerian Association of Petroleum Explorationists (NAPE)</strong><br />Nigeria</p> </div> </div> <div class="elementor-element elementor-element-74f0c25f e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="74f0c25f" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://nape.org.ng/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-76e4a1a5 elementor-widget elementor-widget-text-editor" data-id="76e4a1a5" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong><span data-sheets-value="{"1":2,"2":"Nigerian Mining and Geoscience Society (NMGS)"}" data-sheets-userformat="{"2":14461,"3":{"1":0,"3":1},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"9":0,"14":{"1":3,"3":1},"15":"Arial","16":10}">Nigerian Mining and Geoscience Society (NMGS)</span></strong><br />Nigeria</p> </div> </div> <div class="elementor-element elementor-element-2b257704 e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="2b257704" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://www.nmgs.org.ng/#/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-2953cedf" data-id="2953cedf" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-2d3dd23c elementor-widget elementor-widget-text-editor" data-id="2d3dd23c" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong>Oil and Gas Trainers’ Association of Nigeria (OGTAN)</strong></p><p>Nigeria</p> </div> </div> <div class="elementor-element elementor-element-2f65233e e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="2f65233e" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://www.iaeg.info/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-662612b2 elementor-widget elementor-widget-text-editor" data-id="662612b2" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><b>South African Geophysical Association (SAGA)</b><br />South Africa</p> </div> </div> <div class="elementor-element elementor-element-4855a801 e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="4855a801" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://sagaonline.co.za/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-7216db5c" data-id="7216db5c" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-3025ca28 elementor-widget elementor-widget-text-editor" data-id="3025ca28" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong>Sudanese Association of Petroleum Geoscientists (SAPEG)</strong><br />Sudan</p> </div> </div> </div> </div> </div> </section> </div> </p></div> </div> </div> </div> </div> <div class="elementor-element elementor-element-740cec2 student_map_accordion elementor-widget elementor-widget-accordion" data-id="740cec2" data-element_type="widget" data-widget_type="accordion.default"> <div class="elementor-widget-container"> <div class="elementor-accordion"> <div class="elementor-accordion-item"> <div id="elementor-tab-title-1211" class="elementor-tab-title" data-tab="1" role="button" aria-controls="elementor-tab-content-1211" aria-expanded="false"> <span class="elementor-accordion-icon elementor-accordion-icon-left" aria-hidden="true"> <span class="elementor-accordion-icon-closed"><i class="fas fa-plus"></i></span> <span class="elementor-accordion-icon-opened"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 1000 1000"><defs><radialGradient id="Sfumatura_senza_nome_2" cx="608.8" cy="391.07" r="647.11" gradientUnits="userSpaceOnUse"><stop offset="0.41" stop-color="#fff"></stop><stop offset="0.51" stop-color="#f9f9f9"></stop><stop offset="0.64" stop-color="#e9e9e9"></stop><stop offset="0.79" stop-color="#cecece"></stop><stop offset="0.86" stop-color="#bfbfbf"></stop><stop offset="0.99" stop-color="#e6e6e6"></stop></radialGradient></defs><g style="isolation:isolate"><g id="Layer_1" data-name="Layer 1"><path d="M511.9,23.19c270,0,488.79,218.84,488.79,488.79S781.85,1000.77,511.9,1000.77,23.11,781.93,23.11,512,242,23.19,511.9,23.19m0-11.21A500.13,500.13,0,0,0,317.28,972.69,500.13,500.13,0,0,0,706.53,51.28,496.84,496.84,0,0,0,511.9,12Z" transform="translate(-11.9 -11.98)" style="fill:#fff"></path><path d="M511.89,1002.54c-131,0-254.21-51-346.86-143.68S21.35,643,21.35,512,72.37,257.76,165,165.11,380.87,21.43,511.89,21.43s254.23,51,346.88,143.68S1002.45,381,1002.45,512s-51,254.22-143.68,346.88S642.93,1002.54,511.89,1002.54Z" transform="translate(-11.9 -11.98)" style="fill:url(#Sfumatura_senza_nome_2)"></path><path d="M511.9,23.19c270,0,488.78,218.84,488.78,488.79S781.85,1000.77,511.9,1000.77,23.11,781.93,23.11,512,242,23.19,511.9,23.19m0-3.53a492.45,492.45,0,0,0-191.63,946A492.45,492.45,0,0,0,703.53,58.35,489.29,489.29,0,0,0,511.9,19.66Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><g style="mix-blend-mode:multiply"><path d="M445.09,116.49a219.41,219.41,0,0,1-27.65-5.87c-.45.38-.9.76-1.34,1.15a223.8,223.8,0,0,0,28.11,6Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M394.92,102.1a62,62,0,0,1-15-10.1l-1.95.85a63.17,63.17,0,0,0,15.23,10.26Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M477.81,120.87c.11-.44.23-.87.34-1.3-2.76-.12-5.53-.26-8.29-.44-8.51-.56-16.61-1.43-24.25-2.56l-.87,1.25c7.76,1.15,16,2,24.64,2.6Q473.6,120.69,477.81,120.87Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M521.59,25.86c-11.45-.46-22.85-.33-34,.3l.19.23c10.93-.63,22.14-.75,33.4-.3Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M487.06,26.2c-11.1.65-21.91,1.82-32.19,3.45l.71.17c10.12-1.6,20.75-2.75,31.67-3.4Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M400.68,44.74l1.59-.07a168.3,168.3,0,0,1,23.85-8.51l-1.2-.07A171.67,171.67,0,0,0,400.68,44.74Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M512.35,120.57l-.21-1.29c-10.93.63-22.14.75-33.41.31l-.33,1.3C489.85,121.34,501.24,121.22,512.35,120.57Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M382.25,55.61l1.89-.25A86.23,86.23,0,0,1,401.9,44.83l-1.59.08A87.62,87.62,0,0,0,382.25,55.61Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M455.06,29.9l-.72-.17A264.61,264.61,0,0,0,425.39,36l1.18.06A262,262,0,0,1,455.06,29.9Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M379.74,91.82c-3.75-3.62-6.24-7.46-7.33-11.43q-1,.31-2.07.66c1.11,4,3.64,7.93,7.44,11.61Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M370.28,80.84l2.08-.66a17.94,17.94,0,0,1,1.22-12.26l-2.05.45A18.19,18.19,0,0,0,370.28,80.84Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M373.37,65.05a23.62,23.62,0,0,0-1.74,3.11l2.05-.46a25.47,25.47,0,0,1,1.72-3,39.55,39.55,0,0,1,8.49-9.09l-1.88.25A40.25,40.25,0,0,0,373.37,65.05Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M417,110.49a129.72,129.72,0,0,1-21.77-8.24l-1.7,1a132.88,132.88,0,0,0,22.12,8.38Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M599.27,102l-1.61-1a167.36,167.36,0,0,1-23.84,8.51l1.22,1.14A171.07,171.07,0,0,0,599.27,102Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M617.68,91.1l-1.91-.82A86.14,86.14,0,0,1,598,100.81l1.62,1A86.74,86.74,0,0,0,617.68,91.1Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M545.11,117.08l-.75-1.24c-10.11,1.6-20.74,2.76-31.66,3.41.08.43.15.86.23,1.29C524,119.88,534.83,118.71,545.11,117.08Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M629.6,65.87l-2.1-.41a17.93,17.93,0,0,1-1.2,12.26l2.08.62A18.18,18.18,0,0,0,629.6,65.87Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M530,26.55c8.47.56,16.55,1.42,24.16,2.54l.9-.18c-7.74-1.14-15.94-2-24.56-2.59Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M626.52,81.7a24.88,24.88,0,0,0,1.76-3.15l-2.08-.61A26,26,0,0,1,624.47,81a39.47,39.47,0,0,1-8.46,9l1.92.82A40.27,40.27,0,0,0,626.52,81.7Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M574.58,110.76l-1.22-1.14a259.18,259.18,0,0,1-28.47,6.14l.75,1.24A266.77,266.77,0,0,0,574.58,110.76Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M522.18,25.88l-.37.23,8.2.44.5-.23Q526.34,26.05,522.18,25.88Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M629.54,65.67c-1.11-4-3.65-7.94-7.46-11.62l-2-.22c3.75,3.62,6.24,7.45,7.34,11.43Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M604.89,43.55a62.4,62.4,0,0,1,15,10.09l2,.22a63.31,63.31,0,0,0-15.25-10.25Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M582.79,35.16a131.06,131.06,0,0,1,21.78,8.24l1.73.05a132.29,132.29,0,0,0-22.14-8.37Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M554.69,29.17A220.14,220.14,0,0,1,582.36,35l1.37-.09a224.6,224.6,0,0,0-28.13-6Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M724.31,152.92l-1.68-1.25c-9.11,7.27-20.57,14-33.94,20.14l1.43,1.4C703.6,167.05,715.14,160.24,724.31,152.92Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M679.08,52.6A218,218,0,0,1,701.22,62l1.53.58a217.13,217.13,0,0,0-20.93-9Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M746.92,105.1l-1.86-.9a34.2,34.2,0,0,1-2.3,23.45c.62.35,1.23.71,1.84,1.07A34.46,34.46,0,0,0,746.92,105.1Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M741.08,135.09a48.88,48.88,0,0,0,3.33-6l-1.84-1.07a48.63,48.63,0,0,1-3.3,5.91,76,76,0,0,1-16.17,17.32l1.69,1.25A76.62,76.62,0,0,0,741.08,135.09Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M525.75,208.72c21-1.25,41.52-3.47,61-6.56l-.66-1.61c-19.34,3.06-39.67,5.27-60.55,6.5Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M689.43,173.53,688,172.12a321.39,321.39,0,0,1-45.59,16.29l1.09,1.52A323.63,323.63,0,0,0,689.43,173.53Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M587.09,200.39c.22.53.44,1.07.67,1.61a498.48,498.48,0,0,0,54.86-11.82l-1.08-1.53A499.46,499.46,0,0,1,587.09,200.39Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M701.83,62.31c11.79,5.91,21.44,12.39,28.7,19.29l1.75.73c-7.31-7-17-13.49-28.91-19.44Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M746.81,104.7c-2.12-7.65-6.92-15-14.15-22L730.91,82c7.17,6.92,12,14.25,14,21.85Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M271.28,154.6c-7.16-6.92-11.92-14.25-14-21.85l-1.8,1.1c2.1,7.66,6.89,15.05,14.11,22Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M255.36,133.46l1.81-1.11a34.27,34.27,0,0,1,2.34-23.45l-1.79.93A34.56,34.56,0,0,0,255.36,133.46Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M342.55,190.32a249.92,249.92,0,0,1-41.63-15.76L299.45,176a251.62,251.62,0,0,0,41.93,15.88Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M460.58,207.72l-.27,1.67c21.69.85,43.3.61,64.36-.61l-.21-1.66C503.56,208.32,482.12,208.56,460.58,207.72Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M396.25,201.79a420.49,420.49,0,0,1-52.88-11.24c-.39.52-.78,1-1.16,1.55a426.14,426.14,0,0,0,53.28,11.32C395.74,202.87,396,202.33,396.25,201.79Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M300.31,174.26c-11.77-5.91-21.41-12.39-28.66-19.3l-1.7,1.28c7.3,6.95,17,13.49,28.88,19.44Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M278.06,85.64l1.63-.75c9.12-7.27,20.59-14,34-20.13l-1.37.6C298.8,71.52,287.24,78.32,278.06,85.64Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M396.49,203.57c14.72,2.18,30.33,3.84,46.72,4.92q8,.52,16,.85c.09-.56.19-1.11.28-1.67q-7.92-.33-15.86-.84c-16.27-1.07-31.76-2.73-46.36-4.89Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M319.49,62.19l-3.1,1.34L313,65l1.38-.6Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M261.21,103.53a49.07,49.07,0,0,0-3.29,5.89l1.78-.93a49.21,49.21,0,0,1,3.27-5.85,76.34,76.34,0,0,1,16.25-17.37l-1.63.75A76.48,76.48,0,0,0,261.21,103.53Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M847.12,170.61l-1.53-1.3c2.82,10.68,1.87,21.73-3.22,32.93l1.51,1.44C849,192.44,850,181.34,847.12,170.61Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M847,170.06c-3-10.72-9.69-21.07-19.82-30.83l-1.43-1.17c10.07,9.72,16.78,20,19.72,30.7Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M816.72,130.25q4.56,3.58,8.47,7.31l1.44,1.17c-2.47-2.35-5.15-4.67-8-6.95Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M624.28,306.29a701.13,701.13,0,0,0,76.82-16.55l-.9-1.82a697.43,697.43,0,0,1-76.49,16.48Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M537.46,315.7c29.45-1.75,58.13-4.86,85.41-9.18-.19-.63-.37-1.27-.56-1.9-27.15,4.31-55.71,7.41-85,9.15Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M815.48,237.57l-1.39-1.6c-12.79,10.22-28.89,19.7-47.67,28.29.4.57.79,1.15,1.18,1.72C786.47,257.35,802.63,247.82,815.48,237.57Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M701.42,287.57l.9,1.82a453,453,0,0,0,64.31-23l-1.18-1.71A452.41,452.41,0,0,1,701.42,287.57Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M839,212.61a67.91,67.91,0,0,0,4.66-8.35l-1.51-1.45a66.57,66.57,0,0,1-4.64,8.31c-5.51,8.48-13.17,16.61-22.72,24.32.47.53.93,1.06,1.39,1.6C825.73,229.29,833.42,221.12,839,212.61Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M220.93,267.7c-16.53-8.29-30.08-17.4-40.26-27.1l-1.36,1.61c10.22,9.74,23.83,18.89,40.43,27.22Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M180.15,240.1c-10.06-9.72-16.74-20-19.67-30.7L159,210.87c2.94,10.72,9.65,21.08,19.75,30.84C179.24,241.17,179.69,240.63,180.15,240.1Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M446,314.69c-.07.65-.14,1.29-.22,1.94,30.39,1.19,60.63.86,90.12-.84l-.18-1.94C506.4,315.55,476.29,315.88,446,314.69Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M185.81,147.38l-1.74,1.56a99.8,99.8,0,0,0-17,19.47,69.93,69.93,0,0,0-4.62,8.25l1.44-1.33C172.35,160.79,172.68,160.23,185.81,147.38Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M280.25,290.26c-22.21-6.41-41.83-13.86-58.46-22.13-.4.58-.8,1.15-1.19,1.73,16.71,8.31,36.41,15.79,58.72,22.23Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M158.88,210.32c.48-.49,1-1,1.45-1.48-2.79-10.68-1.83-21.74,3.29-32.93l-1.44,1.33C157,188.49,156.07,199.59,158.88,210.32Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M356.48,308.48c20.6,3.06,42.46,5.39,65.41,6.89q11.19.75,22.37,1.2l.21-1.94q-11.12-.45-22.27-1.19c-22.85-1.5-44.61-3.82-65.12-6.86Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M355.07,308.27c.21-.63.41-1.27.61-1.9a590.13,590.13,0,0,1-74.28-15.78l-.93,1.83A594.45,594.45,0,0,0,355.07,308.27Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M925.44,258.34l-1.12-1.65c3.45,13.07,2.29,26.58-3.94,40.27l1.1,1.75C927.73,285,928.89,271.44,925.44,258.34Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M748.7,403.33c28.93-8.13,55.35-17.54,78.49-28l-.87-2c-23.08,10.48-49.43,19.86-78.29,28C748.25,402,748.48,402.65,748.7,403.33Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M547.47,435.43c35.95-2.13,71-5.93,104.25-11.2l-.42-2.07c-33.21,5.26-68.12,9-104,11.17Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M653.44,424a852.52,852.52,0,0,0,93.76-20.21l-.66-2A853,853,0,0,1,653,421.88C653.15,422.57,653.3,423.26,653.44,424Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M915.47,309.6a85.37,85.37,0,0,0,5.69-10.18l-1.11-1.75a84.83,84.83,0,0,1-5.67,10.15c-6.74,10.37-16.11,20.31-27.78,29.75l1,1.85C899.32,330,908.72,320,915.47,309.6Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M435.75,434.47c0,.7-.09,1.4-.13,2.1,37.08,1.45,74,1.05,110-1-.05-.7-.09-1.4-.14-2.1C509.57,435.51,472.74,435.92,435.75,434.47Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M827.51,372.8l.87,1.95c23-10.54,42.76-22.16,58.43-34.68l-1-1.86C870.16,350.7,850.48,362.29,827.51,372.8Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M925.26,257.67a72,72,0,0,0-10.75-22.13l-1.34-1.93a71.87,71.87,0,0,1,11,22.41Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M94,257.76l-.83,1.55c.65-1.18,1.32-2.35,2.05-3.53Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M92.48,260.66l-2.74,5.07,1-1.67C91.29,262.93,91.88,261.79,92.48,260.66Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M92.48,260.66l.73-1.35C93,259.76,92.72,260.21,92.48,260.66Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M110.64,343.25c-12.3-11.88-20.48-24.48-24.06-37.54l-1,1.78c3.58,13.08,11.78,25.72,24.11,37.63Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M160.5,377c-20.22-10.14-36.78-21.28-49.23-33.14l-1,1.87c12.48,11.89,29.08,23.05,49.35,33.22Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M326.57,426.63c25.14,3.72,51.82,6.57,79.83,8.41q13.67.9,27.31,1.45c0-.7.09-1.4.13-2.1q-13.6-.56-27.23-1.45c-27.94-1.84-54.55-4.67-79.63-8.39C326.84,425.24,326.71,425.93,326.57,426.63Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M324.85,426.37l.42-2.08A724.16,724.16,0,0,1,234.44,405c-.22.67-.43,1.35-.65,2A723.81,723.81,0,0,0,324.85,426.37Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M232.38,406.62l.66-2c-27.16-7.84-51.15-16.95-71.49-27.06l-.84,2C181.11,389.62,205.15,398.76,232.38,406.62Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M85.38,306.81l1-1.77c-3.42-13.07-2.23-26.58,4-40.27l-1,1.67C83.13,280.16,82,293.71,85.38,306.81Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M868.77,494.15c25.7-11.76,47.73-24.73,65.22-38.71l-.57-2.05c-17.48,14-39.48,26.92-65.15,38.67C868.44,492.75,868.6,493.45,868.77,494.15Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M779.82,526.05c32.29-9.07,61.79-19.57,87.62-31.29-.17-.7-.33-1.4-.5-2.1-25.8,11.71-55.25,22.2-87.51,31.26C779.57,524.63,779.69,525.34,779.82,526.05Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M555.2,561.89c40.13-2.38,79.21-6.62,116.37-12.5-.08-.73-.17-1.45-.25-2.17-37.12,5.88-76.15,10.11-116.23,12.49C555.13,560.44,555.17,561.17,555.2,561.89Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M673.49,549.08a956.27,956.27,0,0,0,104.66-22.56c-.12-.71-.25-1.42-.38-2.14a950,950,0,0,1-104.54,22.53C673.32,547.64,673.4,548.36,673.49,549.08Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M977.11,364.21l-.63-1.93c3.85,14.6,2.55,29.71-4.41,45l.63,2C979.67,394,981,378.84,977.11,364.21Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M965.36,419.43c-7.52,11.58-18,22.7-31.05,33.24.2.68.39,1.37.58,2.05C948,444.16,958.45,433,966,421.44a94.08,94.08,0,0,0,6.35-11.37l-.63-2A92.52,92.52,0,0,1,965.36,419.43Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M975.89,360.12l-.74-2.25c.41,1.21.79,2.43,1.12,3.66.22.64.43,1.28.64,1.93C976.6,362.34,976.26,361.23,975.89,360.12Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M67.22,461.77c13.93,13.27,32.47,25.74,55.09,37.09.14-.7.28-1.4.43-2.1-22.6-11.34-41.11-23.79-55-37.05C67.55,460.4,67.39,461.08,67.22,461.77Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M203.49,529.73c.1-.72.21-1.43.32-2.14-30.36-8.77-57.17-19-79.9-30.25-.15.7-.29,1.4-.43,2.1C146.25,510.76,173.09,521,203.49,529.73Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M39.56,385.2a63.72,63.72,0,0,0-.17,33.12c.17-.67.35-1.34.53-2a63.68,63.68,0,0,1,.25-33.41Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M430.39,561c0,.73,0,1.46,0,2.18,41.39,1.63,82.61,1.17,122.78-1.15,0-.72-.07-1.45-.11-2.18C512.9,562.15,471.74,562.6,430.39,561Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M67,459c-13.75-13.29-22.88-27.37-26.88-42-.18.67-.36,1.34-.53,2,4,14.61,13.15,28.71,26.92,42C66.67,460.4,66.84,459.71,67,459Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M308.62,552.06c28.07,4.16,57.85,7.34,89.12,9.39q15.24,1,30.47,1.63c0-.73,0-1.46.05-2.18q-15.21-.63-30.44-1.63c-31.23-2-61-5.22-89-9.38C308.75,550.62,308.68,551.34,308.62,552.06Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M306.7,551.78c.07-.73.13-1.45.2-2.17A809.44,809.44,0,0,1,205.38,528c-.11.71-.21,1.43-.32,2.14A810.94,810.94,0,0,0,306.7,551.78Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M682.62,673.62l0,1.08,0,1a989.91,989.91,0,0,0,108.48-23.39l0-1c0-.36,0-.72,0-1.08A989.65,989.65,0,0,1,682.62,673.62Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M792.84,649.76l0,1.08c0,.35,0,.69,0,1,33.47-9.4,64-20.29,90.81-32.44,0-.34,0-.69,0-1l0-1.08C856.87,629.47,826.31,640.35,792.84,649.76Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M999.51,497a71,71,0,0,1-6.76,31.68l0,1.08c0,.35,0,.7,0,1a71,71,0,0,0,6.77-31.34l0-1.21Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M992.37,529.54a97.38,97.38,0,0,1-6.58,11.78c-7.82,12-18.68,23.56-32.23,34.5l0,1.08,0,1C967.16,567,978,555.47,985.84,543.45a96.89,96.89,0,0,0,6.58-11.79c0-.34,0-.69,0-1Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M885,616.69l0,1.08c0,.35,0,.7,0,1.05,26.64-12.19,49.47-25.64,67.61-40.13l0-1,0-1.08C934.5,591.06,911.66,604.5,885,616.69Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M560,686.9l0,1.08,0,1c41.59-2.47,82.09-6.86,120.61-13l0-1,0-1.08C642.12,680,601.62,684.44,560,686.9Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M112.55,622.18l0,1.08,0,1C136.2,636,164,646.59,195.53,655.69l0-1c0-.36,0-.72,0-1.08C164,644.47,136.15,633.9,112.55,622.18Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M25.6,538.88l0,1.07,0,1c4.15,15.14,13.63,29.76,27.9,43.54l0-1,0-1.08C39.23,568.63,29.75,554,25.6,538.88Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M23.23,522.86l0,1.24,0,1.21a66.51,66.51,0,0,0,2.16,14.91l0-1.05,0-1.08A66.3,66.3,0,0,1,23.23,522.86Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M430.61,688.22l0,1.08,0,1c42.9,1.69,85.62,1.22,127.26-1.19l0-1,0-1.08C516.24,689.43,473.52,689.9,430.61,688.22Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M54.24,583.13l0,1.08,0,1C68.73,599,88,611.93,111.4,623.69l0-1,0-1.08C87.89,609.81,68.68,596.89,54.24,583.13Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M396.81,686.45c-32.41-2.13-63.28-5.42-92.37-9.74l0,1.08,0,1.05c29.09,4.31,60,7.6,92.37,9.73q15.79,1,31.59,1.69l0-1,0-1.08Q412.62,687.49,396.81,686.45Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M197.11,654c0,.36,0,.72,0,1.08l0,1a838.22,838.22,0,0,0,105.35,22.38c0-.35,0-.69,0-1l0-1.08A837.39,837.39,0,0,1,197.11,654Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M784.15,768c.09-.59.18-1.19.28-1.78a954.69,954.69,0,0,1-104.67,22.55l-.15,1.76A952.28,952.28,0,0,0,784.15,768Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M785.81,767.56c32.26-9.07,61.71-19.56,87.51-31.26l.39-1.83c-25.83,11.72-55.32,22.23-87.61,31.3C786,766.37,785.91,767,785.81,767.56Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M941.17,694.43l-.48,1.88c13.06-10.55,23.53-21.66,31.06-33.25a94.36,94.36,0,0,0,6.34-11.35l.51-1.93a94,94,0,0,1-6.34,11.37C964.72,672.75,954.23,683.87,941.17,694.43Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M978.45,650.92a77.12,77.12,0,0,0,4.19-11.49l.61-2.29A75.85,75.85,0,0,1,979,649C978.8,649.63,978.63,650.28,978.45,650.92Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M561.47,803.35c40.08-2.38,79.11-6.61,116.22-12.49l.15-1.76c-37.16,5.89-76.24,10.13-116.37,12.51Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M939.8,697c.15-.62.31-1.25.47-1.87-17.5,14-39.53,27-65.23,38.71l-.39,1.82C900.32,724,922.32,711,939.8,697Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M436.77,804.62c41.34,1.62,82.5,1.17,122.63-1.15v-1.74c-40.17,2.32-81.39,2.77-122.78,1.15Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M314.89,791.78l.3,1.75c28,4.16,57.77,7.33,89,9.38q15.22,1,30.44,1.62c-.05-.57-.1-1.16-.15-1.74q-15.23-.62-30.47-1.62C372.74,799.11,343,795.94,314.89,791.78Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M74.08,703.35c13.91,13.26,32.43,25.71,55,37-.17-.6-.35-1.21-.52-1.82C106,727.22,87.42,714.76,73.49,701.48,73.69,702.11,73.88,702.73,74.08,703.35Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M47.64,664.48c4.46,13.25,13.17,26,25.73,38.19-.2-.63-.4-1.25-.59-1.87-12.68-12.25-21.44-25.17-25.87-38.55Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M130.27,741c22.74,11.3,49.55,21.48,79.91,30.25l-.42-1.79c-30.4-8.77-57.24-19-80-30.28C129.92,739.77,130.1,740.37,130.27,741Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M211.75,771.68a809.44,809.44,0,0,0,101.52,21.57l-.3-1.76a807.39,807.39,0,0,1-101.64-21.6Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M447.8,895c37,1.45,73.82,1,109.71-1l.06-1.32c-36,2.07-72.91,2.48-110,1C447.65,894.11,447.73,894.55,447.8,895Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M758.59,862.25l.58-1.41a857.37,857.37,0,0,1-93.77,20.21c-.11.45-.23.9-.34,1.36A855.31,855.31,0,0,0,758.59,862.25Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M559.37,893.86c35.86-2.13,70.77-5.92,104-11.18l.33-1.36c-33.29,5.28-68.3,9.07-104.25,11.21Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M839.56,833.32c23-10.5,42.65-22.1,58.29-34.59l.93-1.57c-15.67,12.52-35.41,24.14-58.43,34.68C840.09,832.34,839.82,832.83,839.56,833.32Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M838.37,833.87l.78-1.49c-23.14,10.5-49.56,19.91-78.49,28-.19.47-.38.94-.58,1.41C788.94,853.72,815.29,844.34,838.37,833.87Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M926.43,768.35c.39-.61.78-1.22,1.15-1.82l1.23-2c-.44.73-.9,1.46-1.37,2.18-6.75,10.4-16.15,20.36-27.85,29.82l-.94,1.58C910.32,788.65,919.69,778.71,926.43,768.35Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M108.28,786.81l1.35,2a108,108,0,0,0,13.05,15c-.36-.52-.71-1-1.06-1.57A107.34,107.34,0,0,1,108.28,786.81Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M172.55,837.53c-.32-.49-.63-1-.94-1.47-20.27-10.17-36.88-21.34-49.35-33.23l1.06,1.56C135.76,816.25,152.33,827.39,172.55,837.53Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M173.59,838.05c20.34,10.11,44.33,19.22,71.49,27.06l-.75-1.4c-27.23-7.86-51.27-17-71.67-27.13Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M338.52,883.72l.51,1.35c25.08,3.72,51.69,6.56,79.63,8.39q13.62.9,27.23,1.46c-.08-.45-.15-.89-.23-1.33q-13.64-.55-27.3-1.46C390.34,890.29,363.66,887.45,338.52,883.72Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M246.49,865.52a723.53,723.53,0,0,0,90.82,19.3l-.51-1.36a723.81,723.81,0,0,1-91.06-19.35Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M717.06,932l.82-1a702.91,702.91,0,0,1-76.82,16.56l-.49.89A697.38,697.38,0,0,0,717.06,932Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M554.13,957.88c29.32-1.74,57.88-4.84,85-9.14l.48-.89c-27.28,4.32-56,7.44-85.41,9.18C554.2,957.32,554.17,957.6,554.13,957.88Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M718.28,931.69a452.38,452.38,0,0,0,64-22.87l1.11-1.06a454.19,454.19,0,0,1-64.31,23Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M832.27,878.9c-12.85,10.26-29,19.78-47.88,28.41l-1.11,1.07c18.78-8.6,34.88-18.08,47.67-28.29Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M838.74,873.41q-2.78,2.51-5.81,5l-1.32,1.19q2.8-2.26,5.39-4.59Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M204.16,890.57l1.9,1.54a187.24,187.24,0,0,0,31.71,19.71l-1.26-1.05A185.5,185.5,0,0,1,204.16,890.57Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M297.09,934.37l-1-1c-22.31-6.44-42-13.92-58.72-22.22.42.35.83.7,1.26,1C255.26,920.51,274.88,928,297.09,934.37Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M462.88,958.81c30.26,1.18,60.37.85,89.73-.84,0-.28.07-.56.11-.85-29.49,1.7-59.74,2-90.12.85C462.7,958.25,462.79,958.53,462.88,958.81Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M298.24,934.7a591.84,591.84,0,0,0,74.28,15.79l-.67-.88a594.24,594.24,0,0,1-74.61-15.85Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M373.25,949.82c.23.29.45.58.67.88,20.51,3,42.28,5.36,65.13,6.86q11.15.74,22.27,1.19c-.09-.28-.19-.56-.29-.85q-11.17-.45-22.37-1.19C415.71,955.2,393.85,952.87,373.25,949.82Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M606.65,986.29l.61-.39c-19.48,3.09-40,5.31-61,6.56l-.16.33C567,991.56,587.31,989.35,606.65,986.29Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M607.65,986.13a500.17,500.17,0,0,0,54.46-11.74l1-.47a499,499,0,0,1-54.86,11.82Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M706.42,958.83A331.55,331.55,0,0,1,664,973.67l-1,.48a335.64,335.64,0,0,0,40.35-14Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M341,968.74l2.74,1q9.15,3.35,19.38,6.3l-1.21-.46Q350.81,972.41,341,968.74Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M416.8,987.53l-.81-.37a426.31,426.31,0,0,1-53.29-11.32l1.21.45A421,421,0,0,0,416.8,987.53Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M481.14,993.46c21.54.84,43,.6,63.88-.6l.15-.34c-21.06,1.22-42.66,1.46-64.36.61Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M417,987.31l.81.37c14.6,2.16,30.1,3.82,46.37,4.89q7.92.51,15.85.84l-.33-.33q-8-.33-16-.85C447.32,991.15,431.71,989.49,417,987.31Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M521.22,26.09c-7.05,4.59-14.33,14.76-21.7,30.94,7.57-16.17,15.05-26.34,22.29-30.92l.37-.23a16.06,16.06,0,0,1,9.2-2.6l-.84,0a15.47,15.47,0,0,0-8.95,2.62Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M483.39,23.65l-.8.05c1.43-.09,2.92.73,4.47,2.5l.19.22C491,30.91,495.13,41,499.52,57c-4.19-16.08-8.11-26.15-11.7-30.64l-.19-.23C486.16,24.4,484.75,23.57,483.39,23.65Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M435.19,28.85l-.84.13a52.14,52.14,0,0,1,20,.75l.72.17c14,3.38,28.93,12.27,44.46,27.13-15.35-14.89-30.07-23.81-43.94-27.21l-.71-.17A50.78,50.78,0,0,0,435.19,28.85Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M380.12,40.86l-1,.3a140.06,140.06,0,0,1,45.84-5.07l1.2.07C449.37,37.54,474,44.34,499.52,57c-25.39-12.74-49.84-19.58-72.95-21L425.39,36A138.53,138.53,0,0,0,380.12,40.86Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M400.68,44.74a248.69,248.69,0,0,0-86.32,19.7L313,65c-1.13.49-2.25,1-3.37,1.5l-1.56.72c1.4-.65,2.82-1.28,4.24-1.9l1.37-.6a250.64,250.64,0,0,1,86.65-19.85l1.59-.08C421.55,44,455,44.31,499.52,57c-44.38-12.8-77.72-13.2-97.25-12.36Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M212,125.6c-.83.63-1.64,1.29-2.46,1.93C210.33,126.88,211.14,126.23,212,125.6Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M203,132.69c2.14-1.75,4.32-3.46,6.51-5.16-1.51,1.18-3,2.35-4.54,3.56Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M382.25,55.61A364.57,364.57,0,0,0,279.69,84.89l-1.63.75a345.53,345.53,0,0,0-66.09,40A347.2,347.2,0,0,1,277.59,86l1.63-.75A366.25,366.25,0,0,1,382,55.81l1.88-.25c47.27-5.88,78.95-2.48,115.63,1.47a415.09,415.09,0,0,0-115.38-1.67Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M71.81,298.64c-.51,1-1,2.07-1.49,3.11C70.81,300.71,71.3,299.67,71.81,298.64Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M371.63,68.16A461.74,461.74,0,0,0,259.7,108.49l-1.78.93a437.57,437.57,0,0,0-94,65.91l-1.44,1.33a417.58,417.58,0,0,0-71.7,87.4l-1,1.67q-9.7,16-17.93,32.91,8.1-16.53,17.6-32.2l1-1.67a418.19,418.19,0,0,1,71.75-87.53l1.44-1.33a439.07,439.07,0,0,1,94.1-66.08l1.79-.93a463.51,463.51,0,0,1,112-40.53l2.05-.45A498.67,498.67,0,0,1,499.52,57,497.5,497.5,0,0,0,373.68,67.7Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M66,310.94c1.39-3.09,2.84-6.14,4.31-9.19-.75,1.56-1.52,3.11-2.25,4.68Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M36.5,625.07c.17.72.35,1.44.52,2.16C36.84,626.51,36.67,625.79,36.5,625.07Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M39.6,637.53c-.91-3.41-1.76-6.85-2.58-10.3.39,1.62.75,3.25,1.16,4.86Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M40.12,417.07A452.3,452.3,0,0,1,85.56,307.49l1-1.78A484.64,484.64,0,0,1,159,210.87l1.45-1.47a509.12,509.12,0,0,1,95-75.55l1.8-1.1a519.83,519.83,0,0,1,113.07-51.7q1-.35,2.07-.66A526,526,0,0,1,499.52,57,526.32,526.32,0,0,0,372.36,80.18l-2.08.66a519.57,519.57,0,0,0-113.11,51.51l-1.81,1.11a508.88,508.88,0,0,0-95,75.38c-.48.5-1,1-1.45,1.48A483.45,483.45,0,0,0,86.4,305l-1,1.77A451.14,451.14,0,0,0,39.92,416.32c-.18.66-.36,1.33-.53,2a432.18,432.18,0,0,0-14,119.77l0,1.08,0,1.05A423,423,0,0,0,36.5,625.07,422.77,422.77,0,0,1,25.66,541l0-1,0-1.07a432.88,432.88,0,0,1,14-119.81C39.76,418.41,39.94,417.74,40.12,417.07Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M172,862.1c-4.1-4-8.07-8.05-12-12.21,3.22,3.41,6.44,6.8,9.78,10.08Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M158.64,848.51c.44.47.91.91,1.35,1.38C159.55,849.43,159.08,849,158.64,848.51Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M67.72,459.71a516.87,516.87,0,0,1,42.59-114l1-1.87a553.06,553.06,0,0,1,68-101.66l1.36-1.61A559,559,0,0,1,270,156.24l1.7-1.28A535.76,535.76,0,0,1,378,92.85l1.95-.85A500.26,500.26,0,0,1,499.52,57,500.34,500.34,0,0,0,379.74,91.82l-2,.84a536,536,0,0,0-106.5,61.94l-1.7,1.28a557.88,557.88,0,0,0-89.43,84.22c-.46.53-.91,1.07-1.37,1.61a551,551,0,0,0-68.14,101.54l-1,1.87A515.76,515.76,0,0,0,67,459c-.16.68-.33,1.37-.49,2.05a473.65,473.65,0,0,0-13,121.34l0,1.08,0,1A426.18,426.18,0,0,0,72.78,700.8c.19.62.39,1.24.59,1.87a388.43,388.43,0,0,0,48.25,99.54c.35.53.7,1,1.06,1.57a378.47,378.47,0,0,0,36,44.73,377.38,377.38,0,0,1-35.32-44.12l-1.06-1.56a388,388,0,0,1-48.18-99.48c-.2-.62-.39-1.24-.59-1.87A426.91,426.91,0,0,1,54.3,585.25l0-1,0-1.08a474.82,474.82,0,0,1,13-121.36C67.39,461.08,67.55,460.4,67.72,459.71Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M274,937.32c1.8,1.08,3.59,2.16,5.41,3.2C277.6,939.48,275.81,938.4,274,937.32Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M269.56,934.58c1.48.92,3,1.84,4.45,2.74C272.52,936.42,271,935.5,269.56,934.58Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M279.42,940.52c3.66,2.1,7.37,4.09,11.12,6Q284.92,943.66,279.42,940.52Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M394.92,102.1l-1.71,1a523.37,523.37,0,0,0-92.9,71.15l-1.48,1.42a602.36,602.36,0,0,0-77.9,92l-1.19,1.73A636.81,636.81,0,0,0,160.5,377l-.84,1.95a614.85,614.85,0,0,0-36.92,117.8c-.15.7-.29,1.4-.43,2.1a555.87,555.87,0,0,0-11,122.71l0,1.08,0,1c1.15,41.09,7.09,79.56,17.18,114.88.17.61.35,1.22.52,1.82a375.75,375.75,0,0,0,42.51,95.67c.31.49.62,1,.94,1.47a316.84,316.84,0,0,0,64,73.24l1.26,1.05a296.11,296.11,0,0,0,31.79,22.76,293.33,293.33,0,0,1-30.93-22.34c-.43-.34-.84-.69-1.26-1a316.17,316.17,0,0,1-63.78-73.15l-.93-1.47A375.93,375.93,0,0,1,130.27,741c-.17-.61-.35-1.21-.52-1.82-10.06-35.31-16-73.77-17.14-114.86l0-1,0-1.08a558,558,0,0,1,10.93-122.74c.14-.7.28-1.4.43-2.1a616.6,616.6,0,0,1,36.8-117.85l.84-2a638.54,638.54,0,0,1,59-107.67c.39-.58.79-1.15,1.19-1.73A603,603,0,0,1,299.45,176l1.47-1.42a523.16,523.16,0,0,1,92.62-71.29l1.7-1h0c42.61-25,71.19-34.39,104.28-45.22A434.9,434.9,0,0,0,394.92,102.1Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M293.74,948.21c-1.07-.54-2.13-1.11-3.2-1.66.45.23.89.5,1.34.72Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M457.56,80.33q5.07-3.33,10.21-6.43C464.23,76,460.84,78.17,457.56,80.33Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M457.48,80.38l.08,0Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M449.15,86c2.77-1.93,5.54-3.83,8.33-5.66Q453.23,83.17,449.15,86Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M467.77,73.9l.17-.11Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M430.91,99.59C437,94.84,443,90.36,449.15,86Q439.93,92.46,430.91,99.59Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M467.94,73.79c2.79-1.68,5.59-3.29,8.4-4.88C473.44,70.54,470.65,72.16,467.94,73.79Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M205.38,528a794.87,794.87,0,0,1,28.41-121c.22-.67.43-1.35.65-2a781.93,781.93,0,0,1,46-112.58l.93-1.83a674,674,0,0,1,60.81-98.49c.38-.52.77-1,1.16-1.55,22.44-29.79,46.84-56.36,72.73-78.78.44-.39.89-.77,1.34-1.15,4.44-3.82,8.94-7.47,13.47-11-4.49,3.47-9.07,7.09-13.9,10.9l-1.35,1.16c-26,22.38-50.55,48.91-73.11,78.67l-1.17,1.54a672.64,672.64,0,0,0-61.13,98.4l-.93,1.83A778.41,778.41,0,0,0,233,404.59l-.66,2a790.83,790.83,0,0,0-28.57,121c-.11.71-.22,1.42-.32,2.14a714.7,714.7,0,0,0-8,123.84c0,.36,0,.72,0,1.08l0,1c1.14,41.08,6.05,79.16,14.23,113.75l.42,1.79c8.29,34.47,19.84,65.45,34.15,92.48l.75,1.4c14.41,26.89,31.58,49.82,51,68.31l1,1c19.51,18.35,41.27,32.24,64.79,41.23l1.21.46q6.15,2.3,12.43,4.14l1.21.35q-6.5-1.89-12.82-4.26l-1.21-.45c-23.4-9-45.05-22.82-64.46-41.14l-1-.94c-19.33-18.47-36.41-41.37-50.75-68.24l-.75-1.41c-14.24-27-25.74-58-34-92.43l-.42-1.79c-8.14-34.58-13-72.65-14.17-113.73l0-1c0-.36,0-.72,0-1.08a718.79,718.79,0,0,1,7.95-123.85C205.17,529.47,205.27,528.75,205.38,528Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M492.66,60.33c2.29-1.11,4.56-2.25,6.86-3.3C497.16,58.14,494.88,59.24,492.66,60.33Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M476.34,68.91c5.07-2.84,10.46-5.68,16.32-8.58C487.18,63,481.74,65.86,476.34,68.91Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M308.82,549.89a1200.56,1200.56,0,0,1,17.75-123.26c.14-.7.27-1.39.41-2.08a1123.24,1123.24,0,0,1,29.5-116.07l.6-1.9a876.47,876.47,0,0,1,39.41-103l.76-1.63c14.6-31.45,30.53-59.81,47.49-84.12l.87-1.25c17-24.24,35.11-44.41,53.91-59.54-19,15.1-37.22,35.24-54.43,59.46l-.88,1.25c-17.12,24.29-33.21,52.62-48,84.05-.25.54-.51,1.08-.76,1.63a870.05,870.05,0,0,0-39.81,103c-.2.63-.4,1.27-.61,1.9a1114.58,1114.58,0,0,0-29.8,116l-.42,2.08a1189.07,1189.07,0,0,0-18,123.24c-.07.72-.13,1.44-.2,2.17a1087.54,1087.54,0,0,0-4.24,124.64l0,1.08c0,.35,0,.69,0,1,1.12,41.08,4.72,78.87,10.46,113l.3,1.76c5.82,33.94,13.77,64.16,23.53,90.21l.51,1.36c9.83,25.91,21.45,47.65,34.54,64.79l.67.88c13.14,17,27.74,29.35,43.47,36.67l.81.37A82.54,82.54,0,0,0,438.41,994l.92.14a80.85,80.85,0,0,1-21.53-6.47l-.81-.37c-15.58-7.3-30-19.65-43.07-36.61-.22-.3-.44-.59-.67-.88-13-17.12-24.49-38.85-34.22-64.75l-.51-1.35c-9.68-26-17.56-56.25-23.33-90.19l-.3-1.75c-5.7-34.07-9.27-71.86-10.39-112.94l0-1.05,0-1.08a1097,1097,0,0,1,4.18-124.65C308.68,551.34,308.75,550.62,308.82,549.89Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M430.39,561c.88-41.9,2.66-83.69,5.23-124.41,0-.7.09-1.4.13-2.1,2.6-40.69,6-80.29,10.07-117.84.08-.65.15-1.29.22-1.94,4.1-37.48,8.89-72.9,14.27-105.3l.27-1.67c5.4-32.3,11.37-61.56,17.82-86.83l.33-1.3c6.49-25.21,13.45-46.38,20.79-62.56-7.54,16.17-14.7,37.34-21.37,62.54-.11.43-.23.86-.34,1.3-6.64,25.26-12.78,54.51-18.34,86.8-.09.56-.19,1.11-.28,1.67-5.54,32.4-10.48,67.81-14.72,105.29l-.21,1.94c-4.21,37.55-7.72,77.14-10.42,117.82,0,.7-.09,1.4-.13,2.1-2.67,40.72-4.52,82.5-5.45,124.41,0,.72,0,1.45-.05,2.18-.89,41.9-.87,83.91.19,125l0,1.08,0,1c1.09,41.07,3.15,78.72,6,112.53,0,.58.1,1.17.15,1.74,2.91,33.68,6.63,63.5,11,89.06.08.44.15.88.23,1.33,4.42,25.4,9.52,46.54,15.14,63,.1.29.2.57.29.85,5.65,16.28,11.81,27.87,18.37,34.33l.33.33c3.73,3.57,7.58,5.49,11.53,5.68l.85,0c-3.86-.18-7.62-2.09-11.26-5.66l-.33-.33c-6.39-6.46-12.41-18-17.93-34.32-.09-.28-.18-.56-.28-.84-5.49-16.44-10.47-37.57-14.8-63-.07-.44-.15-.88-.22-1.33-4.31-25.55-8-55.37-10.81-89l-.15-1.74c-2.83-33.81-4.86-71.46-5.95-112.54l0-1,0-1.08c-1.05-41.14-1.11-83.15-.26-125.06C430.36,562.44,430.38,561.71,430.39,561Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M557.57,892.64l-.06,1.32c-1.13,25.46-2.74,46.65-4.79,63.16,0,.29-.07.57-.11.85-2.06,16.35-4.56,28-7.44,34.55l-.15.34c-1.7,3.74-3.53,5.72-5.48,5.84l.79-.05c2-.13,4-2.11,5.77-5.86l.16-.33c3-6.55,5.67-18.22,7.87-34.58,0-.28.07-.56.11-.85,2.18-16.51,3.9-37.71,5.13-63.17l.06-1.33c1.2-25.61,1.9-55.48,2-89.18v-1.74c.12-33.84-.33-71.51-1.39-112.58l0-1,0-1.08c-1.08-41.14-2.72-83.13-4.82-125,0-.72-.07-1.45-.11-2.18-2.11-41.87-4.68-83.62-7.62-124.28l-.15-2.1c-3-40.63-6.27-80.16-9.86-117.63l-.18-1.93c-3.6-37.41-7.48-72.74-11.53-105l-.21-1.67c-4-32.19-8.29-61.35-12.61-86.51-.08-.43-.15-.86-.23-1.29-4.34-25.1-8.76-46.16-13.18-62.22,4.22,16.07,8.46,37.14,12.62,62.25l.21,1.29c4.15,25.17,8.21,54.34,12.11,86.55l.21,1.66c3.89,32.32,7.62,67.66,11.09,105.07l.18,1.94c3.46,37.48,6.67,77,9.53,117.65,0,.7.09,1.4.14,2.1C548.46,476.21,551,518,553,559.83c0,.73.07,1.46.11,2.18,2,41.88,3.66,83.87,4.74,125l0,1.08,0,1c1.06,41.08,1.54,78.75,1.47,112.58v1.74C559.31,837.17,558.68,867,557.57,892.64Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M677.69,790.86c-2.92,34-7.67,64.3-14,90.46l-.33,1.36c-6.39,26-14.37,47.89-23.7,65.17l-.48.89c-9.37,17.13-20.09,29.66-31.91,37.16l-.61.39a51.47,51.47,0,0,1-18.9,7.2l.84-.13a52.56,52.56,0,0,0,19.06-7.23l.62-.39c12-7.52,22.81-20.07,32.3-37.22l.49-.89c9.44-17.31,17.52-39.19,24-65.22.11-.46.23-.91.34-1.36,6.42-26.18,11.24-56.49,14.21-90.5l.15-1.76a1031.19,1031.19,0,0,0,2.92-113l0-1,0-1.08c-1.11-41.14-4.25-83-9.13-124.54-.09-.72-.17-1.44-.26-2.17-5-41.56-11.64-82.86-19.79-123-.14-.69-.29-1.38-.43-2.07-8.21-40.06-17.88-78.9-28.73-115.59l-.57-1.89a1055.82,1055.82,0,0,0-36-102.4c-.23-.54-.45-1.08-.67-1.61-13-31.23-26.92-59.34-41.45-83.39l-.75-1.24c-14.6-24-29.81-43.88-45.37-58.73,15.37,14.88,30.42,34.8,44.84,58.81l.75,1.24c14.36,24.08,28.11,52.22,41,83.47l.66,1.61a1067.88,1067.88,0,0,1,35.56,102.46c.19.63.37,1.27.56,1.9,10.74,36.7,20.31,75.56,28.43,115.64l.42,2.07c8.07,40.11,14.7,81.42,19.6,123,.08.72.17,1.44.25,2.17,4.84,41.58,7.95,83.41,9.06,124.55l0,1.08,0,1a1044.79,1044.79,0,0,1-2.85,113Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M784.15,768c-5.48,34.55-13.94,65.65-25,92.82l-.58,1.41c-11.13,27-24.84,50.13-40.71,68.82l-.82,1c-15.95,18.54-34.06,32.66-53.93,41.89l-1,.47a135.88,135.88,0,0,1-19.26,7.06l1-.29a137.76,137.76,0,0,0,19.09-7l1-.48c20-9.26,38.22-23.41,54.27-42l.83-1c16-18.72,29.77-41.84,41-68.9.2-.47.39-.94.58-1.41,11.12-27.19,19.64-58.31,25.15-92.86.1-.6.19-1.19.29-1.79,5.41-34.68,7.81-72.81,6.79-113.89,0-.35,0-.69,0-1l0-1.08a828.27,828.27,0,0,0-13-123.71c-.13-.71-.25-1.42-.39-2.13A911,911,0,0,0,748.7,403.33c-.22-.68-.45-1.35-.67-2a878.65,878.65,0,0,0-45.71-111.92l-.9-1.82a728.34,728.34,0,0,0-57.92-97.64l-1.09-1.52c-21.06-29.49-43.66-55.71-67.37-77.78l-1.22-1.14C550,87.5,525.09,69.71,499.52,57c25.41,12.73,50.17,30.56,73.84,52.59l1.22,1.14c23.56,22.11,46,48.37,67,77.89l1.08,1.53a728.77,728.77,0,0,1,57.58,97.74l.9,1.82a884.66,884.66,0,0,1,45.44,112l.66,2a918.29,918.29,0,0,1,30.57,120.64c.13.72.26,1.43.38,2.14a833.58,833.58,0,0,1,13,123.72c0,.36,0,.72,0,1.08l0,1c1,41.09-1.36,79.2-6.73,113.88C784.33,766.83,784.24,767.43,784.15,768Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M873.32,736.3c-7.61,35.31-19.18,67.51-34.17,96.08l-.78,1.49c-15.1,28.44-33.6,53.25-55,73.89l-1.11,1.06a249.53,249.53,0,0,1-68.86,46.88L715,955a251.12,251.12,0,0,0,68.27-46.61l1.11-1.07c21.44-20.68,40-45.51,55.17-74,.26-.49.53-1,.79-1.48,15-28.6,26.65-60.82,34.3-96.15l.39-1.82c7.51-35.44,11-74,10-115,0-.35,0-.7,0-1.05l0-1.08a610.15,610.15,0,0,0-16.26-122.54c-.17-.7-.33-1.4-.5-2.09a675.64,675.64,0,0,0-39.89-117.31l-.87-1.95A684.84,684.84,0,0,0,767.6,266c-.39-.57-.78-1.15-1.18-1.72a625.49,625.49,0,0,0-76.3-91l-1.43-1.4a515.53,515.53,0,0,0-89.05-70l-1.62-1c-31.67-19.3-64.73-34.15-98.5-43.78,33.64,9.69,66.59,24.59,98.14,44l1.61,1A515.23,515.23,0,0,1,688,172.12l1.43,1.41a626.88,626.88,0,0,1,76,91.18l1.18,1.71a688.14,688.14,0,0,1,59.69,106.92l.87,2a678,678,0,0,1,39.75,117.37c.17.7.33,1.4.5,2.1a612.53,612.53,0,0,1,16.21,122.56l0,1.08c0,.35,0,.7,0,1,1,41.09-2.51,79.61-10,115Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M939.8,697a380.34,380.34,0,0,1-41,100.13l-.93,1.57a351.36,351.36,0,0,1-65.58,80.17L831,880.09q-6.27,5.61-12.8,10.92l2-1.6q5.85-4.8,11.49-9.85l1.32-1.19a352.43,352.43,0,0,0,65.72-80.28l.94-1.58a380.77,380.77,0,0,0,41.1-100.2l.48-1.88a437.17,437.17,0,0,0,12.45-116.49l0-1,0-1.08a500.14,500.14,0,0,0-18.67-121.1c-.19-.68-.38-1.37-.58-2.05a549.67,549.67,0,0,0-46.69-113.25l-1-1.85A581.49,581.49,0,0,0,816.13,237c-.46-.54-.92-1.07-1.39-1.6a575.29,575.29,0,0,0-90-82.9l-1.69-1.25A533.67,533.67,0,0,0,617.93,90.9L616,90.08A478.69,478.69,0,0,0,499.52,57,477.11,477.11,0,0,1,615.77,90.28l1.91.82a533.33,533.33,0,0,1,105,60.57l1.68,1.25A576.53,576.53,0,0,1,814.09,236l1.39,1.6a582.41,582.41,0,0,1,70.31,100.64l1,1.86a551.54,551.54,0,0,1,46.61,113.32l.57,2.05a502,502,0,0,1,18.64,121.13l0,1.08,0,1a438.22,438.22,0,0,1-12.42,116.47C940.11,695.78,940,696.41,939.8,697Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M961.51,700.39c-.51,1.22-1,2.42-1.56,3.62C960.46,702.8,961,701.61,961.51,700.39Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M956.28,712.56c1.28-2.82,2.45-5.69,3.67-8.55-1.84,4.34-3.7,8.67-5.69,12.93Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M992.78,529.8l0-1.08a443.33,443.33,0,0,0-20-119.44l-.63-2a471.54,471.54,0,0,0-50.59-108.57l-1.1-1.75a505.9,505.9,0,0,0-76.5-93.28l-1.51-1.44a527.12,527.12,0,0,0-97.77-73.52c-.61-.36-1.22-.72-1.84-1.07A528.81,528.81,0,0,0,628.38,78.34l-2.08-.62A523.41,523.41,0,0,0,499.52,57,522.36,522.36,0,0,1,626.2,77.94l2.08.61a529.41,529.41,0,0,1,114.29,49.51l1.84,1.07a529,529,0,0,1,97.69,73.68l1.51,1.45a507.06,507.06,0,0,1,76.44,93.41l1.11,1.75A472.13,472.13,0,0,1,971.7,408.07l.63,2a444,444,0,0,1,20,119.47l0,1.08c0,.35,0,.7,0,1A419.43,419.43,0,0,1,978.6,649.78l-.51,1.93a408.82,408.82,0,0,1-16.58,48.68,407.12,407.12,0,0,0,16.94-49.47c.18-.64.35-1.29.52-1.93A419.73,419.73,0,0,0,992.8,530.84C992.79,530.5,992.78,530.15,992.78,529.8Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M981.4,378.42c-.22-.77-.43-1.55-.65-2.33C981,376.87,981.18,377.65,981.4,378.42Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M984.4,389.41,983,384c-.5-1.86-1-3.7-1.57-5.55C982.44,382.07,983.45,385.72,984.4,389.41Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M976.27,361.53a420,420,0,0,0-51-103.86L924.14,256a439.43,439.43,0,0,0-77.17-86l-1.53-1.3a463.11,463.11,0,0,0-98.63-64.06l-1.86-.89A485.7,485.7,0,0,0,629.54,65.67l-2.1-.41A513.06,513.06,0,0,0,499.52,57a514.44,514.44,0,0,1,128,8.43l2.1.41A488,488,0,0,1,745.06,104.2l1.86.9a464.61,464.61,0,0,1,98.67,64.21l1.53,1.3a440.83,440.83,0,0,1,77.2,86.08l1.12,1.65a421,421,0,0,1,51,103.94l.63,1.93q1.9,5.91,3.64,11.88c-1.23-4.23-2.49-8.45-3.84-12.63C976.7,362.81,976.49,362.17,976.27,361.53Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M841.86,151.93c-.64-.58-1.25-1.18-1.89-1.75C840.61,150.75,841.23,151.35,841.86,151.93Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M852.67,162l-2.2-2.12c-2.81-2.73-5.71-5.36-8.61-8C845.52,155.24,849.14,158.59,852.67,162Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M825.19,137.56a381.61,381.61,0,0,0-92.91-55.23l-1.75-.73A405.19,405.19,0,0,0,621.88,53.86l-2-.22h0a420.57,420.57,0,0,0-64.21-1.93c22.51-.73,41.63.56,64.41,2.12l2,.22A406.76,406.76,0,0,1,730.91,82l1.75.72a383.68,383.68,0,0,1,93.06,55.38l1.43,1.17q6.54,5.33,12.82,11c-4.36-3.91-8.8-7.75-13.34-11.45Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M555.69,51.71A490.07,490.07,0,0,0,499.52,57C518.62,54.74,536.42,52.61,555.69,51.71Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M701.22,62A297.39,297.39,0,0,0,606.3,43.45l-1.73-.05C571,42.47,535.73,46.84,499.52,57c46.53-12.36,71.21-12.83,105.37-13.48l1.74.06a299.41,299.41,0,0,1,95.2,18.7l1.54.58a286.83,286.83,0,0,1,27.24,12L728.76,74q-12.69-6.33-26-11.41Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M583.73,35l-1.37.09C555.82,36.78,528,44,499.52,57c28.67-13,56.59-20.17,83.27-21.87l1.37-.08a185.21,185.21,0,0,1,62.92,7l-1.21-.35A183.49,183.49,0,0,0,583.73,35Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M584.25,28.32l-.92-.13-.72,0C583.16,28.22,583.7,28.24,584.25,28.32Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M554.17,29.09c-17.56,3.63-35.88,12.8-54.65,27.94,19-15.11,37.45-24.25,55.17-27.86l.91-.18c.72-.14,1.45-.21,2.16-.33-.92.08-1.83.16-2.69.25Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M557.76,28.66a176.35,176.35,0,0,1,24.85-.51A82.61,82.61,0,0,0,557.76,28.66Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M717.91,511.11h0l.46-4.69-21.9,10.34L687.07,529l-1,5.75c-1.5.27-3,.52-4.52.78L677.12,530l-11.55-3.1-2.66,3-5.49-1.81,1.81,7.87-4.75,2.46L663.19,568l11.56-2.35,3.8-7.56,16.9-8.74,5.19-.82,4.25-5.7,19.38-11.95-.23-5.27,3.74-2.77Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="735.3 540.6 723.64 544.83 728.11 549.39 735.12 546.44 735.12 546.44 735.3 540.6" style="fill:#d9dadb"></polygon><path d="M718.37,506.41l-.46,4.69h0l9.87,11.68,1.34-1,6.51-4.94,6.66-1.54,1.31-7,6.06-2.29,1.86-7.2,6.17-3.36.3-11.91L764.63,466l-9.21-8.78-11-.55-5.7-5-4.35,2.65,2.24,5.3-3,1.78,0,9.42,5.16,5.91-1,16.72Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M737.12,450.24l-1-7.24-.61-4.22-2.11-.6-3.34,11.23-3.34,4.19-2.57,6.24q-5.24,1.2-10.54,2.34l-2.71,2.13-6.26-1.58,6.78,10.78,23-1.45.17-.1-1-1.17,0-9.42,3-1.78-2.24-5.3,4.35-2.65Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="691.5 448.75 691.5 448.75 691.5 448.75 691.5 448.75" style="fill:#d9dadb"></polygon><polygon points="692.08 437.33 689.51 435.76 687.67 440.25 687.29 445.12 691.5 448.75 693.85 443.29 692.08 437.33" style="fill:#d9dadb"></polygon><path d="M665.57,526.94l11.55,3.1,4.41,5.45c1.51-.26,3-.51,4.52-.78l1-5.75,9.4-12.21,21.9-10.34,19.37-13,1-16.72L734.63,472l-.17.1-23,1.45-6.78-10.78-1.26-2-4.21-3.64L694,450.64l-.73-5.45-7.72-5.91-2.95-.13-3.11-4.87-6.73,1.22-2.88-4.05q-8.58,1.5-17.32,2.88l-21-14.59-13-6.66-8.55.44-13.48,7.13,6.89,7.19L601,433.17l-5.65,1.26L592.06,441l-9.53-.81.62,8.73h3.06l17.11,21.68,2.82,6.76,8,4,6.61,10.76,1.52,10.68,5.15,5.76,8,3.71,9.65,14.35,4.29,2.51,4.66,8,.46,1.46,4.75-2.46-1.81-7.87,5.49,1.81Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="561.64 373.78 556.97 376.44 551.83 376.73 546.95 380.48 550.13 383.09 554.6 382.63 557.29 380.25 560.19 379.4 559.3 377.99 561.49 375.58 561.64 373.78" style="fill:#d9dadb"></polygon><polygon points="572.22 382.46 568.46 394.66 568.21 396.42 573.45 394.88 574.99 394.44 575.29 394.34 578.95 385.61 576.96 381.7 572.22 382.46 572.22 382.46" style="fill:#d9dadb"></polygon><path d="M717.69,782.07l-1-11.61-4.49-5.89L708,774.45l-3.66,3.61-2.55-.17-2.61,5.39,2,2-11.9,7.55-2.22,1.21-4.47,3.07-2.53-.36-6.17,2.64-4.94,10,1.35,8.94,1.57,2.06-.26,3-6.18,8.72-4.2,4.51-.44,5.68,2.47,4-1.44,4.6,2,3.17,7.25,2.4,14.34-5.74,6.4-10.39,2-5.5L709,806.16c.28-1.94.55-3.9.81-5.86l3.23-3.34-.47-8.51,6.47-2.83Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><polygon points="573.85 399.17 573.45 394.88 568.21 396.42 566.97 404.7 564.05 410.29 563.08 410.54 569.42 426.66 570.37 424.62 575.01 411.7 573.86 399.18 573.85 399.17 573.85 399.17" style="fill:#d9dadb"></polygon><polygon points="594.27 392.51 580.38 402.44 573.89 399.1 573.86 399.18 575.01 411.7 570.37 424.62 570.63 428.19 580.16 429 583.41 422.44 589.06 421.19 591.53 415.86 584.64 408.67 598.12 401.54 594.27 392.51" style="fill:#d9dadb"></polygon><path d="M568.36,877.52l3.87-.6c.13-2.34.26-4.72.38-7.12L567.84,868l-4.25,5.43Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M486.78,917.66l3.38-1.68,9.25-.42,5.46-1.93,16.11.7,1.4-1.18,10.67-1.41,9.79-4,15.56-9.89L568.81,887l7.76-4.83,3.86-7.89a1.15,1.15,0,0,0,0-.19c-2.69.21-5.38.41-8.09.6l-.12,2.25-3.87.6-4.77-4.1,4.25-5.43,4.77,1.81,1.95-3c.09-1.87.19-3.76.28-5.66l-3.91-5.3,1.66-2.38-3.21-3.81-1.07-1.25-6.54,1.39-3.71-1.53-4.43,1.22-2.25.62-1,1.76-5,.87-2.3,3.34-5.75.65-3.46,7.62-6.55.68-3.56,6.11q-3.53.11-7.06.18l-7.62-3.22L504,869.54l-1.34,4.14-5.17,3.82c-2.85,0-5.71,0-8.58,0l-1.72-2.45,3.07-2.3-3.65-5.59-4.93-1.57q.84,10.35,1.72,20l-4.61,1-.48,2.13-8.05-.12-6.75-1.76,1.24-2.3-3.94-1.3-4.21,1.8.29.27,2.61,2.43,4.44,6.7,8.56,8.4.52,4.65-3-.41,4.8,5-.51,2.29Zm54.34-29.86,7.21-2.55,5.51,2.38-2.92,4.62h0l-5.28.26-3.71,3.87L537.28,892Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M553.84,887.63l-5.51-2.38-7.21,2.55L537.28,892l4.65,4.43,3.71-3.87,5.28-.26h0Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M582.8,818.17l2.34-4.58-5.49-2.9L575.16,813,571,809.74l-7.32.23c0-.76,0-1.52,0-2.28h-5.35l-7.26,2.75-.93,4-8.45,3.18L538,823.45l-3.83,1.84-5.12-2.4L522.9,824l5.2,6.18c0,1.24,0,2.48.07,3.71l9.06,2.45.72,3,4.11.21,2.18,5.68,8.74.29.66,3.81a1.48,1.48,0,0,1,0,.21l4.43-1.22,3.71,1.53,6.54-1.39,1.07,1.25,9-7,0-5.58,3.47-.14,3.43-4.1-3.05-2,1.28-2.22-2.87-1.49,5.07-6.31Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M488.89,877.52c2.87,0,5.73,0,8.58,0l5.17-3.82,1.34-4.14,5.09-1.42,7.62,3.22q3.54-.08,7.06-.18l3.56-6.11,6.55-.68,3.46-7.62,5.75-.65,2.3-3.34,5-.87,1-1.76,2.25-.62a1.48,1.48,0,0,0,0-.21l-.66-3.81-8.74-.29-2.18-5.68-4.11-.21-.72-3-9.06-2.45c0-1.23,0-2.47-.07-3.71L522.89,824l-8.23,1.36-5.1,3.56-2.93-2.51-19,2.71q.6,10.54,1.22,20.51l-8.38,0q.6,8.22,1.22,16l4.93,1.57,3.65,5.59-3.07,2.3Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><polygon points="493.35 808.93 493.34 808.93 493.35 808.93 493.35 808.93" style="fill:#ff7b00"></polygon><path d="M509.56,828.89l5.1-3.56,8.23-1.36-3.45-4.12-6.91-.43-7.29,1.5-16,3.1q-10,0-20.13-.13l-3.68-2.75q-17.56-.3-35.2-1.1l-4.86-3.69-6-.31-4.1,3-4.79-.29.53,3.37,13,13.55,2.28,4.2,9.08,9.06,1.5,2.44-.32,2.63.92,5.84,3.74,5.38.42,3.94,4.89,8.78,4,4,6.06,3.11,4.21-1.8,3.94,1.3-1.24,2.3,6.75,1.76,8.05.12.48-2.13,4.61-1q-.88-9.62-1.72-20-.63-7.82-1.22-16l8.38,0q-.63-10-1.22-20.51l19-2.71Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><polygon points="362.2 649.75 364.92 643.41 359.08 640.86 355.25 645.59 362.2 649.75" style="fill:#ff7b00"></polygon><path d="M599.26,814.76l4.71.06,5.83-17.5-6.07-3.66L603,798l-6.67-.88-2.92-5.5c0-1.81.07-3.63.1-5.47l-2.8-2.8L592.9,779l-1.16-9.55-1.52-2.69,1.3-5.24h0l-8.44-1L586.74,771l-2.7,2.19,1.7,9.45-4.46,8,3.17,4.71,3.38,5,4.57-.38,2.47,3.55-2,3.42Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M646.31,778.25l-1.94-9.65,2.54-5.15-16.48,8.88-4.32-1-4.64,3.94-3.62-1.52-5.1,3.91-4.85-3.9-6.28,2.82-2.3,4.66.73,9.53,2.35,1.86,1.33,1.06,6.07,3.66L604,814.82l-4.71-.05L592.91,807l2-3.42L592.4,800l-4.57.38-3.38-5h0l-22.31,7.56,1.57,4.75c0,.76,0,1.52,0,2.28l7.32-.23,4.15,3.29,4.49-2.34,5.49,2.9-2.34,4.58,3,2.61-5.07,6.31,2.87,1.49-1.28,2.22,3.05,2-3.43,4.1h0l-3.47.14,0,5.58-9,7,3.22,3.81h0l-1.66,2.38,3.91,5.3c-.09,1.9-.19,3.79-.28,5.66l-1.95,3c-.08,1.63-.17,3.26-.26,4.87,2.71-.19,5.4-.39,8.09-.6l.07-1.26.34-7L584,863.9l14.1-5,3.65-3.4-.44-9.9-1.18-8.77-3.35-2.16-.49-5.62L610.84,823l3.73-6.3,10-5.66,7.85-2.12,6.19-4.5h0l8.52-12.79Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><polygon points="897.15 519.48 895.15 513.86 891.17 511.1 890.81 515.1 891.75 526.32 890.9 527.23 894.46 540.61 896.9 542.31 902.05 534.87 902.05 534.87 902.12 527.26 897.15 519.48" style="fill:#d9dadb"></polygon><path d="M992.64,551.39l-.89-10.59-1.39.42.14-8.44-1.53-1-4.42-7.44-.41,3.73-2.14-3L981,521l-3.74-3.3-.79-2.52-2.79-4.61-3,3.77L967,515l1.3,5.77,4,5.57,1.17-.55,2.51,4.68.77,4.63,2.78,2.94,1.52,9.72,1.24,0,2.93,15.2c2.09,4.93,3.87,11.88,5.42,17l1.69-4.41,1.08-15.14.53-4.64-.4-5.52Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="935.4 443.67 935.05 445.86 937.45 460.57 939.9 463.51 938.61 452.71 935.4 443.67" style="fill:#d9dadb"></polygon><polygon points="939.9 463.51 939.9 463.51 939.9 463.51 939.9 463.51" style="fill:#d9dadb"></polygon><path d="M994.57,536.84l-1.19,3.54-.12,5.54c.22-.49.43-1,.63-1.45l.78,6,.93-7.09-.9-1.61Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="951.87 346.36 953.09 353.81 955.41 359.5 957.04 359.09 955.94 351.9 952.77 342.32 951.87 346.36" style="fill:#d9dadb"></polygon><path d="M950,297.65l-2.75-5.26L945,287.78l-.59-1-1-2-.59-.67,1.41,3.13,6,12.16,2,4.07,3.25,5.82c0-.17-.1-.33-.16-.5l-2-4.22Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="962.28 342.97 961.93 341.94 959.22 334.16 959.01 333.58 955.89 325.17 955.22 323.43 951.7 314.63 953.59 319.54 953.64 320.05 957.06 329 960.5 338.19 960.76 339.36 964.25 349.21 963.58 346.97 963.64 347.16 962.28 342.97" style="fill:#d9dadb"></polygon><polygon points="966.07 354.71 965.52 352.92 965.11 351.65 965.18 351.88 966.07 354.71" style="fill:#d9dadb"></polygon><polygon points="964.05 348.32 963.64 347.16 965.11 351.65 964.05 348.32" style="fill:#d9dadb"></polygon><polygon points="967.43 359.16 968.44 362.6 967.64 359.89 967.43 359.16" style="fill:#d9dadb"></polygon><polygon points="972.99 379.35 974.5 385.59 973.98 383.36 972.99 379.35" style="fill:#d9dadb"></polygon><polygon points="974.5 385.59 975.08 388.1 974.92 387.33 974.5 385.59" style="fill:#d9dadb"></polygon><polygon points="977.51 399.05 976.03 392.16 975.08 388.1 977.63 400.07 979.81 411.27 978.41 403.46 977.51 399.05" style="fill:#d9dadb"></polygon><polygon points="983.9 559.48 982.79 563.39 982.89 560.12 981.02 563.65 978.75 574.14 980.09 573.46 979.63 576.87 981.09 573.64 982.66 567.81 982.86 568.45 983.13 566.96 985.1 550.88 984.75 552.91 983.9 559.48" style="fill:#d9dadb"></polygon><path d="M508.63,777.11l-14.84,3.21.44-10.79L491.32,766l1-5.73-2.41-5.35,2-5.64q-6,0-12,0c-.05-1.21-.1-2.43-.14-3.65l-9.86,1.23-.75,8.54q-7.69-.09-15.42-.27l-7.91-9.87.6-4.75-2.92-3.25q-15.44-.47-30.9-1.31l-3.31,3.55,9.08,15.16c.05.9.11,1.8.17,2.7l-3.28,2.52,7.56,12.39.86,7.87-10,11-2,11.78-3,4.31,1.43,9.51.31,2.06,4.79.29,4.1-3,6,.31,4.86,3.69q17.63.81,35.2,1.1l3.68,2.75q10.08.15,20.13.13l16-3.1h0l-10.6-7.41-1.14-21.91q7.8,0,15.58-.19Q508.86,784.37,508.63,777.11Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M552.85,699.66l-4.17,6.82,1.78,4.36,6.51-1.38.25-2.64,6.27-.06,3.18-.19-4.62-10.74-6.43,2.69Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M557.22,706.82l-.25,2.64-6.51,1.38,2,6,2.45-.34,2.75,9.52,9.78-10.26c0-1.25,0-2.51-.08-3.76l-4.49.18.57-5.39Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M583.09,760.53l-5.5-.69-2-3.51-5.27-1.49.56,1.43L569.63,760l-6.87-2.56-.78-2.82-11.18,3.08-4.88,5.28,3.19,5.57-1.93,11.17,6.64,5.88,5.78-1.85c0,3.11,0,6.2,0,9.25l-6.77.37-5.94-5.91-7-2.62-3.38-3.88-4.07,2.84-9.81-1.89-1.34-3.31L515.71,780l-2.44-4.4-4.64,1.47q.22,7.25.45,14.29-7.77.14-15.58.19l1.14,21.91,10.6,7.41h0l7.29-1.5,6.91.43,3.45,4.12h0l6.16-1.08h0l5.11,2.4,3.83-1.84,3.71-5.78,8.45-3.18.93-4,7.26-2.75h5.35l-1.57-4.75,22.31-7.56h0l-3.17-4.71,4.46-8-1.7-9.45,2.7-2.19Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M601.62,776.55l6.28-2.82,4.85,3.9,5.1-3.91,3.62,1.52,4.64-3.94,4.32,1,16.48-8.88-1.72-.9-5.81-2.85-2.91-12.9-.21-3.86,2.48-6.71-6.15-6.8,2.88-9.85-12.63-7,2-4.41-31.71-15.93-6,9.75,4.27,1.59L587,707.85l-8.2-1-3.85,4.5L572.47,705,575,698l-1.9-2.84q-5.49.38-11,.71l4.62,10.74-3.18.19-.57,5.39,4.49-.18c0,1.25.05,2.51.08,3.76L557.71,726,562,740.68l4.31,4.05,4.05,10.11,5.27,1.49,2,3.51,5.5.69,8.44,1,7.06,4.17c0,2.75-.06,5.48-.09,8.19Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M722.08,564.81l-3.82-.64-4.65,5.06-19.67,6.53-6.76,5.45-5.77-2-5.74,6.21-4.9.48-7.89-7L658,589.09l10.78,11.66,22.42,3.87c2.85-.49,5.68-1,8.51-1.5l-20,30.92h0l-7.78-1.35L665,637.61l-.64,4.88q-3.58.53-7.2,1l-8.28,13.25q.46,11.4.76,22.75c.06,2.29.11,4.56.16,6.83l4.15,4.81.73-1.41,3-6,18.48-21.33,12.66-11,18.61-29.68,13.63-36.1-.29-7.48,3.66-1.87Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><polygon points="595.58 551.25 601.08 547.97 603.05 550.39 607.47 545.22 609.62 547.63 614.34 544.48 616.59 547.19 627.68 547.47 640.24 560.93 647.75 557.19 648.07 556.29 631.24 540.76 619.62 538.59 613.06 523.74 609.28 517.26 605.52 523.92 601.49 522.37 595.02 529.53 598.34 534.56 593.62 542.99 595.58 551.25" style="fill:#ff7b00"></polygon><polygon points="640.24 560.93 636.69 567.5 638.13 575.34 646.11 577.11 650.99 566.95 650.18 566.23 644.34 566.79 647.75 557.19 640.24 560.93" style="fill:#ff7b00"></polygon><path d="M592.24,685.39l2.65-7.76,5.91-7.4-2.37-8.94-4.29-3.6,1.45-3.59-5.5-3-4,4.46-3.59-1.87-7.26,2.7L568.11,654,565.06,659h0L563.89,661l2.27,3-1.31,3.55,4.42,3-8.5,7.83-4.66,9-.49,11.2,6.43-2.69q5.52-.33,11-.71l-.84-1.27L576,687Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><polygon points="636.96 644.77 636.96 644.77 636.96 644.77 636.96 644.77" style="fill:#ff7b00"></polygon><path d="M649.89,645.88l-3.7-2.23L640,647.42l-2.61,4.81-12.51-.6-10.41-6.17-6.47.93-1.81-1.68q-6,.57-12,1.1l-3.94,5.07-.18.21,5.5,3-1.45,3.59,4.29,3.6,2.37,8.94-5.91,7.4-2.65,7.76,7,3-6.09,3.86,31.71,15.93-2,4.41,12.63,7,.5-1.7,5.07-7.57-1-4,3.72-5.67,9-7.16,1.15-2.28-4.15-4.81c0-2.27-.1-4.54-.16-6.83q-.3-11.34-.76-22.75h0l7-11.25Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M582.21,620.05l6,.73,9,7.7,1.28,8.54,3.45,2.24,4-2,.33,7.34,0,.09,1.79,1.66,6.47-.93,10.41,6.17,12.51.6,2.61-4.81,6.16-3.77,3.7,2.23,6-.37,1.23-2q3.61-.5,7.2-1l.64-4.88,6.91-4.91,7.79,1.34h0l20-30.92c-2.83.51-5.66,1-8.51,1.5l-22.42-3.87L658,589.09l-8-1.77-1.44-7.83,3.55-6.58-12.56-13.45-11.09-.28-2.25-2.72-4.72,3.15-2.15-2.41L615,562.37,613,560l-5.5,3.27-2,5.55q.3,4.08.59,8.16l-5,.49-4.39,7.92q.25,4,.49,7.95l-4.61-.6-1.53,11.9c0,.51.06,1,.08,1.52.12,2.16.23,4.33.35,6.49l-8.66.94Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M996.77,459.09h0l-.18-1.1v0l.29,5.27.64,4.52-.27-4.47C997.1,461.92,996.94,460.5,996.77,459.09Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="987.48 517.33 987.45 517.23 987.42 517.66 987.41 519.31 987.48 517.33" style="fill:#d9dadb"></polygon><path d="M998.93,484.71l.13,2.41.08,4.92-.26-.67-.12,4.42.12,4.51-.31,3.28-.3,5.16-.84-2.72q-.18-3.74-.43-7.46l-.08,13.18.2,4.06.36.06-.05,5.15.77,4.13-.12,4.72.16,4.7-.13,4,.67-3.38.2-3.42-.2,6.52.54-8.61.22-31.35C999.5,494.13,999.26,489.49,998.93,484.71Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M998.46,476.41c-.09-1.26-.19-2.51-.3-3.77l-.38-4.9c-.23-2.45-.47-4.89-.74-7.32-.07-1-.16-2.07-.28-3.1.57,8.14,1.54,18,2.17,27.39l-.2-3.71Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M998.73,481l-.27-4.59c-.09-1.26-.19-2.51-.3-3.77l-.38-4.9c-.23-2.45-.47-4.89-.74-7.32-.07-1-.16-2.07-.28-3.1h0l-1.94-15.44-1.26-8.15q.09.64.15,1.29l2,14.53.25,2.58.35,2.52.45,4.44h0c.17,1.41.33,2.83.48,4.24l.27,4.47-.64-4.52,1,15.26-.22,7,0,2.09.69,11.52-1,1.8-.4-2.32v0q.25,3.72.43,7.46l.84,2.72.3-5.16.31-3.28-.12-4.51.12-4.42.26.67-.08-4.92Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="982.91 429.79 982.92 429.89 982.94 430.06 982.91 429.79" style="fill:#d9dadb"></polygon><polygon points="398.49 718.06 398.49 718.06 398.49 718.06 398.49 718.06" style="fill:#ff7b00"></polygon><path d="M410.79,722.1l-7.34,3.6,1.56,1.65,0,0,1.61,4.4,3.83,1.46c0-.1,0-.19.07-.29l-.15-2.92h0L415,727.2Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M555.62,698.52l.49-11.2,4.66-9,8.5-7.83-4.42-3h0l1.31-3.55-2.27-3,1.16-1.94H565l-7.57-9.54-4-1.31-2.71,3.49-3.56-1.33-2.88,2.51-5.93-2.74-.09-2.72-6.34-1.92-4.18.81-9.27-1.93-.75,3.78-5.23.89-2.57-2.56-8.69,3.87-4.41-.25-3.34,5.87-9.87-1.58L481,651.49l-4.67,2-5.24-7.5-6.52,1.78L462,652.6l-3.09.89,2.09,10L456,672.91l-.75,13.91-2.19,2.77c0,.13,0,.26,0,.4,0,1.31.07,2.62.1,3.93l-3.33,4.61-4.4.81-5.35,8.17,1.29,9.64L439,722.34l-3.54.89L430,729.68l-5-.22-.58-5.12-4.27,2.74-3.13,2h0l-2-1.88-4.62,2.85.15,2.92-.07.29,3.37,1.27-1.27,1.39q15.46.84,30.9,1.31l2.92,3.25-.59,4.75,7.9,9.87q7.73.18,15.42.27l.75-8.54,9.86-1.23c0,1.22.09,2.44.14,3.65q6,0,12,0l-2,5.64,2.41,5.35-1,5.73,2.91,3.57h0l-.44,10.79,14.84-3.21,4.64-1.47,2.44,4.39,5.62-1.48,1.34,3.31,9.81,1.89,4.07-2.84,3.38,3.88,7,2.62,5.94,5.91,6.77-.37c0-3.05,0-6.14,0-9.25l-5.78,1.85-6.64-5.88,1.93-11.17-3.19-5.57,4.87-5.28L562,754.57l-2-7-4.3-2.51L552,738.13l1.25-4.43-2.4-4,.41-12.75,1.25-.18-2-6-1.78-4.36,4.17-6.82Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M396.65,679.73l.87,0q-.11-4.78-.18-9.59l-.87-.06c-3-.19-5.88-.4-8.8-.61L383,666.29,384,676.8h0l-.81,2Q389.89,679.28,396.65,679.73Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M426.32,685.13l-4.63-8.49-8.31,2.09q-.09-4.31-.17-8.62l-6.33-2.88-9.59-.32c0,1.09,0,2.19,0,3.28q.07,4.8.18,9.59l-.87,0q-6.75-.45-13.42-1l-4.16,9.75-4,1.25,7.54,14.17,4.93.48.57,4.56,9.15,10.07,7.93-2.38-4.34-5.12c-.06-1.49-.12-3-.17-4.49l5.73.2,3.41-4.8h0l3.15,6.45,3.85.2,2.76-2.59,5.21,3-.2-16.51-5.9-3.45,2-4.8Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M456,672.91l4.93-9.44-.42-2,0,0-10.36-3.63-7.23,2.41,1.68,5.24-4.47,5.11,1.34,3.59-3.81,2.63-3.32-4.88-3.07,2.15-4.13-3.14-13.9-.82c0,2.88.1,5.75.16,8.62l8.31-2.09,4.63,8.49-5.58-.4-2,4.8,5.9,3.45.2,16.51-5.21-3-2.76,2.59-3.85-.2-3.15-6.45h0l-3.42,4.79-5.73-.19c.05,1.5.11,3,.17,4.48l4.34,5.12-7.93,2.38,6.17,6.65,7.34-3.6,4.22,5.1,2,1.88h0l3.13-2,4.27-2.75.58,5.13,5,.22,5.45-6.45,3.54-.89,2.42-5.19-1.29-9.64,5.35-8.17,4.4-.81,3.33-4.61c0-1.31-.07-2.62-.1-3.93,0-.14,0-.27,0-.4l2.19-2.77Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M464.59,647.76l6.52-1.78,5.24,7.5,4.67-2,2.56,2.86,9.87,1.58,3.34-5.87,4.41.25,8.69-3.87,2.57,2.56,5.23-.89.75-3.78,9.27,1.93,4.18-.81,4.78,1.45-1.07-5.67-4.55-4-4.38-.11-.15-5-9.32-5.28c0-1.16-.06-2.32-.1-3.48l-4.59-3.06-6.23.56h0l1.48-3.78-7.8-.39,3.07-9.19-6.65-7.66-3-3.54L485.71,600l.09,6-4.25.55-6.47,7.1q-5.71,0-11.43-.1l-4,8.25-7.08.62-7.07,3.76-3-3.4-10.74,4.49-1.64,3.92-2.6-.11-.27,4.47-5,1.26,3.9,8.26-.37,5.16,6.06,3.25-3.62,3.65,9.36,6.54,2.59,7,4.47-5.11-1.68-5.24,7.23-2.41,10.36,3.63,0,0-1.67-8,3.09-.89Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M528.89,610.42l-4.45-1.48-2.77-7.59-6.91,1.11-.82,4.11-4,3.51-2.2,7-1.47,3.78h0l6.23-.56,4.59,3.06c0,1.16.07,2.32.1,3.48l9.32,5.28.15,5,4.38.11,4.55,4,1.07,5.67,1.56.47.09,2.72,5.93,2.74,2.88-2.51,3.56,1.33,2.71-3.49,4,1.31L565,659h.08l3.05-5.07,7.16,2.43,7.26-2.7,3.59,1.87,4-4.46.18-.21,3.94-5.07q6-.52,12-1.1l0,0,0-.09-.33-7.34-4,2L598.45,637l-1.28-8.54-9-7.7-6-.73.64-6.5,8.66-.94c-.12-2.16-.23-4.33-.35-6.49l-6-2.35,1.18-5.44-4.6-4.4V581.6l-9.21,3.22,2.27,8.07-7.63,11.44-4.2.61-7-4.34-4.28,1.85c0,1.09.09,2.18.14,3.28l-19.16,2.06Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M509.35,445.74h0c.51,19.68,1,39.6,1.54,59.64,32.08-.82,63.68-2.89,94.33-6.09l-.86-1.83-.23-.5-12.07-9.6-.36-7.54-4.86-3.69L574.4,451.56,565.54,446l-2.25-14.28,7.36,11.74,6.67,3.6,4-8.41L575,422.52l-8,2.07-14-2.89-5.14,3.48h-2.3l-5.91,4.08L530.23,426,516,423.35l-4.34,1.14-4.55,3.82,3.76,5.26-4.4,5.25Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M613.39,534.35l4,1.56,3.76-6.66-.64-1.09-9.69-5.63-.7-4.11-2.39-13.76-2.54-5.36c-30.65,3.2-62.25,5.27-94.33,6.09q.21,8.08.42,16.2c-2.53.07-5.07.12-7.61.17,0,1.32.06,2.64.08,4q.3,14.91.62,29.87-4.86.1-9.72.16l2,5.11-6.45,4.83,2.91,4.71-7.9,7.55,2.38,6.63,5.73-1.46.44,5.56,4.52,3.43-1.89,7.73h0l6.65,7.66L500,616.68l7.8.39,2.2-7,4-3.51.82-4.11,6.91-1.11,2.77,7.59,4.45,1.48,3.72-2.63,19.16-2.06c0-1.1-.09-2.19-.14-3.28l4.28-1.85,7,4.34,4.2-.61,7.63-11.44-2.27-8.07,9.21-3.22v12.33l4.6,4.4-1.18,5.44,6,2.35c0-.51,0-1-.08-1.52l1.53-11.9,4.61.6q-.24-4-.49-7.95l4.39-7.92,5-.49q-.29-4.08-.59-8.16l2-5.55-2-8.26,4.73-8.43-3.32-5,6.47-7.15Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M503.78,525.71h0c-19.38-9.8-45-23.25-64.14-33.61l-8.31,4.33.4,12,6.87,10-3.46,3.72-1.41,24.11-17.91,17.95,4,11.1,5.83.26h0l5.07,14.87-1.08,7.68,5,7.61-12.14-1.1-3,4.49,10.05,7.29,4.8,4.76-2.54,6.09,10.75-4.49,3,3.4,7.07-3.76,7.08-.62,4-8.25q5.72.07,11.43.1l6.47-7.1,4.25-.55-.09-6,7.63-3.67,3,3.54h0l1.89-7.73-4.52-3.43-.44-5.56-5.73,1.46-2.38-6.63,7.9-7.55-2.91-4.71,6.45-4.83-2-5.11q4.86-.06,9.72-.16Q504.09,540.63,503.78,525.71Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><polygon points="386.65 350.69 392.37 347.99 395.19 338.58 392.33 332.51 388.56 335.29 385.75 334.31 386.17 343.3 383.63 349.29 386.65 350.69" style="fill:#d9dadb"></polygon><polygon points="502.31 350.88 499.56 347.85 495.65 352.36 500.3 354.41 500.3 354.41 502.31 350.88" style="fill:#d9dadb"></polygon><polygon points="396.09 316.94 394.67 317.27 392.92 319.04 390.9 319.44 390.05 321.68 390.84 324.07 390.01 326.58 390.52 329.05 392.57 330.5 394.64 327.44 394.5 324.66 396.75 318.84 396.09 316.94" style="fill:#d9dadb"></polygon><path d="M497.7,390.28l-2.34,4.39,8.74,4.87,12.25-2.24-1.65-4.8q-5.51.18-11,.3Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="420.24 358.16 415.9 356.56 411.56 357.13 410.7 359.37 421.76 365.12 424.18 368.17 427.62 369.46 429.5 365.57 427.87 362.56 431.5 356.22 420.24 358.16" style="fill:#d9dadb"></polygon><path d="M310.74,407.76l8.93,2.91,4.22-5-4.1-6q1.29-5.42,2.62-10.78l-2.73-8.1-14.88-4.22-1.25-5.24-2.82,1.06L289.67,386l-9.47,2.83-14.06,14.45L264.44,414l-15.35,12.06-8.93.67L238,428.56l-1.12,1.7h0q13.42,3.6,27.76,6.81,1-3.94,2-7.88l10-4.05,4.32.9,3.14-3.22q3.36.68,6.78,1.33l3.63-5.21,8.94-2.84-.71-5.44,4.95.89Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M227,438.37l-5.56,11.16-6.72,5.07-7.2,11-1.48.14-3,7.09-.74,1.8q11.53,3.57,23.81,6.83L228,469.56l3.79-3.22,4.35-.77q2.33-10.24,4.88-20.4h0q10,2.56,20.52,4.91,1.5-6.51,3.09-13-14.34-3.21-27.76-6.81l-3.28,5.06Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M410.65,414.76c.22-2.14.45-4.27.69-6.41l-.19-.11-8-4.92-1.89-4.13,5.77-3.86,3.54-4.58-4-7.78,5.24-7.81-8-2.68L395,375.15l-4.17,5.14L389.15,394l-7.53,5.09,1.64,6.14,3.9,2.44-.66,4.64,5.05,4.19-1,18.12,9.84-4.3-.2-6.21L412,417.62Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M343.39,521.13l13.35-1.28,14-11.57c10.24-6.54,25.51-12.39,36.43-17.71l-2.26-6.49-6.35-2.6-4.42.76.08-4.34L388,467.49l6.2-3.14-2.11-6.94,3.74-2.47-2.44-4.18c.29-2.74.57-5.47.87-8.2l-3.71-7.93,1-18.13-5.05-4.19.66-4.64-3.9-2.44-1.64-6.14,7.53-5.09,1.63-13.7h0l4.17-5.14-14.23-2.58-8.21,3-3.19-2.61-12.19-.61-2.76,1.49-10.57-.29-7.26,4.25-5.27-.23L323.85,382l-4.17-1.11,2.73,8.1q-1.34,5.37-2.62,10.78l4.1,6-4.22,5-8.93-2.91-3.07,3.8-4.95-.89.71,5.44L294.49,419l-3.63,5.21q-3.42-.66-6.78-1.33l-3.14,3.22-4.32-.9-10,4.05q-1.37,5.31-2.65,10.66l20.26,24.06c10.87,11.67,26,26.64,37.42,37.79-.17,1.33-.33,2.66-.5,4l6.06,4.79,3.08-.56,6,4.7L333.75,522Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M509.13,420.54,500,419l-3,.18-1.5-4.12-10.15-2.62-8.39,3.29-3.72,3.43.29,10.18-6.11,6-14.45-7.17-10.68-2.32-4.82-9.5-13.7-5.07-6.89.35-5.51-3.31c-.24,2.14-.47,4.27-.69,6.41l1.33,2.86-11.75,6.49.2,6.21-9.84,4.3h0l3.71,7.93c-.3,2.73-.58,5.46-.87,8.2l2.44,4.18-3.74,2.47,2.11,6.94-6.2,3.14,6.17,10.41-.08,4.34,4.42-.76,6.35,2.6,2.26,6.49L419.72,494l5.46,5.54,6.11-3.1,8.31-4.33c19.1,10.37,44.76,23.8,64.14,33.61h0c0-1.31,0-2.63-.08-4,2.54,0,5.08-.1,7.61-.17q-.21-8.12-.42-16.2c-.52-20-1-40-1.54-59.64l-2.86-6.93,4.4-5.25-3.76-5.26,4.55-3.82Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M413.21,670.11l13.91.82,4.13,3.14,3.07-2.15,3.32,4.88,3.81-2.63-3.93-10.56-9.36-6.54,3.62-3.65-6.06-3.25.37-5.16-3.9-8.26,5-1.26.27-4.47,2.6.11,1.63-3.92,2.54-6.09-4.8-4.76-10.05-7.29,3-4.49,12.14,1.1-5-7.6h0l1.08-7.68-5.08-14.87-5.83-.26.27,8.66,2.3,3-.88,5.17-2.28,1.45-3.52,9.64-4.34,1.51-1.21,9.63-4,.66-5.14,10.94-2.09,6.87-2.59-.17-2-.13-2.11-5.85-4.41,2.53-2.21-1.89-9.32,7.49,0,4.82-2.63,4.07,9.79,6.16,1.92,9.2-2.26,7.3v0l4.71,3.23c2.92.21,5.85.42,8.8.61l.87.06c0-1.09,0-2.19,0-3.28l9.59.32Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M284.21,463.92,264,439.86q-1.23,5.1-2.41,10.22Q251,447.74,241,445.17q-2.57,10.15-4.88,20.4l-4.36.77L228,469.56l-1.83,11.95q-12.27-3.27-23.81-6.83l-1.06,2.59,4,6L202.32,503l-5.06,10.61,12.63,1.51,3,5.67,3.8,1.08.13,5.07,4.81,8.6,3-1.07c.24-1.74.49-3.49.74-5.23l3.51-.79,2.45,5.93,3.76-2.16,4.86,1.15,4.57-2.33-.42,3.13q11.74,2.67,24,5.06l2.09-6.28-2.26-2.2c1-20.75,3.05-48.38,4.89-69.07Q278.45,462.83,284.21,463.92Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M201.22,534.55q-3.19-.93-6.33-1.88l-2,3.52-.47,2q2.56.8,5.18,1.56l5.7-1,1.89,2.42,5.76.72-.39-4.26-6.63-5.73Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M224.15,577.79l-4.31-1.08-1.9,1-2.38-2.1-3.92,7.22-1.24-.33.78,7.45,2.8,5,6.54,5.57.8,1,7.51-8.44-2.27-2.39c.16-2.39.33-4.79.52-7.18Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><polygon points="225.22 589.85 223.56 580.84 216.93 581.14 209.42 589.58 224.24 608.7 235.25 616.9 237.47 606.36 229.98 598.79 231.9 591.01 225.22 589.85" style="fill:#ff7b00"></polygon><polygon points="274.58 591.48 271.4 586.33 265.92 577.16 259.21 580.42 254.77 573.51 245.61 565.57 241.84 570.38 235.38 569.27 232.09 574.77 236.07 580.65 231.46 584.34 231.9 591.01 229.98 598.79 237.47 606.36 237.47 606.36 235.25 616.9 247.15 613.57 267.78 616.71 267.75 616.82 268.74 617.39 268.73 617.34 266.19 603.4 269.63 600.3 269.63 600.3 274.58 591.48" style="fill:#ff7b00"></polygon><path d="M203.27,538.77l-5.7,1q-2.61-.76-5.18-1.56l-.86,4.57.78,6,.74,1.16,7.29-1.13q5.07,1.47,10.27,2.89l2.87.77,2.22,2.47,2.69-1.49,1.66,3,3.85,1,1.32-5-.78-5.9-2.09.42-.9-2.87,1.34-3-1.17-5.36-4.81-8.6-.13-5.07-3.8-1.08-3-5.67-12.63-1.51-.6,1.26-3.32,7.6L190.62,524l4.27,8.65q3.13.95,6.33,1.88l2.68-2.63,6.63,5.73.39,4.26-5.76-.72Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M200.34,548.72l-7.29,1.13,2,3.09,4.86-.13L198.53,558l1.88,2.86.67,1,3.14-3.58c1.87.53,3.74,1,5.64,1.56l-1.62-5.15h0l2.37-3.11Q205.42,550.18,200.34,548.72Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M244,586.76l3.29-5.5-4.09-8.73,1.33-3.6-2.69-2.49L241.4,561l-3-2.41-2.8,4.88L231,560.58l-4.18,1.62-3.44-2.83.54-2.07-3.85-1-1.66-3-2.69,1.49-2.22-2.47-2.87-.77-2.37,3.12h0l1.62,5.15c-1.9-.51-3.77-1-5.64-1.56l-3.14,3.58,6.81,10,2,5.58.47,5,1.24.33,3.92-7.22,2.38,2.1,1.9-1,4.31,1.08,2.93,5.76c-.19,2.39-.36,4.79-.52,7.18l2.27,2.39,6.63-.3,1.66,9L243.8,603l-.44-6.67,4.61-3.69Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M247.28,581.26l6.46,1.1,3.77-4.81,6.4,5.58.29-5.16,3.34-1.8.32-5.55h0l2.81-.38,2.8-2c.26-3,.53-6,.82-9l2.35-1.46,4.51,2.7,4.64-3.25.85-2.9,5.31,1.54,1.27-4.56,8.9-4,3.32,2.66,2.63.39,7.05,1,2.77-2.25,13.11.57,3.9,1.65,6.54-8.18q.88-11,1.95-22l-9.64.85,2.52-7.34-6-4.7-3.08.56-6.06-4.79c.17-1.34.33-2.67.5-4-11.55-11-26.39-26.26-37.42-37.79q-5.76-1.1-11.39-2.25c-1.93,20.68-3.79,48.33-4.89,69.07l2.26,2.2-2.09,6.28q-12.28-2.4-24-5.06l.42-3.13-4.57,2.33-4.86-1.15-3.76,2.16-2.45-5.93-3.51.79c-.25,1.74-.5,3.49-.74,5.23l-3,1.07,1.18,5.36-1.35,3,.9,2.86,2.09-.41.78,5.9h0l-1.32,5-.54,2.07,3.44,2.83,4.18-1.63,4.63,2.88,2.8-4.88,3,2.41.44,5.46,2.68,2.49-1.33,3.6Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M278.09,615.39l2.54,13.94v0l6.65,3.77,22.68-7-3.55-8.9,1.6-13.55L303.53,596l2.91-12-4.78-2-3.44,2.86q-8-1.26-15.87-2.62L283.9,588c-.21,3.43-.41,6.87-.6,10.3l3.17,5.15-5,8.82Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M310,626.16l3-.95,4.78-.43-.91-3.93q.22-8.64.58-17.3L315,600.07l.81-4.93L311,591.47l.3-5.51-4.89-2-2.91,12,4.49,7.73-1.6,13.55Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M317.76,624.78l7.31-.36q.21-9.12.54-18.24l7.37-6.42c.06-1.56.13-3.13.2-4.69l4-3.47-4-7.28-4.49-8.21-4.7,1.32-3.33,7.85-5.11-4.15L311.33,586l-.3,5.51,4.76,3.67-.81,4.93,2.45,3.48q-.36,8.66-.58,17.3Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M301.66,582l9.67,4,4.22-4.83,5.11,4.15,3.33-7.85-2.36-4.25-5.22,1.12-3.64-7.74.57-3.8-5.27-12.44-2.63-.39-3.32-2.66-8.9,4L292,555.82l-5.31-1.54-.85,2.9-4.64,3.25-4.51-2.7-2.35,1.46c-.29,3-.56,6-.82,9l-2.8,2-2.81.38h0l-.32,5.55L264.2,578l-.29,5.16,2.75,2.37,4.45,6.9,6.7-3.26,5.49,9.17c.19-3.43.39-6.87.6-10.3l-1.55-5.78q7.84,1.37,15.87,2.62Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M435.1,522.1l3.46-3.72-6.87-10-.4-12-6.11,3.1L419.72,494l-12.57-3.41C396.27,496,379.88,499,369,504.32l-12.21,15.53-13.35,1.28q-1.06,11-1.95,22l-6.54,8.18-3.9-1.65-13.11-.57-2.77,2.25-7.05-1,5.27,12.44-.57,3.8,3.64,7.74,5.22-1.12,2.36,4.25,4.7-1.32,4.49,8.21,3.9-4.51q.35-6.18.73-12.34l4.9-4,6.13,3.68,6.69-2.87,3.66,4,1.73,7.24,7.27-4.22,7.77,6.23,7.45,1.39,3.61-6.07,11.15-.48,9.22,3.57,5.52-5.64,5-.22-2.09-5.91,17.91-17.95Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M352.45,645.87l13.1-.76,4.38-3.78,3.58,2.28,2.63-4.07,0-4.82,9.32-7.49,2.21,1.89,4.41-2.53h0l2.1,5.86,2,.13,2.59.17,2.09-6.87,5.14-10.94,4-.66,1.21-9.63,4.34-1.51,3.52-9.64,2.28-1.45.88-5.17-2.3-3-.27-8.66-1.86-5.19-5,.22-5.52,5.64-9.22-3.57-11.15.48-3.61,6.07L376,577.52l-7.77-6.23-7.27,4.22-1.73-7.24-3.66-4-6.69,2.87-6.13-3.68-4.9,4q-.39,6.16-.73,12.34l-3.9,4.51,4,7.28-4,3.47c-.07,1.56-.14,3.13-.2,4.69l-7.37,6.42q-.33,9.12-.54,18.24,6.74.86,13.58,1.65l5.22,6,5.63-1.49-2.27,9.64Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M497.26,98.49l.31,1,1.87.71,4.33-3.16-3.07-.42-1.37-1.78-1.42.52-.75-.75-1.36.73L492.69,94l-.42,1.78c-.91,0-1.83,0-2.74,0L492,97.13l2.17-.36-.23,1.74Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="469.59 97.55 471.17 96.91 471.29 98.43 472.83 99.94 476.89 92.99 478.21 92.61 478.65 90.88 480.55 90.46 481.46 91.43 483.65 90.91 482.75 89.36 480.22 87.74 478.71 87.64 478.17 85.5 475.23 84.12 474.41 88.17 473.22 85.52 472.38 84.57 470.76 86.95 470.3 85.47 470.79 84.6 468.81 84.04 467.55 85.14 465.69 85.42 466.07 89.66 467.67 90.12 467.77 91.49 472.4 88.95 471.9 91.39 468.08 93.05 468.14 93.85 469.15 94.37 468.59 95.76 469.59 97.55" style="fill:#d9dadb"></polygon><polygon points="484.77 97.56 489.24 94.6 485.42 93.66 485.22 92.34 481.91 93.04 482.42 94.23 481.52 95.82 484.93 95.54 484.77 97.56 484.77 97.56" style="fill:#d9dadb"></polygon><polygon points="329.55 148.01 327.74 149.76 331.64 150.53 336.18 155.51 343.69 154.08 348.07 154.65 351.82 151.77 352.75 153.37 355.15 151.17 357.84 151.19 358.35 148.97 360.3 148.14 360.6 143.8 361.67 141.74 359.13 140 355.22 140.76 352.85 141.89 350.15 139.16 346.37 142.06 346.98 139.01 343.82 141.75 341.2 141.85 344.08 138.28 342.06 134.8 333.36 138.99 335.09 140.37 337.6 139.74 339.65 140.61 337.67 142.3 330.62 142.58 331.77 145.09 335.58 146.08 333.9 147.84 329.55 148.01" style="fill:#d9dadb"></polygon><path d="M384.6,253.52l-2-2.67-3.73-.29-2.85.22q.92-2.37,1.84-4.71l1.05-1.12-.41-6.3-2.93-1.05,1-7.27-1.89-3.64-5.49-.88,6.67-3,6.22-6.39-5.55-1.64-4.43.76,8.22-6.25-6.34.07-1.41-1.49-6.34,6.3-.43,2.81-4.61,2,.34,2,4.31-1-6.72,5.81,1.29,2.14,3.94-.57-5.28,5.4,2.85,1.11,1.2-1.65,5.09-.64L365,236.42l.54,1.69,2.6.2-3.52,4.22,0,3-5.13-.9-1.61-1.78-3.8,4.55,2.84.43-1,3.32-6,2.4,5.68,3.25,7-.45-5.7,4.35-5.79-.77-9.56,6.44,7-2.09,2.85,2.07,2.15-1.76,4.31,1.66,5.51-2.1,7.66,2.17,7.83-3-4.93-1.67,5.5-2.32Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="356.48 194.59 356.84 192.25 353 193.35 351.63 197.34 356.48 194.59" style="fill:#d9dadb"></polygon><polygon points="353.07 198.76 347.3 201.5 350.35 203.85 353.07 198.76" style="fill:#d9dadb"></polygon><path d="M378.4,188l4.75-5.44c-1.9,0-3.8-.17-5.7,0l.52,2.31-1.18,1.72Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="384.93 185.18 385.14 182.98 378.88 186.46 379.67 190.37 384.93 185.18" style="fill:#d9dadb"></polygon><path d="M383,207.72l3.64-3.72-4.66-.17-2.38,3.3Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="333.96 222.71 334.55 224.62 338.56 222.66 339.6 225.67 345.18 222.66 344.25 216.47 341 217.49 341.01 216.06 333.96 222.71" style="fill:#d9dadb"></polygon><polygon points="332.55 238.72 332.55 238.72 332.55 238.72 332.55 238.72" style="fill:#d9dadb"></polygon><polygon points="338.39 217.22 338.62 215.16 332.17 218.13 333.89 219.91 330.6 222.44 325.19 220.21 325.25 223.31 321.56 225.53 325.47 228.45 314.7 234.77 316.33 237.65 314.91 240.74 320.86 240.89 326.78 238.19 332.55 238.72 336.89 233.43 339.6 225.67 338.56 222.66 334.55 224.62 333.96 222.71 341.01 216.06 338.39 217.22" style="fill:#d9dadb"></polygon><polygon points="11.22 504.47 11.22 504.41 11.22 504.28 11.22 504.47" style="fill:#d9dadb"></polygon><path d="M68.78,717.71l9.37,18.95,0,0L80,740.13l1.83,3.45,4.1,7.41h0l0,0,.2.36c6.2,10.54,14.58,23.45,22.07,34.82l-1.16-2.34L102.32,776l-5-8.24-1.44-3.58L95.77,761l1.9,1.81-.27-1,1.19.36-.5-1.73,6.18,4.57-1-3,1.38-.41q-1.16-2.48-2.27-5l-.43-6.15-3.4-10.35.35-2.54-2.66-9.92-6.46-20.25,1.91-1.28.62-10-.07-2.38,1.78-1.34,1.12-4.27-1.27-3.23,2.45.17-.13-14.24-4.78-16.16-1.79-2.89-4.07-2.48-5.77-10.54-2.16-6.17-6.22-11.15-4.19-1.93-2-3.63-2.36-1.64-3-6-1.17-1.39-1,3.5-2,.38,1-6.89-1-4.25L52.7,594l-1-2.95-.76-.29-.73-2.65-.91-.76L48.88,585l-2.36-3-2,7.32-.94-6.08.94-3v-4L42,570.94l-1.34-6,.4-8.63-1.81-5.56-.34-10,.11-6.69-.71-5.56-1.85,7.81-1.08,7.45-.69-.75-.2-3.2-.81-1.61-.53,2.2-1-2.27L31.49,532l-1.41.75.21,5.18-1.18-2.37h0l-1.21-2.69-.32,1.52-.47-2.88-.3,2.27-.58-.22-.58-7.39c0-2.26.05-4.51.1-6.77l-.21-5,.94-6,.05-12.63-.67-1.9-.54,4.79c-.09-.41-.17-.81-.24-1.21l-.49,2.68-.16-3.74-.37,2.88,0-9.14-.13-2.15-.47,15.8.09,6-.4,3.28v3.36l.14,7.71C26.27,616.64,50.84,675.06,68.78,717.71Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M114.19,795.23l-6-9,0,0Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="21.22 528.47 21.75 526.27 22.56 527.88 22.76 531.08 23.45 531.83 24.53 524.38 26.38 516.57 25.61 514.56 24.27 503.58 22.63 497.17 21.22 501.43 20.79 510.13 21.44 515.99 20.25 526.2 21.22 528.47" style="fill:#d9dadb"></polygon><path d="M34.52,509.16l-.22-1L32,502.55l-1,1.39-1.14-5.6-.58,7.4-.63-1.6-.93,7.42.77,8.7,0,5.31.49,4.11.13,5.88,1.18,2.38-.21-5.18,1.41-.75.66,6.17L33.34,528l-.65-5.87.43-8.7Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M29.32,505.74l.58-7.4-.64-10.4.43-4.84-.23-12.3-1.2,2.78-.52,6.13-.78-.9-.73,5.28-.37,9.74.67,1.9-.05,12.63-.94,6,.21,5c-.05,2.26-.09,4.51-.1,6.77l.58,7.39.58.22.3-2.27.47,2.88.32-1.52,1.21,2.69h0L29,529.68l-.49-4.11,0-5.31-.77-8.7.93-7.42Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M23.12,516.19c0-1.34.08-2.76.11-4.18l-.12,1Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M23.12,516.45v0Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M23.51,509.75l-.08-5.21c-.07,2.57-.13,5-.2,7.47Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M30.09,429.29,28.41,439l-2.86,22.94V462L25,467.83l0,.18c-.49,6.14-.81,13.16-1.07,20.31l.11,1.77,0,9.14.37-2.88.16,3.74.48-2.68c.08.4.16.8.25,1.21l.54-4.79.37-9.74.73-5.28.78.9.52-6.13h0l1.2-2.78v-1.52L29,467.22l.87-7.59-.06-3.39L29.35,452l.47-5.59.47,1.44.91-3.94-1-4.51-.21,0-.59,2.3-.35-1.1.75-6.81Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M23.42,503.74v.8c.14-5.27.29-10.78.48-16.22l0-.38Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="19.58 409.12 18.23 416.68 18.19 417.31 20.39 404.6 19.58 409.12" style="fill:#d9dadb"></polygon><polygon points="18.48 439.83 19.2 440.55 20 435.48 19.58 434.4 18.67 438.24 18.48 439.83" style="fill:#d9dadb"></polygon><polygon points="13.08 456.03 13.65 449.94 13.65 450 13.1 455.85 13.08 456.03" style="fill:#d9dadb"></polygon><polygon points="69.93 731.6 69.87 731.48 69.93 731.6 69.93 731.6" style="fill:#d9dadb"></polygon><polygon points="66.27 724.71 66.25 724.68 69.87 731.48 68.1 728.14 66.27 724.71" style="fill:#d9dadb"></polygon><polygon points="74.26 739.4 74.05 739.03 74.04 739.01 74.26 739.4" style="fill:#d9dadb"></polygon><polygon points="74.04 739.01 74.04 739.01 74.03 739.01 74.04 739.01" style="fill:#d9dadb"></polygon><polygon points="33.63 363.04 34.43 356.19 32.34 362.12 31.97 366.25 33.63 363.04" style="fill:#d9dadb"></polygon><path d="M51.54,346.81l-1.11,3.12-2.64,7.74-.11.32-.14.43-.77,2.38q1.21-3.71,2.49-7.36l.39-1q1.41-4,2.9-7.94c.43-1.48.92-3,1.46-4.44l-.43,1.13-1.27,3.44Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M46.68,364.64l4-13.57,1.79-6.16.12-.4q-1.48,3.94-2.9,7.94l-.39,1Q48,357.1,46.77,360.8L46,363.28l.77-1.75-1.25,5.7Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M201,182.18l-5,1.39-9.86,5.73L182,190.57l-.93,2.67-3.94,1.81-2.2,2.79,1.9,2.86.95,4.16-4.4,2.07.49,2.41,5-2.09.11,1.44L175.32,212l-.67,2.71,1.12.67,7.14-6,1.13-2.37-1.57-.21.94-2.51,4.11-1,2.44-2.16L188.5,200l2.9-2.95.25-2.27-2.72.81.09-1.86,2.62-1.93-.09-2.94,10.35-4.9C201.6,183.35,201.32,182.76,201,182.18Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M183.32,183.54l1.16-1.17,2.54-6.56c-1.15,1-2.28,1.93-3.42,2.9l-2.41,4.93Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="153.66 193.09 158.9 186.62 159.99 184.38 153.2 189.08 151.39 192.51 153.66 193.09" style="fill:#d9dadb"></polygon><polygon points="225.69 104.44 230.11 101 226.82 102.08 221.33 106.38 225.69 104.44" style="fill:#d9dadb"></polygon><polygon points="221.33 106.38 221.33 106.38 221.33 106.38 221.33 106.38" style="fill:#d9dadb"></polygon><path d="M365.16,60.41l5-.22q.87-.86,1.83-1.68L370,57.74l-2.9.32-2.87.08-7,1.45-4.69,2.74-2.14.7-.14-.7,3.15-1.58-4.62,1.4-3.94,1.93c-1.62,2.45-4.6,3.51-6.17,6L334.48,73c-.34.46-.66.91-1,1.37l2.55-.88,1.58-1,1.33.21-2.83,2-3.48,1-4.1,3-2.82.29c-.29.5-.56,1-.81,1.51l-3.75,1.48-3,3.13-7.55,3.6-.66-.34-5.7.55-5.63,3-1.08-1.19L300,88.32l.7-1.54c-3,.45-3,.45-7.25,2.2l-2.06,2.45,1.07.95-3,3.32-3.16,2.38-2.57,1-6.38,5.54-.53,1.41-3.05,2.34-4.81,7.25,2.48-1.36,3.71-3.49,6.73-6L283,105l-4.62,5.25-3.44,3.21L274.2,115c12.47-6.72,12.47-6.72,14.56-8.24l4.65-4.71,6.44-3.5,4-2.14-.12,1-3.47,3.32-7.19,4.11-1.89,2.81,5.1-2.07,1.11.82,5-2.44.84.59,4.46-2,9.37-8.55-1.78-.49,3-1.2L319.68,90l3.82-1.71,1.51.84,6.21-3,3.3-2.09L336.85,82l-.77-.8,3.56-1,6-4.16c.1-.27.21-.53.33-.8l3.95-1.26,4-2.16c.4-.77.84-1.55,1.33-2.33L352.65,69l2.1-1.23-2.42-.41,6.59-1.26,6.95-2.2L367.5,63l-1.14-1.6-3.94.44-5.15,1.65-2-.35,4-1.57Q362.2,61,365.16,60.41Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="301.29 71.36 302.3 72.23 307.58 70.19 309.23 68.25 305.95 68.6 303.14 69.82 301.29 71.36" style="fill:#d9dadb"></polygon><polygon points="277.59 76.17 279.38 75.87 285.75 72.27 288.84 69.94 292.11 68.37 294.32 66.97 294.55 66.16 301.35 63.21 299.47 63.51 292.25 65.73 288.49 67.31 286.08 67.81 285.54 68.82 281.58 70.68 282.71 71.15 282.8 71.69 283.54 71.88 280.8 73.55 277.59 76.17" style="fill:#d9dadb"></polygon><path d="M287,88.41c.66-.81,1.35-1.62,2.07-2.42l-4,1-2.41,2.25Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M274,96.17l6.71-2.44c.39-.56.79-1.13,1.2-1.69l-4.42,1.74L274,96.17Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="345.76 55.89 346.84 57 345.07 58.42 352.56 55.59 351.36 54.6 354.69 52.91 345.76 55.89" style="fill:#d9dadb"></polygon><polygon points="341.44 42.44 333.93 45.91 333.55 46.63 344.53 42.74 343.16 42.84 343.84 41.91 341.44 42.44" style="fill:#d9dadb"></polygon><polygon points="396.15 27.05 398.88 25.43 396.76 25.09 396.02 24.61 392.92 25.51 386.93 26.87 390.69 25.61 390.97 25.31 387.02 26.06 380.17 28.37 375.82 29.42 380.01 27.93 383.52 26.51 379.66 27.39 372.93 29.48 366.48 30.96 360.34 33.57 358.59 34.67 358.89 35.05 352.14 37.22 346.94 39.47 348.77 39.37 352.11 38.67 347.79 40.33 351.39 39.75 357.28 37.77 358.02 37.21 360.26 36.38 366.37 35.29 376.74 33.28 382.45 31.63 381.49 31.49 373.31 32.91 373.27 32.34 381.33 31.03 384.66 30.12 384.19 29.58 386.42 29.32 391.18 28.11 390 27.83 391.74 27.21 396.15 27.05" style="fill:#d9dadb"></polygon><polygon points="400.02 26.16 406.67 25.14 408.5 24.02 415.71 23.02 420.37 21.58 416.41 21.73 414.51 21.32 415.19 21.01 413.58 20.95 413.42 20.53 408.35 21.44 403.17 22.05 398.93 23.51 403.13 23.49 402.53 23.82 403.46 24.04 403.46 24.04 400.02 26.16" style="fill:#d9dadb"></polygon><polygon points="355.82 41.58 365.39 39.69 367.32 38.67 371.19 39.08 373.12 38.44 373.27 37.56 376.34 36.75 370.31 37.18 368.73 36.94 373.44 35.66 371.56 35.6 367.16 36.7 364.56 37.73 354.97 40.38 355.71 40.64 359.66 39.87 355.65 41.04 355.82 41.58" style="fill:#d9dadb"></polygon><path d="M448.94,86.36l6.51-2.11-1.06-1.72L451.62,82l-3.05,1.25-.17-1.32-3.12.59-3.11.78,4-1.92,2.66-1.52-1.91-.16-2,.83-4.5.14.69-.71,3-.6-1.8-1.41,3.42-.75,1.5,1.49,5.52-.25V77l-2.28-.46,2.48-.75-.65-.71-.66-.68,1.82-1.1-1-1.06c-.8-.39-1.84-1-2.62-1.39l-1.92.38,0-.49-2-1.11-1.36.32V68.89l-2.74.41-1.09.59c.41.41.85.8,1.32,1.2l-.38,1-2.26,1,.27-.9-1.94.47,1.56-1-.9-1-5.93,2.16,2.09-2.17,1.78-1.16-.38-.9-4,1.86-.73-.82.63-.88-4.2.66,6.54-1.93c-1.16-.36-2.69-.92-3.84-1.32l-2.64.85-2.8,1.61-.6-1.2,4.09-1.46-5.78.77.92-1.08-.94-.28-7.35-.64-2.75.73.57.88.49.74-7.58.36.45-2.07-2.79.72-2.14-2-2.79.22L395.15,67l-2.31.47-.63.6,2,1.27-1.8.82-4.19.74,1.45-3-1.51-.34-2.34,1.28L385,70.41l-2.14-.61-3.58,1.67,1.37.78-1.88.91,1.84.13-1.85.95,3.27-.3-.36,2.85-3,2.91-3,.7-5.63,4.14-7.65,2.85-2.06,1.8L355,90.58l-1.81,1.8-2.85.27L348.76,94l-2.39.51-1-.33L343,95.85l.94.82,5.42-1.11-4.49,2.71,1.3,1.06-4.1,2.36-3.43,2.25-1.61-.16,2.45-3.43L339,99l-1.83.2L333.31,104l1.3,2.27-8.31,3.5.21-2.3L317,110.26l-.52,1.88-4.49-.07-6.87,4.38-3.9,3.37,2.23.48-5.57,2-5.56,3.83,1.79,1.18-6.87,3.4-8.18,8.16.63,2-7.67,5.83.9,3.1,4-.3-6.37,5.69,3.3,2.66L287.13,150l5.4-6,7.24-.7,2.75-2.51.36,1.95,2.71-2,2.13-3.2,1.17,1.43,2.62-3.53,6.91-.91,0,2.09,5.93-3.26-2.48,3.44,8.86-.58,10.12-4.12,2.8.3,3.58-1.83-.32,1.59,3.64,1.29,10.75.36,4.77-1.72,2.7.33,6.43-1.6L371,127l-7.13.67-1.19-1.57,5-.81,7.21-2.42,1-2.82,1.89,1,.52,1.65-1.66,2.57,1.68,4.24,7.4-6.86c-.67-.24-1.32-.49-2-.74l2.54-1.07-.79-3.45-1.71-.59,3.53-3.69,6.25-1.16,1.07,2.75,4.46.18-.9-1.78,1.66-2.42,5.55.81,2.57-.73.73-3.42-2.37-.11.26-1.29,3.78-2.35,1.16,2.52,1.56.12,3.19-2.89L414,101.87l2.55-2.82,2.85.11,2,2.21,1.69-.74,3.11-3.84-.55-1.69-3.43.79,7.83-4,3.65,0,2.11-2,2.06.21,1.95-.46-1.6-.93-1.54-.12,1-.87,2.07-.43,2.42,1.09,2.7-.77-2.24-1,2.31-.88Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="423.68 59.18 427.26 57.85 426.44 57.33 424.62 58.23 423.68 59.18" style="fill:#d9dadb"></polygon><polygon points="423.04 56.54 424.94 55.35 422.19 55.95 421.37 56.87 423.04 56.54" style="fill:#d9dadb"></polygon><polygon points="380.79 54.84 382.72 53.55 380.09 53.61 378.21 54.7 380.79 54.84" style="fill:#d9dadb"></polygon><polygon points="317.45 93.89 321.17 88.84 314.46 91.25 313.6 93.32 317.45 93.89" style="fill:#d9dadb"></polygon><path d="M437.66,61.3l.13-.7,1-.41c.07-.3.15-.6.24-.89l1.75-.62.25-1.52-2.35-.28.52,0,.09-.15a14.72,14.72,0,0,1,.89-1.23l-2.8-.43-2.29.26c.17-.21.36-.42.55-.62l2.08-.5.41-.74L437,53.31l-2.39.3-.15-.38,2-.23.6-.61-1.37-.18,1.4-.3-1.35-.77-2.05.39-.94.73-1.6.28L430.5,52l-2.78.46-2.93,1.09L426,54l-1.71,0c-.44.43-.87.86-1.27,1.3l1.23.11-1.67.38-.39,1.49-1.65-.21L419.9,56l-2.87.66,3.05-1.23,1.54-1.11-2.56.16-1.59.49-5.36.9L410.54,57l-1.86-.21c.32-.37.66-.73,1-1.09l1.86-.34-.81-.68-3.21-.2-1.3.24-2.33,1.16-3.62.8-1.79,1-1-.71,1.25-.66,3.47-.6c.4-.39.82-.77,1.25-1.15l-4.27.77-1.79.1.79-.69-1.45-.87-3.31,1c-.57.48-1.12,1-1.65,1.45L389,57.5l-.28.87,2.8-.77-1.86,1.28-1.23.43-.6.58,1.7.14-1,.66-2.72.43.67,1,2.13.62,3.05-.9L390,61.59l1-.6,2.05-.16,2.35-.6-.39.87,1.64.13,3.29-.67c-.34.52-.64,1-.92,1.55l6.1,0L407,61c1.77.36,1.77.36,4.06-.32l.16.91,2.37-.48L412,62.23l.33.84,1.31-.42,3.09.43,2.16,0,6.3,1-.72-1.44,2.66-.07,1,1.43,4.21.57,1-.17,1.15-1,2.22-.59c0-.14,0-.29,0-.43l.83-.31-3-.47.74-.52Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M426.64,51.53l6.25-.68,1.23-.54-1.48-.14-.12-.43-3.39-.61-2.88.65.8-.68H425l-4,.72-1,1.08-2.65.74,1-1.05-1.07-.21L414,50.8l-1.11.78-.61-.31-2.42.57c-.44.33-.87.65-1.28,1l2.63-.06-3.32.61c-.23.18-.45.37-.67.56l4.75-.29L413.51,55l2.87-.37c.35-.34.73-.69,1.11-1l1.58.1,3.27-.58-.32-.46,2.57-.2Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M396.37,53.22q.86-.64,1.77-1.29l2.34-.54,3.57-1.31.24-.77c-5.71,1-5.71,1-7.94,2.13l-.42.6-5.44,1h-1.1l-2.69.18L382,54.48l1.19.25-2.34.61-.4.76.36.72-2,.17a47.76,47.76,0,0,0-3.9,3.69l2-.11-2.79,1c-.72.81-1.38,1.62-2,2.45l2.08,0,2.06-1,2.45.32,2.59-1.75,1.8-.3-.63-1.1,2.6-1.18-1.36-1.38,2.37-1.05-.23-.84,4.27-1.31,3.11-.64-.29.56Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="424.64 23.16 420.86 23.85 421.47 24.19 418.75 24.25 420.02 24.89 419.52 25.89 416 25.86 416.92 26.38 416.92 26.38 416.95 27.11 421.17 26.88 420.63 26.63 423.51 25.79 423.5 24.7 424.98 23.6 424.64 23.16" style="fill:#d9dadb"></polygon><path d="M420.25,40.12l1.85-.64,2.06,0,2.43-.87-2.22.17,1.13-.62L425,37.8l-2.43.25,1.54-.67L423,37.21l-4,.82-1.91.51.4.5-3.68.81.54-1-2.4.46c-1.06.36-2.12.73-3.15,1.11l.22.74-1.61,1c-1.34.53-2.65,1.07-3.92,1.63l4.33.3,3.2-.77-1.76-.19,3.66-.6,4.43-.15,2-.31-.81-.74-3.38.32-.62-.22-2.88.36,4-1.26Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M376.4,56.37l1.31-1.62,3.81-1.29.81-1.26-7.41.64-6.12,1.45-1.5,1,5.37-1-4.16,2Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M410.69,45.08l.91-.42-5.66.48-4.41.86-1.83.88-.46.95-2.18-.16-2.74.35-2.4,1.69,2.95-.38,2.36.08,5.58-.42,2.26-.76-1.53-.14,1.95-.42,1-.53-2.93.14,3-.64.72-.41-3.51.35-.83-.12,4-.67Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M385.3,52.61l4.16-.17,2.29-.73,1.24-.8-1.92-.36-4.23,1.14Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M422.33,44.61l-1.16.77-2.13.86-3.48.32L414,47.4l1.56.09,3.61-.31,3-.29.54-.28,2.33-.28,1.2-.59,2.58-.25c.79-.38,1.6-.74,2.42-1.11l-2.82-.07L426.8,45l-3,.18,1.19-.83Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="383.77 32.84 384.83 31.89 377.78 33.46 381.16 33.65 383.77 32.84" style="fill:#d9dadb"></polygon><path d="M423.91,41.72c.54,0,1.07,0,1.61,0l1.61.46,2.95-1.48-1.29-.44a15.58,15.58,0,0,0-2.47.3A19.45,19.45,0,0,0,423.91,41.72Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="403.09 38.03 408.32 36.5 408.86 35.82 400.85 36.65 400.34 37.97 403.09 38.03" style="fill:#d9dadb"></polygon><path d="M425.49,48.07h2.93l2-.65-3.11-.2-.87.48Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="395.54 39.12 398.34 37.59 397.24 37 392.87 39 395.54 39.12" style="fill:#d9dadb"></polygon><polygon points="388.24 41.84 390.75 41.78 392.48 41.16 392.9 40.43 389.58 40.79 389.12 41.43 388.24 41.84" style="fill:#d9dadb"></polygon><path d="M420.33,44.27l1.18-.52-5.54.34-2.84,1Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="420.92 30.16 422.65 28.82 421.29 28.8 416.5 30.54 420.92 30.16" style="fill:#d9dadb"></polygon><polygon points="420 28.29 422.17 28.11 422.35 27.82 419.02 27.71 419.02 27.71 420 28.29" style="fill:#d9dadb"></polygon><polygon points="388.13 33.19 388.19 33.68 390.12 33.43 391.62 33.03 390.23 32.74 388.13 33.19 388.13 33.19" style="fill:#d9dadb"></polygon><path d="M535.09,23.45l-6.94-.29-3.38-.09-.89,0h-.23c4.51.12,9.11.26,13,.43Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M499.54,23.34l1.44-.11.44.08,2.41,0,3.23-.19h4.7l5.79-.09,2.48,0h3.62l-10-.23c-9.51,0-9.51,0-28.38.69-9.47.51-9.47.51-28.38,2.36l-2.62.31a21.52,21.52,0,0,1,2.41-.17l4-.44,3.25-.28,5.81-.58,2.89-.21c1.29-.1,2.58-.21,3.87-.3l6.36-.36,2.52-.17,1.6-.06.56-.06,3.34-.11.83.05,3.13-.05,1.13-.12-2.18,0,.32-.1,3.83-.06-.3.09Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M391.34,37.9,391,38l-5.78,1.5h0l-3.68,1,.55-.07-.19,0,10.52-2.81Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M394.71,37l-2.25.6,6.1-1.51c-3.1.86-7.27,1.94-10.35,2.89l-2,.52.18-.14-5.72,1.66-2.12.38,3.42-1c-11.47,3.09-14.32,4-24.3,7.29l-14.26,5.1-4.76,1.82,1.36-.59c-10.84,3.95-15.29,5.82-26.74,10.85-29.07,13.86-33.53,16-55.6,29.13-14.44,9.44-33.41,22.49-47.27,32.76l.07-.06-5.79,4.63,2-1.27-3.56,3.22L196.27,139l-2,2-8.75,7.63L176,159l-8.34,8.38-2.68,2,7.36-7.72-9.78,9,0-.64-4.28,4.11.83.05-1.7,2.74,3.54-2.75-1.76,3.72-.6.81,3.74-1.82a56.5,56.5,0,0,0-3,7.83l2.62,0,2.89-3,4.62-2.46,1,1-1.42,2.35-7.22,6.32-3.58,4.93,3,2.24-2.13,2.36-5.52,2.11-5.4,6.34,4.6-1.1,3-2.21-.07,3.82,4-.26,3.26-5.7-1.88-.25,4.74-9.19,2.71-2.65,1-2.23,4.31-3.28,1.43-4.94,3.21.1-1.33,2.44,1.23.27,3.87-3.17.88-3.55-.88-1.65-6.24.29-4.22,1.63,8.29-6,5,.35,3.5-1.26,1.73,5-1.77,8.49,5.18-1.29,3.5-2.11,3,1.43,4.4-1.29,1.3.26,5.25-4.75,1.69-3.23-.74-1.13,3-2.2-.19-1.9-4.7-.27,5.19-3.81,4.71,1.39,2.43-2.88-.66-2.75,2-1,.14-2.29,3.92-3.34,2.07-4.09,2.26-.83,1.14-1.83,3-1.36,6.6-5.79.94-2.19,3.53-1.81.57-1.57,2.59-1.19,6-4.8.9-1.24-9.34,4.67-.11-.85-4.8.3,2-2.31,5.33-4.66c.05-.27.1-.54.16-.82l11.51-5.75,2.17-2.19.62-2.29,3.56-1.78,7.39-6.26-1.74-.38c.28-.62.57-1.24.88-1.85l3.57-1.61.92-2.22L278.54,96l-6.22,3.57-1.79.32-3.6,2.21-3.39,1.38-3,2.19-7.89,2.53-10.88,8.33-10.51,5.55-3.71-.69-6.71,5.22-4.28,2.61L209.23,135l-.12-.51L204.2,138l2.55-2.5-1.36.38,9-7.94,14.09-9.74,3.17-1.53,2.83-2,4.47-4.68-1.11.19,3.47-2.11,7.82-6,7.77-5,7.14-5,1.68-1.73,3.2-1.52,8.35-4.45L279,83.17l-.89.29,4.8-2.57,8.42-3.72,4.85-1.63.64.15,2.27-1.06.23.38,2.65-.86-2.2,1.55.61.24,5.73-3.19,3.27-1.33-5.72,3.39,2.83-.68-2.76,1.46-.16,1.09,4.82-1.17,4.6-3,5.2-2.89-1.12,2-5.19,2.79,3.47-.59,3.7-1.32L317.32,74l-2.32,1-1.8,1.59,2.55-.85-2.2,1.55,2.31.27-.27.53,2.82-.7,5.61-3,2.13.5,2.4-1.14,1.32,0L334.08,71l3.67-3.37L333.19,69l-2.46.31-3.93,1-2.6-.21,6.32-2.64,3.68-.79,5.27-2.34-5,1,2-1c2-.54,4.06-1.05,6.1-1.56l4.64-2.38,3.4-.59,4.57-1.67,8.18-2,3.3-1.5-2.18-.72L359.57,55,355,56l-6.66,2.76-3.31.73-.67.68-3.35.68v-1l-2.17.26,3.41-1.33L346.35,57l-4.44,1.38c2.76-1.47,6.39-3.5,9.19-4.88l5-1.75,1.48-.88,7.65-2.46,3.35-1.65-2.15.4-2.68,1.11-2,.22,2-.79-.74-.09,5-1.24,3.35-1.66,9.7-3.16,1.51-.28-1.9.78,2.94-.7,5.45-1.7,7.87-2,3.91-1,3.64-.7,3.63-1-.47-.09,2.88-.72,3.14-.27,2.2-.54-1.86,0,4.28-.83,2.2-.24,4.66-.72-1.88.11.31-.28,2.82-.62,2.2-.37-2.1.6,1.09-.1,2.94-.63,1.44-.44-1.25,0,1.42-.32,2.56-.4-1.68.39.88,0,2.19-.47,2.74-.4,2.5-.44.75-.17-2,.27h0c-4.52.66-9,1.35-12.9,2C406.57,34.16,405.76,34.31,394.71,37Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M345.09,52.18l2.08-.84-5.53,2h0l-1.66.71,3.4-1.23Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M448.85,27l-8,1.09-1.95.28,1.12-.11c3-.44,6-.87,8.84-1.26Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M456.63,26.05a21.52,21.52,0,0,0-2.41.17l-5.33.73,2.67-.3Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="198.55 114.75 197.65 115.47 198.47 114.82 198.55 114.75" style="fill:#d9dadb"></polygon><polygon points="192.59 119.51 192.75 119.39 192.76 119.39 197.65 115.47 191.91 120.05 192.59 119.51" style="fill:#d9dadb"></polygon><polygon points="168.61 140.22 172.05 137.09 172.05 137.09 168.61 140.22" style="fill:#d9dadb"></polygon><polygon points="176 133.97 179.39 130.66 183.77 126.9 184.53 126.18 183.99 126.62 174.59 134.79 172.05 137.09 171.46 138.18 176 133.97" style="fill:#d9dadb"></polygon><path d="M110.68,232.47l1.1-1.1.1.52,2.2-2.94.61-.46,1.86-2.47.89-.91,4.55-6.05,7-9.34,3.85-4.16-1.32,1.86-3.69,4.78-3.54,4.38,1-.53,2.71-3.15,3.45-4.58,1.43-1.08-3.32,4.25,2.83-2.5,3.16-3.75-.54,2.88,2.43-1.81.75-2.36,2.51-2.11-.32,4,3.06-4.15,4.07-3.75,4.63-1.72,3.18-2.52.06.77-1.66,2.27,1.64.15,3.06-3,3.57-4.92,7.22-6.32,1.42-2.35-1-1-4.62,2.46-2.89,3-2.62,0a56.5,56.5,0,0,1,3-7.83l-3.74,1.82L156.9,181,154.09,183v-2l-1.68,1.23-.26-1.34,4.94-5.35C138.93,194.54,133.9,201.16,110.68,232.47Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M167.18,165.64l2.37-2.71,2.79-2.28,3.71-3.46,3.19-3.41L177.65,155,174,158.35l-6.16,6-.58.59c-3.1,3.2-5.85,6.07-8.37,8.7l3.75-3.6Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M108.72,235.08l-.21.31,2.17-2.92-.14.14Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M158.33,174.13l-1.25,1.36,1.78-1.87Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="423.16 223.71 426.34 229.11 430.1 223.64 428.72 220.72 426.5 223.42 423.16 223.71" style="fill:#d9dadb"></polygon><polygon points="417.77 172.55 412.46 173.87 415.13 176.03 417.77 172.55" style="fill:#d9dadb"></polygon><polygon points="485.11 129.07 481.03 130.9 484.11 132.64 485.11 129.07" style="fill:#d9dadb"></polygon><path d="M473.39,222,471.72,230l4.45-4.18.18-2.16h0l2.38-3.26Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="563.16 135.53 564.82 132.67 559.85 132.68 559.52 135.05 563.16 135.53" style="fill:#d9dadb"></polygon><polygon points="568.42 87.79 568.42 87.79 568.42 87.79 568.42 87.79" style="fill:#d9dadb"></polygon><path d="M583.16,134.81l1.18-.94,5.39-1.23-5.51-1.74-8.31-6.19.57-3-3.66-1.39.22-1.26,2.66-.13-.44-1.95-2.13-.8,1.81-1.21-2.77-2.69.9-1.29,1.94.42.17-1.2-1.81-.73.76-2.14,4-4,0-.8,2.23-2.84-1.22-1.6-2.32-1.11-2.12.76.84,2.16-3.57,3.18-2.73.33.14,1.56-2.51,2.45,1.14,1.66-1.28,3.21,2.78.54.36,2.73-3.1,2.61,2.06.78,2.52,7.36-1.81,2.09.74,1.76,6.32,1,1-.42,2.27,1.7-.56,2.11Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="565.37 62.16 569.05 61.97 566.66 60.6 567.39 59.05 564.39 57.99 558.38 57.9 559.44 58.69 559.6 59.78 562.64 60.68 562.51 61.2 565.37 62.16" style="fill:#d9dadb"></polygon><polygon points="567.86 64.09 570.59 64.18 570.13 62.86 568.73 63.13 567.86 64.09" style="fill:#d9dadb"></polygon><polygon points="569.75 60.99 570.36 61.56 572.85 63.43 573.63 63.03 576.82 63.62 578.43 62.62 580.25 62.63 580.94 61.04 577.75 60.41 573.16 58.62 571.59 59.28 572.28 60.31 570.28 59.78 569.75 60.99" style="fill:#d9dadb"></polygon><path d="M599.67,75.15l.35-.48-1.5-1.32,1-1.2-2-2.13-5.07-.23,1.44,1-3.63-.92-1.38.12L594,72.24l-.34.51Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="588.49 58.18 591.7 58.07 589.42 57.2 586.77 56.91 588.49 58.18" style="fill:#d9dadb"></polygon><polygon points="598.8 39.36 604.4 40.16 607.12 39.62 606.58 38.72 601.86 36.83 602.67 36.56 600.51 35.64 594.52 34.3 593.81 35.15 595 36 593.69 36.66 598.5 37.35 595.7 38.34 598.8 39.36" style="fill:#d9dadb"></polygon><polygon points="611.85 38.83 615 38.64 614.34 37.04 612.44 36.66 609.41 36.99 610.48 37.96 609.48 38.62 611.85 38.83" style="fill:#d9dadb"></polygon><polygon points="594.68 31.74 592.76 31.15 590.65 30.89 591.64 31.87 593 32.35 591.87 32.43 594.07 33.34 592.85 33.58 595.89 33.95 596.21 33.33 595.88 32.98 596.37 32.67 594.68 31.74" style="fill:#d9dadb"></polygon><polygon points="553.67 14.85 549.98 14.49 550.84 14.91 555.49 15.48 560.41 15.94 561 15.79 557.76 15.4 553.67 14.85 553.67 14.85" style="fill:#d9dadb"></polygon><polygon points="749.45 79.98 745.84 78.05 740.1 74.9 743.57 76.98 748.6 79.71 749.29 80.24 759.55 86.26 762.75 88.12 765.23 89.73 775.42 96.45 761.88 87.5 755.07 83.34 749.45 79.98" style="fill:#d9dadb"></polygon><polygon points="878.82 191.73 878.34 191.13 878.79 191.69 878.82 191.73" style="fill:#d9dadb"></polygon><polygon points="888.09 203.48 887.4 202.6 887.58 202.82 888.09 203.48" style="fill:#d9dadb"></polygon><polygon points="880.33 193.59 885.48 200.11 887.4 202.6 886.62 201.59 885.11 199.63 885.26 199.83 880.51 193.81 880.33 193.59" style="fill:#d9dadb"></polygon><polygon points="477.22 141.09 477.22 141.08 477.22 141.08 477.22 141.09" style="fill:#d9dadb"></polygon><path d="M515.23,154l2.93-3,2.3.47-.62-3.18h0l-4.08-.77,4-2-6.13-3.3-2.62-.75-1.71-.51-1.14,1.59-1.58-.77-3.89,5.92-.57-2.71.77-2.88-4.63,2.35-1.33,4.12-1-1.62L493,145.78l-2.59,1.08,2.36,1.1-.85,2.6-4.37-2.87-3.28,1.69.69,2.37-2,.59-2-2.22-1.51,1.56-2.69-.12,2.65,3-4,2.24-.28-3.45-1.73.28-.78-1.17-8.09,7.07,6.44-2.27,1.73,1.51-4.5,2,1.55,1.8-3.57-.09-4.61,2.36.71,1.73L457.92,168l-3.48,5.55-.12,2.26-8.16,3.75,3.72,2.67-4,1.68-2.08-1.4-1.72,1.19L440,180.92l-2.14,2.49.43,4.23-2.2,1.14-1.23-3.18-3.36.41-4,5.17-4.61-1.35,1,2.71-2.36.69-.29,1.76,7,.28,1.93,3-10.64-.18,2,2.16L419.08,202l3,1.82,4.64-1.43-4.07,4.51-5.5-.69-1.05,6.16,4.92,2.94-1.32,1.81,6.27-.84,1,1.2,6.16-4.27,1.75-.17.32-2.81,3.07,1.2,2.12-4.07,2.48,5.82,0,.57,2.5-1.29.34-4.09,4-1.2-.24-6.32,2.26.13,1.5-2.9-2.32-3.37,1.05-3,.3-5.94,4.83-4.8,4.24,1.28,1.12-3L461,177.18l4-3.25c.33-1.64.67-3.27,1-4.89l3.37-.7.08-1.29,3.42-2.11.51-2.87,4-2.95,2.7.74,1-3.18,4.51,1.51,1.53-.66-.31-3.78,2.21-.68,2.75-.88,1,1.28,1,1.27,3,.48,1.71-.91,4.06,2.26,2.7-2.44-1.28-2.39,1.69-2.81,4.73-1.34,3.5,2.33-.79,1.89Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="423.25 219.66 423.25 219.66 423.25 219.66 423.25 219.66" style="fill:#d9dadb"></polygon><polygon points="421.86 214.28 424.25 212.01 425.11 208.76 415.89 211.37 416.56 213.82 411.29 215.45 409.34 223.05 411.42 225.38 410.92 230.03 417.41 231.01 415.31 228.04 419.19 222.52 421.67 218.71 423.25 219.66 425.68 216.45 421.86 214.28" style="fill:#d9dadb"></polygon><path d="M499.17,170l-1.22-2.5h0l1.2-1.69-1.68-2.05.87-1.44-1.72-.6.94-2.1-3.07-2-2.42,0-1.82-1.68-1.13-2.81h0l-2.21.68.31,3.78-1.53.66-4.51-1.51-1,3.18-2.7-.74-4,2.95-.51,2.87-3.42,2.11-.08,1.29-3.37.7c-.33,1.62-.67,3.25-1,4.89l-4,3.25,1.41,2.12-1.12,3L457.07,181l-4.83,4.8-.3,5.94-1.05,3,2.32,3.37-1.49,2.9h0l-2.26-.13.24,6.32-4,1.2-.34,4.09-2.5,1.29-.56,7.54L445,226l2.14,2.14-.66,2.17-1.89.09,2.13,4.69-1.52,2,6,.95,3.36-5.52,5.49.8,3.36-6.92,2-2.52L464,221.44l2-.22.38-1.91-1.58-1.2-.18-2.54,5.75.39,4-2.41-6.74-1.71,4.12-3.16,1.69,2.4,4.24-1.23-4.25-6-3.27-.8.27-6.28,1.92-.31V191.2l4-2,5.13-4.59,4.88-1.42,3.7-4-2-2.33,1.88-1.6-.85-1.43,2.75-1.05-.46-2.26,1.83-.71Zm-48.54,47.18-4.27.26,2.9-4.12,2.1-1,3.62-.47-.42,2.91Zm8.07,1.1-4.58,4.94.41-5,4.37-3.92Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M526.86,186.09l-4.22-2.24,2-1.73-.33-1.63L521,179l.64-2.18-2.52-2.72,1.76-2.67-5.3-7.41,2.52-2.11.37-2-2.45-2.35-2.63-.35.25-2-.92-1,1.45-1.39-1-1.08.79-1.89-3.5-2.33-4.73,1.34-1.69,2.81,1.28,2.39-2.7,2.44-4.06-2.26-1.71.91-3-.47-1-1.28-1-1.28-2.75.88h0l1.13,2.81,1.82,1.68,2.42,0,3.07,2-.94,2.1,1.72.6-.87,1.44,1.68,2.05-1.2,1.69,1.22,2.5h.47l4.15,2.52.6,3.41-3.28,1-3.45,4.85-1.37,1.35-1.81-.79-1.54,3-4.06-.18,1.38,3-2.59,1.5,2.13,7.8L488.26,204l4.09,2.42,2.12-1.29L496,206.7l-1.53,2.74,7.22-2.28,2.23-.06,2.5-1.8,1.11.92,2.62-2.72.64,1.3,4.77-1.28h0l.64.32,11.14-12.68h0l1.27-2.95Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M307.08,332.41l5.75-3.17-1-4.64-7.51-.24.9-4.76-4.53,2.21L298,331.47l-7.18,9.31-1.3.09-2.2,4.6,2.38,2.38-3,9c2.78.63,5.59,1.24,8.43,1.85l4.63-6.76L298.62,350l3-1-1.7-4.82,3.88-1.9Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M352.79,339l7-1,8.17-4,1-2.63-4.87-1.9-3.12.87-5.08-5.74-3.13,1.72-4.94-1.48L342.48,318l-7.1-.65-2.56-2.1-5.24.15-6.49-3.58-6.84.13-3.53-3.11-8.82,3.6-.5.3-.67,9.11,4.53-2.21-.9,4.76,7.51.24,1,4.64-5.75,3.18-3.3,9.87-3.88,1.9,1.7,4.82-3,1,1.21,1.93-4.63,6.76,3-1,2.36,4.89,0,5.94,3.84,1,.1,0,7-3.6,11.38.28,2.4,2,6.19-6.49,4.42.62,1.48-4.33,6.2-3.12-2-3.57,1.93-3.9Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M399.34,274.22l-2.68,2.66,0,.15,1.55,4.06c4.59-3,4.88-3.1,5-3.18h0a20.85,20.85,0,0,0-2.29-2.18C400.46,275.22,399.91,274.71,399.34,274.22Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M410.23,292.27,408,294.08l-4.71-.21-3.08-.16-.07.2-.51,2.18-5.08,2.73-3.85,6.26,6.82-2.66.6,3.4,4.72,1.26,1.79-3.25,2.56-.53,2.4,4.9,3.16-4.45,3.25,1.77,4.5-4.47-6.23-2,1.2-4.55Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M399.61,296.09l.51-2.18.07-.2,3.08.16,2.84-6.27,4.81-3,.79-2.22q-3.54-.3-7-.63l-3.49-2.33a18.27,18.27,0,0,1-2.91,1.7l-.92-2-8.13-3.93-1.74-5q-2.28-.27-4.53-.57v-4.93l-3.37,1.16-2.15,4.92-9,1.3,1.44,2.53-2.91.62-5.42-3.42-3.31-.76.26,7.52-7.11-.12-1.6-3.18L341,276.38l-.12,5.71,6.06,1.48-.81,2.11,4,.43,1.78,1.88-2.42,3.34,1.64,6.41-1.44,11.08L342.48,318l5.33,6.89,4.94,1.48,3.13-1.72,5.08,5.74,3.12-.87,4.87,1.9.63-1.64v0l-1-2.5,2.23-4,5.51-2.49L388,326.81l9.36-4.83,1.34-.7-4.73-4h0l2.73-2.48-2.3-1.64,3.38-3.25-1.5-2.93,1.82-1.19-.6-3.4-6.82,2.66,3.85-6.26Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M401,275.72l.07-.17L402.9,271l-3.18-1.21,1.42-2.12-3.92-2.77-7,1.38-1.06-3.81L383,264.63v4.93q2.25.3,4.53.57l1.74,5,8.13,3.93-.63-2.07,0-.15,2.68-2.66C399.9,274.71,400.46,275.22,401,275.72Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M413,248.68l-2.45,0-7.08,3.19-.57,4.18-3.07,1.06-.19-5.27L394.27,258l-1,4-3.53.25-.57.21,1.06,3.81,7-1.38,3.92,2.77,2.73-2.72-.45-3,4.1-.29,1.71-2.24-.79-2.53,3.05-2.77C412,252.3,412.48,250.49,413,248.68Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="449.18 281.24 447.32 279.39 448.64 277.19 447.72 275.63 447.73 275.63 447.35 274.98 443.17 276.35 437.61 272.83 435.8 275.97 424.61 279.08 423.81 283.8 418.96 281.73 413.38 283.71 403.55 282.54 402.36 287.09 408.58 289.07 411.76 290.13 413.2 288.42 418.5 287.7 419.25 290.6 428.88 291.81 431.19 293.59 433.88 291.11 436.86 292.23 438.44 289.61 443.06 289.64 445.44 284.69 448.32 285.05 448.32 285.05 449.18 281.24" style="fill:#d9dadb"></polygon><path d="M457.89,353.47l2.89.6.7,2.49,2.5,0,.7-2.28L461.62,350l-6.09-3.74-6.84-2.36.09-1.66,2-1.14L450.1,340l-9-1.67-4.09-5-1.72-7-7.05-5.68.35-4.89,1.22-1.45-.86-3.37,6.56-2.39.75.52,1.95-5.61-7-.9-.76-2.9-5.3.73-1.43,1.71-3.18-1.07-4.5,4.47-3.25-1.77-3.16,4.45-2.4-4.9-2.56.53-1.79,3.25-4.72-1.26L396.28,307l1.5,2.93-3.38,3.25,2.3,1.64L394,317.31h0l4.73,4,7.41-3.89,7.59,3.91,1.07,8.76,3.75,3.13,10.78,11.6,3.61.57,2.59,3.12,4.58.8,1.57,3.27,4,2.59,2.73,8.46-4.13,5.54,1.74,2.58,3.16-1.49,2.7-6.14,3.79-.44-.3-3.47L452,358.09l0-3.24,3.09-3.8Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="441.8 261.81 440.84 260.75 437.36 261.96 434.87 259.7 430.36 260.78 428.24 264.19 425.24 263.72 421.29 265.62 423.92 271.17 426.99 271.02 426.99 271.02 426.99 271.02 431.73 277.11 435.8 275.97 437.61 272.83 443.17 276.35 447.35 274.98 447.73 275.62 452.88 276 454.15 272.91 459.12 271 457.79 267.62 452.94 267.99 452.86 264.97 449.07 264.49 447.41 267.62 444.59 264.64 446.12 262.1 441.8 261.81" style="fill:#d9dadb"></polygon><path d="M446.82,257.06l4-6.31-2.59-2.08L447,246.41l1.21-2.1L446,242.66l-1.74,2-2.47-.5-2.66,2.67-6.46.69L429.31,243l-6.5-1-.22,2.29,1.83,4.27-4.25-1.06-3.47,4.11-2.61-3-1.1,0c-.51,1.81-1,3.62-1.5,5.44l-3.05,2.77.79,2.53-1.71,2.24-4.1.29.45,3h0l-2.73,2.72-1.42,2.12L402.9,271l-1.81,4.56-.07.17a13.9,13.9,0,0,1,2.28,2.19c-.21.11-.67.43-2.13,1.48l3.49,2.33q3.51.33,7,.63l-.79,2.22-4.81,3-2.84,6.27,4.71.21,2.25-1.81,5.22,2.25,9.83,1.17,5.58-2h0l4.85,2.08.79-4.73,7.13-2-4.74-6.1h0l-3.07.15-2.63-5.54,3.94-1.91h0l3,.47,2.12-3.41,4.5-1.08,2.5,2.27,1.62-5.41-1.47-2.23,1.49-6.19Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M500.21,276.81l.76-3.18-3.72-4.37.57-5-3-.85.89-2.81,3.58-1.19,0-3.23-1.8-2.8c0-1.27,0-2.54,0-3.81L495,247l-10.3.64-7-2.2-.16-.06-5,.26-.69-3.54-9.62,2.38-2.19,2L452.48,248l-1.63,2.8-4,6.31,4.08,3.06-1.49,6.19,1.47,2.23L449.26,274l3.48-1.22.95,1.06,4.32.29-1.53,2.54,2.83,3,1.66-3.13,3.79.48.08,3,4.85-.37L471,283l1.3,1.3,2.69-.93,2.32,1.15,2.92-1.16,2.64,1.39,2-1.34,3.62.69.53.56,2.64,1,1.92.71-.19-4.2,4.29-5.26Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M489,284.64l-.53-.56-3.62-.69-2,1.34-2.64-1.39-2.92,1.16L475,283.35l-2.69.93L471,283l-5,1.92L464.78,288l-5.16-.38h0l.92,1.56-1.32,2.2,1.86,1.85-.11.5,4.78,2.37,4.4-.67,1.19-2.11,4.48-1.05,2.8.57,1.34-3.05h4l1.47,3,4-1.13h0l2.21-6.06Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="515.31 327.55 510.43 329.82 507.88 327.15 505.38 327.68 504.78 337.3 507.73 338.1 512.81 334.04 521.48 334.14 520.36 332.01 516.48 330.07 515.31 327.55" style="fill:#d9dadb"></polygon><polygon points="504.78 337.3 505.38 327.68 501.46 328.49 501.01 331.38 495.72 331.8 493.06 330.19 488.78 332.19 482.77 332.13 480.07 334.45 475.66 334.35 473.93 337.23 469.06 337.81 468.52 341.79 463.19 347.85 468.47 354.58 476.12 354.76 477.86 356.32 468.97 357.86 475.46 364.81 475.71 372.65 480 368.47 485.57 370.91 482.32 361.61 485.78 361.77 483.78 356.6 489.13 356.16 481.63 353.21 482.29 350.07 486.5 350.2 479.57 344.02 479.7 340.2 482.32 338.06 488.16 342.53 487.58 336.93 496.27 335.44 504.78 337.3" style="fill:#d9dadb"></polygon><path d="M448.76,304.21h0l-3-1.12-2.69,2.48-2.31-1.78-2.61-.31-1.95,5.61,1.28.87q6,.3,11.9.51l6.23-5-.67-3.82-4.62,0Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="454.85 323.9 447.44 317.06 443.21 320 451.58 324.87 454.69 323.9 454.69 323.9 454.85 323.9" style="fill:#d9dadb"></polygon><path d="M455.66,317l2.09-1.86,7.44,1.15,2.12,2.3,3.83-.08-2.07-8.86-3.57,2-4.89-2.16-5-4.06-6.23,5q-6-.21-11.9-.51l-.54,2.8,2.36,4.57,2.29-3.89,1.57,1.07,2.28,7.26,4.5,5.6,9.38,1.68L450,316l2.75-1Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="454.85 323.9 458.98 329 458.99 329.04 461.68 326.39 463.63 324.46 459.55 316.38 455.95 319.18 454.85 323.9" style="fill:#d9dadb"></polygon><polygon points="459.24 306.55 459.24 306.55 455.41 306.63 453.3 304.33 445.85 303.18 443.76 305.04 440.8 303.03 438.05 304.05 447.44 317.06 454.85 323.9 455.95 319.18 459.55 316.38 461 312.97 457.76 310.61 461.1 306.61 459.24 306.55" style="fill:#d9dadb"></polygon><path d="M494.14,294.2l-4.68-2.53-4,1.13-1.47-3h-4l-1.34,3.05-2.8-.57-4.48,1.05-1.19,2.11-4.4.67L461,293.72l-.75,3.31-2.88-.36-2.38,5,.67,3.82,5,4.06,4.89,2.16,3.57-2,5.42-2.49,8.42-.14,1.11-2.2,2.06-1.42,3.2-6.42,3.27-.68h0Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="482.75 319.72 479.28 317.55 478.2 314.71 481.34 309.22 478.75 307.62 476.25 308.72 472.28 307.1 473.43 304.15 468.76 301.88 469.64 299.87 462.6 295.2 457.18 297.69 459.24 306.55 459.24 306.55 461.1 306.61 457.76 310.61 461 312.97 459.55 316.38 463.63 324.46 461.68 326.39 461.73 326.41 467.14 329.58 471.5 327.99 477.91 326.61 478.1 326.52 478.01 322.03 481.19 322.92 482.75 319.72" style="fill:#d9dadb"></polygon><polygon points="461.73 326.41 461.68 326.39 458.99 329.04 457.94 340.6 461.21 345.3 463.18 347.85 468.52 341.79 469.06 337.81 465.76 334.22 467.14 329.58 461.73 326.41" style="fill:#d9dadb"></polygon><path d="M490,338.59v-.09l-.19.09L483.4,340,479,341.56l-1.38,4.64,3.3,3.6,4.87-.59,1.73-2.88,4.41.11,2.7-2.33h.47l-1.41-3.56-2.7,0Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M525.23,328.67l3.66-1.41.26-2.24-4,.19-4.64-2.66-6.12,1.89L510.57,328l-6.19-1.52-1.56,1.72-8.18-1,.57-3.1-2.84-1.34-2.27,4,1.08,2.83,3.47,2.17-1.56,3.2L489.9,334l.1,4.49v.09l1,2,2.7,0,1.41,3.56,5.54.05,4.28-2,2.65,1.61,5.3-.41.44-2.9,6.43-1.34,2.55,2.67,4.88-2.27L523,334.38l2.23-2.21Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M502.82,328.19l1.56-1.72,6.19,1.52,3.83-3.55,6.12-1.89,4.64,2.66,4-.19.05-.47.83-8.05-6.09-4.31,1-7.34-1.41-4.42-3.1-2.27-3.53-6.39-3.76.14-1.59,2-3.48.11-2.05,2-3.44-2.81-7-.8-1.44,1.86-1.59,2.12-3.27.68-3.2,6.42L484,304.84l-1.11,2.2-8.42.14,7.05,4.67-.88,2,4.66,2.27-1.14,2.94,4,1.62,2.5-1.1,2.59,1.6-.87,1.54,2.84,1.34-.57,3.1Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M537.29,307.51l-4-8.93-3.34-1.33.77-3.19-1.11-1.93-4.59-.71-3.26-2.49-4.12.28-2.26,2.62,1.58-.06,3.53,6.39,3.1,2.27,1.41,4.42-1,7.34L530,316.5h0l4.44-.24.58-3.25-1.49-1,1.06-3.21Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M574.12,298.63l3.66-3.77,3.79-.56,2.23-5.49q2.9-.33,5.76-.69l.42-2.27-2.55-3-.39-3.13,1.61-1.66-.72-2.83-5.39,1.05-5.31-2.66-1.38,2.06-4.14-3.88-3.19,2-5.52,0-1.32-1.29.13-2.4-1.43-2.31-6.13-.24L553,264.8l1.18-2-3.38-3.68-7.4,1.26-.62,2.34-6.07-.88-1.48,3.57,1.14,2.6-2.4,1.86-2.43-2.75-4-.8-1.25,2.5-3.2-2.27-2.44,2.54-3.18-3.4-6.64-.84-9.2,0-.72,3-3.55.65-.08.72,3.71,4.37-.76,3.18-2.52.05-4.29,5.26.19,4.2-1.92-.71-2.21,6.06,4.68,2.53,1.44-1.86,7,.8,3.44,2.81,2.05-2,3.48-.11,1.59-2,2.18-.08,2.26-2.62,4.12-.28,3.26,2.49,4.59.71,1.11,1.93-.77,3.19,3.34,1.33,4,8.93,2.7-5.4,3.64-2.18,4.11.26-1.62,3.59,3.3,1.47,5.06-1.58,3.4,1.94L551,310.34l1.64,1.5,5.19.56,1,5,3.39.37,2-3.11,3.48-.19,1.53-2.11c1.67-.15,3.34-.32,5-.48l-.15-4.4-6.83,2.43-5.18-5.55,6.71-5Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="480.23 235.22 480.23 235.22 480.23 235.22 480.23 235.22" style="fill:#d9dadb"></polygon><polygon points="480.23 235.22 480.23 235.22 480.23 235.22 480.23 235.22" style="fill:#d9dadb"></polygon><rect x="480.23" y="235.22" style="fill:#d9dadb"></rect><path d="M489.94,241.88l-4.2-1.92.2,1.95c-2.13,0-4.26,0-6.39,0l-2.06,3.5,7.16,2.26,7.47-.45h0l2.45-5.38Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M513.48,241.05l-2-1h0l.62-1.81-3.64-4-3.43-.45-1.67-2.06-1.93,2.15-4.48-.91L495,234.44l-4.85-2-4.89,2.69.42,4.41,0,.38,4.2,1.93,4.63,0-2.45,5.38h0L495,247l2.54,2.53v.88h5.33l2.58-2.95,1.37,2.23,2.44-.07-.22-6.44,3.2-.11Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M544.19,252.52l-1-3.11-6.95-3.25-3.05-4,0-5.4-3.64-2.21-4.09,2.53h0l-1.66-3.51-4.11,0-1.7,0-1.6,3.22-2.85-1.46-1.39,3-.62,1.81h0l2,1-1.29,2-3.2.11.22,6.44-2.44.07-1.37-2.23-2.58,2.95h-5.33c0,1,0,1.95,0,2.93l1.8,2.8,0,3.23-3.58,1.19-.89,2.81,3,.85-.48,4.3,3.55-.65.72-3,9.2,0,6.64.84,3.18,3.4,2.44-2.54,3.2,2.27,1.25-2.5,4,.8,2.43,2.75,2.4-1.86-1.14-2.6,1.48-3.57,3.91.57v0l-3.81-8.67,4.91.9Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M512.14,224.16l-2.49.82-4.43-3.11-3.77,1.79-.17,1.79c-1.86,0-3.72.08-5.59.1L493,222.3l-4.11,1.19L485,231.7l.31,3.46,4.89-2.69,4.85,2,1.89-1.48,4.48.91,1.93-2.15h0l1.66,2.07,3.43.45,3.64,4,1.39-3,2.85,1.46,1.6-3.22,1.7,0h0l0-.24-1.29-3.76-2-.42.12-2.2Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M517.46,212.34,516,210.8l-4.35.18-4.92-1L497,213l5,5.54-.48,5.09,3.77-1.79,4.43,3.11,2.49-.82,1.82,1.13,1.67-2.84-2.78-3.73,0-3.47,2.54.09Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M914.92,385.74c.69-.59,1.37-1.17,2-1.76l.72-4.62L924,391.69l1.83-1.69-5.59-15.35,3.52.61-3-10.68-1.65-1.25.46-4.37-3.38-6.89,1.59-9.28-1.7-6.73-4-1.11-1-3.6-3.42-2.69v7.14l-2.68-.15-.51,5.62-1.73,2.09,1.07,5.21-1.43,4.87,4.06,6L903.43,363l-2.81-1.22-1.56,4.77-5.16-1.9-1-3.3-1-3.23-2.59,4.08L891,369l2,1,.82,4.51-3.72,1.83-9.15.84-1.2-2.61-3.46,0-2.42,3.25-6.5-2.41-1.22,2.3-11.22-3.5-.36-5.39-1.13-1.95.78-4.81-8.77-2.45-2.1-2.69-3,.77L834.82,350l3-1.56.9-2.23-2.35-3.39-5.17-3-1.78-2.58.52-3.08-5.05-.93-4.2-5.78-2.27,1.14-5.39-.67-3.45,2.67-.89,4.24q-2.43,1.11-4.91,2.19l-.81,5.06,5.91,10.79,5.8,3.35,3-1.34,3.78,2,.52,4.67-2.06,3.37,2.9,4.14-1.74,7.1,1.75,13.21L819,392.1l.26,7-4.62,5.25-3.42-3.2-2,8.9.87,3.73,4.73-1.72,2.89,8.74,3.39-1.33,5.51,8.47-13.31,4.7-.63,6.05,6.4,4.25,6.35-4.8.56,6.33-6.33,3.78,8.81,6.69,4,1.52,6.31-6.85-.16-10.6,5.63,12.17.6,8,3.49,3.81.13,4.67,4.14,7.5,2.68,8,6,9.62,3.75,3.46,3.16,5.7,1.53,5.14,4.14,9,3.83,3.88,4,8.69,1.87,1.3.09,3.58,1.64,4.26,4.08,5.56,4.45-5.12,1.48-6.78,2-1.9-.12-3.25,1.08-5.26,1.69-.73-1.27-9.06-1.1-.62L898,499.7l-1.12-9.22-3.1-5.86-1.64-6.81-.16-5.3,3.35-7.74,4-4-1-3.71,4.81-14.12.46-8,1.12-3.62-1.35-5.3,2.94,1.46,2-4.17.26-6.22-2.28-5,1.7-6.4-.74-7,4.32,4.08,1.1-.79v0l-5.17-7.44q-1.44-3.45-2.91-6.87l-3-.47c-.52-1.2-1-2.4-1.58-3.6l2.33-4.16-3.71-2-1.57-5,5.66-.74q1.19,2.55,2.36,5.11l2.31-.9,1.63-2.34,1.9.36,1.47-3.82,3.25,3.53-2.24,7.61Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M924,391.69l-6.28-12.33L917,384c-.67.59-1.35,1.17-2,1.76l-1.57-4.65,2.24-7.61L912.34,370l-1.47,3.82-1.9-.36-1.63,2.34-2.31.9q-1.17-2.56-2.36-5.11l-5.66.74,1.57,5,3.71,2L900,383.47c.53,1.2,1.06,2.4,1.58,3.6l3,.47q1.47,3.42,2.91,6.87l5.17,7.44v0l3.87-2.86-.27-4.31.16-4,1.36-1.22,2.5,3.15,4.23,7.22v-.15c.68-.6,1.35-1.2,2-1.81Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M870.85,361.91,868.91,364l-3.11-2.63-5-.9c-.47-1-.94-1.92-1.42-2.87L856,358.73l-.15,3.73-1.66-.45-.78,4.81,1.13,1.95.36,5.39,11.22,3.5,1.22-2.3,6.5,2.41,2.42-3.25,3.46,0,1.2,2.61,9.15-.84,3.72-1.83-.82-4.51-2-1-1.73-6.72-2,2.2L883.16,363l.11,2.81-6.09-.68Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M892.87,361.38l1,3.3,5.16,1.9,1.56-4.77,2.81,1.22,3.05-3.55-4.06-6-3.1-2.72L897.6,355l-1.42-2.78c-.72.6-1.44,1.18-2.18,1.77a22,22,0,0,1,.28,4.2C894.1,359.4,893.24,360.28,892.87,361.38Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="874.04 188.12 877.92 192.09 881.08 196.09 881.9 196.93 884.52 200.41 885.97 201.91 882.27 196.82 882.29 196.61 880.42 194.27 880.16 193.75 877.61 190.66 877.61 190.48 872.36 184.21 872.45 184.41 866.96 178.22 861.9 173.32 864.45 176.31 864.79 177.39 867.99 181.24 871.29 184.51 872.3 185.65 872.19 185.77 874.04 188.12" style="fill:#d9dadb"></polygon><path d="M860.86,174.09l4.52,4.75,5.93,7.61h0l1.35.16,3.38,3.73.57.3.92.83.7,1.26,2.09,2.53,1.85,1.57-.6-1.1-1.7-1.75,0-.22.83.59-.78-1.14-3.2-3.85-.34-1.08-2.55-3-.41-.39-1.41-.83-2.76-2.83-2.84-3.19-1.27-1.76-2.37-2.63-1.39-1.43-1.67-1.92L855.12,166l-4.64-4.8-2.27-1.88-.31.19,5,4.71,3.43,4.14,3.12,2.59,2.16,3-2.85-2.4Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M606.17,404.49l3.85,9,8.55-.44,13,6.66,21,14.59q6.11-1,12.14-2l2.4-8.05c2.8-.48,5.58-1,8.36-1.49l.09-.21.82-1.87,1.32-.43h0l-8.12-7.9-.18-5.38-3.92-5-2.94.47-4-2.93-3.9.66-1.16-5.94-4.54-1.53-.59-6.5,3.93-4.76-2-3,.58-3.16-6,0-4-7.18-5.2,2.47-2.31-4.1h-6.71l-4.9,8.08-3.78.51-.12,4.53,2.8,4.87h0l-.35,7.94Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M667.08,424.3l-2.4,8.05,5.18-.9,2.88,4.05,6.73-1.22-1.33-2.09-3.46-7.68.76-1.7C672.66,423.32,669.88,423.82,667.08,424.3Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M623.51,371.57l-1.84-4.31-8.48,2.58-5.8,4.92-6.18.74-4.35-1.3-4.4,2.84-5-.52.93,4.65-2.18,4-3.15,0,1.49,7.77-.44,1.48h0l4.74-.76,2,3.91-3.65,8.74-.32.09-1.53.44.4,4.29h0l0-.07,6.5,3.34,13.89-9.93,14-12,.35-7.94h0l-2.8-4.87.12-4.53,3.78-.51h0Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M596.86,374.2l4.35,1.3,6.18-.74,5.8-4.92,8.48-2.58h0l1.84,4.31,3-5h6.71l2.31,4.1,5.2-2.47-2.63-4.72-5.36-2.78.5-2.7-3.64-6.48,3.55-4.16L626,345.51l-.14-4.92-2.65-1.91L618.47,335l-4.66,3.33L609.45,336,603,341.08l-4.8-1-6.13,2.35-10.57-2.24-2.21.9-2.56-3.27L572,338l-2.53-2.86-2.66,1.36-7.23.16-11.52,7.72-13.77,1.17,2.11,2.66-2.48,3.5-8,.11L524.12,353l-5.64-.58-3.38,3.44L519,364.3l-2.2,3.42,5.71.53-1.16,4.94,6.16,1.22-.35,5,7.49.41,2.38,2.81,3.49,1.27,5.26-1.24,1-3.83,4.81-.73,9,5.58,8.83-2.67,4-5.26,5.93,1.75,3-2.87,1.57,2.37-1.42.79-.16,2,1.61,2.48-.83,2.93,3.15,0,2.18-4-.93-4.65h0l5,.53Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="631.53 342.75 627.96 336.74 621.27 335.36 624.78 341.95 624.78 341.95 631.53 342.75" style="fill:#d9dadb"></polygon><polygon points="620.49 323.8 619.82 324.46 611.34 326.7 613.99 328.61 614.13 333.52 621.27 335.36 627.96 336.74 631.53 342.75 634.16 338.71 632.62 334.19 628.81 332.67 628.8 330.85 624.89 329.13 625.2 327.34 620.49 323.8" style="fill:#d9dadb"></polygon><path d="M657,333.51l-5.62-5.33-1.8,4.76-3.06.55-2.36-3.71-5-2.53-1.07,1.29-.9,1.06,4.19,3.07L640.3,336l-5.78-2.33-2.14,2.13,4.71,3.54-.3,1.79,3.9,1.72,0,1.83,3.81,1.51,1.54,4.52,5.5-6.61,2.8,2.17,1.86,5.92h5.23l-2.24-4.44h0l4.91-11.36Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="597.55 324.04 601.91 326.29 606.58 322.97 611.34 326.7 619.82 324.46 622.62 321.67 628.4 324 629.5 320.69 625.3 317.63 625.3 317.62 626.2 316.55 626.2 316.55 621.37 314.82 621.16 312.26 616.59 311.14 611.31 314.84 608.71 311.5 602.78 309.78 597.13 310.28 587.58 306.52 586.87 309.06 595.88 313.96 599.35 320.53 598.38 323.39 597.55 324.04" style="fill:#d9dadb"></polygon><polygon points="657.06 37.03 653.02 35.68 651.48 35.19 654.22 36.11 657.41 37.15 657.06 37.03" style="fill:#d9dadb"></polygon><path d="M810.39,126.45l1.14.69,2.23,1.74,2.08,1.84,15.35,12.46.21.85,3.82,3.71,4.67,3.74h0l5.64,5.19,2.68,2.65,2.27,1.88-.59-.59-3.21-3.22-4.85-4.57,1.43.74-2.77-2.73-6.15-5.65L828,139.67l-12.44-10.31L800,117.49l-5.87-4.26-8-5.48-1.88-1.28-3.31-2.09-8.11-5.18-5.38-3.1-3.31-1.94-.38,0-2.91-1.47,1.75,1.48,6,3.44.68.91-2.84-1.47,3.4,2.33L764,96.16l3.07,2.38-1.76-.61-10.23-6.66L749.25,88l-1.51-1.08L743.86,85l-8.69-5-3.49-1.69-11.35-6-5.49-3.34,0-.25-5.7-2.94-.57-.44-3.44-1.55-5.08-2.53,1.62.6,3.51,1.59.92.33-3.31-1.58L698.6,60.3,694,58.36l-1.81-.71,2.09.9-6.17-2.41-4.87-1.88-5.14-1.88-2-.68-3.48-1.26-5.3-1.92-.34-.15-.83-.27L655,44.47l-1.89-.58-6-1.79h0l-19.28-5.17c-22.26-5-25.68-5.79-36.64-7.51h0c-7.63-1.13-17.82-2.6-25.48-3.52l4.08.53,1.8.23h-.39l2.11.24.1.09,4.87.94,4.73.91.89.26,5.49,1.1,2.63.38,2.14.63,4,1,1.11.12L598.6,32l.88-.1,2.91.42,2.5.61-.77,0,1.74.54-2-.16-1.57-.4-2.27-.35,2.67.76,6.16,1,4.48,1.44.38.27,6.82,1.79,3.2.62-1.85.05,1.24.54-3.95-.59-1.67.3.51.73,3.4,1.41,2.08.42c.78.32,1.55.64,2.31,1l4.21,1.42-2.23.4,3.37,1.23L628,44.79l-.1.23,1.11.56-3.71-.69-.88.21,2.53,1.38,6,1.35L635,48.94l-7.48-1.83,1,1.62,2,1.7v.8l6.16,1.09,3,1,3,.27.1.63,2,.74,3.5.87-1.87.15-.52.77,4.21,1.63L646,59.1l11.73,3.63-1.93.7-5.37-1-2.13.1-6.43-1.34-1,1,7.94,1.7-.46,1.21-10.39-2.85.84,1.17-3.77,0,4.63,1.3.79.85,4.54.7-.74,1.87-1.93.27,1.63.86-2.07.45-3.06-.9-1.52,2.08,1.41,1.68,7.27,2.48-8-1.38,1.58,1.23-3.29-.25,6.8,4.87,1.14,3.83-4.44-2.52-2.2-1.79.13-.88-3.34-2-.32-.81-5.34-2.74.84-.19L625.4,70l-7.2-1.06-2.44.32-3.53-.21,1.43,1.13-1.69.15,1.47,1.52L613.18,73,610,71.34l-1.14.26,1,1.31-1.42.73-2.28-2.29-1.79-.1-1.5,1.83,3.79,2.53,7.22,1-2.75.71-.79,1,3.58.7,7.49,2.1L617.7,81l-5.88-1.61,1.64,1.48,0,1.94L611,82l-1.72,2.07,3.16.8-.27,2-1.74,1.83,2.82,3.18,1.45,1.44-2,.44,5,2.39,7.7,1.65-1.91,1.54-3.31-1L617,99l-2.09,3.44,6.46,3.22,3.8.17,2.65,1.3,6,.54,5.74,5,4.93,2.57L639,113.94l-5.74-4.61-3.49-.12-5.15-1.38-4.61.94,3,2.65-3.14.21,2.19,2.68,4.13.28.33-.71,4.32.67,3,3.72-4.78-1.85-5,1.16L619.6,114l-6.84-3.25,3.36,3-.34,1.62,1.74,2.32,7.25,2.53,2.92,3.84,5.38,3.53,2.76-2.12,6.46-.65,5,3.71,5.22.29-2.79,2.49-2.37-.33-4.23-3.11-3.34-.82-3.4,2.26,6.34,3.48,1.83,3.83-1.09,3,1.28,2.47-7.59,1.19-3.24-1.94,5.18-.85-1.11-6.6-2.54-1.45v-1.68l-4.16-1.43-7.39-5.48-3.12-3.31L615,118.37l-3.42-4.74-2.85-1.92-7.47,1.05.9,1.81,5,5.36.15,4.66,2.81.34,6,6.61,2.94-.95,3.58,2.15,1.82-.48,1.84,3.22-.86.42-5.19-1.5-12.27-.76-7.88,1-7.28-2.85,1.29,3.17,6.72,1.79,4.61,2.13-1,3.54-4.5-2.58-2.39,2.14-.08,1.05c-1.71.44-3.43.86-5.18,1.28l.56,2.89L588,147l1.12-1.77-.47-2.63c-4,2.47-9.31,5.77-13.4,8.07l2.68,1.71-3.57.93,1.2,3.73-4.79.92-4.52-2,.43-2.15,3.75-1.08-3.82-2.87-8.19.14,3.5,2.19,1.08,5,3.22,1.32-.46,2,1.79,3.41-4.1-2.4-3.71-.11-1,2.15-4.49,4.56,4.52,6.11-3.37.22-10.56-2.62,1.69,4,4,.82-.92,4.32-6.06-3.88-5.09-.77-1.46-8.23-9.52-5.94,6.51-.14,1.2,2.09,8.68.78,3,.58,4.18-.66,5-4.52-.29-1.95-2.2-2.48-9.13-2.15-6.57-2.87-8.37-.86-4.63.42,1.6-2.3-3.67-.83-.12,1.44-2.7-.48.62,3.18-2.3-.47-2.93,3-1-1.09-1.45,1.39.92,1-.25,2,2.63.35,2.45,2.35-.37,2L515.62,164l5.3,7.41-1.76,2.67,2.52,2.72L521,179l3.23,1.48.33,1.63-2,1.73,4.22,2.24,1.7,2.12-1.27,2.95-11.14,12.68,6.81,3.35-6,1.6-.05,2-.94.05,1.49,1.54-2.09,3,1.3,0,.39,2.94L519,222.2l-1.89,2.2-1.48-2L514,225.29l2.41,1.59-.12,2.2,2,.42,1.29,3.76,0,.24h0l4.11,0,1.66,3.51h0l4.09-2.53,3.64,2.21,0,5.4,3.05,4,6.95,3.25,1,3.11-2.47,2.09-4.91-.9,3.81,8.67v0l2.16.31.62-2.34,7.4-1.26,3.39,3.68-1.19,2,1.24,2.78,6.14.25,1.43,2.31-.13,2.4,1.32,1.29,5.52,0,3.19-2,4.14,3.88,1.38-2.06,5.31,2.66,5.39-1.05.72,2.83L587,279.74l.39,3.13,2.55,3-.42,2.27q-2.87.36-5.76.69l-2.23,5.49,6.92-2.16-.41,2.35-7.54,4,.76,1.92,3.78,1-2.61,2-.84,4.91L576.5,308l1.33,2.06,5.66,3,2.28,2.12,3.39.55,9.6,5.35.71-2.54,9.55,3.76,5.66-.5,5.93,1.73,2.6,3.33,5.28-3.69,4.57,1.12.21,2.55,4.82,1.73h0l1.07-1.29,5,2.53,2.36,3.71,3.06-.55,1.8-4.76-9.14-8.73-3-8.71-6-1.8,2.72-4.26.8-7.69,4.41-.05.67-2.56-3.38-2,1-4.7-5.61-4.55-5.88-.08c-.32-.92-.64-1.84-.95-2.76l-2.94-1.09.37-5.81L622,271.87l1.35-3.67-1.08-2.58,1.58-1.95,5.36,3.67,2-1.63-2-3,1.94-5.2,3.58-1.85.3-2.42,2.62-.53,1.12,1,2.29-.47.29-1.66,2.84-.61.6,1.31,3.78-.62,3.23,2.35,2.88,2.5,2.4-.37c-.42-.86-.84-1.72-1.25-2.58l6,2.39,1.26-4.08,2.87-1.11,2,1.81,2-1.25-.34-2,3.07-.49,2,2,5.59.63.46-2.29,5.39-1.76-1.66-4.48-8.38-.38-1.63-1.93,4.86-2.63-3.63-2.58.16-2.17,5.26-.27L680,229.76l-4.7.07-3.75-4.19,5.88-3.57,7.88-3.48-.69-2.28,9-5.38-1.89-2.64,1.78-2.64,4.44.22,3.19-1.37,3.88,3,.93,3.64,3.38,1.65,1.56-3.88,2.18,1.47,1.61-2.92,2.34,1.9.07,2.79,3.61,1.75,1.37-12,2.81-1,2.12,4.74,7.44,2,21,12.71.28-1.83L754.09,216l2.46-1.13,4.05,3.06,3.25-1.55-.72-3.36,3.57-.2,4.52,3.46,2.73-.57,3.16,2.08,2.42-.81-.93-3.31,2.87.46.82,1.17,4.73,1.33-1.2-4,3.44-1.92-2.28-2.3-.31-6,2.08-.94-1.4-3.23,3.25-1,2.6-1.79,3.94,3,2.88-1.17-.32-2.61,4.35.14.18-3.13-2.72-3.38-4.38-2.22-3.35-4-2.8-5.49,4.5.64,3.08-1.17,1.54-1.8c1.86,1.5,3.7,3,5.54,4.54l6,.26-2-6.42,5.72-2.61h0l2.63,2.1,2.48-1.17,2.15-1.75-2-2.83.9-3.27-2.9-2.71-3.66-4.86,3.13.06-1.64-2.63,2.35.43h0l1.73-.5-3-3.53-1-2.23-2.2-1.8-.62.15-9-7.63-2.3-2.67-4.21-2.56.63,1.33L796,132.36l-3.1-3.22-3.76-5.61,2.11-.47-1.16-1.42,5.06,1.45,7.09,4.11,8.66,5.12,1,.13L810,130.58l.48-.64,1.17.61L810.26,129l8.93,6.29L817,133.06l-.54-1-3.95-3-5.67-5.12,1.36.83ZM536.32,205.89l-.44,3.12-3.6-1.36-.11,2.44-2.13,0-4.27-7.19-1.71-1.07,2.53-3.89,3.22-.44,1,2.61,3.65.32L538,205Zm13.36-3.64-2.86-.54-.4-3-5-2.17.76-3.2,1.73-.26-2.3-4.1,4.58,1.55,1.12,3.25,3.07,3.79ZM790.14,149l4.78,4.91,3.15,6.2,5.35,7-3.28,3.74-2.48-7.1-7.36-8.83-2.41-5.12-11.37-9.68-1.39-2.35Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M860.94,223.75l3.18,1.95-2.23-11.41,1.92-4.56-5.09-8.53-.15-2.55-3.28-4.52-3.46-1.06-4.51-5.55,2.77.84-.18-3.44-4.53-5.34,1.56-.87-3-4.24-4.5-4.31-3.26-5.91,2.16-.52L835.61,161l-7.6-3.88.47,2.15,2.82,3-.06,1.91,1.58,2.14-3.66-1.91-10.43-10.89h0l-2.35-.43,1.64,2.63-3.13-.06,3.66,4.86,2.9,2.71-.9,3.27,2,2.83-2.15,1.75L818,172.22l-2.62-2.1-5.73,2.6,2,6.42-6-.26c-1.84-1.52-3.68-3-5.54-4.54l-1.54,1.8-3.08,1.17-4.5-.64,2.8,5.49,3.35,4,4.38,2.22,2.72,3.38-.18,3.13-4.35-.14.32,2.61-2.88,1.17-3.94-3-2.6,1.79-3.25,1,1.4,3.23-2.08.94.31,6,2.28,2.3-3.44,1.92,1.2,4,3.31,2.84,6.31,1.67c.94-.73,1.87-1.46,2.78-2.19l9.36,6.06h0l4.65,7.22,4,3,6.87-5.68,11,3.1,7.81,5.54.32-3.15,7.26-2.74-.64-3.8,6.86-3.14Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M988.56,509.1,987,493.3l-3.6-8-.28-.41.26,8.15-1.61,3.7c-.21-1.65-.43-3.29-.67-4.93l-2.48-.68,2,9.72,1.09,2.56.12,3.26,2.93,5.67-.22,3.3,5.24,7.32,1.22-4.09-1.45-8.07Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M980.75,482.73l-.36,2.88-2.25-2.11-2.21-9.37-2.16-5.65-1.35,2.34-2.83-17.44-.68-8.28-3-10.41.24-2.6.9,1.3,2.74,5.34,2.59-3.13,1.25,2.29,2.44,2.77c-.7-2.8-1.42-5.6-2.17-8.38l-3.3-6.9-.07-6q1.62-2.9,3-5.78l-.12-4.09L971,402.1l-3.19-3.54L966,392.74,962.64,388l-1.37,1.14.41,6.05-2.12-1.63.19,8.78-1.87-.48-2-11.17q-.93-2.42-1.87-4.83l-2.43,3.3-1.35-6.49-2.75,1.69,1.55,8c-.58.76-1.16,1.51-1.76,2.26l-2-1.11q2.07,5.28,4,10.59c-.44.54-.89,1.08-1.34,1.61l9,10.57,3.31,14.8,2.67,4.09,5,14.66-.17,9.68.83,5.79.5,8L971.81,484l.86-3,3.35,3.57,2.36,5.82,0,.08.16.72,2.48.68c.24,1.64.46,3.28.67,4.93l1.61-3.7-.26-8.15Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M984.72,431.58l-.88-10.53,0-1.38L981,407.84l-2.25-6.74L976,394.76l-.71-2.49-2.74-4.61-.87.49-4.63-5.34-1.66-3.47-3.18-3.17-1.81-5.44-2.07-10.89-1.23-2c.27-.71.53-1.43.78-2.14l-1-2.45-.11-2-2.75.65-2.33-6.06c-.29.75-.59,1.51-.91,2.27l-2.95-2.34,1.35,6.31.1,4.21-1.78-1,.6,3.22h0l-2.21-.84,1,4.89,2.83,2.91.65-1.15,1.64,6.25,2.6-.53-.42-4,3.81,5,.74,3.67-.87,1.46,1.11,4.67,3.79.14,7.37,11.07,2.32,1.35.73,3.39,1.45,1,1.35,4.35,2.48,9.4,2.73,9.18-.39,10c.43,1.68.84,3.37,1.25,5.06l-.72,1.71-.16,8.65.95.79,2.18,9.74,1.09-11.32-1.36-8.78Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M981.24,420.75l-2.73-9.18-2.48-9.4-.18,4.1-1-1.28,0,3.33,1.57,5.53-2.87-.21q-1.35,2.88-3,5.78l.06,6,3.3,6.9c.75,2.78,1.47,5.58,2.17,8.38l1.44,1.71.65-3.66,1.47,6.21,1.59,1.27.16-8.65.72-1.71c-.41-1.69-.82-3.38-1.25-5.06Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M966,392.74l1.85,5.82L971,402.1l2.36,7.44.13,4.1,2.87.21-1.57-5.53,0-3.33,1,1.28.18-4.1-1.35-4.35-1.45-1-.73-3.39-2.32-1.35L962.81,381l-3.79-.14-1.11-4.67.87-1.46-.74-3.67-3.81-5,.42,4-2.6.53-1.64-6.25-.65,1.15-2.83-2.91-1.3.21.7,2.82,2.35,3.1h0l1.94,5.15c-.38.62-.77,1.23-1.17,1.85L948,373.2l.63,10.44,1.58-1,1.35,6.49,2.43-3.3q.94,2.41,1.87,4.83l2,11.17,1.87.48-.19-8.78,2.12,1.63-.41-6.05,1.37-1.14Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M954,421.46l6.71,17.65.42-2.42,4.52,15.91,1.18.42,1,6.49.17-9.68-5-14.66-2.67-4.09L957,416.28l-9-10.57c.45-.53.9-1.07,1.34-1.61q-1.93-5.31-4-10.59l2,1.11c.6-.75,1.18-1.5,1.76-2.26l-1.55-8,1.17-.71L948,373.2l-2.53-4.36.25,6.58-2.35-3.15-2.22.82-1.46-4.49.13-2.17L937.2,366l-2-2.93L934,359.85l-1.62,1.76.11,4.16L929.32,360l-.13-2.64L927.75,354l-.52-6.33L925,341.86l-3.35-5.61-2.07-.31-2.2-3-2.23-.4.89,3.5,1.7,6.73-1.59,9.28,3.38,6.89-.46,4.37,1.65,1.25,3,10.68-3.52-.61L925.79,390,924,391.69l2.55,6.18c-.66.61-1.33,1.21-2,1.81v.15h0l6.62,5.12,2.33-.54,2.45,2.94,1.3,4.05,5.09,7.87,1.48,8.55,1.3,4.25,4.12-4.07,1.18-9-1.58-5.69,4.39,3.95Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M768.9,433.17l.5,5.79,11.28-3.29,3-3.25,3.89,1.2,6.18-4.23,2.42-2.57,2.54,3.91,2.26-.62,5.87,8.13,4.31-.52,1.56,1h0l.63-6.05,13.31-4.7-5.51-8.47-3.39,1.33-2.89-8.74-4.73,1.72-.87-3.73,2-8.9,3.42,3.2,4.62-5.25-.26-7,3.83-2.74-1.75-13.21,1.74-7.1-2.9-4.14,2.06-3.37-.52-4.67-3.78-2-3,1.34-5.8-3.35L803,342.08l.81-5.06q2.48-1.08,4.91-2.19l.89-4.24h0l3.45-2.67-5.4-3-3.21-1.12-3.34,1.52-1.8,3.39-7.7,3-1.91,6.56,4.16,4.66-.8,6.08c.76,1.62,1.53,3.23,2.28,4.86l-6.17-.08,1.34,5,3.42,1.27,0,3.62-3.32,1.27,3.27,8.26-.56,3.71-5.24.13-.44,4.43-5.4,3.57,1.47,9.63-7.41,6.13-.81,2.69-5.69-.62-4.62,3.21L754,404.22l7.13,7.93,8.33,3.07c.83,2.55,1.66,5.12,2.48,7.68,1.07-.32,2.14-.65,3.2-1h0l1.05,5.54-5,1.53Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M799.3,328.69l1.8-3.39-1.33-4h0l-2.64-1.46-5.68,2L791,325.2l-4.34,4.5c-1.21-2.34-2.42-4.67-3.66-7l-1.84-.6-2-4-2.22,1.38-2.11,3.7c.79,1.52,1.57,3,2.34,4.55l-2.19,4.83-2.48-2-2.58,5.52-3-2.81-10.38,1.9L757,338c-1.34.45-2.68.9-4,1.34l1.65,9-5.31,4.15,1.21,4.2-3.1,4.52-3.57-4.66-3.21.65-2.15.44L741,367.74l-1.2,3.39,1.32,3.56,2.93,1.18-1.13,3.74,6.81,12.07,4.56-.51,2.19,4.25-2.48,8.8,11.19,1.86,4.62-3.21,5.69.62.81-2.69,7.41-6.13L782.26,385l5.4-3.57.44-4.43,5.24-.13.56-3.71-3.27-8.26,3.32-1.27,0-3.62-3.42-1.27h0l-1.34-5,6.17.08c-.75-1.63-1.52-3.24-2.28-4.86l.8-6.08-4.16-4.66,1.91-6.56Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M776.2,427.46l-1.05-5.54h0c-1.06.34-2.13.67-3.2,1-.82-2.56-1.65-5.13-2.48-7.68l-8.33-3.07L754,404.22l2.48-8.8-2.19-4.25-4.56.51-6.81-12.07,1.13-3.74-2.93-1.18-1.32-3.56,1.19-3.4-2.5-10.06h.07l-4-8.35-4.18.46-9.47-5.43-4,3.27-6.85-2.3-1.64-3.09-10,3.61L697,352.44l-4.31.93,2.36,6.22-6.35-.62-7.11,3.9L664,357.94l-2.53-5.78h-5.23l-1.86-5.92-2.8-2.17-5.5,6.61-2.63,4-6.75-.8-3.51-6.58-3.55,4.16,3.64,6.48-.5,2.7,5.36,2.78,2.63,4.72,4,7.18,6,0-.58,3.16,2,3-3.93,4.76.59,6.5,4.54,1.53,1.16,5.94,3.9-.66,4,2.93,2.94-.47,3.92,5,.18,5.38,8.12,7.9h0l8.59-3,7.54,7.52,4.45,7.46,8.61,2,7.37,3.85,2.37,1.72,6.33.25,3.38-3.21,1.53-.21,4.56-4.79,3.09-.19,2.69,3.28,3.37,6.66,11.68.19L762.4,439l7,0-.5-5.79,2.3-4.18Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M760.52,334.28q-1.57-3.33-3.18-6.63l-4.72,1.13-7.72-2.07-3,2-11.43-5.46-4.77-7.44-3.61-1.34-3.38,2.94-4.82-1.31.69-3.15-3.47-4.24-3.78.93-4.48-2.32-2.37,1.87,1,3.67-3.54,3.35,3.63,5.83-7,.63-2.85,1.45-5.85-5.44-9.16-5.19-6.6,7.15L673.3,325l1-4.93,5.87-.47,7.57,7.13-10.45,3.39,1.09,5.62,5,.87.23,4.11,5,2.61,4,10.08,4.31-.93,1.46-6.61,10-3.61,1.64,3.09,6.85,2.3,4-3.27,9.47,5.43,4.18-.46,4,8.35,2.08-.42,3.21-.65,3.57,4.66,3.1-4.52-1.21-4.2,5.31-4.15-1.65-9c1.36-.44,2.7-.89,4-1.34l-.5-2.78,4.11-.73Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M779.59,280.82l5.48-3.56,7.65-4h0l1.58,1.36,5.58.33L796.62,271l1.34-2.92L790.3,260l-5.81-1.79,4.11-7.74,5.24,2.31-2.24-5.12L789,246.22,783.7,236l6.84-1.21.2-3.4q-2.88-3.32-5.81-6.58c.74-.49,1.48-1,2.2-1.49l-1.64-3.81,1.53-2.83-4.73-1.33-.82-1.17-2.87-.46.93,3.31-2.42.81L774,215.71l-2.73.57-4.52-3.46-3.57.2.72,3.36-3.25,1.55-4.05-3.06L754.09,216l1.61,2.36-.28,1.83-21-12.71-7.44-2-2.12-4.74-2.81,1-1.37,12-3.61-1.75-.07-2.79-2.34-1.9-1.61,2.92-2.18-1.47-1.56,3.89L706,211.1l-.93-3.64-3.88-3L698,205.87l-4.44-.22-1.78,2.64,1.89,2.64-9,5.38.69,2.28-7.88,3.48-5.88,3.57,3.75,4.19,4.7-.07,1.14,3.13-5.26.27-.16,2.17,3.63,2.58-4.86,2.63,1.63,1.93,8.38.38,1.66,4.48-5.39,1.76-.46,2.29-5.59-.63-2-2-3.07.49.34,2-2,1.25-2-1.81-2.87,1.11-1.26,4.08-6-2.39c.41.86.83,1.72,1.25,2.58l-2.4.37L651.9,254l-3.24-2.36-3.77.62h0l-.6-1.31-2.84.61-.29,1.66-2.29.47-1.12-1-2.62.53-.3,2.42-3.58,1.85-1.94,5.2,2,3-2,1.63-5.36-3.67-1.58,1.95,1.08,2.58L622,271.87l2.49,1.54-.37,5.81,2.94,1.09c.31.92.63,1.84.95,2.76l5.88.08,5.61,4.55-1,4.7,3.38,2,.71-2.85,9-6.49,8.93.31,2.29,9.34-7.41,5.37,1.56,3.32-2.68,2,6.51,7.78,9.69,2.17-.36,5.27,6.6-7.15,9.16,5.19,5.85,5.44,2.85-1.45q-5.67-14.11-11.71-27.8l9.61-7.07,1-8,7.49.93-1.84,4.45,6.05,6.17,11.86,7.25,9.9-3.07,3.23-4.24,8.24,5q1.75,3.25,3.48,6.54l2.36-.81,4,6,5.5-1.95,4.3,2.89-.33-5.48,4.52-11.71-.55-4.34h10.74l-1.72-3.76,1.44-2.91Zm-14.35-10.48-8.07-3.76v-12l14.2-4.15-.2-3.07,3.15-.91,2.84,6.67h0l-14.65,6.07-.73,4.58Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M799.89,274.94l-5.58-.33-1.58-1.36h0l-7.66,4-5.48,3.56h0l-7.46-.1-1.44,2.91,1.72,3.76H761.67l.55,4.34,3.76,2.09-1.88,4.61,4.32,1.06,1.53-3,9.42,2.43-3.81,7.93h0l-3.35-1-1.52,3.49-3.67.92,1.07,4.76,6.95-1.18,3.46-1.94,4,1.64,4.3-4.52.92-1-1.78-3.95.69-4.94,3-2.54,2.56,2.76,2.55-1.79-1.71-5.84q2.87-1.38,5.63-2.79l-1.25-4.79,4.11-7.35Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M770.68,309.33l1.52-3.49,3.35,1h0l3.82-7.93L770,296.5l-1.53,3-4.32-1.06,1.88-4.61-3.76-2.09-4.52,11.71.33,5.48-4.3-2.89-5.5,1.95-4-6-2.36.81q-1.73-3.29-3.48-6.54l-8.24-5L727,295.51l-9.9,3.07-11.86-7.25-.83,5.71-2.46-.12-4.1-6.55-.3,5.69-2.93.58-2.53-6.08.41-2.79-9.61,7.07q6,13.68,11.71,27.8l7-.63-3.63-5.83,3.54-3.35-1-3.67,2.37-1.87,4.48,2.32,3.78-.93,3.47,4.24-.69,3.15,4.82,1.31,3.38-2.94,3.61,1.34,4.77,7.44,11.43,5.46,3-2h0l7.72,2.07,4.72-1.13q1.6,3.3,3.18,6.63l.11.21,6.27-1.17-.12-7.49-3.46-3.63-4.87-1,.25-3.39,4-1.06-.59-4.23,1.62-1.54-1.35-3.27,1.84-.37,2.41-3.93,2.11,1.17-.19,2.62Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M779.12,318.13l2,4,1.84.6c1.24,2.33,2.45,4.66,3.66,7l4.34-4.5.51-3.28,5.68-2,2.64,1.46,1.21-2.61-6.24-7-2.79.46-1,1.24L786.75,309h0l-4.3,4.52-4-1.64L775,313.83,768.08,315,767,310.25l3.67-.92-2.13-2.16.19-2.62-2.11-1.17-2.41,3.93-1.84.37,1.35,3.27-1.62,1.54.59,4.23-4,1.06-.25,3.39,4.87,1,3.46,3.63.12,7.49,3,2.81,2.58-5.52,2.48,2,2.19-4.83c-.77-1.52-1.55-3-2.34-4.55l2.11-3.7Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M958.54,344.63l1.41,4.24,2.26,4.88-.39-3.84-2.79-7,.29-3.48-.93-6.46-1.76-4.3,1,.4-2.31-5.45,1.11.87-1.32-6,.58.18-.85-3.36-2.23-5.36-3.12-8.37-.77-.57-.72-1.95.09-1.15-1.4-2.75-.7-2-1.48-2.66-.34-1.34-2.54-4.74-.64-.87-.92-2.05-.73-.79-.9-1.75-.36-1.25-5.21-9.36-2.78-5.1,1.6,2.47-1.4-2.64-1-1.39-1-1.77-.72-.79-.85-1.46.22-.15L924.55,254l-2.18-2.61,1.07,2.47-1.53-2.09-1.75-3.29-1-2.25-1.4-1.67-.4.28-1.74-1.76.05-1.59L914,239.08l-2.09-1.42-3-4.08-4.32-4.28-1.37.12L901.26,227l-6.38-10.13L893,214.72,889.71,209l-.08-.71-3.49-4.18L887.3,207,886,207l4.64,6.54.52,1.44-1.87-1.36-1.63-2.41-1.65-1.1,1,2.21-2.61-1.42-3.62-4.79-.81-3-4.36-5.49-1.9-3.29-4.14-5.27-.82-1.86,1.93,1.17,3.64,4.36,1.46,2.29,1.56,1.61h.32l.26,0,1.94,2.89,1.59,1.71-1.54-2.62-6.52-8.78-.39-1.43-1.63-1.93-5.93-7.61-4.52-4.75-2.12-2.52,2.85,2.4-2.16-3-3.12-2.59h0l-3.43-4.13-5-4.71.31-.19-2.68-2.65-5.64-5.19h0l-4.67-3.74L831.4,144l-.21-.85-15.35-12.46-2.08-1.84-2.23-1.74-1.14-.69-2.24-1.74-1.36-.83,5.67,5.12,3.95,3,.54,1,2.24,2.22L810.26,129l1.36,1.56-1.17-.61-.48.64,1.89,1.87-1-.13-8.66-5.12-7.09-4.11-5.06-1.45,1.16,1.42-2.11.47,3.76,5.61,3.1,3.22,2.84,1.69-.63-1.33,4.21,2.56,2.3,2.67,9,7.63.62-.15,2.2,1.8,1,2.23,3,3.53-1.73.5,10.42,10.89,3.66,1.91-1.58-2.14.06-1.91-2.82-3-.47-2.15,7.6,3.88,2.71,2.77-2.16.52,3.26,5.91,4.5,4.31,3,4.24-1.56.87,4.53,5.34.18,3.44-2.77-.84,4.51,5.55,3.46,1.06,3.28,4.52.15,2.56,5.09,8.52-1.92,4.56,2.23,11.41-3.18-1.95-4,1.63L850,228.52l.64,3.8-7.26,2.74-.32,3.15-7.81-5.54-11-3.1-6.87,5.68-4-3L808.78,225h0L799.42,219c-.91.73-1.84,1.46-2.78,2.19l-6.31-1.67L787,216.63l-1.53,2.83,1.64,3.81c-.72.5-1.46,1-2.2,1.49q2.93,3.27,5.81,6.58l-.2,3.4L783.7,236,789,246.22l2.61,1.39,2.24,5.12-5.24-2.31-4.11,7.74L790.3,260l7.66,8.14L796.62,271l4.81,5.79-4.11,7.35,1.25,4.79q-2.76,1.41-5.63,2.79l1.71,5.84-2.55,1.79-2.56-2.76-3,2.54-.69,4.94,1.78,3.95-.92,1h0l4.19,4.37,1-1.23,2.79-.47,6.24,7.05-1.21,2.61h0l1.33,4,3.34-1.52,3.21,1.12,5.4,3,5.39.67,2.27-1.14,4.2,5.78,5.05.93-.52,3.08,1.78,2.58,5.17,3,2.35,3.39-.9,2.23-3,1.56,5.48,7.61,3-.77,2.1,2.69,8.77,2.45,1.66.45.15-3.73,3.32-1.14c.48,1,.95,1.91,1.42,2.87l5,.9,3.11,2.63,1.94-2.08,6.33,3.19,6.09.68-.12-2.81h0l4.13,1.46,2-2.2,2.59-4.08c.32.91.76,2.12,1.08,3l1.34-3L894,354c.74-.59,1.46-1.17,2.18-1.77L897.6,355l1.72-4.3,3.1,2.72,1.43-4.87-1.07-5.21,1.73-2.09.51-5.62,2.68.15v-7.14l3.42,2.69,1,3.6,4,1.11-.89-3.5,2.23.4,2.2,3,2.07.31,3.35,5.61,2.21,5.77.52,6.33,1.44,3.36.13,2.64,3.16,5.81-.11-4.16,1.62-1.76,1.21,3.21,2,2.93,2.63.44-.13,2.17,1.46,4.49,2.22-.82,2.34,3.14-.24-6.57,4,6.89c.4-.62.79-1.23,1.17-1.85l-1.94-5.15h0l-2.35-3.1-.7-2.82,1.3-.21-1-4.89,2.21.83h0l-.6-3.22,1.78,1-.1-4.21-1.35-6.31,2.95,2.34c.32-.76.62-1.52.91-2.27l2.33,6.06,2.75-.65-.2-2.86,1.63-.75Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="749.53 82.54 751.66 83.39 747.14 80.6 746.99 80.92 749.53 82.54" style="fill:#d9dadb"></polygon><path d="M903.51,221.28c-.27-.48-.55-.95-.83-1.42l-1.51-2.11-1-1.2,1.54,2.09-.1,0Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="911.93 240.69 911.92 240.69 911.93 240.69 911.93 240.69" style="fill:#d9dadb"></polygon><polygon points="909.34 236.82 910.54 238.93 911.92 240.69 910.82 238.76 909.34 236.82" style="fill:#d9dadb"></polygon><path d="M995.56,550.26c.3-.88.58-1.76.85-2.64l.41-6-.79.86Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="44.64 321.5 44.65 321.48 44.64 321.5 44.64 321.5" style="fill:#d9dadb"></polygon><polygon points="44.65 321.48 45.65 319.08 46.72 316.28 45.78 318.58 45.64 318.93 44.65 321.48" style="fill:#d9dadb"></polygon><polygon points="27.57 401.45 28.61 396.85 28.48 394.69 27.37 399.25 27.57 401.45" style="fill:#d9dadb"></polygon><path d="M36.21,424.7c.11.51.22,1,.34,1.53l1.15-3.81.64-4.27v-2l-1.28,6.06Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="22.56 421.79 23.27 417.74 22.41 419.52 21.85 422.97 22.56 421.79" style="fill:#d9dadb"></polygon><path d="M41.4,404l.83-3.44c-.11-.58-.21-1.16-.31-1.74l-.82,3.57C41.19,402.91,41.29,403.45,41.4,404Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M43.2,393l.91-3.41c-.08-.58-.16-1.16-.22-1.74l-.9,3.54C43.05,392,43.12,392.49,43.2,393Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M33.87,408.88l-.6,2.84c-.19.89-.37,1.79-.55,2.68Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M32.7,414.5l0-.1v.1Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="583.91 980.16 583.66 980.2 580.69 980.71 580.39 980.76 583.75 980.19 583.75 980.19 583.91 980.16" style="fill:#d9dadb"></polygon><polygon points="587.99 979.42 591.82 978.7 591.08 978.84 587.61 979.49 587.99 979.42" style="fill:#d9dadb"></polygon><path d="M618.9,987.48l6-1.36C623,986.52,621,987,618.9,987.48Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M613,988.79l-3.34.68-2.28.49.12,0c3.42-.61,7.52-1.56,11.41-2.46l-1,.23Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M553.83,997.66l.27,0-3.31.28-1.11.1Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="142.62 503.05 142.62 503.05 142.62 503.05 142.62 503.05" style="fill:#ff7b00"></polygon><polygon points="142.91 496.21 141.44 498.26 142.62 503.05 145.06 500.25 142.91 496.21" style="fill:#ff7b00"></polygon><polygon points="150.31 494.94 150.82 490.44 148.03 489.74 147.55 494.08 150.31 494.94" style="fill:#ff7b00"></polygon><polygon points="139.9 478.19 135.89 479.92 139.66 483.76 139.9 478.19" style="fill:#ff7b00"></polygon><polygon points="349.97 342.76 354.73 338.99 351.23 335.76 345.35 338.32 349.97 342.76" style="fill:#d9dadb"></polygon><polygon points="211.47 412 215.64 410.62 214.03 406.08 211.18 407.83 211.47 412" style="fill:#d9dadb"></polygon><polygon points="212.87 402.4 206.08 402.56 207.42 407.99 212.87 402.4" style="fill:#d9dadb"></polygon><path d="M235.65,421.2l2.54-5-.4-2.13-4.92,6.38Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M203.58,327.57l4.78,2.32.89-3.34-3.29-1.4-2.38,2.42Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="187.4 307.31 189.53 305.68 189.08 302.56 186.06 304.65 187.4 307.31" style="fill:#d9dadb"></polygon><path d="M744.18,934l4.3-3.08-6.16,1.73c-1.23,1-2.48,2.09-3.73,3.12Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="735.36 806.32 739.62 802.74 736.43 800.16 732.46 803.69 735.36 806.32" style="fill:#ff7b00"></polygon><polygon points="748.19 798.54 755.1 792.09 751.42 790.96 747.06 796.5 748.19 798.54" style="fill:#ff7b00"></polygon><polygon points="965.97 531.48 964 529.36 963.84 533.2 965.8 538.08 965.8 538.08 965.97 531.48" style="fill:#d9dadb"></polygon><polygon points="967.99 548.9 969.14 553.44 970 548.91 968.99 544.68 967.99 548.9" style="fill:#d9dadb"></polygon><polygon points="950.05 498.28 950.05 498.28 950.05 498.28 950.05 498.28" style="fill:#d9dadb"></polygon><polygon points="947.57 491.1 948.01 496.07 950.05 498.28 949.7 492.94 947.57 491.1" style="fill:#d9dadb"></polygon><polygon points="938.75 470.61 940.05 471.68 940.01 467.62 938.63 467.01 938.75 470.61" style="fill:#d9dadb"></polygon><polygon points="959.01 525.79 961.89 528.12 961.57 524.31 959.07 522.29 959.01 525.79" style="fill:#d9dadb"></polygon><polygon points="982.13 475.49 982.91 478.82 982.91 473.93 982.14 470.87 982.13 475.49" style="fill:#d9dadb"></polygon><polygon points="858.68 550.73 856.61 550.13 855.91 554.51 857.97 555.13 857.97 555.13 858.68 550.73" style="fill:#d9dadb"></polygon><polygon points="861.95 561.91 860.08 560.51 859.38 565.62 861.68 566.47 861.68 566.47 861.95 561.91" style="fill:#d9dadb"></polygon><polygon points="731.4 926.82 729.77 927.34 727.66 929.09 731.4 926.82" style="fill:#d9dadb"></polygon><polygon points="630.39 714.26 626.3 716.74 628.83 719.89 630.39 714.26" style="fill:#ff7b00"></polygon><polygon points="655.24 758.07 658.27 756.02 656.52 751.92 654.72 754.03 655.24 758.07" style="fill:#ff7b00"></polygon><polygon points="748.35 687.16 750.41 685.4 749.57 682.84 746.81 685.26 748.35 687.16" style="fill:#ff7b00"></polygon><polygon points="664.04 761.04 666.35 758.65 664.8 756.39 662.25 758.6 664.04 761.04" style="fill:#ff7b00"></polygon><polygon points="677.22 735.36 681.51 736.29 681.42 732.75 677.22 735.36 677.22 735.36" style="fill:#ff7b00"></polygon></g><circle cx="511.9" cy="511.98" r="488.79" transform="translate(-223.99 499.94) rotate(-45)" style="fill:none"></circle></g></g></svg></span> </span> <a class="elementor-accordion-title" tabindex="0">APAC</a> </div> <div id="elementor-tab-content-1211" class="elementor-tab-content elementor-clearfix" data-tab="1" role="region" aria-labelledby="elementor-tab-title-1211"><p> <div data-elementor-type="page" data-elementor-id="20501" class="elementor elementor-20501" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-18f0ef08 local-chapter_section elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="18f0ef08" data-element_type="section"> <div class="elementor-container elementor-column-gap-extended"> <div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-441bf49b" data-id="441bf49b" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-5794deed elementor-widget elementor-widget-text-editor" data-id="5794deed" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong><span data-sheets-value="{"1":2,"2":"Angolan Geophysical Association (ASGA)"}" data-sheets-userformat="{"2":14461,"3":{"1":0,"3":1},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"9":0,"14":{"1":3,"3":1},"15":"Arial","16":10}">Australian Geomechanics Society (AGS)</span><br /></strong>Australia</p> </div> </div> <div class="elementor-element elementor-element-2cf2892b e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="2cf2892b" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://australiangeomechanics.org/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-48b6a3c5 elementor-widget elementor-widget-text-editor" data-id="48b6a3c5" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong><span data-sheets-value="{"1":2,"2":"Moroccan Association of Geosciences (MAG)"}" data-sheets-userformat="{"2":14461,"3":{"1":0,"3":1},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"9":0,"14":{"1":3,"3":1},"15":"Arial","16":10}">Australian Society of Exploration Geophysicists (ASEG)</span></strong><br />Australia</p> </div> </div> <div class="elementor-element elementor-element-130d236e e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="130d236e" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://www.aseg.org.au/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-7db550e0 elementor-widget elementor-widget-text-editor" data-id="7db550e0" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong><span data-sheets-value="{"1":2,"2":"Moroccan Association of Geosciences (MAG)"}" data-sheets-userformat="{"2":14461,"3":{"1":0,"3":1},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"9":0,"14":{"1":3,"3":1},"15":"Arial","16":10}">Petroleum Exploration Society of Australia (PESA)</span></strong><br />Australia</p> </div> </div> <div class="elementor-element elementor-element-5899b044 e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="5899b044" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="http://www.geomin.com.mx/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-537eb2ed elementor-widget elementor-widget-text-editor" data-id="537eb2ed" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong><span data-sheets-value="{"1":2,"2":"Moroccan Association of Geosciences (MAG)"}" data-sheets-userformat="{"2":14461,"3":{"1":0,"3":1},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"9":0,"14":{"1":3,"3":1},"15":"Arial","16":10}">Chinese Geophysical Society (CGS)</span></strong><br />China</p> </div> </div> <div class="elementor-element elementor-element-7df80bfd e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="7df80bfd" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="http://www.cgscgs.org.cn/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-3400982c" data-id="3400982c" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-8c02e20 elementor-widget elementor-widget-text-editor" data-id="8c02e20" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong><span data-sheets-value="{"1":2,"2":"Angolan Geophysical Association (ASGA)"}" data-sheets-userformat="{"2":14461,"3":{"1":0,"3":1},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"9":0,"14":{"1":3,"3":1},"15":"Arial","16":10}">Association of Exploration Geophysicists (AEG)</span><br /></strong>India</p> </div> </div> <div class="elementor-element elementor-element-1d4562b7 e-grid-align-left local_chapter_socialmedia elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="1d4562b7" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" target="_blank"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-64d61427 elementor-widget elementor-widget-text-editor" data-id="64d61427" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong><span data-sheets-value="{"1":2,"2":"Moroccan Association of Geosciences (MAG)"}" data-sheets-userformat="{"2":14461,"3":{"1":0,"3":1},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"9":0,"14":{"1":3,"3":1},"15":"Arial","16":10}">Association of Petroleum Geologists (APG)</span></strong><br />India</p> </div> </div> <div class="elementor-element elementor-element-6d8d5398 e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="6d8d5398" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="http://apgindia.org/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-591d0283 elementor-widget elementor-widget-text-editor" data-id="591d0283" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong><span data-sheets-value="{"1":2,"2":"Moroccan Association of Geosciences (MAG)"}" data-sheets-userformat="{"2":14461,"3":{"1":0,"3":1},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"9":0,"14":{"1":3,"3":1},"15":"Arial","16":10}">Society of Petroleum Geophysicists, India (SPG)</span></strong><br />India</p> </div> </div> <div class="elementor-element elementor-element-21afa7 e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="21afa7" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://spgindia.org/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-1ccf6e28 elementor-widget elementor-widget-text-editor" data-id="1ccf6e28" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong><span data-sheets-value="{"1":2,"2":"Moroccan Association of Geosciences (MAG)"}" data-sheets-userformat="{"2":14461,"3":{"1":0,"3":1},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"9":0,"14":{"1":3,"3":1},"15":"Arial","16":10}">Indonesian Association of Geophysicists (HAGI)</span></strong><br />Indonesia</p> </div> </div> <div class="elementor-element elementor-element-543909a6 e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="543909a6" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://www.hagi.or.id/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-5ce64797" data-id="5ce64797" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-1360639f elementor-widget elementor-widget-text-editor" data-id="1360639f" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong><span data-sheets-value="{"1":2,"2":"Angolan Geophysical Association (ASGA)"}" data-sheets-userformat="{"2":14461,"3":{"1":0,"3":1},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"9":0,"14":{"1":3,"3":1},"15":"Arial","16":10}">Society of Exploration Geophysicists, Japan (SEGJ)</span><br /></strong>Japan</p> </div> </div> <div class="elementor-element elementor-element-20d03d94 e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="20d03d94" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="http://www.segj.org/index_e.html" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-27bcd6a0 elementor-widget elementor-widget-text-editor" data-id="27bcd6a0" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong><span data-sheets-value="{"1":2,"2":"Moroccan Association of Geosciences (MAG)"}" data-sheets-userformat="{"2":14461,"3":{"1":0,"3":1},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"9":0,"14":{"1":3,"3":1},"15":"Arial","16":10}">Korean Society of Exploration and Earth Geophysicists (KSEG)</span></strong><br />Korea</p> </div> </div> <div class="elementor-element elementor-element-52c632ee e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="52c632ee" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://kseg.jams.or.kr/co/main/jmMain.kci" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-6416fd76 elementor-widget elementor-widget-text-editor" data-id="6416fd76" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong><span data-sheets-value="{"1":2,"2":"Moroccan Association of Geosciences (MAG)"}" data-sheets-userformat="{"2":14461,"3":{"1":0,"3":1},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"9":0,"14":{"1":3,"3":1},"15":"Arial","16":10}">Myanmar Geoscience Society (MGS)</span></strong><br />Myanmar</p> </div> </div> <div class="elementor-element elementor-element-304620d0 e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="304620d0" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://myanmargeosciences.org/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-6c63261d" data-id="6c63261d" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-1d2833d9 elementor-widget elementor-widget-text-editor" data-id="1d2833d9" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong><span data-sheets-value="{"1":2,"2":"Moroccan Association of Geosciences (MAG)"}" data-sheets-userformat="{"2":14461,"3":{"1":0,"3":1},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"9":0,"14":{"1":3,"3":1},"15":"Arial","16":10}">South East Asia Petroleum Exploration Society (SEAPEX)</span></strong><br />Singapore</p> </div> </div> <div class="elementor-element elementor-element-3a933379 e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="3a933379" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://www.seapex.org/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-74aac9ea elementor-widget elementor-widget-text-editor" data-id="74aac9ea" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong><span data-sheets-value="{"1":2,"2":"Angolan Geophysical Association (ASGA)"}" data-sheets-userformat="{"2":14461,"3":{"1":0,"3":1},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"9":0,"14":{"1":3,"3":1},"15":"Arial","16":10}">Vietnam Association of Geophysicists (VAG)</span><br /></strong>Vietnam</p> </div> </div> <div class="elementor-element elementor-element-36c996d4 e-grid-align-left local_chapter_socialmedia elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="36c996d4" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" target="_blank"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-397a90eb e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="397a90eb" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://www.andi.com.co/Home/Pagina/21-centro-nacional-del-agua-y-la-biodiversida" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-4ec5dea2 elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-widget elementor-widget-text-editor" data-id="4ec5dea2" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong><span data-sheets-value="{"1":2,"2":"Moroccan Association of Geosciences (MAG)"}" data-sheets-userformat="{"2":14461,"3":{"1":0,"3":1},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"9":0,"14":{"1":3,"3":1},"15":"Arial","16":10}">The Geological Society of Trinidad and Tobago (GSTT)</span></strong><br /><span data-sheets-value="{"1":2,"2":"Trinidad and Tobago"}" data-sheets-userformat="{"2":14399,"3":{"1":0,"3":1},"4":{"1":3,"3":2},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"14":{"1":2,"2":0},"15":"Calibri","16":11}">Trinidad and Tobago</span></p> </div> </div> </div> </div> </div> </section> </div> </p></div> </div> </div> </div> </div> <div class="elementor-element elementor-element-9a8b3fb student_map_accordion elementor-widget elementor-widget-accordion" data-id="9a8b3fb" data-element_type="widget" data-widget_type="accordion.default"> <div class="elementor-widget-container"> <div class="elementor-accordion"> <div class="elementor-accordion-item"> <div id="elementor-tab-title-1621" class="elementor-tab-title" data-tab="1" role="button" aria-controls="elementor-tab-content-1621" aria-expanded="false"> <span class="elementor-accordion-icon elementor-accordion-icon-left" aria-hidden="true"> <span class="elementor-accordion-icon-closed"><i class="fas fa-plus"></i></span> <span class="elementor-accordion-icon-opened"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 1000 1000"><defs><radialGradient id="Sfumatura_senza_nome_2" cx="608.8" cy="391.07" r="647.11" gradientUnits="userSpaceOnUse"><stop offset="0.41" stop-color="#fff"></stop><stop offset="0.51" stop-color="#f9f9f9"></stop><stop offset="0.64" stop-color="#e9e9e9"></stop><stop offset="0.79" stop-color="#cecece"></stop><stop offset="0.86" stop-color="#bfbfbf"></stop><stop offset="0.99" stop-color="#e6e6e6"></stop></radialGradient></defs><g style="isolation:isolate"><g id="Layer_1" data-name="Layer 1"><path d="M511.9,23.19c270,0,488.79,218.84,488.79,488.79S781.85,1000.77,511.9,1000.77,23.11,781.93,23.11,512,242,23.19,511.9,23.19m0-11.21A500.13,500.13,0,0,0,317.28,972.69,500.13,500.13,0,0,0,706.53,51.28,496.84,496.84,0,0,0,511.9,12Z" transform="translate(-11.9 -11.98)" style="fill:#fff"></path><path d="M511.89,1002.54c-131,0-254.21-51-346.86-143.68S21.35,643,21.35,512,72.37,257.76,165,165.11,380.87,21.43,511.89,21.43s254.23,51,346.88,143.68S1002.45,381,1002.45,512s-51,254.22-143.68,346.88S642.93,1002.54,511.89,1002.54Z" transform="translate(-11.9 -11.98)" style="fill:url(#Sfumatura_senza_nome_2)"></path><path d="M511.9,23.19c270,0,488.78,218.84,488.78,488.79S781.85,1000.77,511.9,1000.77,23.11,781.93,23.11,512,242,23.19,511.9,23.19m0-3.53a492.45,492.45,0,0,0-191.63,946A492.45,492.45,0,0,0,703.53,58.35,489.29,489.29,0,0,0,511.9,19.66Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><g style="mix-blend-mode:multiply"><path d="M445.09,116.49a219.41,219.41,0,0,1-27.65-5.87c-.45.38-.9.76-1.34,1.15a223.8,223.8,0,0,0,28.11,6Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M394.92,102.1a62,62,0,0,1-15-10.1l-1.95.85a63.17,63.17,0,0,0,15.23,10.26Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M477.81,120.87c.11-.44.23-.87.34-1.3-2.76-.12-5.53-.26-8.29-.44-8.51-.56-16.61-1.43-24.25-2.56l-.87,1.25c7.76,1.15,16,2,24.64,2.6Q473.6,120.69,477.81,120.87Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M521.59,25.86c-11.45-.46-22.85-.33-34,.3l.19.23c10.93-.63,22.14-.75,33.4-.3Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M487.06,26.2c-11.1.65-21.91,1.82-32.19,3.45l.71.17c10.12-1.6,20.75-2.75,31.67-3.4Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M400.68,44.74l1.59-.07a168.3,168.3,0,0,1,23.85-8.51l-1.2-.07A171.67,171.67,0,0,0,400.68,44.74Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M512.35,120.57l-.21-1.29c-10.93.63-22.14.75-33.41.31l-.33,1.3C489.85,121.34,501.24,121.22,512.35,120.57Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M382.25,55.61l1.89-.25A86.23,86.23,0,0,1,401.9,44.83l-1.59.08A87.62,87.62,0,0,0,382.25,55.61Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M455.06,29.9l-.72-.17A264.61,264.61,0,0,0,425.39,36l1.18.06A262,262,0,0,1,455.06,29.9Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M379.74,91.82c-3.75-3.62-6.24-7.46-7.33-11.43q-1,.31-2.07.66c1.11,4,3.64,7.93,7.44,11.61Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M370.28,80.84l2.08-.66a17.94,17.94,0,0,1,1.22-12.26l-2.05.45A18.19,18.19,0,0,0,370.28,80.84Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M373.37,65.05a23.62,23.62,0,0,0-1.74,3.11l2.05-.46a25.47,25.47,0,0,1,1.72-3,39.55,39.55,0,0,1,8.49-9.09l-1.88.25A40.25,40.25,0,0,0,373.37,65.05Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M417,110.49a129.72,129.72,0,0,1-21.77-8.24l-1.7,1a132.88,132.88,0,0,0,22.12,8.38Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M599.27,102l-1.61-1a167.36,167.36,0,0,1-23.84,8.51l1.22,1.14A171.07,171.07,0,0,0,599.27,102Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M617.68,91.1l-1.91-.82A86.14,86.14,0,0,1,598,100.81l1.62,1A86.74,86.74,0,0,0,617.68,91.1Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M545.11,117.08l-.75-1.24c-10.11,1.6-20.74,2.76-31.66,3.41.08.43.15.86.23,1.29C524,119.88,534.83,118.71,545.11,117.08Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M629.6,65.87l-2.1-.41a17.93,17.93,0,0,1-1.2,12.26l2.08.62A18.18,18.18,0,0,0,629.6,65.87Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M530,26.55c8.47.56,16.55,1.42,24.16,2.54l.9-.18c-7.74-1.14-15.94-2-24.56-2.59Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M626.52,81.7a24.88,24.88,0,0,0,1.76-3.15l-2.08-.61A26,26,0,0,1,624.47,81a39.47,39.47,0,0,1-8.46,9l1.92.82A40.27,40.27,0,0,0,626.52,81.7Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M574.58,110.76l-1.22-1.14a259.18,259.18,0,0,1-28.47,6.14l.75,1.24A266.77,266.77,0,0,0,574.58,110.76Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M522.18,25.88l-.37.23,8.2.44.5-.23Q526.34,26.05,522.18,25.88Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M629.54,65.67c-1.11-4-3.65-7.94-7.46-11.62l-2-.22c3.75,3.62,6.24,7.45,7.34,11.43Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M604.89,43.55a62.4,62.4,0,0,1,15,10.09l2,.22a63.31,63.31,0,0,0-15.25-10.25Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M582.79,35.16a131.06,131.06,0,0,1,21.78,8.24l1.73.05a132.29,132.29,0,0,0-22.14-8.37Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M554.69,29.17A220.14,220.14,0,0,1,582.36,35l1.37-.09a224.6,224.6,0,0,0-28.13-6Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M724.31,152.92l-1.68-1.25c-9.11,7.27-20.57,14-33.94,20.14l1.43,1.4C703.6,167.05,715.14,160.24,724.31,152.92Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M679.08,52.6A218,218,0,0,1,701.22,62l1.53.58a217.13,217.13,0,0,0-20.93-9Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M746.92,105.1l-1.86-.9a34.2,34.2,0,0,1-2.3,23.45c.62.35,1.23.71,1.84,1.07A34.46,34.46,0,0,0,746.92,105.1Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M741.08,135.09a48.88,48.88,0,0,0,3.33-6l-1.84-1.07a48.63,48.63,0,0,1-3.3,5.91,76,76,0,0,1-16.17,17.32l1.69,1.25A76.62,76.62,0,0,0,741.08,135.09Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M525.75,208.72c21-1.25,41.52-3.47,61-6.56l-.66-1.61c-19.34,3.06-39.67,5.27-60.55,6.5Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M689.43,173.53,688,172.12a321.39,321.39,0,0,1-45.59,16.29l1.09,1.52A323.63,323.63,0,0,0,689.43,173.53Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M587.09,200.39c.22.53.44,1.07.67,1.61a498.48,498.48,0,0,0,54.86-11.82l-1.08-1.53A499.46,499.46,0,0,1,587.09,200.39Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M701.83,62.31c11.79,5.91,21.44,12.39,28.7,19.29l1.75.73c-7.31-7-17-13.49-28.91-19.44Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M746.81,104.7c-2.12-7.65-6.92-15-14.15-22L730.91,82c7.17,6.92,12,14.25,14,21.85Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M271.28,154.6c-7.16-6.92-11.92-14.25-14-21.85l-1.8,1.1c2.1,7.66,6.89,15.05,14.11,22Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M255.36,133.46l1.81-1.11a34.27,34.27,0,0,1,2.34-23.45l-1.79.93A34.56,34.56,0,0,0,255.36,133.46Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M342.55,190.32a249.92,249.92,0,0,1-41.63-15.76L299.45,176a251.62,251.62,0,0,0,41.93,15.88Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M460.58,207.72l-.27,1.67c21.69.85,43.3.61,64.36-.61l-.21-1.66C503.56,208.32,482.12,208.56,460.58,207.72Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M396.25,201.79a420.49,420.49,0,0,1-52.88-11.24c-.39.52-.78,1-1.16,1.55a426.14,426.14,0,0,0,53.28,11.32C395.74,202.87,396,202.33,396.25,201.79Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M300.31,174.26c-11.77-5.91-21.41-12.39-28.66-19.3l-1.7,1.28c7.3,6.95,17,13.49,28.88,19.44Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M278.06,85.64l1.63-.75c9.12-7.27,20.59-14,34-20.13l-1.37.6C298.8,71.52,287.24,78.32,278.06,85.64Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M396.49,203.57c14.72,2.18,30.33,3.84,46.72,4.92q8,.52,16,.85c.09-.56.19-1.11.28-1.67q-7.92-.33-15.86-.84c-16.27-1.07-31.76-2.73-46.36-4.89Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M319.49,62.19l-3.1,1.34L313,65l1.38-.6Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M261.21,103.53a49.07,49.07,0,0,0-3.29,5.89l1.78-.93a49.21,49.21,0,0,1,3.27-5.85,76.34,76.34,0,0,1,16.25-17.37l-1.63.75A76.48,76.48,0,0,0,261.21,103.53Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M847.12,170.61l-1.53-1.3c2.82,10.68,1.87,21.73-3.22,32.93l1.51,1.44C849,192.44,850,181.34,847.12,170.61Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M847,170.06c-3-10.72-9.69-21.07-19.82-30.83l-1.43-1.17c10.07,9.72,16.78,20,19.72,30.7Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M816.72,130.25q4.56,3.58,8.47,7.31l1.44,1.17c-2.47-2.35-5.15-4.67-8-6.95Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M624.28,306.29a701.13,701.13,0,0,0,76.82-16.55l-.9-1.82a697.43,697.43,0,0,1-76.49,16.48Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M537.46,315.7c29.45-1.75,58.13-4.86,85.41-9.18-.19-.63-.37-1.27-.56-1.9-27.15,4.31-55.71,7.41-85,9.15Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M815.48,237.57l-1.39-1.6c-12.79,10.22-28.89,19.7-47.67,28.29.4.57.79,1.15,1.18,1.72C786.47,257.35,802.63,247.82,815.48,237.57Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M701.42,287.57l.9,1.82a453,453,0,0,0,64.31-23l-1.18-1.71A452.41,452.41,0,0,1,701.42,287.57Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M839,212.61a67.91,67.91,0,0,0,4.66-8.35l-1.51-1.45a66.57,66.57,0,0,1-4.64,8.31c-5.51,8.48-13.17,16.61-22.72,24.32.47.53.93,1.06,1.39,1.6C825.73,229.29,833.42,221.12,839,212.61Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M220.93,267.7c-16.53-8.29-30.08-17.4-40.26-27.1l-1.36,1.61c10.22,9.74,23.83,18.89,40.43,27.22Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M180.15,240.1c-10.06-9.72-16.74-20-19.67-30.7L159,210.87c2.94,10.72,9.65,21.08,19.75,30.84C179.24,241.17,179.69,240.63,180.15,240.1Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M446,314.69c-.07.65-.14,1.29-.22,1.94,30.39,1.19,60.63.86,90.12-.84l-.18-1.94C506.4,315.55,476.29,315.88,446,314.69Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M185.81,147.38l-1.74,1.56a99.8,99.8,0,0,0-17,19.47,69.93,69.93,0,0,0-4.62,8.25l1.44-1.33C172.35,160.79,172.68,160.23,185.81,147.38Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M280.25,290.26c-22.21-6.41-41.83-13.86-58.46-22.13-.4.58-.8,1.15-1.19,1.73,16.71,8.31,36.41,15.79,58.72,22.23Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M158.88,210.32c.48-.49,1-1,1.45-1.48-2.79-10.68-1.83-21.74,3.29-32.93l-1.44,1.33C157,188.49,156.07,199.59,158.88,210.32Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M356.48,308.48c20.6,3.06,42.46,5.39,65.41,6.89q11.19.75,22.37,1.2l.21-1.94q-11.12-.45-22.27-1.19c-22.85-1.5-44.61-3.82-65.12-6.86Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M355.07,308.27c.21-.63.41-1.27.61-1.9a590.13,590.13,0,0,1-74.28-15.78l-.93,1.83A594.45,594.45,0,0,0,355.07,308.27Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M925.44,258.34l-1.12-1.65c3.45,13.07,2.29,26.58-3.94,40.27l1.1,1.75C927.73,285,928.89,271.44,925.44,258.34Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M748.7,403.33c28.93-8.13,55.35-17.54,78.49-28l-.87-2c-23.08,10.48-49.43,19.86-78.29,28C748.25,402,748.48,402.65,748.7,403.33Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M547.47,435.43c35.95-2.13,71-5.93,104.25-11.2l-.42-2.07c-33.21,5.26-68.12,9-104,11.17Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M653.44,424a852.52,852.52,0,0,0,93.76-20.21l-.66-2A853,853,0,0,1,653,421.88C653.15,422.57,653.3,423.26,653.44,424Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M915.47,309.6a85.37,85.37,0,0,0,5.69-10.18l-1.11-1.75a84.83,84.83,0,0,1-5.67,10.15c-6.74,10.37-16.11,20.31-27.78,29.75l1,1.85C899.32,330,908.72,320,915.47,309.6Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M435.75,434.47c0,.7-.09,1.4-.13,2.1,37.08,1.45,74,1.05,110-1-.05-.7-.09-1.4-.14-2.1C509.57,435.51,472.74,435.92,435.75,434.47Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M827.51,372.8l.87,1.95c23-10.54,42.76-22.16,58.43-34.68l-1-1.86C870.16,350.7,850.48,362.29,827.51,372.8Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M925.26,257.67a72,72,0,0,0-10.75-22.13l-1.34-1.93a71.87,71.87,0,0,1,11,22.41Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M94,257.76l-.83,1.55c.65-1.18,1.32-2.35,2.05-3.53Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M92.48,260.66l-2.74,5.07,1-1.67C91.29,262.93,91.88,261.79,92.48,260.66Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M92.48,260.66l.73-1.35C93,259.76,92.72,260.21,92.48,260.66Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M110.64,343.25c-12.3-11.88-20.48-24.48-24.06-37.54l-1,1.78c3.58,13.08,11.78,25.72,24.11,37.63Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M160.5,377c-20.22-10.14-36.78-21.28-49.23-33.14l-1,1.87c12.48,11.89,29.08,23.05,49.35,33.22Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M326.57,426.63c25.14,3.72,51.82,6.57,79.83,8.41q13.67.9,27.31,1.45c0-.7.09-1.4.13-2.1q-13.6-.56-27.23-1.45c-27.94-1.84-54.55-4.67-79.63-8.39C326.84,425.24,326.71,425.93,326.57,426.63Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M324.85,426.37l.42-2.08A724.16,724.16,0,0,1,234.44,405c-.22.67-.43,1.35-.65,2A723.81,723.81,0,0,0,324.85,426.37Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M232.38,406.62l.66-2c-27.16-7.84-51.15-16.95-71.49-27.06l-.84,2C181.11,389.62,205.15,398.76,232.38,406.62Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M85.38,306.81l1-1.77c-3.42-13.07-2.23-26.58,4-40.27l-1,1.67C83.13,280.16,82,293.71,85.38,306.81Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M868.77,494.15c25.7-11.76,47.73-24.73,65.22-38.71l-.57-2.05c-17.48,14-39.48,26.92-65.15,38.67C868.44,492.75,868.6,493.45,868.77,494.15Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M779.82,526.05c32.29-9.07,61.79-19.57,87.62-31.29-.17-.7-.33-1.4-.5-2.1-25.8,11.71-55.25,22.2-87.51,31.26C779.57,524.63,779.69,525.34,779.82,526.05Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M555.2,561.89c40.13-2.38,79.21-6.62,116.37-12.5-.08-.73-.17-1.45-.25-2.17-37.12,5.88-76.15,10.11-116.23,12.49C555.13,560.44,555.17,561.17,555.2,561.89Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M673.49,549.08a956.27,956.27,0,0,0,104.66-22.56c-.12-.71-.25-1.42-.38-2.14a950,950,0,0,1-104.54,22.53C673.32,547.64,673.4,548.36,673.49,549.08Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M977.11,364.21l-.63-1.93c3.85,14.6,2.55,29.71-4.41,45l.63,2C979.67,394,981,378.84,977.11,364.21Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M965.36,419.43c-7.52,11.58-18,22.7-31.05,33.24.2.68.39,1.37.58,2.05C948,444.16,958.45,433,966,421.44a94.08,94.08,0,0,0,6.35-11.37l-.63-2A92.52,92.52,0,0,1,965.36,419.43Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M975.89,360.12l-.74-2.25c.41,1.21.79,2.43,1.12,3.66.22.64.43,1.28.64,1.93C976.6,362.34,976.26,361.23,975.89,360.12Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M67.22,461.77c13.93,13.27,32.47,25.74,55.09,37.09.14-.7.28-1.4.43-2.1-22.6-11.34-41.11-23.79-55-37.05C67.55,460.4,67.39,461.08,67.22,461.77Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M203.49,529.73c.1-.72.21-1.43.32-2.14-30.36-8.77-57.17-19-79.9-30.25-.15.7-.29,1.4-.43,2.1C146.25,510.76,173.09,521,203.49,529.73Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M39.56,385.2a63.72,63.72,0,0,0-.17,33.12c.17-.67.35-1.34.53-2a63.68,63.68,0,0,1,.25-33.41Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M430.39,561c0,.73,0,1.46,0,2.18,41.39,1.63,82.61,1.17,122.78-1.15,0-.72-.07-1.45-.11-2.18C512.9,562.15,471.74,562.6,430.39,561Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M67,459c-13.75-13.29-22.88-27.37-26.88-42-.18.67-.36,1.34-.53,2,4,14.61,13.15,28.71,26.92,42C66.67,460.4,66.84,459.71,67,459Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M308.62,552.06c28.07,4.16,57.85,7.34,89.12,9.39q15.24,1,30.47,1.63c0-.73,0-1.46.05-2.18q-15.21-.63-30.44-1.63c-31.23-2-61-5.22-89-9.38C308.75,550.62,308.68,551.34,308.62,552.06Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M306.7,551.78c.07-.73.13-1.45.2-2.17A809.44,809.44,0,0,1,205.38,528c-.11.71-.21,1.43-.32,2.14A810.94,810.94,0,0,0,306.7,551.78Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M682.62,673.62l0,1.08,0,1a989.91,989.91,0,0,0,108.48-23.39l0-1c0-.36,0-.72,0-1.08A989.65,989.65,0,0,1,682.62,673.62Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M792.84,649.76l0,1.08c0,.35,0,.69,0,1,33.47-9.4,64-20.29,90.81-32.44,0-.34,0-.69,0-1l0-1.08C856.87,629.47,826.31,640.35,792.84,649.76Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M999.51,497a71,71,0,0,1-6.76,31.68l0,1.08c0,.35,0,.7,0,1a71,71,0,0,0,6.77-31.34l0-1.21Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M992.37,529.54a97.38,97.38,0,0,1-6.58,11.78c-7.82,12-18.68,23.56-32.23,34.5l0,1.08,0,1C967.16,567,978,555.47,985.84,543.45a96.89,96.89,0,0,0,6.58-11.79c0-.34,0-.69,0-1Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M885,616.69l0,1.08c0,.35,0,.7,0,1.05,26.64-12.19,49.47-25.64,67.61-40.13l0-1,0-1.08C934.5,591.06,911.66,604.5,885,616.69Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M560,686.9l0,1.08,0,1c41.59-2.47,82.09-6.86,120.61-13l0-1,0-1.08C642.12,680,601.62,684.44,560,686.9Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M112.55,622.18l0,1.08,0,1C136.2,636,164,646.59,195.53,655.69l0-1c0-.36,0-.72,0-1.08C164,644.47,136.15,633.9,112.55,622.18Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M25.6,538.88l0,1.07,0,1c4.15,15.14,13.63,29.76,27.9,43.54l0-1,0-1.08C39.23,568.63,29.75,554,25.6,538.88Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M23.23,522.86l0,1.24,0,1.21a66.51,66.51,0,0,0,2.16,14.91l0-1.05,0-1.08A66.3,66.3,0,0,1,23.23,522.86Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M430.61,688.22l0,1.08,0,1c42.9,1.69,85.62,1.22,127.26-1.19l0-1,0-1.08C516.24,689.43,473.52,689.9,430.61,688.22Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M54.24,583.13l0,1.08,0,1C68.73,599,88,611.93,111.4,623.69l0-1,0-1.08C87.89,609.81,68.68,596.89,54.24,583.13Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M396.81,686.45c-32.41-2.13-63.28-5.42-92.37-9.74l0,1.08,0,1.05c29.09,4.31,60,7.6,92.37,9.73q15.79,1,31.59,1.69l0-1,0-1.08Q412.62,687.49,396.81,686.45Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M197.11,654c0,.36,0,.72,0,1.08l0,1a838.22,838.22,0,0,0,105.35,22.38c0-.35,0-.69,0-1l0-1.08A837.39,837.39,0,0,1,197.11,654Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M784.15,768c.09-.59.18-1.19.28-1.78a954.69,954.69,0,0,1-104.67,22.55l-.15,1.76A952.28,952.28,0,0,0,784.15,768Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M785.81,767.56c32.26-9.07,61.71-19.56,87.51-31.26l.39-1.83c-25.83,11.72-55.32,22.23-87.61,31.3C786,766.37,785.91,767,785.81,767.56Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M941.17,694.43l-.48,1.88c13.06-10.55,23.53-21.66,31.06-33.25a94.36,94.36,0,0,0,6.34-11.35l.51-1.93a94,94,0,0,1-6.34,11.37C964.72,672.75,954.23,683.87,941.17,694.43Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M978.45,650.92a77.12,77.12,0,0,0,4.19-11.49l.61-2.29A75.85,75.85,0,0,1,979,649C978.8,649.63,978.63,650.28,978.45,650.92Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M561.47,803.35c40.08-2.38,79.11-6.61,116.22-12.49l.15-1.76c-37.16,5.89-76.24,10.13-116.37,12.51Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M939.8,697c.15-.62.31-1.25.47-1.87-17.5,14-39.53,27-65.23,38.71l-.39,1.82C900.32,724,922.32,711,939.8,697Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M436.77,804.62c41.34,1.62,82.5,1.17,122.63-1.15v-1.74c-40.17,2.32-81.39,2.77-122.78,1.15Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M314.89,791.78l.3,1.75c28,4.16,57.77,7.33,89,9.38q15.22,1,30.44,1.62c-.05-.57-.1-1.16-.15-1.74q-15.23-.62-30.47-1.62C372.74,799.11,343,795.94,314.89,791.78Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M74.08,703.35c13.91,13.26,32.43,25.71,55,37-.17-.6-.35-1.21-.52-1.82C106,727.22,87.42,714.76,73.49,701.48,73.69,702.11,73.88,702.73,74.08,703.35Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M47.64,664.48c4.46,13.25,13.17,26,25.73,38.19-.2-.63-.4-1.25-.59-1.87-12.68-12.25-21.44-25.17-25.87-38.55Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M130.27,741c22.74,11.3,49.55,21.48,79.91,30.25l-.42-1.79c-30.4-8.77-57.24-19-80-30.28C129.92,739.77,130.1,740.37,130.27,741Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M211.75,771.68a809.44,809.44,0,0,0,101.52,21.57l-.3-1.76a807.39,807.39,0,0,1-101.64-21.6Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M447.8,895c37,1.45,73.82,1,109.71-1l.06-1.32c-36,2.07-72.91,2.48-110,1C447.65,894.11,447.73,894.55,447.8,895Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M758.59,862.25l.58-1.41a857.37,857.37,0,0,1-93.77,20.21c-.11.45-.23.9-.34,1.36A855.31,855.31,0,0,0,758.59,862.25Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M559.37,893.86c35.86-2.13,70.77-5.92,104-11.18l.33-1.36c-33.29,5.28-68.3,9.07-104.25,11.21Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M839.56,833.32c23-10.5,42.65-22.1,58.29-34.59l.93-1.57c-15.67,12.52-35.41,24.14-58.43,34.68C840.09,832.34,839.82,832.83,839.56,833.32Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M838.37,833.87l.78-1.49c-23.14,10.5-49.56,19.91-78.49,28-.19.47-.38.94-.58,1.41C788.94,853.72,815.29,844.34,838.37,833.87Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M926.43,768.35c.39-.61.78-1.22,1.15-1.82l1.23-2c-.44.73-.9,1.46-1.37,2.18-6.75,10.4-16.15,20.36-27.85,29.82l-.94,1.58C910.32,788.65,919.69,778.71,926.43,768.35Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M108.28,786.81l1.35,2a108,108,0,0,0,13.05,15c-.36-.52-.71-1-1.06-1.57A107.34,107.34,0,0,1,108.28,786.81Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M172.55,837.53c-.32-.49-.63-1-.94-1.47-20.27-10.17-36.88-21.34-49.35-33.23l1.06,1.56C135.76,816.25,152.33,827.39,172.55,837.53Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M173.59,838.05c20.34,10.11,44.33,19.22,71.49,27.06l-.75-1.4c-27.23-7.86-51.27-17-71.67-27.13Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M338.52,883.72l.51,1.35c25.08,3.72,51.69,6.56,79.63,8.39q13.62.9,27.23,1.46c-.08-.45-.15-.89-.23-1.33q-13.64-.55-27.3-1.46C390.34,890.29,363.66,887.45,338.52,883.72Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M246.49,865.52a723.53,723.53,0,0,0,90.82,19.3l-.51-1.36a723.81,723.81,0,0,1-91.06-19.35Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M717.06,932l.82-1a702.91,702.91,0,0,1-76.82,16.56l-.49.89A697.38,697.38,0,0,0,717.06,932Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M554.13,957.88c29.32-1.74,57.88-4.84,85-9.14l.48-.89c-27.28,4.32-56,7.44-85.41,9.18C554.2,957.32,554.17,957.6,554.13,957.88Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M718.28,931.69a452.38,452.38,0,0,0,64-22.87l1.11-1.06a454.19,454.19,0,0,1-64.31,23Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M832.27,878.9c-12.85,10.26-29,19.78-47.88,28.41l-1.11,1.07c18.78-8.6,34.88-18.08,47.67-28.29Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M838.74,873.41q-2.78,2.51-5.81,5l-1.32,1.19q2.8-2.26,5.39-4.59Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M204.16,890.57l1.9,1.54a187.24,187.24,0,0,0,31.71,19.71l-1.26-1.05A185.5,185.5,0,0,1,204.16,890.57Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M297.09,934.37l-1-1c-22.31-6.44-42-13.92-58.72-22.22.42.35.83.7,1.26,1C255.26,920.51,274.88,928,297.09,934.37Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M462.88,958.81c30.26,1.18,60.37.85,89.73-.84,0-.28.07-.56.11-.85-29.49,1.7-59.74,2-90.12.85C462.7,958.25,462.79,958.53,462.88,958.81Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M298.24,934.7a591.84,591.84,0,0,0,74.28,15.79l-.67-.88a594.24,594.24,0,0,1-74.61-15.85Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M373.25,949.82c.23.29.45.58.67.88,20.51,3,42.28,5.36,65.13,6.86q11.15.74,22.27,1.19c-.09-.28-.19-.56-.29-.85q-11.17-.45-22.37-1.19C415.71,955.2,393.85,952.87,373.25,949.82Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M606.65,986.29l.61-.39c-19.48,3.09-40,5.31-61,6.56l-.16.33C567,991.56,587.31,989.35,606.65,986.29Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M607.65,986.13a500.17,500.17,0,0,0,54.46-11.74l1-.47a499,499,0,0,1-54.86,11.82Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M706.42,958.83A331.55,331.55,0,0,1,664,973.67l-1,.48a335.64,335.64,0,0,0,40.35-14Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M341,968.74l2.74,1q9.15,3.35,19.38,6.3l-1.21-.46Q350.81,972.41,341,968.74Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M416.8,987.53l-.81-.37a426.31,426.31,0,0,1-53.29-11.32l1.21.45A421,421,0,0,0,416.8,987.53Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M481.14,993.46c21.54.84,43,.6,63.88-.6l.15-.34c-21.06,1.22-42.66,1.46-64.36.61Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M417,987.31l.81.37c14.6,2.16,30.1,3.82,46.37,4.89q7.92.51,15.85.84l-.33-.33q-8-.33-16-.85C447.32,991.15,431.71,989.49,417,987.31Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M521.22,26.09c-7.05,4.59-14.33,14.76-21.7,30.94,7.57-16.17,15.05-26.34,22.29-30.92l.37-.23a16.06,16.06,0,0,1,9.2-2.6l-.84,0a15.47,15.47,0,0,0-8.95,2.62Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M483.39,23.65l-.8.05c1.43-.09,2.92.73,4.47,2.5l.19.22C491,30.91,495.13,41,499.52,57c-4.19-16.08-8.11-26.15-11.7-30.64l-.19-.23C486.16,24.4,484.75,23.57,483.39,23.65Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M435.19,28.85l-.84.13a52.14,52.14,0,0,1,20,.75l.72.17c14,3.38,28.93,12.27,44.46,27.13-15.35-14.89-30.07-23.81-43.94-27.21l-.71-.17A50.78,50.78,0,0,0,435.19,28.85Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M380.12,40.86l-1,.3a140.06,140.06,0,0,1,45.84-5.07l1.2.07C449.37,37.54,474,44.34,499.52,57c-25.39-12.74-49.84-19.58-72.95-21L425.39,36A138.53,138.53,0,0,0,380.12,40.86Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M400.68,44.74a248.69,248.69,0,0,0-86.32,19.7L313,65c-1.13.49-2.25,1-3.37,1.5l-1.56.72c1.4-.65,2.82-1.28,4.24-1.9l1.37-.6a250.64,250.64,0,0,1,86.65-19.85l1.59-.08C421.55,44,455,44.31,499.52,57c-44.38-12.8-77.72-13.2-97.25-12.36Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M212,125.6c-.83.63-1.64,1.29-2.46,1.93C210.33,126.88,211.14,126.23,212,125.6Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M203,132.69c2.14-1.75,4.32-3.46,6.51-5.16-1.51,1.18-3,2.35-4.54,3.56Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M382.25,55.61A364.57,364.57,0,0,0,279.69,84.89l-1.63.75a345.53,345.53,0,0,0-66.09,40A347.2,347.2,0,0,1,277.59,86l1.63-.75A366.25,366.25,0,0,1,382,55.81l1.88-.25c47.27-5.88,78.95-2.48,115.63,1.47a415.09,415.09,0,0,0-115.38-1.67Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M71.81,298.64c-.51,1-1,2.07-1.49,3.11C70.81,300.71,71.3,299.67,71.81,298.64Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M371.63,68.16A461.74,461.74,0,0,0,259.7,108.49l-1.78.93a437.57,437.57,0,0,0-94,65.91l-1.44,1.33a417.58,417.58,0,0,0-71.7,87.4l-1,1.67q-9.7,16-17.93,32.91,8.1-16.53,17.6-32.2l1-1.67a418.19,418.19,0,0,1,71.75-87.53l1.44-1.33a439.07,439.07,0,0,1,94.1-66.08l1.79-.93a463.51,463.51,0,0,1,112-40.53l2.05-.45A498.67,498.67,0,0,1,499.52,57,497.5,497.5,0,0,0,373.68,67.7Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M66,310.94c1.39-3.09,2.84-6.14,4.31-9.19-.75,1.56-1.52,3.11-2.25,4.68Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M36.5,625.07c.17.72.35,1.44.52,2.16C36.84,626.51,36.67,625.79,36.5,625.07Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M39.6,637.53c-.91-3.41-1.76-6.85-2.58-10.3.39,1.62.75,3.25,1.16,4.86Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M40.12,417.07A452.3,452.3,0,0,1,85.56,307.49l1-1.78A484.64,484.64,0,0,1,159,210.87l1.45-1.47a509.12,509.12,0,0,1,95-75.55l1.8-1.1a519.83,519.83,0,0,1,113.07-51.7q1-.35,2.07-.66A526,526,0,0,1,499.52,57,526.32,526.32,0,0,0,372.36,80.18l-2.08.66a519.57,519.57,0,0,0-113.11,51.51l-1.81,1.11a508.88,508.88,0,0,0-95,75.38c-.48.5-1,1-1.45,1.48A483.45,483.45,0,0,0,86.4,305l-1,1.77A451.14,451.14,0,0,0,39.92,416.32c-.18.66-.36,1.33-.53,2a432.18,432.18,0,0,0-14,119.77l0,1.08,0,1.05A423,423,0,0,0,36.5,625.07,422.77,422.77,0,0,1,25.66,541l0-1,0-1.07a432.88,432.88,0,0,1,14-119.81C39.76,418.41,39.94,417.74,40.12,417.07Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M172,862.1c-4.1-4-8.07-8.05-12-12.21,3.22,3.41,6.44,6.8,9.78,10.08Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M158.64,848.51c.44.47.91.91,1.35,1.38C159.55,849.43,159.08,849,158.64,848.51Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M67.72,459.71a516.87,516.87,0,0,1,42.59-114l1-1.87a553.06,553.06,0,0,1,68-101.66l1.36-1.61A559,559,0,0,1,270,156.24l1.7-1.28A535.76,535.76,0,0,1,378,92.85l1.95-.85A500.26,500.26,0,0,1,499.52,57,500.34,500.34,0,0,0,379.74,91.82l-2,.84a536,536,0,0,0-106.5,61.94l-1.7,1.28a557.88,557.88,0,0,0-89.43,84.22c-.46.53-.91,1.07-1.37,1.61a551,551,0,0,0-68.14,101.54l-1,1.87A515.76,515.76,0,0,0,67,459c-.16.68-.33,1.37-.49,2.05a473.65,473.65,0,0,0-13,121.34l0,1.08,0,1A426.18,426.18,0,0,0,72.78,700.8c.19.62.39,1.24.59,1.87a388.43,388.43,0,0,0,48.25,99.54c.35.53.7,1,1.06,1.57a378.47,378.47,0,0,0,36,44.73,377.38,377.38,0,0,1-35.32-44.12l-1.06-1.56a388,388,0,0,1-48.18-99.48c-.2-.62-.39-1.24-.59-1.87A426.91,426.91,0,0,1,54.3,585.25l0-1,0-1.08a474.82,474.82,0,0,1,13-121.36C67.39,461.08,67.55,460.4,67.72,459.71Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M274,937.32c1.8,1.08,3.59,2.16,5.41,3.2C277.6,939.48,275.81,938.4,274,937.32Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M269.56,934.58c1.48.92,3,1.84,4.45,2.74C272.52,936.42,271,935.5,269.56,934.58Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M279.42,940.52c3.66,2.1,7.37,4.09,11.12,6Q284.92,943.66,279.42,940.52Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M394.92,102.1l-1.71,1a523.37,523.37,0,0,0-92.9,71.15l-1.48,1.42a602.36,602.36,0,0,0-77.9,92l-1.19,1.73A636.81,636.81,0,0,0,160.5,377l-.84,1.95a614.85,614.85,0,0,0-36.92,117.8c-.15.7-.29,1.4-.43,2.1a555.87,555.87,0,0,0-11,122.71l0,1.08,0,1c1.15,41.09,7.09,79.56,17.18,114.88.17.61.35,1.22.52,1.82a375.75,375.75,0,0,0,42.51,95.67c.31.49.62,1,.94,1.47a316.84,316.84,0,0,0,64,73.24l1.26,1.05a296.11,296.11,0,0,0,31.79,22.76,293.33,293.33,0,0,1-30.93-22.34c-.43-.34-.84-.69-1.26-1a316.17,316.17,0,0,1-63.78-73.15l-.93-1.47A375.93,375.93,0,0,1,130.27,741c-.17-.61-.35-1.21-.52-1.82-10.06-35.31-16-73.77-17.14-114.86l0-1,0-1.08a558,558,0,0,1,10.93-122.74c.14-.7.28-1.4.43-2.1a616.6,616.6,0,0,1,36.8-117.85l.84-2a638.54,638.54,0,0,1,59-107.67c.39-.58.79-1.15,1.19-1.73A603,603,0,0,1,299.45,176l1.47-1.42a523.16,523.16,0,0,1,92.62-71.29l1.7-1h0c42.61-25,71.19-34.39,104.28-45.22A434.9,434.9,0,0,0,394.92,102.1Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M293.74,948.21c-1.07-.54-2.13-1.11-3.2-1.66.45.23.89.5,1.34.72Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M457.56,80.33q5.07-3.33,10.21-6.43C464.23,76,460.84,78.17,457.56,80.33Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M457.48,80.38l.08,0Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M449.15,86c2.77-1.93,5.54-3.83,8.33-5.66Q453.23,83.17,449.15,86Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M467.77,73.9l.17-.11Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M430.91,99.59C437,94.84,443,90.36,449.15,86Q439.93,92.46,430.91,99.59Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M467.94,73.79c2.79-1.68,5.59-3.29,8.4-4.88C473.44,70.54,470.65,72.16,467.94,73.79Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M205.38,528a794.87,794.87,0,0,1,28.41-121c.22-.67.43-1.35.65-2a781.93,781.93,0,0,1,46-112.58l.93-1.83a674,674,0,0,1,60.81-98.49c.38-.52.77-1,1.16-1.55,22.44-29.79,46.84-56.36,72.73-78.78.44-.39.89-.77,1.34-1.15,4.44-3.82,8.94-7.47,13.47-11-4.49,3.47-9.07,7.09-13.9,10.9l-1.35,1.16c-26,22.38-50.55,48.91-73.11,78.67l-1.17,1.54a672.64,672.64,0,0,0-61.13,98.4l-.93,1.83A778.41,778.41,0,0,0,233,404.59l-.66,2a790.83,790.83,0,0,0-28.57,121c-.11.71-.22,1.42-.32,2.14a714.7,714.7,0,0,0-8,123.84c0,.36,0,.72,0,1.08l0,1c1.14,41.08,6.05,79.16,14.23,113.75l.42,1.79c8.29,34.47,19.84,65.45,34.15,92.48l.75,1.4c14.41,26.89,31.58,49.82,51,68.31l1,1c19.51,18.35,41.27,32.24,64.79,41.23l1.21.46q6.15,2.3,12.43,4.14l1.21.35q-6.5-1.89-12.82-4.26l-1.21-.45c-23.4-9-45.05-22.82-64.46-41.14l-1-.94c-19.33-18.47-36.41-41.37-50.75-68.24l-.75-1.41c-14.24-27-25.74-58-34-92.43l-.42-1.79c-8.14-34.58-13-72.65-14.17-113.73l0-1c0-.36,0-.72,0-1.08a718.79,718.79,0,0,1,7.95-123.85C205.17,529.47,205.27,528.75,205.38,528Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M492.66,60.33c2.29-1.11,4.56-2.25,6.86-3.3C497.16,58.14,494.88,59.24,492.66,60.33Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M476.34,68.91c5.07-2.84,10.46-5.68,16.32-8.58C487.18,63,481.74,65.86,476.34,68.91Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M308.82,549.89a1200.56,1200.56,0,0,1,17.75-123.26c.14-.7.27-1.39.41-2.08a1123.24,1123.24,0,0,1,29.5-116.07l.6-1.9a876.47,876.47,0,0,1,39.41-103l.76-1.63c14.6-31.45,30.53-59.81,47.49-84.12l.87-1.25c17-24.24,35.11-44.41,53.91-59.54-19,15.1-37.22,35.24-54.43,59.46l-.88,1.25c-17.12,24.29-33.21,52.62-48,84.05-.25.54-.51,1.08-.76,1.63a870.05,870.05,0,0,0-39.81,103c-.2.63-.4,1.27-.61,1.9a1114.58,1114.58,0,0,0-29.8,116l-.42,2.08a1189.07,1189.07,0,0,0-18,123.24c-.07.72-.13,1.44-.2,2.17a1087.54,1087.54,0,0,0-4.24,124.64l0,1.08c0,.35,0,.69,0,1,1.12,41.08,4.72,78.87,10.46,113l.3,1.76c5.82,33.94,13.77,64.16,23.53,90.21l.51,1.36c9.83,25.91,21.45,47.65,34.54,64.79l.67.88c13.14,17,27.74,29.35,43.47,36.67l.81.37A82.54,82.54,0,0,0,438.41,994l.92.14a80.85,80.85,0,0,1-21.53-6.47l-.81-.37c-15.58-7.3-30-19.65-43.07-36.61-.22-.3-.44-.59-.67-.88-13-17.12-24.49-38.85-34.22-64.75l-.51-1.35c-9.68-26-17.56-56.25-23.33-90.19l-.3-1.75c-5.7-34.07-9.27-71.86-10.39-112.94l0-1.05,0-1.08a1097,1097,0,0,1,4.18-124.65C308.68,551.34,308.75,550.62,308.82,549.89Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M430.39,561c.88-41.9,2.66-83.69,5.23-124.41,0-.7.09-1.4.13-2.1,2.6-40.69,6-80.29,10.07-117.84.08-.65.15-1.29.22-1.94,4.1-37.48,8.89-72.9,14.27-105.3l.27-1.67c5.4-32.3,11.37-61.56,17.82-86.83l.33-1.3c6.49-25.21,13.45-46.38,20.79-62.56-7.54,16.17-14.7,37.34-21.37,62.54-.11.43-.23.86-.34,1.3-6.64,25.26-12.78,54.51-18.34,86.8-.09.56-.19,1.11-.28,1.67-5.54,32.4-10.48,67.81-14.72,105.29l-.21,1.94c-4.21,37.55-7.72,77.14-10.42,117.82,0,.7-.09,1.4-.13,2.1-2.67,40.72-4.52,82.5-5.45,124.41,0,.72,0,1.45-.05,2.18-.89,41.9-.87,83.91.19,125l0,1.08,0,1c1.09,41.07,3.15,78.72,6,112.53,0,.58.1,1.17.15,1.74,2.91,33.68,6.63,63.5,11,89.06.08.44.15.88.23,1.33,4.42,25.4,9.52,46.54,15.14,63,.1.29.2.57.29.85,5.65,16.28,11.81,27.87,18.37,34.33l.33.33c3.73,3.57,7.58,5.49,11.53,5.68l.85,0c-3.86-.18-7.62-2.09-11.26-5.66l-.33-.33c-6.39-6.46-12.41-18-17.93-34.32-.09-.28-.18-.56-.28-.84-5.49-16.44-10.47-37.57-14.8-63-.07-.44-.15-.88-.22-1.33-4.31-25.55-8-55.37-10.81-89l-.15-1.74c-2.83-33.81-4.86-71.46-5.95-112.54l0-1,0-1.08c-1.05-41.14-1.11-83.15-.26-125.06C430.36,562.44,430.38,561.71,430.39,561Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M557.57,892.64l-.06,1.32c-1.13,25.46-2.74,46.65-4.79,63.16,0,.29-.07.57-.11.85-2.06,16.35-4.56,28-7.44,34.55l-.15.34c-1.7,3.74-3.53,5.72-5.48,5.84l.79-.05c2-.13,4-2.11,5.77-5.86l.16-.33c3-6.55,5.67-18.22,7.87-34.58,0-.28.07-.56.11-.85,2.18-16.51,3.9-37.71,5.13-63.17l.06-1.33c1.2-25.61,1.9-55.48,2-89.18v-1.74c.12-33.84-.33-71.51-1.39-112.58l0-1,0-1.08c-1.08-41.14-2.72-83.13-4.82-125,0-.72-.07-1.45-.11-2.18-2.11-41.87-4.68-83.62-7.62-124.28l-.15-2.1c-3-40.63-6.27-80.16-9.86-117.63l-.18-1.93c-3.6-37.41-7.48-72.74-11.53-105l-.21-1.67c-4-32.19-8.29-61.35-12.61-86.51-.08-.43-.15-.86-.23-1.29-4.34-25.1-8.76-46.16-13.18-62.22,4.22,16.07,8.46,37.14,12.62,62.25l.21,1.29c4.15,25.17,8.21,54.34,12.11,86.55l.21,1.66c3.89,32.32,7.62,67.66,11.09,105.07l.18,1.94c3.46,37.48,6.67,77,9.53,117.65,0,.7.09,1.4.14,2.1C548.46,476.21,551,518,553,559.83c0,.73.07,1.46.11,2.18,2,41.88,3.66,83.87,4.74,125l0,1.08,0,1c1.06,41.08,1.54,78.75,1.47,112.58v1.74C559.31,837.17,558.68,867,557.57,892.64Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M677.69,790.86c-2.92,34-7.67,64.3-14,90.46l-.33,1.36c-6.39,26-14.37,47.89-23.7,65.17l-.48.89c-9.37,17.13-20.09,29.66-31.91,37.16l-.61.39a51.47,51.47,0,0,1-18.9,7.2l.84-.13a52.56,52.56,0,0,0,19.06-7.23l.62-.39c12-7.52,22.81-20.07,32.3-37.22l.49-.89c9.44-17.31,17.52-39.19,24-65.22.11-.46.23-.91.34-1.36,6.42-26.18,11.24-56.49,14.21-90.5l.15-1.76a1031.19,1031.19,0,0,0,2.92-113l0-1,0-1.08c-1.11-41.14-4.25-83-9.13-124.54-.09-.72-.17-1.44-.26-2.17-5-41.56-11.64-82.86-19.79-123-.14-.69-.29-1.38-.43-2.07-8.21-40.06-17.88-78.9-28.73-115.59l-.57-1.89a1055.82,1055.82,0,0,0-36-102.4c-.23-.54-.45-1.08-.67-1.61-13-31.23-26.92-59.34-41.45-83.39l-.75-1.24c-14.6-24-29.81-43.88-45.37-58.73,15.37,14.88,30.42,34.8,44.84,58.81l.75,1.24c14.36,24.08,28.11,52.22,41,83.47l.66,1.61a1067.88,1067.88,0,0,1,35.56,102.46c.19.63.37,1.27.56,1.9,10.74,36.7,20.31,75.56,28.43,115.64l.42,2.07c8.07,40.11,14.7,81.42,19.6,123,.08.72.17,1.44.25,2.17,4.84,41.58,7.95,83.41,9.06,124.55l0,1.08,0,1a1044.79,1044.79,0,0,1-2.85,113Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M784.15,768c-5.48,34.55-13.94,65.65-25,92.82l-.58,1.41c-11.13,27-24.84,50.13-40.71,68.82l-.82,1c-15.95,18.54-34.06,32.66-53.93,41.89l-1,.47a135.88,135.88,0,0,1-19.26,7.06l1-.29a137.76,137.76,0,0,0,19.09-7l1-.48c20-9.26,38.22-23.41,54.27-42l.83-1c16-18.72,29.77-41.84,41-68.9.2-.47.39-.94.58-1.41,11.12-27.19,19.64-58.31,25.15-92.86.1-.6.19-1.19.29-1.79,5.41-34.68,7.81-72.81,6.79-113.89,0-.35,0-.69,0-1l0-1.08a828.27,828.27,0,0,0-13-123.71c-.13-.71-.25-1.42-.39-2.13A911,911,0,0,0,748.7,403.33c-.22-.68-.45-1.35-.67-2a878.65,878.65,0,0,0-45.71-111.92l-.9-1.82a728.34,728.34,0,0,0-57.92-97.64l-1.09-1.52c-21.06-29.49-43.66-55.71-67.37-77.78l-1.22-1.14C550,87.5,525.09,69.71,499.52,57c25.41,12.73,50.17,30.56,73.84,52.59l1.22,1.14c23.56,22.11,46,48.37,67,77.89l1.08,1.53a728.77,728.77,0,0,1,57.58,97.74l.9,1.82a884.66,884.66,0,0,1,45.44,112l.66,2a918.29,918.29,0,0,1,30.57,120.64c.13.72.26,1.43.38,2.14a833.58,833.58,0,0,1,13,123.72c0,.36,0,.72,0,1.08l0,1c1,41.09-1.36,79.2-6.73,113.88C784.33,766.83,784.24,767.43,784.15,768Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M873.32,736.3c-7.61,35.31-19.18,67.51-34.17,96.08l-.78,1.49c-15.1,28.44-33.6,53.25-55,73.89l-1.11,1.06a249.53,249.53,0,0,1-68.86,46.88L715,955a251.12,251.12,0,0,0,68.27-46.61l1.11-1.07c21.44-20.68,40-45.51,55.17-74,.26-.49.53-1,.79-1.48,15-28.6,26.65-60.82,34.3-96.15l.39-1.82c7.51-35.44,11-74,10-115,0-.35,0-.7,0-1.05l0-1.08a610.15,610.15,0,0,0-16.26-122.54c-.17-.7-.33-1.4-.5-2.09a675.64,675.64,0,0,0-39.89-117.31l-.87-1.95A684.84,684.84,0,0,0,767.6,266c-.39-.57-.78-1.15-1.18-1.72a625.49,625.49,0,0,0-76.3-91l-1.43-1.4a515.53,515.53,0,0,0-89.05-70l-1.62-1c-31.67-19.3-64.73-34.15-98.5-43.78,33.64,9.69,66.59,24.59,98.14,44l1.61,1A515.23,515.23,0,0,1,688,172.12l1.43,1.41a626.88,626.88,0,0,1,76,91.18l1.18,1.71a688.14,688.14,0,0,1,59.69,106.92l.87,2a678,678,0,0,1,39.75,117.37c.17.7.33,1.4.5,2.1a612.53,612.53,0,0,1,16.21,122.56l0,1.08c0,.35,0,.7,0,1,1,41.09-2.51,79.61-10,115Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M939.8,697a380.34,380.34,0,0,1-41,100.13l-.93,1.57a351.36,351.36,0,0,1-65.58,80.17L831,880.09q-6.27,5.61-12.8,10.92l2-1.6q5.85-4.8,11.49-9.85l1.32-1.19a352.43,352.43,0,0,0,65.72-80.28l.94-1.58a380.77,380.77,0,0,0,41.1-100.2l.48-1.88a437.17,437.17,0,0,0,12.45-116.49l0-1,0-1.08a500.14,500.14,0,0,0-18.67-121.1c-.19-.68-.38-1.37-.58-2.05a549.67,549.67,0,0,0-46.69-113.25l-1-1.85A581.49,581.49,0,0,0,816.13,237c-.46-.54-.92-1.07-1.39-1.6a575.29,575.29,0,0,0-90-82.9l-1.69-1.25A533.67,533.67,0,0,0,617.93,90.9L616,90.08A478.69,478.69,0,0,0,499.52,57,477.11,477.11,0,0,1,615.77,90.28l1.91.82a533.33,533.33,0,0,1,105,60.57l1.68,1.25A576.53,576.53,0,0,1,814.09,236l1.39,1.6a582.41,582.41,0,0,1,70.31,100.64l1,1.86a551.54,551.54,0,0,1,46.61,113.32l.57,2.05a502,502,0,0,1,18.64,121.13l0,1.08,0,1a438.22,438.22,0,0,1-12.42,116.47C940.11,695.78,940,696.41,939.8,697Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M961.51,700.39c-.51,1.22-1,2.42-1.56,3.62C960.46,702.8,961,701.61,961.51,700.39Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M956.28,712.56c1.28-2.82,2.45-5.69,3.67-8.55-1.84,4.34-3.7,8.67-5.69,12.93Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M992.78,529.8l0-1.08a443.33,443.33,0,0,0-20-119.44l-.63-2a471.54,471.54,0,0,0-50.59-108.57l-1.1-1.75a505.9,505.9,0,0,0-76.5-93.28l-1.51-1.44a527.12,527.12,0,0,0-97.77-73.52c-.61-.36-1.22-.72-1.84-1.07A528.81,528.81,0,0,0,628.38,78.34l-2.08-.62A523.41,523.41,0,0,0,499.52,57,522.36,522.36,0,0,1,626.2,77.94l2.08.61a529.41,529.41,0,0,1,114.29,49.51l1.84,1.07a529,529,0,0,1,97.69,73.68l1.51,1.45a507.06,507.06,0,0,1,76.44,93.41l1.11,1.75A472.13,472.13,0,0,1,971.7,408.07l.63,2a444,444,0,0,1,20,119.47l0,1.08c0,.35,0,.7,0,1A419.43,419.43,0,0,1,978.6,649.78l-.51,1.93a408.82,408.82,0,0,1-16.58,48.68,407.12,407.12,0,0,0,16.94-49.47c.18-.64.35-1.29.52-1.93A419.73,419.73,0,0,0,992.8,530.84C992.79,530.5,992.78,530.15,992.78,529.8Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M981.4,378.42c-.22-.77-.43-1.55-.65-2.33C981,376.87,981.18,377.65,981.4,378.42Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M984.4,389.41,983,384c-.5-1.86-1-3.7-1.57-5.55C982.44,382.07,983.45,385.72,984.4,389.41Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M976.27,361.53a420,420,0,0,0-51-103.86L924.14,256a439.43,439.43,0,0,0-77.17-86l-1.53-1.3a463.11,463.11,0,0,0-98.63-64.06l-1.86-.89A485.7,485.7,0,0,0,629.54,65.67l-2.1-.41A513.06,513.06,0,0,0,499.52,57a514.44,514.44,0,0,1,128,8.43l2.1.41A488,488,0,0,1,745.06,104.2l1.86.9a464.61,464.61,0,0,1,98.67,64.21l1.53,1.3a440.83,440.83,0,0,1,77.2,86.08l1.12,1.65a421,421,0,0,1,51,103.94l.63,1.93q1.9,5.91,3.64,11.88c-1.23-4.23-2.49-8.45-3.84-12.63C976.7,362.81,976.49,362.17,976.27,361.53Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M841.86,151.93c-.64-.58-1.25-1.18-1.89-1.75C840.61,150.75,841.23,151.35,841.86,151.93Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M852.67,162l-2.2-2.12c-2.81-2.73-5.71-5.36-8.61-8C845.52,155.24,849.14,158.59,852.67,162Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M825.19,137.56a381.61,381.61,0,0,0-92.91-55.23l-1.75-.73A405.19,405.19,0,0,0,621.88,53.86l-2-.22h0a420.57,420.57,0,0,0-64.21-1.93c22.51-.73,41.63.56,64.41,2.12l2,.22A406.76,406.76,0,0,1,730.91,82l1.75.72a383.68,383.68,0,0,1,93.06,55.38l1.43,1.17q6.54,5.33,12.82,11c-4.36-3.91-8.8-7.75-13.34-11.45Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M555.69,51.71A490.07,490.07,0,0,0,499.52,57C518.62,54.74,536.42,52.61,555.69,51.71Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M701.22,62A297.39,297.39,0,0,0,606.3,43.45l-1.73-.05C571,42.47,535.73,46.84,499.52,57c46.53-12.36,71.21-12.83,105.37-13.48l1.74.06a299.41,299.41,0,0,1,95.2,18.7l1.54.58a286.83,286.83,0,0,1,27.24,12L728.76,74q-12.69-6.33-26-11.41Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M583.73,35l-1.37.09C555.82,36.78,528,44,499.52,57c28.67-13,56.59-20.17,83.27-21.87l1.37-.08a185.21,185.21,0,0,1,62.92,7l-1.21-.35A183.49,183.49,0,0,0,583.73,35Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M584.25,28.32l-.92-.13-.72,0C583.16,28.22,583.7,28.24,584.25,28.32Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M554.17,29.09c-17.56,3.63-35.88,12.8-54.65,27.94,19-15.11,37.45-24.25,55.17-27.86l.91-.18c.72-.14,1.45-.21,2.16-.33-.92.08-1.83.16-2.69.25Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M557.76,28.66a176.35,176.35,0,0,1,24.85-.51A82.61,82.61,0,0,0,557.76,28.66Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M717.91,511.11h0l.46-4.69-21.9,10.34L687.07,529l-1,5.75c-1.5.27-3,.52-4.52.78L677.12,530l-11.55-3.1-2.66,3-5.49-1.81,1.81,7.87-4.75,2.46L663.19,568l11.56-2.35,3.8-7.56,16.9-8.74,5.19-.82,4.25-5.7,19.38-11.95-.23-5.27,3.74-2.77Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="735.3 540.6 723.64 544.83 728.11 549.39 735.12 546.44 735.12 546.44 735.3 540.6" style="fill:#d9dadb"></polygon><path d="M718.37,506.41l-.46,4.69h0l9.87,11.68,1.34-1,6.51-4.94,6.66-1.54,1.31-7,6.06-2.29,1.86-7.2,6.17-3.36.3-11.91L764.63,466l-9.21-8.78-11-.55-5.7-5-4.35,2.65,2.24,5.3-3,1.78,0,9.42,5.16,5.91-1,16.72Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M737.12,450.24l-1-7.24-.61-4.22-2.11-.6-3.34,11.23-3.34,4.19-2.57,6.24q-5.24,1.2-10.54,2.34l-2.71,2.13-6.26-1.58,6.78,10.78,23-1.45.17-.1-1-1.17,0-9.42,3-1.78-2.24-5.3,4.35-2.65Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="691.5 448.75 691.5 448.75 691.5 448.75 691.5 448.75" style="fill:#d9dadb"></polygon><polygon points="692.08 437.33 689.51 435.76 687.67 440.25 687.29 445.12 691.5 448.75 693.85 443.29 692.08 437.33" style="fill:#d9dadb"></polygon><path d="M665.57,526.94l11.55,3.1,4.41,5.45c1.51-.26,3-.51,4.52-.78l1-5.75,9.4-12.21,21.9-10.34,19.37-13,1-16.72L734.63,472l-.17.1-23,1.45-6.78-10.78-1.26-2-4.21-3.64L694,450.64l-.73-5.45-7.72-5.91-2.95-.13-3.11-4.87-6.73,1.22-2.88-4.05q-8.58,1.5-17.32,2.88l-21-14.59-13-6.66-8.55.44-13.48,7.13,6.89,7.19L601,433.17l-5.65,1.26L592.06,441l-9.53-.81.62,8.73h3.06l17.11,21.68,2.82,6.76,8,4,6.61,10.76,1.52,10.68,5.15,5.76,8,3.71,9.65,14.35,4.29,2.51,4.66,8,.46,1.46,4.75-2.46-1.81-7.87,5.49,1.81Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="561.64 373.78 556.97 376.44 551.83 376.73 546.95 380.48 550.13 383.09 554.6 382.63 557.29 380.25 560.19 379.4 559.3 377.99 561.49 375.58 561.64 373.78" style="fill:#d9dadb"></polygon><polygon points="572.22 382.46 568.46 394.66 568.21 396.42 573.45 394.88 574.99 394.44 575.29 394.34 578.95 385.61 576.96 381.7 572.22 382.46 572.22 382.46" style="fill:#d9dadb"></polygon><path d="M717.69,782.07l-1-11.61-4.49-5.89L708,774.45l-3.66,3.61-2.55-.17-2.61,5.39,2,2-11.9,7.55-2.22,1.21-4.47,3.07-2.53-.36-6.17,2.64-4.94,10,1.35,8.94,1.57,2.06-.26,3-6.18,8.72-4.2,4.51-.44,5.68,2.47,4-1.44,4.6,2,3.17,7.25,2.4,14.34-5.74,6.4-10.39,2-5.5L709,806.16c.28-1.94.55-3.9.81-5.86l3.23-3.34-.47-8.51,6.47-2.83Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><polygon points="573.85 399.17 573.45 394.88 568.21 396.42 566.97 404.7 564.05 410.29 563.08 410.54 569.42 426.66 570.37 424.62 575.01 411.7 573.86 399.18 573.85 399.17 573.85 399.17" style="fill:#d9dadb"></polygon><polygon points="594.27 392.51 580.38 402.44 573.89 399.1 573.86 399.18 575.01 411.7 570.37 424.62 570.63 428.19 580.16 429 583.41 422.44 589.06 421.19 591.53 415.86 584.64 408.67 598.12 401.54 594.27 392.51" style="fill:#d9dadb"></polygon><path d="M568.36,877.52l3.87-.6c.13-2.34.26-4.72.38-7.12L567.84,868l-4.25,5.43Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M486.78,917.66l3.38-1.68,9.25-.42,5.46-1.93,16.11.7,1.4-1.18,10.67-1.41,9.79-4,15.56-9.89L568.81,887l7.76-4.83,3.86-7.89a1.15,1.15,0,0,0,0-.19c-2.69.21-5.38.41-8.09.6l-.12,2.25-3.87.6-4.77-4.1,4.25-5.43,4.77,1.81,1.95-3c.09-1.87.19-3.76.28-5.66l-3.91-5.3,1.66-2.38-3.21-3.81-1.07-1.25-6.54,1.39-3.71-1.53-4.43,1.22-2.25.62-1,1.76-5,.87-2.3,3.34-5.75.65-3.46,7.62-6.55.68-3.56,6.11q-3.53.11-7.06.18l-7.62-3.22L504,869.54l-1.34,4.14-5.17,3.82c-2.85,0-5.71,0-8.58,0l-1.72-2.45,3.07-2.3-3.65-5.59-4.93-1.57q.84,10.35,1.72,20l-4.61,1-.48,2.13-8.05-.12-6.75-1.76,1.24-2.3-3.94-1.3-4.21,1.8.29.27,2.61,2.43,4.44,6.7,8.56,8.4.52,4.65-3-.41,4.8,5-.51,2.29Zm54.34-29.86,7.21-2.55,5.51,2.38-2.92,4.62h0l-5.28.26-3.71,3.87L537.28,892Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M553.84,887.63l-5.51-2.38-7.21,2.55L537.28,892l4.65,4.43,3.71-3.87,5.28-.26h0Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M582.8,818.17l2.34-4.58-5.49-2.9L575.16,813,571,809.74l-7.32.23c0-.76,0-1.52,0-2.28h-5.35l-7.26,2.75-.93,4-8.45,3.18L538,823.45l-3.83,1.84-5.12-2.4L522.9,824l5.2,6.18c0,1.24,0,2.48.07,3.71l9.06,2.45.72,3,4.11.21,2.18,5.68,8.74.29.66,3.81a1.48,1.48,0,0,1,0,.21l4.43-1.22,3.71,1.53,6.54-1.39,1.07,1.25,9-7,0-5.58,3.47-.14,3.43-4.1-3.05-2,1.28-2.22-2.87-1.49,5.07-6.31Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M488.89,877.52c2.87,0,5.73,0,8.58,0l5.17-3.82,1.34-4.14,5.09-1.42,7.62,3.22q3.54-.08,7.06-.18l3.56-6.11,6.55-.68,3.46-7.62,5.75-.65,2.3-3.34,5-.87,1-1.76,2.25-.62a1.48,1.48,0,0,0,0-.21l-.66-3.81-8.74-.29-2.18-5.68-4.11-.21-.72-3-9.06-2.45c0-1.23,0-2.47-.07-3.71L522.89,824l-8.23,1.36-5.1,3.56-2.93-2.51-19,2.71q.6,10.54,1.22,20.51l-8.38,0q.6,8.22,1.22,16l4.93,1.57,3.65,5.59-3.07,2.3Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><polygon points="493.35 808.93 493.34 808.93 493.35 808.93 493.35 808.93" style="fill:#ff7b00"></polygon><path d="M509.56,828.89l5.1-3.56,8.23-1.36-3.45-4.12-6.91-.43-7.29,1.5-16,3.1q-10,0-20.13-.13l-3.68-2.75q-17.56-.3-35.2-1.1l-4.86-3.69-6-.31-4.1,3-4.79-.29.53,3.37,13,13.55,2.28,4.2,9.08,9.06,1.5,2.44-.32,2.63.92,5.84,3.74,5.38.42,3.94,4.89,8.78,4,4,6.06,3.11,4.21-1.8,3.94,1.3-1.24,2.3,6.75,1.76,8.05.12.48-2.13,4.61-1q-.88-9.62-1.72-20-.63-7.82-1.22-16l8.38,0q-.63-10-1.22-20.51l19-2.71Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><polygon points="362.2 649.75 364.92 643.41 359.08 640.86 355.25 645.59 362.2 649.75" style="fill:#ff7b00"></polygon><path d="M599.26,814.76l4.71.06,5.83-17.5-6.07-3.66L603,798l-6.67-.88-2.92-5.5c0-1.81.07-3.63.1-5.47l-2.8-2.8L592.9,779l-1.16-9.55-1.52-2.69,1.3-5.24h0l-8.44-1L586.74,771l-2.7,2.19,1.7,9.45-4.46,8,3.17,4.71,3.38,5,4.57-.38,2.47,3.55-2,3.42Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M646.31,778.25l-1.94-9.65,2.54-5.15-16.48,8.88-4.32-1-4.64,3.94-3.62-1.52-5.1,3.91-4.85-3.9-6.28,2.82-2.3,4.66.73,9.53,2.35,1.86,1.33,1.06,6.07,3.66L604,814.82l-4.71-.05L592.91,807l2-3.42L592.4,800l-4.57.38-3.38-5h0l-22.31,7.56,1.57,4.75c0,.76,0,1.52,0,2.28l7.32-.23,4.15,3.29,4.49-2.34,5.49,2.9-2.34,4.58,3,2.61-5.07,6.31,2.87,1.49-1.28,2.22,3.05,2-3.43,4.1h0l-3.47.14,0,5.58-9,7,3.22,3.81h0l-1.66,2.38,3.91,5.3c-.09,1.9-.19,3.79-.28,5.66l-1.95,3c-.08,1.63-.17,3.26-.26,4.87,2.71-.19,5.4-.39,8.09-.6l.07-1.26.34-7L584,863.9l14.1-5,3.65-3.4-.44-9.9-1.18-8.77-3.35-2.16-.49-5.62L610.84,823l3.73-6.3,10-5.66,7.85-2.12,6.19-4.5h0l8.52-12.79Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><polygon points="897.15 519.48 895.15 513.86 891.17 511.1 890.81 515.1 891.75 526.32 890.9 527.23 894.46 540.61 896.9 542.31 902.05 534.87 902.05 534.87 902.12 527.26 897.15 519.48" style="fill:#d9dadb"></polygon><path d="M992.64,551.39l-.89-10.59-1.39.42.14-8.44-1.53-1-4.42-7.44-.41,3.73-2.14-3L981,521l-3.74-3.3-.79-2.52-2.79-4.61-3,3.77L967,515l1.3,5.77,4,5.57,1.17-.55,2.51,4.68.77,4.63,2.78,2.94,1.52,9.72,1.24,0,2.93,15.2c2.09,4.93,3.87,11.88,5.42,17l1.69-4.41,1.08-15.14.53-4.64-.4-5.52Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="935.4 443.67 935.05 445.86 937.45 460.57 939.9 463.51 938.61 452.71 935.4 443.67" style="fill:#d9dadb"></polygon><polygon points="939.9 463.51 939.9 463.51 939.9 463.51 939.9 463.51" style="fill:#d9dadb"></polygon><path d="M994.57,536.84l-1.19,3.54-.12,5.54c.22-.49.43-1,.63-1.45l.78,6,.93-7.09-.9-1.61Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="951.87 346.36 953.09 353.81 955.41 359.5 957.04 359.09 955.94 351.9 952.77 342.32 951.87 346.36" style="fill:#d9dadb"></polygon><path d="M950,297.65l-2.75-5.26L945,287.78l-.59-1-1-2-.59-.67,1.41,3.13,6,12.16,2,4.07,3.25,5.82c0-.17-.1-.33-.16-.5l-2-4.22Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="962.28 342.97 961.93 341.94 959.22 334.16 959.01 333.58 955.89 325.17 955.22 323.43 951.7 314.63 953.59 319.54 953.64 320.05 957.06 329 960.5 338.19 960.76 339.36 964.25 349.21 963.58 346.97 963.64 347.16 962.28 342.97" style="fill:#d9dadb"></polygon><polygon points="966.07 354.71 965.52 352.92 965.11 351.65 965.18 351.88 966.07 354.71" style="fill:#d9dadb"></polygon><polygon points="964.05 348.32 963.64 347.16 965.11 351.65 964.05 348.32" style="fill:#d9dadb"></polygon><polygon points="967.43 359.16 968.44 362.6 967.64 359.89 967.43 359.16" style="fill:#d9dadb"></polygon><polygon points="972.99 379.35 974.5 385.59 973.98 383.36 972.99 379.35" style="fill:#d9dadb"></polygon><polygon points="974.5 385.59 975.08 388.1 974.92 387.33 974.5 385.59" style="fill:#d9dadb"></polygon><polygon points="977.51 399.05 976.03 392.16 975.08 388.1 977.63 400.07 979.81 411.27 978.41 403.46 977.51 399.05" style="fill:#d9dadb"></polygon><polygon points="983.9 559.48 982.79 563.39 982.89 560.12 981.02 563.65 978.75 574.14 980.09 573.46 979.63 576.87 981.09 573.64 982.66 567.81 982.86 568.45 983.13 566.96 985.1 550.88 984.75 552.91 983.9 559.48" style="fill:#d9dadb"></polygon><path d="M508.63,777.11l-14.84,3.21.44-10.79L491.32,766l1-5.73-2.41-5.35,2-5.64q-6,0-12,0c-.05-1.21-.1-2.43-.14-3.65l-9.86,1.23-.75,8.54q-7.69-.09-15.42-.27l-7.91-9.87.6-4.75-2.92-3.25q-15.44-.47-30.9-1.31l-3.31,3.55,9.08,15.16c.05.9.11,1.8.17,2.7l-3.28,2.52,7.56,12.39.86,7.87-10,11-2,11.78-3,4.31,1.43,9.51.31,2.06,4.79.29,4.1-3,6,.31,4.86,3.69q17.63.81,35.2,1.1l3.68,2.75q10.08.15,20.13.13l16-3.1h0l-10.6-7.41-1.14-21.91q7.8,0,15.58-.19Q508.86,784.37,508.63,777.11Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M552.85,699.66l-4.17,6.82,1.78,4.36,6.51-1.38.25-2.64,6.27-.06,3.18-.19-4.62-10.74-6.43,2.69Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M557.22,706.82l-.25,2.64-6.51,1.38,2,6,2.45-.34,2.75,9.52,9.78-10.26c0-1.25,0-2.51-.08-3.76l-4.49.18.57-5.39Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M583.09,760.53l-5.5-.69-2-3.51-5.27-1.49.56,1.43L569.63,760l-6.87-2.56-.78-2.82-11.18,3.08-4.88,5.28,3.19,5.57-1.93,11.17,6.64,5.88,5.78-1.85c0,3.11,0,6.2,0,9.25l-6.77.37-5.94-5.91-7-2.62-3.38-3.88-4.07,2.84-9.81-1.89-1.34-3.31L515.71,780l-2.44-4.4-4.64,1.47q.22,7.25.45,14.29-7.77.14-15.58.19l1.14,21.91,10.6,7.41h0l7.29-1.5,6.91.43,3.45,4.12h0l6.16-1.08h0l5.11,2.4,3.83-1.84,3.71-5.78,8.45-3.18.93-4,7.26-2.75h5.35l-1.57-4.75,22.31-7.56h0l-3.17-4.71,4.46-8-1.7-9.45,2.7-2.19Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M601.62,776.55l6.28-2.82,4.85,3.9,5.1-3.91,3.62,1.52,4.64-3.94,4.32,1,16.48-8.88-1.72-.9-5.81-2.85-2.91-12.9-.21-3.86,2.48-6.71-6.15-6.8,2.88-9.85-12.63-7,2-4.41-31.71-15.93-6,9.75,4.27,1.59L587,707.85l-8.2-1-3.85,4.5L572.47,705,575,698l-1.9-2.84q-5.49.38-11,.71l4.62,10.74-3.18.19-.57,5.39,4.49-.18c0,1.25.05,2.51.08,3.76L557.71,726,562,740.68l4.31,4.05,4.05,10.11,5.27,1.49,2,3.51,5.5.69,8.44,1,7.06,4.17c0,2.75-.06,5.48-.09,8.19Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M722.08,564.81l-3.82-.64-4.65,5.06-19.67,6.53-6.76,5.45-5.77-2-5.74,6.21-4.9.48-7.89-7L658,589.09l10.78,11.66,22.42,3.87c2.85-.49,5.68-1,8.51-1.5l-20,30.92h0l-7.78-1.35L665,637.61l-.64,4.88q-3.58.53-7.2,1l-8.28,13.25q.46,11.4.76,22.75c.06,2.29.11,4.56.16,6.83l4.15,4.81.73-1.41,3-6,18.48-21.33,12.66-11,18.61-29.68,13.63-36.1-.29-7.48,3.66-1.87Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><polygon points="595.58 551.25 601.08 547.97 603.05 550.39 607.47 545.22 609.62 547.63 614.34 544.48 616.59 547.19 627.68 547.47 640.24 560.93 647.75 557.19 648.07 556.29 631.24 540.76 619.62 538.59 613.06 523.74 609.28 517.26 605.52 523.92 601.49 522.37 595.02 529.53 598.34 534.56 593.62 542.99 595.58 551.25" style="fill:#ff7b00"></polygon><polygon points="640.24 560.93 636.69 567.5 638.13 575.34 646.11 577.11 650.99 566.95 650.18 566.23 644.34 566.79 647.75 557.19 640.24 560.93" style="fill:#ff7b00"></polygon><path d="M592.24,685.39l2.65-7.76,5.91-7.4-2.37-8.94-4.29-3.6,1.45-3.59-5.5-3-4,4.46-3.59-1.87-7.26,2.7L568.11,654,565.06,659h0L563.89,661l2.27,3-1.31,3.55,4.42,3-8.5,7.83-4.66,9-.49,11.2,6.43-2.69q5.52-.33,11-.71l-.84-1.27L576,687Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><polygon points="636.96 644.77 636.96 644.77 636.96 644.77 636.96 644.77" style="fill:#ff7b00"></polygon><path d="M649.89,645.88l-3.7-2.23L640,647.42l-2.61,4.81-12.51-.6-10.41-6.17-6.47.93-1.81-1.68q-6,.57-12,1.1l-3.94,5.07-.18.21,5.5,3-1.45,3.59,4.29,3.6,2.37,8.94-5.91,7.4-2.65,7.76,7,3-6.09,3.86,31.71,15.93-2,4.41,12.63,7,.5-1.7,5.07-7.57-1-4,3.72-5.67,9-7.16,1.15-2.28-4.15-4.81c0-2.27-.1-4.54-.16-6.83q-.3-11.34-.76-22.75h0l7-11.25Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M582.21,620.05l6,.73,9,7.7,1.28,8.54,3.45,2.24,4-2,.33,7.34,0,.09,1.79,1.66,6.47-.93,10.41,6.17,12.51.6,2.61-4.81,6.16-3.77,3.7,2.23,6-.37,1.23-2q3.61-.5,7.2-1l.64-4.88,6.91-4.91,7.79,1.34h0l20-30.92c-2.83.51-5.66,1-8.51,1.5l-22.42-3.87L658,589.09l-8-1.77-1.44-7.83,3.55-6.58-12.56-13.45-11.09-.28-2.25-2.72-4.72,3.15-2.15-2.41L615,562.37,613,560l-5.5,3.27-2,5.55q.3,4.08.59,8.16l-5,.49-4.39,7.92q.25,4,.49,7.95l-4.61-.6-1.53,11.9c0,.51.06,1,.08,1.52.12,2.16.23,4.33.35,6.49l-8.66.94Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M996.77,459.09h0l-.18-1.1v0l.29,5.27.64,4.52-.27-4.47C997.1,461.92,996.94,460.5,996.77,459.09Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="987.48 517.33 987.45 517.23 987.42 517.66 987.41 519.31 987.48 517.33" style="fill:#d9dadb"></polygon><path d="M998.93,484.71l.13,2.41.08,4.92-.26-.67-.12,4.42.12,4.51-.31,3.28-.3,5.16-.84-2.72q-.18-3.74-.43-7.46l-.08,13.18.2,4.06.36.06-.05,5.15.77,4.13-.12,4.72.16,4.7-.13,4,.67-3.38.2-3.42-.2,6.52.54-8.61.22-31.35C999.5,494.13,999.26,489.49,998.93,484.71Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M998.46,476.41c-.09-1.26-.19-2.51-.3-3.77l-.38-4.9c-.23-2.45-.47-4.89-.74-7.32-.07-1-.16-2.07-.28-3.1.57,8.14,1.54,18,2.17,27.39l-.2-3.71Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M998.73,481l-.27-4.59c-.09-1.26-.19-2.51-.3-3.77l-.38-4.9c-.23-2.45-.47-4.89-.74-7.32-.07-1-.16-2.07-.28-3.1h0l-1.94-15.44-1.26-8.15q.09.64.15,1.29l2,14.53.25,2.58.35,2.52.45,4.44h0c.17,1.41.33,2.83.48,4.24l.27,4.47-.64-4.52,1,15.26-.22,7,0,2.09.69,11.52-1,1.8-.4-2.32v0q.25,3.72.43,7.46l.84,2.72.3-5.16.31-3.28-.12-4.51.12-4.42.26.67-.08-4.92Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="982.91 429.79 982.92 429.89 982.94 430.06 982.91 429.79" style="fill:#d9dadb"></polygon><polygon points="398.49 718.06 398.49 718.06 398.49 718.06 398.49 718.06" style="fill:#ff7b00"></polygon><path d="M410.79,722.1l-7.34,3.6,1.56,1.65,0,0,1.61,4.4,3.83,1.46c0-.1,0-.19.07-.29l-.15-2.92h0L415,727.2Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M555.62,698.52l.49-11.2,4.66-9,8.5-7.83-4.42-3h0l1.31-3.55-2.27-3,1.16-1.94H565l-7.57-9.54-4-1.31-2.71,3.49-3.56-1.33-2.88,2.51-5.93-2.74-.09-2.72-6.34-1.92-4.18.81-9.27-1.93-.75,3.78-5.23.89-2.57-2.56-8.69,3.87-4.41-.25-3.34,5.87-9.87-1.58L481,651.49l-4.67,2-5.24-7.5-6.52,1.78L462,652.6l-3.09.89,2.09,10L456,672.91l-.75,13.91-2.19,2.77c0,.13,0,.26,0,.4,0,1.31.07,2.62.1,3.93l-3.33,4.61-4.4.81-5.35,8.17,1.29,9.64L439,722.34l-3.54.89L430,729.68l-5-.22-.58-5.12-4.27,2.74-3.13,2h0l-2-1.88-4.62,2.85.15,2.92-.07.29,3.37,1.27-1.27,1.39q15.46.84,30.9,1.31l2.92,3.25-.59,4.75,7.9,9.87q7.73.18,15.42.27l.75-8.54,9.86-1.23c0,1.22.09,2.44.14,3.65q6,0,12,0l-2,5.64,2.41,5.35-1,5.73,2.91,3.57h0l-.44,10.79,14.84-3.21,4.64-1.47,2.44,4.39,5.62-1.48,1.34,3.31,9.81,1.89,4.07-2.84,3.38,3.88,7,2.62,5.94,5.91,6.77-.37c0-3.05,0-6.14,0-9.25l-5.78,1.85-6.64-5.88,1.93-11.17-3.19-5.57,4.87-5.28L562,754.57l-2-7-4.3-2.51L552,738.13l1.25-4.43-2.4-4,.41-12.75,1.25-.18-2-6-1.78-4.36,4.17-6.82Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M396.65,679.73l.87,0q-.11-4.78-.18-9.59l-.87-.06c-3-.19-5.88-.4-8.8-.61L383,666.29,384,676.8h0l-.81,2Q389.89,679.28,396.65,679.73Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M426.32,685.13l-4.63-8.49-8.31,2.09q-.09-4.31-.17-8.62l-6.33-2.88-9.59-.32c0,1.09,0,2.19,0,3.28q.07,4.8.18,9.59l-.87,0q-6.75-.45-13.42-1l-4.16,9.75-4,1.25,7.54,14.17,4.93.48.57,4.56,9.15,10.07,7.93-2.38-4.34-5.12c-.06-1.49-.12-3-.17-4.49l5.73.2,3.41-4.8h0l3.15,6.45,3.85.2,2.76-2.59,5.21,3-.2-16.51-5.9-3.45,2-4.8Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M456,672.91l4.93-9.44-.42-2,0,0-10.36-3.63-7.23,2.41,1.68,5.24-4.47,5.11,1.34,3.59-3.81,2.63-3.32-4.88-3.07,2.15-4.13-3.14-13.9-.82c0,2.88.1,5.75.16,8.62l8.31-2.09,4.63,8.49-5.58-.4-2,4.8,5.9,3.45.2,16.51-5.21-3-2.76,2.59-3.85-.2-3.15-6.45h0l-3.42,4.79-5.73-.19c.05,1.5.11,3,.17,4.48l4.34,5.12-7.93,2.38,6.17,6.65,7.34-3.6,4.22,5.1,2,1.88h0l3.13-2,4.27-2.75.58,5.13,5,.22,5.45-6.45,3.54-.89,2.42-5.19-1.29-9.64,5.35-8.17,4.4-.81,3.33-4.61c0-1.31-.07-2.62-.1-3.93,0-.14,0-.27,0-.4l2.19-2.77Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M464.59,647.76l6.52-1.78,5.24,7.5,4.67-2,2.56,2.86,9.87,1.58,3.34-5.87,4.41.25,8.69-3.87,2.57,2.56,5.23-.89.75-3.78,9.27,1.93,4.18-.81,4.78,1.45-1.07-5.67-4.55-4-4.38-.11-.15-5-9.32-5.28c0-1.16-.06-2.32-.1-3.48l-4.59-3.06-6.23.56h0l1.48-3.78-7.8-.39,3.07-9.19-6.65-7.66-3-3.54L485.71,600l.09,6-4.25.55-6.47,7.1q-5.71,0-11.43-.1l-4,8.25-7.08.62-7.07,3.76-3-3.4-10.74,4.49-1.64,3.92-2.6-.11-.27,4.47-5,1.26,3.9,8.26-.37,5.16,6.06,3.25-3.62,3.65,9.36,6.54,2.59,7,4.47-5.11-1.68-5.24,7.23-2.41,10.36,3.63,0,0-1.67-8,3.09-.89Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M528.89,610.42l-4.45-1.48-2.77-7.59-6.91,1.11-.82,4.11-4,3.51-2.2,7-1.47,3.78h0l6.23-.56,4.59,3.06c0,1.16.07,2.32.1,3.48l9.32,5.28.15,5,4.38.11,4.55,4,1.07,5.67,1.56.47.09,2.72,5.93,2.74,2.88-2.51,3.56,1.33,2.71-3.49,4,1.31L565,659h.08l3.05-5.07,7.16,2.43,7.26-2.7,3.59,1.87,4-4.46.18-.21,3.94-5.07q6-.52,12-1.1l0,0,0-.09-.33-7.34-4,2L598.45,637l-1.28-8.54-9-7.7-6-.73.64-6.5,8.66-.94c-.12-2.16-.23-4.33-.35-6.49l-6-2.35,1.18-5.44-4.6-4.4V581.6l-9.21,3.22,2.27,8.07-7.63,11.44-4.2.61-7-4.34-4.28,1.85c0,1.09.09,2.18.14,3.28l-19.16,2.06Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M509.35,445.74h0c.51,19.68,1,39.6,1.54,59.64,32.08-.82,63.68-2.89,94.33-6.09l-.86-1.83-.23-.5-12.07-9.6-.36-7.54-4.86-3.69L574.4,451.56,565.54,446l-2.25-14.28,7.36,11.74,6.67,3.6,4-8.41L575,422.52l-8,2.07-14-2.89-5.14,3.48h-2.3l-5.91,4.08L530.23,426,516,423.35l-4.34,1.14-4.55,3.82,3.76,5.26-4.4,5.25Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M613.39,534.35l4,1.56,3.76-6.66-.64-1.09-9.69-5.63-.7-4.11-2.39-13.76-2.54-5.36c-30.65,3.2-62.25,5.27-94.33,6.09q.21,8.08.42,16.2c-2.53.07-5.07.12-7.61.17,0,1.32.06,2.64.08,4q.3,14.91.62,29.87-4.86.1-9.72.16l2,5.11-6.45,4.83,2.91,4.71-7.9,7.55,2.38,6.63,5.73-1.46.44,5.56,4.52,3.43-1.89,7.73h0l6.65,7.66L500,616.68l7.8.39,2.2-7,4-3.51.82-4.11,6.91-1.11,2.77,7.59,4.45,1.48,3.72-2.63,19.16-2.06c0-1.1-.09-2.19-.14-3.28l4.28-1.85,7,4.34,4.2-.61,7.63-11.44-2.27-8.07,9.21-3.22v12.33l4.6,4.4-1.18,5.44,6,2.35c0-.51,0-1-.08-1.52l1.53-11.9,4.61.6q-.24-4-.49-7.95l4.39-7.92,5-.49q-.29-4.08-.59-8.16l2-5.55-2-8.26,4.73-8.43-3.32-5,6.47-7.15Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M503.78,525.71h0c-19.38-9.8-45-23.25-64.14-33.61l-8.31,4.33.4,12,6.87,10-3.46,3.72-1.41,24.11-17.91,17.95,4,11.1,5.83.26h0l5.07,14.87-1.08,7.68,5,7.61-12.14-1.1-3,4.49,10.05,7.29,4.8,4.76-2.54,6.09,10.75-4.49,3,3.4,7.07-3.76,7.08-.62,4-8.25q5.72.07,11.43.1l6.47-7.1,4.25-.55-.09-6,7.63-3.67,3,3.54h0l1.89-7.73-4.52-3.43-.44-5.56-5.73,1.46-2.38-6.63,7.9-7.55-2.91-4.71,6.45-4.83-2-5.11q4.86-.06,9.72-.16Q504.09,540.63,503.78,525.71Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><polygon points="386.65 350.69 392.37 347.99 395.19 338.58 392.33 332.51 388.56 335.29 385.75 334.31 386.17 343.3 383.63 349.29 386.65 350.69" style="fill:#d9dadb"></polygon><polygon points="502.31 350.88 499.56 347.85 495.65 352.36 500.3 354.41 500.3 354.41 502.31 350.88" style="fill:#d9dadb"></polygon><polygon points="396.09 316.94 394.67 317.27 392.92 319.04 390.9 319.44 390.05 321.68 390.84 324.07 390.01 326.58 390.52 329.05 392.57 330.5 394.64 327.44 394.5 324.66 396.75 318.84 396.09 316.94" style="fill:#d9dadb"></polygon><path d="M497.7,390.28l-2.34,4.39,8.74,4.87,12.25-2.24-1.65-4.8q-5.51.18-11,.3Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="420.24 358.16 415.9 356.56 411.56 357.13 410.7 359.37 421.76 365.12 424.18 368.17 427.62 369.46 429.5 365.57 427.87 362.56 431.5 356.22 420.24 358.16" style="fill:#d9dadb"></polygon><path d="M310.74,407.76l8.93,2.91,4.22-5-4.1-6q1.29-5.42,2.62-10.78l-2.73-8.1-14.88-4.22-1.25-5.24-2.82,1.06L289.67,386l-9.47,2.83-14.06,14.45L264.44,414l-15.35,12.06-8.93.67L238,428.56l-1.12,1.7h0q13.42,3.6,27.76,6.81,1-3.94,2-7.88l10-4.05,4.32.9,3.14-3.22q3.36.68,6.78,1.33l3.63-5.21,8.94-2.84-.71-5.44,4.95.89Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M227,438.37l-5.56,11.16-6.72,5.07-7.2,11-1.48.14-3,7.09-.74,1.8q11.53,3.57,23.81,6.83L228,469.56l3.79-3.22,4.35-.77q2.33-10.24,4.88-20.4h0q10,2.56,20.52,4.91,1.5-6.51,3.09-13-14.34-3.21-27.76-6.81l-3.28,5.06Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M410.65,414.76c.22-2.14.45-4.27.69-6.41l-.19-.11-8-4.92-1.89-4.13,5.77-3.86,3.54-4.58-4-7.78,5.24-7.81-8-2.68L395,375.15l-4.17,5.14L389.15,394l-7.53,5.09,1.64,6.14,3.9,2.44-.66,4.64,5.05,4.19-1,18.12,9.84-4.3-.2-6.21L412,417.62Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M343.39,521.13l13.35-1.28,14-11.57c10.24-6.54,25.51-12.39,36.43-17.71l-2.26-6.49-6.35-2.6-4.42.76.08-4.34L388,467.49l6.2-3.14-2.11-6.94,3.74-2.47-2.44-4.18c.29-2.74.57-5.47.87-8.2l-3.71-7.93,1-18.13-5.05-4.19.66-4.64-3.9-2.44-1.64-6.14,7.53-5.09,1.63-13.7h0l4.17-5.14-14.23-2.58-8.21,3-3.19-2.61-12.19-.61-2.76,1.49-10.57-.29-7.26,4.25-5.27-.23L323.85,382l-4.17-1.11,2.73,8.1q-1.34,5.37-2.62,10.78l4.1,6-4.22,5-8.93-2.91-3.07,3.8-4.95-.89.71,5.44L294.49,419l-3.63,5.21q-3.42-.66-6.78-1.33l-3.14,3.22-4.32-.9-10,4.05q-1.37,5.31-2.65,10.66l20.26,24.06c10.87,11.67,26,26.64,37.42,37.79-.17,1.33-.33,2.66-.5,4l6.06,4.79,3.08-.56,6,4.7L333.75,522Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M509.13,420.54,500,419l-3,.18-1.5-4.12-10.15-2.62-8.39,3.29-3.72,3.43.29,10.18-6.11,6-14.45-7.17-10.68-2.32-4.82-9.5-13.7-5.07-6.89.35-5.51-3.31c-.24,2.14-.47,4.27-.69,6.41l1.33,2.86-11.75,6.49.2,6.21-9.84,4.3h0l3.71,7.93c-.3,2.73-.58,5.46-.87,8.2l2.44,4.18-3.74,2.47,2.11,6.94-6.2,3.14,6.17,10.41-.08,4.34,4.42-.76,6.35,2.6,2.26,6.49L419.72,494l5.46,5.54,6.11-3.1,8.31-4.33c19.1,10.37,44.76,23.8,64.14,33.61h0c0-1.31,0-2.63-.08-4,2.54,0,5.08-.1,7.61-.17q-.21-8.12-.42-16.2c-.52-20-1-40-1.54-59.64l-2.86-6.93,4.4-5.25-3.76-5.26,4.55-3.82Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M413.21,670.11l13.91.82,4.13,3.14,3.07-2.15,3.32,4.88,3.81-2.63-3.93-10.56-9.36-6.54,3.62-3.65-6.06-3.25.37-5.16-3.9-8.26,5-1.26.27-4.47,2.6.11,1.63-3.92,2.54-6.09-4.8-4.76-10.05-7.29,3-4.49,12.14,1.1-5-7.6h0l1.08-7.68-5.08-14.87-5.83-.26.27,8.66,2.3,3-.88,5.17-2.28,1.45-3.52,9.64-4.34,1.51-1.21,9.63-4,.66-5.14,10.94-2.09,6.87-2.59-.17-2-.13-2.11-5.85-4.41,2.53-2.21-1.89-9.32,7.49,0,4.82-2.63,4.07,9.79,6.16,1.92,9.2-2.26,7.3v0l4.71,3.23c2.92.21,5.85.42,8.8.61l.87.06c0-1.09,0-2.19,0-3.28l9.59.32Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M284.21,463.92,264,439.86q-1.23,5.1-2.41,10.22Q251,447.74,241,445.17q-2.57,10.15-4.88,20.4l-4.36.77L228,469.56l-1.83,11.95q-12.27-3.27-23.81-6.83l-1.06,2.59,4,6L202.32,503l-5.06,10.61,12.63,1.51,3,5.67,3.8,1.08.13,5.07,4.81,8.6,3-1.07c.24-1.74.49-3.49.74-5.23l3.51-.79,2.45,5.93,3.76-2.16,4.86,1.15,4.57-2.33-.42,3.13q11.74,2.67,24,5.06l2.09-6.28-2.26-2.2c1-20.75,3.05-48.38,4.89-69.07Q278.45,462.83,284.21,463.92Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M201.22,534.55q-3.19-.93-6.33-1.88l-2,3.52-.47,2q2.56.8,5.18,1.56l5.7-1,1.89,2.42,5.76.72-.39-4.26-6.63-5.73Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M224.15,577.79l-4.31-1.08-1.9,1-2.38-2.1-3.92,7.22-1.24-.33.78,7.45,2.8,5,6.54,5.57.8,1,7.51-8.44-2.27-2.39c.16-2.39.33-4.79.52-7.18Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><polygon points="225.22 589.85 223.56 580.84 216.93 581.14 209.42 589.58 224.24 608.7 235.25 616.9 237.47 606.36 229.98 598.79 231.9 591.01 225.22 589.85" style="fill:#ff7b00"></polygon><polygon points="274.58 591.48 271.4 586.33 265.92 577.16 259.21 580.42 254.77 573.51 245.61 565.57 241.84 570.38 235.38 569.27 232.09 574.77 236.07 580.65 231.46 584.34 231.9 591.01 229.98 598.79 237.47 606.36 237.47 606.36 235.25 616.9 247.15 613.57 267.78 616.71 267.75 616.82 268.74 617.39 268.73 617.34 266.19 603.4 269.63 600.3 269.63 600.3 274.58 591.48" style="fill:#ff7b00"></polygon><path d="M203.27,538.77l-5.7,1q-2.61-.76-5.18-1.56l-.86,4.57.78,6,.74,1.16,7.29-1.13q5.07,1.47,10.27,2.89l2.87.77,2.22,2.47,2.69-1.49,1.66,3,3.85,1,1.32-5-.78-5.9-2.09.42-.9-2.87,1.34-3-1.17-5.36-4.81-8.6-.13-5.07-3.8-1.08-3-5.67-12.63-1.51-.6,1.26-3.32,7.6L190.62,524l4.27,8.65q3.13.95,6.33,1.88l2.68-2.63,6.63,5.73.39,4.26-5.76-.72Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M200.34,548.72l-7.29,1.13,2,3.09,4.86-.13L198.53,558l1.88,2.86.67,1,3.14-3.58c1.87.53,3.74,1,5.64,1.56l-1.62-5.15h0l2.37-3.11Q205.42,550.18,200.34,548.72Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M244,586.76l3.29-5.5-4.09-8.73,1.33-3.6-2.69-2.49L241.4,561l-3-2.41-2.8,4.88L231,560.58l-4.18,1.62-3.44-2.83.54-2.07-3.85-1-1.66-3-2.69,1.49-2.22-2.47-2.87-.77-2.37,3.12h0l1.62,5.15c-1.9-.51-3.77-1-5.64-1.56l-3.14,3.58,6.81,10,2,5.58.47,5,1.24.33,3.92-7.22,2.38,2.1,1.9-1,4.31,1.08,2.93,5.76c-.19,2.39-.36,4.79-.52,7.18l2.27,2.39,6.63-.3,1.66,9L243.8,603l-.44-6.67,4.61-3.69Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M247.28,581.26l6.46,1.1,3.77-4.81,6.4,5.58.29-5.16,3.34-1.8.32-5.55h0l2.81-.38,2.8-2c.26-3,.53-6,.82-9l2.35-1.46,4.51,2.7,4.64-3.25.85-2.9,5.31,1.54,1.27-4.56,8.9-4,3.32,2.66,2.63.39,7.05,1,2.77-2.25,13.11.57,3.9,1.65,6.54-8.18q.88-11,1.95-22l-9.64.85,2.52-7.34-6-4.7-3.08.56-6.06-4.79c.17-1.34.33-2.67.5-4-11.55-11-26.39-26.26-37.42-37.79q-5.76-1.1-11.39-2.25c-1.93,20.68-3.79,48.33-4.89,69.07l2.26,2.2-2.09,6.28q-12.28-2.4-24-5.06l.42-3.13-4.57,2.33-4.86-1.15-3.76,2.16-2.45-5.93-3.51.79c-.25,1.74-.5,3.49-.74,5.23l-3,1.07,1.18,5.36-1.35,3,.9,2.86,2.09-.41.78,5.9h0l-1.32,5-.54,2.07,3.44,2.83,4.18-1.63,4.63,2.88,2.8-4.88,3,2.41.44,5.46,2.68,2.49-1.33,3.6Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M278.09,615.39l2.54,13.94v0l6.65,3.77,22.68-7-3.55-8.9,1.6-13.55L303.53,596l2.91-12-4.78-2-3.44,2.86q-8-1.26-15.87-2.62L283.9,588c-.21,3.43-.41,6.87-.6,10.3l3.17,5.15-5,8.82Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M310,626.16l3-.95,4.78-.43-.91-3.93q.22-8.64.58-17.3L315,600.07l.81-4.93L311,591.47l.3-5.51-4.89-2-2.91,12,4.49,7.73-1.6,13.55Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M317.76,624.78l7.31-.36q.21-9.12.54-18.24l7.37-6.42c.06-1.56.13-3.13.2-4.69l4-3.47-4-7.28-4.49-8.21-4.7,1.32-3.33,7.85-5.11-4.15L311.33,586l-.3,5.51,4.76,3.67-.81,4.93,2.45,3.48q-.36,8.66-.58,17.3Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M301.66,582l9.67,4,4.22-4.83,5.11,4.15,3.33-7.85-2.36-4.25-5.22,1.12-3.64-7.74.57-3.8-5.27-12.44-2.63-.39-3.32-2.66-8.9,4L292,555.82l-5.31-1.54-.85,2.9-4.64,3.25-4.51-2.7-2.35,1.46c-.29,3-.56,6-.82,9l-2.8,2-2.81.38h0l-.32,5.55L264.2,578l-.29,5.16,2.75,2.37,4.45,6.9,6.7-3.26,5.49,9.17c.19-3.43.39-6.87.6-10.3l-1.55-5.78q7.84,1.37,15.87,2.62Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M435.1,522.1l3.46-3.72-6.87-10-.4-12-6.11,3.1L419.72,494l-12.57-3.41C396.27,496,379.88,499,369,504.32l-12.21,15.53-13.35,1.28q-1.06,11-1.95,22l-6.54,8.18-3.9-1.65-13.11-.57-2.77,2.25-7.05-1,5.27,12.44-.57,3.8,3.64,7.74,5.22-1.12,2.36,4.25,4.7-1.32,4.49,8.21,3.9-4.51q.35-6.18.73-12.34l4.9-4,6.13,3.68,6.69-2.87,3.66,4,1.73,7.24,7.27-4.22,7.77,6.23,7.45,1.39,3.61-6.07,11.15-.48,9.22,3.57,5.52-5.64,5-.22-2.09-5.91,17.91-17.95Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M352.45,645.87l13.1-.76,4.38-3.78,3.58,2.28,2.63-4.07,0-4.82,9.32-7.49,2.21,1.89,4.41-2.53h0l2.1,5.86,2,.13,2.59.17,2.09-6.87,5.14-10.94,4-.66,1.21-9.63,4.34-1.51,3.52-9.64,2.28-1.45.88-5.17-2.3-3-.27-8.66-1.86-5.19-5,.22-5.52,5.64-9.22-3.57-11.15.48-3.61,6.07L376,577.52l-7.77-6.23-7.27,4.22-1.73-7.24-3.66-4-6.69,2.87-6.13-3.68-4.9,4q-.39,6.16-.73,12.34l-3.9,4.51,4,7.28-4,3.47c-.07,1.56-.14,3.13-.2,4.69l-7.37,6.42q-.33,9.12-.54,18.24,6.74.86,13.58,1.65l5.22,6,5.63-1.49-2.27,9.64Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M497.26,98.49l.31,1,1.87.71,4.33-3.16-3.07-.42-1.37-1.78-1.42.52-.75-.75-1.36.73L492.69,94l-.42,1.78c-.91,0-1.83,0-2.74,0L492,97.13l2.17-.36-.23,1.74Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="469.59 97.55 471.17 96.91 471.29 98.43 472.83 99.94 476.89 92.99 478.21 92.61 478.65 90.88 480.55 90.46 481.46 91.43 483.65 90.91 482.75 89.36 480.22 87.74 478.71 87.64 478.17 85.5 475.23 84.12 474.41 88.17 473.22 85.52 472.38 84.57 470.76 86.95 470.3 85.47 470.79 84.6 468.81 84.04 467.55 85.14 465.69 85.42 466.07 89.66 467.67 90.12 467.77 91.49 472.4 88.95 471.9 91.39 468.08 93.05 468.14 93.85 469.15 94.37 468.59 95.76 469.59 97.55" style="fill:#d9dadb"></polygon><polygon points="484.77 97.56 489.24 94.6 485.42 93.66 485.22 92.34 481.91 93.04 482.42 94.23 481.52 95.82 484.93 95.54 484.77 97.56 484.77 97.56" style="fill:#d9dadb"></polygon><polygon points="329.55 148.01 327.74 149.76 331.64 150.53 336.18 155.51 343.69 154.08 348.07 154.65 351.82 151.77 352.75 153.37 355.15 151.17 357.84 151.19 358.35 148.97 360.3 148.14 360.6 143.8 361.67 141.74 359.13 140 355.22 140.76 352.85 141.89 350.15 139.16 346.37 142.06 346.98 139.01 343.82 141.75 341.2 141.85 344.08 138.28 342.06 134.8 333.36 138.99 335.09 140.37 337.6 139.74 339.65 140.61 337.67 142.3 330.62 142.58 331.77 145.09 335.58 146.08 333.9 147.84 329.55 148.01" style="fill:#d9dadb"></polygon><path d="M384.6,253.52l-2-2.67-3.73-.29-2.85.22q.92-2.37,1.84-4.71l1.05-1.12-.41-6.3-2.93-1.05,1-7.27-1.89-3.64-5.49-.88,6.67-3,6.22-6.39-5.55-1.64-4.43.76,8.22-6.25-6.34.07-1.41-1.49-6.34,6.3-.43,2.81-4.61,2,.34,2,4.31-1-6.72,5.81,1.29,2.14,3.94-.57-5.28,5.4,2.85,1.11,1.2-1.65,5.09-.64L365,236.42l.54,1.69,2.6.2-3.52,4.22,0,3-5.13-.9-1.61-1.78-3.8,4.55,2.84.43-1,3.32-6,2.4,5.68,3.25,7-.45-5.7,4.35-5.79-.77-9.56,6.44,7-2.09,2.85,2.07,2.15-1.76,4.31,1.66,5.51-2.1,7.66,2.17,7.83-3-4.93-1.67,5.5-2.32Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="356.48 194.59 356.84 192.25 353 193.35 351.63 197.34 356.48 194.59" style="fill:#d9dadb"></polygon><polygon points="353.07 198.76 347.3 201.5 350.35 203.85 353.07 198.76" style="fill:#d9dadb"></polygon><path d="M378.4,188l4.75-5.44c-1.9,0-3.8-.17-5.7,0l.52,2.31-1.18,1.72Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="384.93 185.18 385.14 182.98 378.88 186.46 379.67 190.37 384.93 185.18" style="fill:#d9dadb"></polygon><path d="M383,207.72l3.64-3.72-4.66-.17-2.38,3.3Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="333.96 222.71 334.55 224.62 338.56 222.66 339.6 225.67 345.18 222.66 344.25 216.47 341 217.49 341.01 216.06 333.96 222.71" style="fill:#d9dadb"></polygon><polygon points="332.55 238.72 332.55 238.72 332.55 238.72 332.55 238.72" style="fill:#d9dadb"></polygon><polygon points="338.39 217.22 338.62 215.16 332.17 218.13 333.89 219.91 330.6 222.44 325.19 220.21 325.25 223.31 321.56 225.53 325.47 228.45 314.7 234.77 316.33 237.65 314.91 240.74 320.86 240.89 326.78 238.19 332.55 238.72 336.89 233.43 339.6 225.67 338.56 222.66 334.55 224.62 333.96 222.71 341.01 216.06 338.39 217.22" style="fill:#d9dadb"></polygon><polygon points="11.22 504.47 11.22 504.41 11.22 504.28 11.22 504.47" style="fill:#d9dadb"></polygon><path d="M68.78,717.71l9.37,18.95,0,0L80,740.13l1.83,3.45,4.1,7.41h0l0,0,.2.36c6.2,10.54,14.58,23.45,22.07,34.82l-1.16-2.34L102.32,776l-5-8.24-1.44-3.58L95.77,761l1.9,1.81-.27-1,1.19.36-.5-1.73,6.18,4.57-1-3,1.38-.41q-1.16-2.48-2.27-5l-.43-6.15-3.4-10.35.35-2.54-2.66-9.92-6.46-20.25,1.91-1.28.62-10-.07-2.38,1.78-1.34,1.12-4.27-1.27-3.23,2.45.17-.13-14.24-4.78-16.16-1.79-2.89-4.07-2.48-5.77-10.54-2.16-6.17-6.22-11.15-4.19-1.93-2-3.63-2.36-1.64-3-6-1.17-1.39-1,3.5-2,.38,1-6.89-1-4.25L52.7,594l-1-2.95-.76-.29-.73-2.65-.91-.76L48.88,585l-2.36-3-2,7.32-.94-6.08.94-3v-4L42,570.94l-1.34-6,.4-8.63-1.81-5.56-.34-10,.11-6.69-.71-5.56-1.85,7.81-1.08,7.45-.69-.75-.2-3.2-.81-1.61-.53,2.2-1-2.27L31.49,532l-1.41.75.21,5.18-1.18-2.37h0l-1.21-2.69-.32,1.52-.47-2.88-.3,2.27-.58-.22-.58-7.39c0-2.26.05-4.51.1-6.77l-.21-5,.94-6,.05-12.63-.67-1.9-.54,4.79c-.09-.41-.17-.81-.24-1.21l-.49,2.68-.16-3.74-.37,2.88,0-9.14-.13-2.15-.47,15.8.09,6-.4,3.28v3.36l.14,7.71C26.27,616.64,50.84,675.06,68.78,717.71Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M114.19,795.23l-6-9,0,0Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="21.22 528.47 21.75 526.27 22.56 527.88 22.76 531.08 23.45 531.83 24.53 524.38 26.38 516.57 25.61 514.56 24.27 503.58 22.63 497.17 21.22 501.43 20.79 510.13 21.44 515.99 20.25 526.2 21.22 528.47" style="fill:#d9dadb"></polygon><path d="M34.52,509.16l-.22-1L32,502.55l-1,1.39-1.14-5.6-.58,7.4-.63-1.6-.93,7.42.77,8.7,0,5.31.49,4.11.13,5.88,1.18,2.38-.21-5.18,1.41-.75.66,6.17L33.34,528l-.65-5.87.43-8.7Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M29.32,505.74l.58-7.4-.64-10.4.43-4.84-.23-12.3-1.2,2.78-.52,6.13-.78-.9-.73,5.28-.37,9.74.67,1.9-.05,12.63-.94,6,.21,5c-.05,2.26-.09,4.51-.1,6.77l.58,7.39.58.22.3-2.27.47,2.88.32-1.52,1.21,2.69h0L29,529.68l-.49-4.11,0-5.31-.77-8.7.93-7.42Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M23.12,516.19c0-1.34.08-2.76.11-4.18l-.12,1Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M23.12,516.45v0Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M23.51,509.75l-.08-5.21c-.07,2.57-.13,5-.2,7.47Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M30.09,429.29,28.41,439l-2.86,22.94V462L25,467.83l0,.18c-.49,6.14-.81,13.16-1.07,20.31l.11,1.77,0,9.14.37-2.88.16,3.74.48-2.68c.08.4.16.8.25,1.21l.54-4.79.37-9.74.73-5.28.78.9.52-6.13h0l1.2-2.78v-1.52L29,467.22l.87-7.59-.06-3.39L29.35,452l.47-5.59.47,1.44.91-3.94-1-4.51-.21,0-.59,2.3-.35-1.1.75-6.81Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M23.42,503.74v.8c.14-5.27.29-10.78.48-16.22l0-.38Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="19.58 409.12 18.23 416.68 18.19 417.31 20.39 404.6 19.58 409.12" style="fill:#d9dadb"></polygon><polygon points="18.48 439.83 19.2 440.55 20 435.48 19.58 434.4 18.67 438.24 18.48 439.83" style="fill:#d9dadb"></polygon><polygon points="13.08 456.03 13.65 449.94 13.65 450 13.1 455.85 13.08 456.03" style="fill:#d9dadb"></polygon><polygon points="69.93 731.6 69.87 731.48 69.93 731.6 69.93 731.6" style="fill:#d9dadb"></polygon><polygon points="66.27 724.71 66.25 724.68 69.87 731.48 68.1 728.14 66.27 724.71" style="fill:#d9dadb"></polygon><polygon points="74.26 739.4 74.05 739.03 74.04 739.01 74.26 739.4" style="fill:#d9dadb"></polygon><polygon points="74.04 739.01 74.04 739.01 74.03 739.01 74.04 739.01" style="fill:#d9dadb"></polygon><polygon points="33.63 363.04 34.43 356.19 32.34 362.12 31.97 366.25 33.63 363.04" style="fill:#d9dadb"></polygon><path d="M51.54,346.81l-1.11,3.12-2.64,7.74-.11.32-.14.43-.77,2.38q1.21-3.71,2.49-7.36l.39-1q1.41-4,2.9-7.94c.43-1.48.92-3,1.46-4.44l-.43,1.13-1.27,3.44Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M46.68,364.64l4-13.57,1.79-6.16.12-.4q-1.48,3.94-2.9,7.94l-.39,1Q48,357.1,46.77,360.8L46,363.28l.77-1.75-1.25,5.7Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M201,182.18l-5,1.39-9.86,5.73L182,190.57l-.93,2.67-3.94,1.81-2.2,2.79,1.9,2.86.95,4.16-4.4,2.07.49,2.41,5-2.09.11,1.44L175.32,212l-.67,2.71,1.12.67,7.14-6,1.13-2.37-1.57-.21.94-2.51,4.11-1,2.44-2.16L188.5,200l2.9-2.95.25-2.27-2.72.81.09-1.86,2.62-1.93-.09-2.94,10.35-4.9C201.6,183.35,201.32,182.76,201,182.18Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M183.32,183.54l1.16-1.17,2.54-6.56c-1.15,1-2.28,1.93-3.42,2.9l-2.41,4.93Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="153.66 193.09 158.9 186.62 159.99 184.38 153.2 189.08 151.39 192.51 153.66 193.09" style="fill:#d9dadb"></polygon><polygon points="225.69 104.44 230.11 101 226.82 102.08 221.33 106.38 225.69 104.44" style="fill:#d9dadb"></polygon><polygon points="221.33 106.38 221.33 106.38 221.33 106.38 221.33 106.38" style="fill:#d9dadb"></polygon><path d="M365.16,60.41l5-.22q.87-.86,1.83-1.68L370,57.74l-2.9.32-2.87.08-7,1.45-4.69,2.74-2.14.7-.14-.7,3.15-1.58-4.62,1.4-3.94,1.93c-1.62,2.45-4.6,3.51-6.17,6L334.48,73c-.34.46-.66.91-1,1.37l2.55-.88,1.58-1,1.33.21-2.83,2-3.48,1-4.1,3-2.82.29c-.29.5-.56,1-.81,1.51l-3.75,1.48-3,3.13-7.55,3.6-.66-.34-5.7.55-5.63,3-1.08-1.19L300,88.32l.7-1.54c-3,.45-3,.45-7.25,2.2l-2.06,2.45,1.07.95-3,3.32-3.16,2.38-2.57,1-6.38,5.54-.53,1.41-3.05,2.34-4.81,7.25,2.48-1.36,3.71-3.49,6.73-6L283,105l-4.62,5.25-3.44,3.21L274.2,115c12.47-6.72,12.47-6.72,14.56-8.24l4.65-4.71,6.44-3.5,4-2.14-.12,1-3.47,3.32-7.19,4.11-1.89,2.81,5.1-2.07,1.11.82,5-2.44.84.59,4.46-2,9.37-8.55-1.78-.49,3-1.2L319.68,90l3.82-1.71,1.51.84,6.21-3,3.3-2.09L336.85,82l-.77-.8,3.56-1,6-4.16c.1-.27.21-.53.33-.8l3.95-1.26,4-2.16c.4-.77.84-1.55,1.33-2.33L352.65,69l2.1-1.23-2.42-.41,6.59-1.26,6.95-2.2L367.5,63l-1.14-1.6-3.94.44-5.15,1.65-2-.35,4-1.57Q362.2,61,365.16,60.41Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="301.29 71.36 302.3 72.23 307.58 70.19 309.23 68.25 305.95 68.6 303.14 69.82 301.29 71.36" style="fill:#d9dadb"></polygon><polygon points="277.59 76.17 279.38 75.87 285.75 72.27 288.84 69.94 292.11 68.37 294.32 66.97 294.55 66.16 301.35 63.21 299.47 63.51 292.25 65.73 288.49 67.31 286.08 67.81 285.54 68.82 281.58 70.68 282.71 71.15 282.8 71.69 283.54 71.88 280.8 73.55 277.59 76.17" style="fill:#d9dadb"></polygon><path d="M287,88.41c.66-.81,1.35-1.62,2.07-2.42l-4,1-2.41,2.25Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M274,96.17l6.71-2.44c.39-.56.79-1.13,1.2-1.69l-4.42,1.74L274,96.17Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="345.76 55.89 346.84 57 345.07 58.42 352.56 55.59 351.36 54.6 354.69 52.91 345.76 55.89" style="fill:#d9dadb"></polygon><polygon points="341.44 42.44 333.93 45.91 333.55 46.63 344.53 42.74 343.16 42.84 343.84 41.91 341.44 42.44" style="fill:#d9dadb"></polygon><polygon points="396.15 27.05 398.88 25.43 396.76 25.09 396.02 24.61 392.92 25.51 386.93 26.87 390.69 25.61 390.97 25.31 387.02 26.06 380.17 28.37 375.82 29.42 380.01 27.93 383.52 26.51 379.66 27.39 372.93 29.48 366.48 30.96 360.34 33.57 358.59 34.67 358.89 35.05 352.14 37.22 346.94 39.47 348.77 39.37 352.11 38.67 347.79 40.33 351.39 39.75 357.28 37.77 358.02 37.21 360.26 36.38 366.37 35.29 376.74 33.28 382.45 31.63 381.49 31.49 373.31 32.91 373.27 32.34 381.33 31.03 384.66 30.12 384.19 29.58 386.42 29.32 391.18 28.11 390 27.83 391.74 27.21 396.15 27.05" style="fill:#d9dadb"></polygon><polygon points="400.02 26.16 406.67 25.14 408.5 24.02 415.71 23.02 420.37 21.58 416.41 21.73 414.51 21.32 415.19 21.01 413.58 20.95 413.42 20.53 408.35 21.44 403.17 22.05 398.93 23.51 403.13 23.49 402.53 23.82 403.46 24.04 403.46 24.04 400.02 26.16" style="fill:#d9dadb"></polygon><polygon points="355.82 41.58 365.39 39.69 367.32 38.67 371.19 39.08 373.12 38.44 373.27 37.56 376.34 36.75 370.31 37.18 368.73 36.94 373.44 35.66 371.56 35.6 367.16 36.7 364.56 37.73 354.97 40.38 355.71 40.64 359.66 39.87 355.65 41.04 355.82 41.58" style="fill:#d9dadb"></polygon><path d="M448.94,86.36l6.51-2.11-1.06-1.72L451.62,82l-3.05,1.25-.17-1.32-3.12.59-3.11.78,4-1.92,2.66-1.52-1.91-.16-2,.83-4.5.14.69-.71,3-.6-1.8-1.41,3.42-.75,1.5,1.49,5.52-.25V77l-2.28-.46,2.48-.75-.65-.71-.66-.68,1.82-1.1-1-1.06c-.8-.39-1.84-1-2.62-1.39l-1.92.38,0-.49-2-1.11-1.36.32V68.89l-2.74.41-1.09.59c.41.41.85.8,1.32,1.2l-.38,1-2.26,1,.27-.9-1.94.47,1.56-1-.9-1-5.93,2.16,2.09-2.17,1.78-1.16-.38-.9-4,1.86-.73-.82.63-.88-4.2.66,6.54-1.93c-1.16-.36-2.69-.92-3.84-1.32l-2.64.85-2.8,1.61-.6-1.2,4.09-1.46-5.78.77.92-1.08-.94-.28-7.35-.64-2.75.73.57.88.49.74-7.58.36.45-2.07-2.79.72-2.14-2-2.79.22L395.15,67l-2.31.47-.63.6,2,1.27-1.8.82-4.19.74,1.45-3-1.51-.34-2.34,1.28L385,70.41l-2.14-.61-3.58,1.67,1.37.78-1.88.91,1.84.13-1.85.95,3.27-.3-.36,2.85-3,2.91-3,.7-5.63,4.14-7.65,2.85-2.06,1.8L355,90.58l-1.81,1.8-2.85.27L348.76,94l-2.39.51-1-.33L343,95.85l.94.82,5.42-1.11-4.49,2.71,1.3,1.06-4.1,2.36-3.43,2.25-1.61-.16,2.45-3.43L339,99l-1.83.2L333.31,104l1.3,2.27-8.31,3.5.21-2.3L317,110.26l-.52,1.88-4.49-.07-6.87,4.38-3.9,3.37,2.23.48-5.57,2-5.56,3.83,1.79,1.18-6.87,3.4-8.18,8.16.63,2-7.67,5.83.9,3.1,4-.3-6.37,5.69,3.3,2.66L287.13,150l5.4-6,7.24-.7,2.75-2.51.36,1.95,2.71-2,2.13-3.2,1.17,1.43,2.62-3.53,6.91-.91,0,2.09,5.93-3.26-2.48,3.44,8.86-.58,10.12-4.12,2.8.3,3.58-1.83-.32,1.59,3.64,1.29,10.75.36,4.77-1.72,2.7.33,6.43-1.6L371,127l-7.13.67-1.19-1.57,5-.81,7.21-2.42,1-2.82,1.89,1,.52,1.65-1.66,2.57,1.68,4.24,7.4-6.86c-.67-.24-1.32-.49-2-.74l2.54-1.07-.79-3.45-1.71-.59,3.53-3.69,6.25-1.16,1.07,2.75,4.46.18-.9-1.78,1.66-2.42,5.55.81,2.57-.73.73-3.42-2.37-.11.26-1.29,3.78-2.35,1.16,2.52,1.56.12,3.19-2.89L414,101.87l2.55-2.82,2.85.11,2,2.21,1.69-.74,3.11-3.84-.55-1.69-3.43.79,7.83-4,3.65,0,2.11-2,2.06.21,1.95-.46-1.6-.93-1.54-.12,1-.87,2.07-.43,2.42,1.09,2.7-.77-2.24-1,2.31-.88Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="423.68 59.18 427.26 57.85 426.44 57.33 424.62 58.23 423.68 59.18" style="fill:#d9dadb"></polygon><polygon points="423.04 56.54 424.94 55.35 422.19 55.95 421.37 56.87 423.04 56.54" style="fill:#d9dadb"></polygon><polygon points="380.79 54.84 382.72 53.55 380.09 53.61 378.21 54.7 380.79 54.84" style="fill:#d9dadb"></polygon><polygon points="317.45 93.89 321.17 88.84 314.46 91.25 313.6 93.32 317.45 93.89" style="fill:#d9dadb"></polygon><path d="M437.66,61.3l.13-.7,1-.41c.07-.3.15-.6.24-.89l1.75-.62.25-1.52-2.35-.28.52,0,.09-.15a14.72,14.72,0,0,1,.89-1.23l-2.8-.43-2.29.26c.17-.21.36-.42.55-.62l2.08-.5.41-.74L437,53.31l-2.39.3-.15-.38,2-.23.6-.61-1.37-.18,1.4-.3-1.35-.77-2.05.39-.94.73-1.6.28L430.5,52l-2.78.46-2.93,1.09L426,54l-1.71,0c-.44.43-.87.86-1.27,1.3l1.23.11-1.67.38-.39,1.49-1.65-.21L419.9,56l-2.87.66,3.05-1.23,1.54-1.11-2.56.16-1.59.49-5.36.9L410.54,57l-1.86-.21c.32-.37.66-.73,1-1.09l1.86-.34-.81-.68-3.21-.2-1.3.24-2.33,1.16-3.62.8-1.79,1-1-.71,1.25-.66,3.47-.6c.4-.39.82-.77,1.25-1.15l-4.27.77-1.79.1.79-.69-1.45-.87-3.31,1c-.57.48-1.12,1-1.65,1.45L389,57.5l-.28.87,2.8-.77-1.86,1.28-1.23.43-.6.58,1.7.14-1,.66-2.72.43.67,1,2.13.62,3.05-.9L390,61.59l1-.6,2.05-.16,2.35-.6-.39.87,1.64.13,3.29-.67c-.34.52-.64,1-.92,1.55l6.1,0L407,61c1.77.36,1.77.36,4.06-.32l.16.91,2.37-.48L412,62.23l.33.84,1.31-.42,3.09.43,2.16,0,6.3,1-.72-1.44,2.66-.07,1,1.43,4.21.57,1-.17,1.15-1,2.22-.59c0-.14,0-.29,0-.43l.83-.31-3-.47.74-.52Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M426.64,51.53l6.25-.68,1.23-.54-1.48-.14-.12-.43-3.39-.61-2.88.65.8-.68H425l-4,.72-1,1.08-2.65.74,1-1.05-1.07-.21L414,50.8l-1.11.78-.61-.31-2.42.57c-.44.33-.87.65-1.28,1l2.63-.06-3.32.61c-.23.18-.45.37-.67.56l4.75-.29L413.51,55l2.87-.37c.35-.34.73-.69,1.11-1l1.58.1,3.27-.58-.32-.46,2.57-.2Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M396.37,53.22q.86-.64,1.77-1.29l2.34-.54,3.57-1.31.24-.77c-5.71,1-5.71,1-7.94,2.13l-.42.6-5.44,1h-1.1l-2.69.18L382,54.48l1.19.25-2.34.61-.4.76.36.72-2,.17a47.76,47.76,0,0,0-3.9,3.69l2-.11-2.79,1c-.72.81-1.38,1.62-2,2.45l2.08,0,2.06-1,2.45.32,2.59-1.75,1.8-.3-.63-1.1,2.6-1.18-1.36-1.38,2.37-1.05-.23-.84,4.27-1.31,3.11-.64-.29.56Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="424.64 23.16 420.86 23.85 421.47 24.19 418.75 24.25 420.02 24.89 419.52 25.89 416 25.86 416.92 26.38 416.92 26.38 416.95 27.11 421.17 26.88 420.63 26.63 423.51 25.79 423.5 24.7 424.98 23.6 424.64 23.16" style="fill:#d9dadb"></polygon><path d="M420.25,40.12l1.85-.64,2.06,0,2.43-.87-2.22.17,1.13-.62L425,37.8l-2.43.25,1.54-.67L423,37.21l-4,.82-1.91.51.4.5-3.68.81.54-1-2.4.46c-1.06.36-2.12.73-3.15,1.11l.22.74-1.61,1c-1.34.53-2.65,1.07-3.92,1.63l4.33.3,3.2-.77-1.76-.19,3.66-.6,4.43-.15,2-.31-.81-.74-3.38.32-.62-.22-2.88.36,4-1.26Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M376.4,56.37l1.31-1.62,3.81-1.29.81-1.26-7.41.64-6.12,1.45-1.5,1,5.37-1-4.16,2Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M410.69,45.08l.91-.42-5.66.48-4.41.86-1.83.88-.46.95-2.18-.16-2.74.35-2.4,1.69,2.95-.38,2.36.08,5.58-.42,2.26-.76-1.53-.14,1.95-.42,1-.53-2.93.14,3-.64.72-.41-3.51.35-.83-.12,4-.67Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M385.3,52.61l4.16-.17,2.29-.73,1.24-.8-1.92-.36-4.23,1.14Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M422.33,44.61l-1.16.77-2.13.86-3.48.32L414,47.4l1.56.09,3.61-.31,3-.29.54-.28,2.33-.28,1.2-.59,2.58-.25c.79-.38,1.6-.74,2.42-1.11l-2.82-.07L426.8,45l-3,.18,1.19-.83Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="383.77 32.84 384.83 31.89 377.78 33.46 381.16 33.65 383.77 32.84" style="fill:#d9dadb"></polygon><path d="M423.91,41.72c.54,0,1.07,0,1.61,0l1.61.46,2.95-1.48-1.29-.44a15.58,15.58,0,0,0-2.47.3A19.45,19.45,0,0,0,423.91,41.72Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="403.09 38.03 408.32 36.5 408.86 35.82 400.85 36.65 400.34 37.97 403.09 38.03" style="fill:#d9dadb"></polygon><path d="M425.49,48.07h2.93l2-.65-3.11-.2-.87.48Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="395.54 39.12 398.34 37.59 397.24 37 392.87 39 395.54 39.12" style="fill:#d9dadb"></polygon><polygon points="388.24 41.84 390.75 41.78 392.48 41.16 392.9 40.43 389.58 40.79 389.12 41.43 388.24 41.84" style="fill:#d9dadb"></polygon><path d="M420.33,44.27l1.18-.52-5.54.34-2.84,1Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="420.92 30.16 422.65 28.82 421.29 28.8 416.5 30.54 420.92 30.16" style="fill:#d9dadb"></polygon><polygon points="420 28.29 422.17 28.11 422.35 27.82 419.02 27.71 419.02 27.71 420 28.29" style="fill:#d9dadb"></polygon><polygon points="388.13 33.19 388.19 33.68 390.12 33.43 391.62 33.03 390.23 32.74 388.13 33.19 388.13 33.19" style="fill:#d9dadb"></polygon><path d="M535.09,23.45l-6.94-.29-3.38-.09-.89,0h-.23c4.51.12,9.11.26,13,.43Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M499.54,23.34l1.44-.11.44.08,2.41,0,3.23-.19h4.7l5.79-.09,2.48,0h3.62l-10-.23c-9.51,0-9.51,0-28.38.69-9.47.51-9.47.51-28.38,2.36l-2.62.31a21.52,21.52,0,0,1,2.41-.17l4-.44,3.25-.28,5.81-.58,2.89-.21c1.29-.1,2.58-.21,3.87-.3l6.36-.36,2.52-.17,1.6-.06.56-.06,3.34-.11.83.05,3.13-.05,1.13-.12-2.18,0,.32-.1,3.83-.06-.3.09Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M391.34,37.9,391,38l-5.78,1.5h0l-3.68,1,.55-.07-.19,0,10.52-2.81Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M394.71,37l-2.25.6,6.1-1.51c-3.1.86-7.27,1.94-10.35,2.89l-2,.52.18-.14-5.72,1.66-2.12.38,3.42-1c-11.47,3.09-14.32,4-24.3,7.29l-14.26,5.1-4.76,1.82,1.36-.59c-10.84,3.95-15.29,5.82-26.74,10.85-29.07,13.86-33.53,16-55.6,29.13-14.44,9.44-33.41,22.49-47.27,32.76l.07-.06-5.79,4.63,2-1.27-3.56,3.22L196.27,139l-2,2-8.75,7.63L176,159l-8.34,8.38-2.68,2,7.36-7.72-9.78,9,0-.64-4.28,4.11.83.05-1.7,2.74,3.54-2.75-1.76,3.72-.6.81,3.74-1.82a56.5,56.5,0,0,0-3,7.83l2.62,0,2.89-3,4.62-2.46,1,1-1.42,2.35-7.22,6.32-3.58,4.93,3,2.24-2.13,2.36-5.52,2.11-5.4,6.34,4.6-1.1,3-2.21-.07,3.82,4-.26,3.26-5.7-1.88-.25,4.74-9.19,2.71-2.65,1-2.23,4.31-3.28,1.43-4.94,3.21.1-1.33,2.44,1.23.27,3.87-3.17.88-3.55-.88-1.65-6.24.29-4.22,1.63,8.29-6,5,.35,3.5-1.26,1.73,5-1.77,8.49,5.18-1.29,3.5-2.11,3,1.43,4.4-1.29,1.3.26,5.25-4.75,1.69-3.23-.74-1.13,3-2.2-.19-1.9-4.7-.27,5.19-3.81,4.71,1.39,2.43-2.88-.66-2.75,2-1,.14-2.29,3.92-3.34,2.07-4.09,2.26-.83,1.14-1.83,3-1.36,6.6-5.79.94-2.19,3.53-1.81.57-1.57,2.59-1.19,6-4.8.9-1.24-9.34,4.67-.11-.85-4.8.3,2-2.31,5.33-4.66c.05-.27.1-.54.16-.82l11.51-5.75,2.17-2.19.62-2.29,3.56-1.78,7.39-6.26-1.74-.38c.28-.62.57-1.24.88-1.85l3.57-1.61.92-2.22L278.54,96l-6.22,3.57-1.79.32-3.6,2.21-3.39,1.38-3,2.19-7.89,2.53-10.88,8.33-10.51,5.55-3.71-.69-6.71,5.22-4.28,2.61L209.23,135l-.12-.51L204.2,138l2.55-2.5-1.36.38,9-7.94,14.09-9.74,3.17-1.53,2.83-2,4.47-4.68-1.11.19,3.47-2.11,7.82-6,7.77-5,7.14-5,1.68-1.73,3.2-1.52,8.35-4.45L279,83.17l-.89.29,4.8-2.57,8.42-3.72,4.85-1.63.64.15,2.27-1.06.23.38,2.65-.86-2.2,1.55.61.24,5.73-3.19,3.27-1.33-5.72,3.39,2.83-.68-2.76,1.46-.16,1.09,4.82-1.17,4.6-3,5.2-2.89-1.12,2-5.19,2.79,3.47-.59,3.7-1.32L317.32,74l-2.32,1-1.8,1.59,2.55-.85-2.2,1.55,2.31.27-.27.53,2.82-.7,5.61-3,2.13.5,2.4-1.14,1.32,0L334.08,71l3.67-3.37L333.19,69l-2.46.31-3.93,1-2.6-.21,6.32-2.64,3.68-.79,5.27-2.34-5,1,2-1c2-.54,4.06-1.05,6.1-1.56l4.64-2.38,3.4-.59,4.57-1.67,8.18-2,3.3-1.5-2.18-.72L359.57,55,355,56l-6.66,2.76-3.31.73-.67.68-3.35.68v-1l-2.17.26,3.41-1.33L346.35,57l-4.44,1.38c2.76-1.47,6.39-3.5,9.19-4.88l5-1.75,1.48-.88,7.65-2.46,3.35-1.65-2.15.4-2.68,1.11-2,.22,2-.79-.74-.09,5-1.24,3.35-1.66,9.7-3.16,1.51-.28-1.9.78,2.94-.7,5.45-1.7,7.87-2,3.91-1,3.64-.7,3.63-1-.47-.09,2.88-.72,3.14-.27,2.2-.54-1.86,0,4.28-.83,2.2-.24,4.66-.72-1.88.11.31-.28,2.82-.62,2.2-.37-2.1.6,1.09-.1,2.94-.63,1.44-.44-1.25,0,1.42-.32,2.56-.4-1.68.39.88,0,2.19-.47,2.74-.4,2.5-.44.75-.17-2,.27h0c-4.52.66-9,1.35-12.9,2C406.57,34.16,405.76,34.31,394.71,37Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M345.09,52.18l2.08-.84-5.53,2h0l-1.66.71,3.4-1.23Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M448.85,27l-8,1.09-1.95.28,1.12-.11c3-.44,6-.87,8.84-1.26Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M456.63,26.05a21.52,21.52,0,0,0-2.41.17l-5.33.73,2.67-.3Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="198.55 114.75 197.65 115.47 198.47 114.82 198.55 114.75" style="fill:#d9dadb"></polygon><polygon points="192.59 119.51 192.75 119.39 192.76 119.39 197.65 115.47 191.91 120.05 192.59 119.51" style="fill:#d9dadb"></polygon><polygon points="168.61 140.22 172.05 137.09 172.05 137.09 168.61 140.22" style="fill:#d9dadb"></polygon><polygon points="176 133.97 179.39 130.66 183.77 126.9 184.53 126.18 183.99 126.62 174.59 134.79 172.05 137.09 171.46 138.18 176 133.97" style="fill:#d9dadb"></polygon><path d="M110.68,232.47l1.1-1.1.1.52,2.2-2.94.61-.46,1.86-2.47.89-.91,4.55-6.05,7-9.34,3.85-4.16-1.32,1.86-3.69,4.78-3.54,4.38,1-.53,2.71-3.15,3.45-4.58,1.43-1.08-3.32,4.25,2.83-2.5,3.16-3.75-.54,2.88,2.43-1.81.75-2.36,2.51-2.11-.32,4,3.06-4.15,4.07-3.75,4.63-1.72,3.18-2.52.06.77-1.66,2.27,1.64.15,3.06-3,3.57-4.92,7.22-6.32,1.42-2.35-1-1-4.62,2.46-2.89,3-2.62,0a56.5,56.5,0,0,1,3-7.83l-3.74,1.82L156.9,181,154.09,183v-2l-1.68,1.23-.26-1.34,4.94-5.35C138.93,194.54,133.9,201.16,110.68,232.47Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M167.18,165.64l2.37-2.71,2.79-2.28,3.71-3.46,3.19-3.41L177.65,155,174,158.35l-6.16,6-.58.59c-3.1,3.2-5.85,6.07-8.37,8.7l3.75-3.6Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M108.72,235.08l-.21.31,2.17-2.92-.14.14Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M158.33,174.13l-1.25,1.36,1.78-1.87Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="423.16 223.71 426.34 229.11 430.1 223.64 428.72 220.72 426.5 223.42 423.16 223.71" style="fill:#d9dadb"></polygon><polygon points="417.77 172.55 412.46 173.87 415.13 176.03 417.77 172.55" style="fill:#d9dadb"></polygon><polygon points="485.11 129.07 481.03 130.9 484.11 132.64 485.11 129.07" style="fill:#d9dadb"></polygon><path d="M473.39,222,471.72,230l4.45-4.18.18-2.16h0l2.38-3.26Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="563.16 135.53 564.82 132.67 559.85 132.68 559.52 135.05 563.16 135.53" style="fill:#d9dadb"></polygon><polygon points="568.42 87.79 568.42 87.79 568.42 87.79 568.42 87.79" style="fill:#d9dadb"></polygon><path d="M583.16,134.81l1.18-.94,5.39-1.23-5.51-1.74-8.31-6.19.57-3-3.66-1.39.22-1.26,2.66-.13-.44-1.95-2.13-.8,1.81-1.21-2.77-2.69.9-1.29,1.94.42.17-1.2-1.81-.73.76-2.14,4-4,0-.8,2.23-2.84-1.22-1.6-2.32-1.11-2.12.76.84,2.16-3.57,3.18-2.73.33.14,1.56-2.51,2.45,1.14,1.66-1.28,3.21,2.78.54.36,2.73-3.1,2.61,2.06.78,2.52,7.36-1.81,2.09.74,1.76,6.32,1,1-.42,2.27,1.7-.56,2.11Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="565.37 62.16 569.05 61.97 566.66 60.6 567.39 59.05 564.39 57.99 558.38 57.9 559.44 58.69 559.6 59.78 562.64 60.68 562.51 61.2 565.37 62.16" style="fill:#d9dadb"></polygon><polygon points="567.86 64.09 570.59 64.18 570.13 62.86 568.73 63.13 567.86 64.09" style="fill:#d9dadb"></polygon><polygon points="569.75 60.99 570.36 61.56 572.85 63.43 573.63 63.03 576.82 63.62 578.43 62.62 580.25 62.63 580.94 61.04 577.75 60.41 573.16 58.62 571.59 59.28 572.28 60.31 570.28 59.78 569.75 60.99" style="fill:#d9dadb"></polygon><path d="M599.67,75.15l.35-.48-1.5-1.32,1-1.2-2-2.13-5.07-.23,1.44,1-3.63-.92-1.38.12L594,72.24l-.34.51Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="588.49 58.18 591.7 58.07 589.42 57.2 586.77 56.91 588.49 58.18" style="fill:#d9dadb"></polygon><polygon points="598.8 39.36 604.4 40.16 607.12 39.62 606.58 38.72 601.86 36.83 602.67 36.56 600.51 35.64 594.52 34.3 593.81 35.15 595 36 593.69 36.66 598.5 37.35 595.7 38.34 598.8 39.36" style="fill:#d9dadb"></polygon><polygon points="611.85 38.83 615 38.64 614.34 37.04 612.44 36.66 609.41 36.99 610.48 37.96 609.48 38.62 611.85 38.83" style="fill:#d9dadb"></polygon><polygon points="594.68 31.74 592.76 31.15 590.65 30.89 591.64 31.87 593 32.35 591.87 32.43 594.07 33.34 592.85 33.58 595.89 33.95 596.21 33.33 595.88 32.98 596.37 32.67 594.68 31.74" style="fill:#d9dadb"></polygon><polygon points="553.67 14.85 549.98 14.49 550.84 14.91 555.49 15.48 560.41 15.94 561 15.79 557.76 15.4 553.67 14.85 553.67 14.85" style="fill:#d9dadb"></polygon><polygon points="749.45 79.98 745.84 78.05 740.1 74.9 743.57 76.98 748.6 79.71 749.29 80.24 759.55 86.26 762.75 88.12 765.23 89.73 775.42 96.45 761.88 87.5 755.07 83.34 749.45 79.98" style="fill:#d9dadb"></polygon><polygon points="878.82 191.73 878.34 191.13 878.79 191.69 878.82 191.73" style="fill:#d9dadb"></polygon><polygon points="888.09 203.48 887.4 202.6 887.58 202.82 888.09 203.48" style="fill:#d9dadb"></polygon><polygon points="880.33 193.59 885.48 200.11 887.4 202.6 886.62 201.59 885.11 199.63 885.26 199.83 880.51 193.81 880.33 193.59" style="fill:#d9dadb"></polygon><polygon points="477.22 141.09 477.22 141.08 477.22 141.08 477.22 141.09" style="fill:#d9dadb"></polygon><path d="M515.23,154l2.93-3,2.3.47-.62-3.18h0l-4.08-.77,4-2-6.13-3.3-2.62-.75-1.71-.51-1.14,1.59-1.58-.77-3.89,5.92-.57-2.71.77-2.88-4.63,2.35-1.33,4.12-1-1.62L493,145.78l-2.59,1.08,2.36,1.1-.85,2.6-4.37-2.87-3.28,1.69.69,2.37-2,.59-2-2.22-1.51,1.56-2.69-.12,2.65,3-4,2.24-.28-3.45-1.73.28-.78-1.17-8.09,7.07,6.44-2.27,1.73,1.51-4.5,2,1.55,1.8-3.57-.09-4.61,2.36.71,1.73L457.92,168l-3.48,5.55-.12,2.26-8.16,3.75,3.72,2.67-4,1.68-2.08-1.4-1.72,1.19L440,180.92l-2.14,2.49.43,4.23-2.2,1.14-1.23-3.18-3.36.41-4,5.17-4.61-1.35,1,2.71-2.36.69-.29,1.76,7,.28,1.93,3-10.64-.18,2,2.16L419.08,202l3,1.82,4.64-1.43-4.07,4.51-5.5-.69-1.05,6.16,4.92,2.94-1.32,1.81,6.27-.84,1,1.2,6.16-4.27,1.75-.17.32-2.81,3.07,1.2,2.12-4.07,2.48,5.82,0,.57,2.5-1.29.34-4.09,4-1.2-.24-6.32,2.26.13,1.5-2.9-2.32-3.37,1.05-3,.3-5.94,4.83-4.8,4.24,1.28,1.12-3L461,177.18l4-3.25c.33-1.64.67-3.27,1-4.89l3.37-.7.08-1.29,3.42-2.11.51-2.87,4-2.95,2.7.74,1-3.18,4.51,1.51,1.53-.66-.31-3.78,2.21-.68,2.75-.88,1,1.28,1,1.27,3,.48,1.71-.91,4.06,2.26,2.7-2.44-1.28-2.39,1.69-2.81,4.73-1.34,3.5,2.33-.79,1.89Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="423.25 219.66 423.25 219.66 423.25 219.66 423.25 219.66" style="fill:#d9dadb"></polygon><polygon points="421.86 214.28 424.25 212.01 425.11 208.76 415.89 211.37 416.56 213.82 411.29 215.45 409.34 223.05 411.42 225.38 410.92 230.03 417.41 231.01 415.31 228.04 419.19 222.52 421.67 218.71 423.25 219.66 425.68 216.45 421.86 214.28" style="fill:#d9dadb"></polygon><path d="M499.17,170l-1.22-2.5h0l1.2-1.69-1.68-2.05.87-1.44-1.72-.6.94-2.1-3.07-2-2.42,0-1.82-1.68-1.13-2.81h0l-2.21.68.31,3.78-1.53.66-4.51-1.51-1,3.18-2.7-.74-4,2.95-.51,2.87-3.42,2.11-.08,1.29-3.37.7c-.33,1.62-.67,3.25-1,4.89l-4,3.25,1.41,2.12-1.12,3L457.07,181l-4.83,4.8-.3,5.94-1.05,3,2.32,3.37-1.49,2.9h0l-2.26-.13.24,6.32-4,1.2-.34,4.09-2.5,1.29-.56,7.54L445,226l2.14,2.14-.66,2.17-1.89.09,2.13,4.69-1.52,2,6,.95,3.36-5.52,5.49.8,3.36-6.92,2-2.52L464,221.44l2-.22.38-1.91-1.58-1.2-.18-2.54,5.75.39,4-2.41-6.74-1.71,4.12-3.16,1.69,2.4,4.24-1.23-4.25-6-3.27-.8.27-6.28,1.92-.31V191.2l4-2,5.13-4.59,4.88-1.42,3.7-4-2-2.33,1.88-1.6-.85-1.43,2.75-1.05-.46-2.26,1.83-.71Zm-48.54,47.18-4.27.26,2.9-4.12,2.1-1,3.62-.47-.42,2.91Zm8.07,1.1-4.58,4.94.41-5,4.37-3.92Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M526.86,186.09l-4.22-2.24,2-1.73-.33-1.63L521,179l.64-2.18-2.52-2.72,1.76-2.67-5.3-7.41,2.52-2.11.37-2-2.45-2.35-2.63-.35.25-2-.92-1,1.45-1.39-1-1.08.79-1.89-3.5-2.33-4.73,1.34-1.69,2.81,1.28,2.39-2.7,2.44-4.06-2.26-1.71.91-3-.47-1-1.28-1-1.28-2.75.88h0l1.13,2.81,1.82,1.68,2.42,0,3.07,2-.94,2.1,1.72.6-.87,1.44,1.68,2.05-1.2,1.69,1.22,2.5h.47l4.15,2.52.6,3.41-3.28,1-3.45,4.85-1.37,1.35-1.81-.79-1.54,3-4.06-.18,1.38,3-2.59,1.5,2.13,7.8L488.26,204l4.09,2.42,2.12-1.29L496,206.7l-1.53,2.74,7.22-2.28,2.23-.06,2.5-1.8,1.11.92,2.62-2.72.64,1.3,4.77-1.28h0l.64.32,11.14-12.68h0l1.27-2.95Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M307.08,332.41l5.75-3.17-1-4.64-7.51-.24.9-4.76-4.53,2.21L298,331.47l-7.18,9.31-1.3.09-2.2,4.6,2.38,2.38-3,9c2.78.63,5.59,1.24,8.43,1.85l4.63-6.76L298.62,350l3-1-1.7-4.82,3.88-1.9Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M352.79,339l7-1,8.17-4,1-2.63-4.87-1.9-3.12.87-5.08-5.74-3.13,1.72-4.94-1.48L342.48,318l-7.1-.65-2.56-2.1-5.24.15-6.49-3.58-6.84.13-3.53-3.11-8.82,3.6-.5.3-.67,9.11,4.53-2.21-.9,4.76,7.51.24,1,4.64-5.75,3.18-3.3,9.87-3.88,1.9,1.7,4.82-3,1,1.21,1.93-4.63,6.76,3-1,2.36,4.89,0,5.94,3.84,1,.1,0,7-3.6,11.38.28,2.4,2,6.19-6.49,4.42.62,1.48-4.33,6.2-3.12-2-3.57,1.93-3.9Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M399.34,274.22l-2.68,2.66,0,.15,1.55,4.06c4.59-3,4.88-3.1,5-3.18h0a20.85,20.85,0,0,0-2.29-2.18C400.46,275.22,399.91,274.71,399.34,274.22Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M410.23,292.27,408,294.08l-4.71-.21-3.08-.16-.07.2-.51,2.18-5.08,2.73-3.85,6.26,6.82-2.66.6,3.4,4.72,1.26,1.79-3.25,2.56-.53,2.4,4.9,3.16-4.45,3.25,1.77,4.5-4.47-6.23-2,1.2-4.55Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M399.61,296.09l.51-2.18.07-.2,3.08.16,2.84-6.27,4.81-3,.79-2.22q-3.54-.3-7-.63l-3.49-2.33a18.27,18.27,0,0,1-2.91,1.7l-.92-2-8.13-3.93-1.74-5q-2.28-.27-4.53-.57v-4.93l-3.37,1.16-2.15,4.92-9,1.3,1.44,2.53-2.91.62-5.42-3.42-3.31-.76.26,7.52-7.11-.12-1.6-3.18L341,276.38l-.12,5.71,6.06,1.48-.81,2.11,4,.43,1.78,1.88-2.42,3.34,1.64,6.41-1.44,11.08L342.48,318l5.33,6.89,4.94,1.48,3.13-1.72,5.08,5.74,3.12-.87,4.87,1.9.63-1.64v0l-1-2.5,2.23-4,5.51-2.49L388,326.81l9.36-4.83,1.34-.7-4.73-4h0l2.73-2.48-2.3-1.64,3.38-3.25-1.5-2.93,1.82-1.19-.6-3.4-6.82,2.66,3.85-6.26Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M401,275.72l.07-.17L402.9,271l-3.18-1.21,1.42-2.12-3.92-2.77-7,1.38-1.06-3.81L383,264.63v4.93q2.25.3,4.53.57l1.74,5,8.13,3.93-.63-2.07,0-.15,2.68-2.66C399.9,274.71,400.46,275.22,401,275.72Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M413,248.68l-2.45,0-7.08,3.19-.57,4.18-3.07,1.06-.19-5.27L394.27,258l-1,4-3.53.25-.57.21,1.06,3.81,7-1.38,3.92,2.77,2.73-2.72-.45-3,4.1-.29,1.71-2.24-.79-2.53,3.05-2.77C412,252.3,412.48,250.49,413,248.68Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="449.18 281.24 447.32 279.39 448.64 277.19 447.72 275.63 447.73 275.63 447.35 274.98 443.17 276.35 437.61 272.83 435.8 275.97 424.61 279.08 423.81 283.8 418.96 281.73 413.38 283.71 403.55 282.54 402.36 287.09 408.58 289.07 411.76 290.13 413.2 288.42 418.5 287.7 419.25 290.6 428.88 291.81 431.19 293.59 433.88 291.11 436.86 292.23 438.44 289.61 443.06 289.64 445.44 284.69 448.32 285.05 448.32 285.05 449.18 281.24" style="fill:#d9dadb"></polygon><path d="M457.89,353.47l2.89.6.7,2.49,2.5,0,.7-2.28L461.62,350l-6.09-3.74-6.84-2.36.09-1.66,2-1.14L450.1,340l-9-1.67-4.09-5-1.72-7-7.05-5.68.35-4.89,1.22-1.45-.86-3.37,6.56-2.39.75.52,1.95-5.61-7-.9-.76-2.9-5.3.73-1.43,1.71-3.18-1.07-4.5,4.47-3.25-1.77-3.16,4.45-2.4-4.9-2.56.53-1.79,3.25-4.72-1.26L396.28,307l1.5,2.93-3.38,3.25,2.3,1.64L394,317.31h0l4.73,4,7.41-3.89,7.59,3.91,1.07,8.76,3.75,3.13,10.78,11.6,3.61.57,2.59,3.12,4.58.8,1.57,3.27,4,2.59,2.73,8.46-4.13,5.54,1.74,2.58,3.16-1.49,2.7-6.14,3.79-.44-.3-3.47L452,358.09l0-3.24,3.09-3.8Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="441.8 261.81 440.84 260.75 437.36 261.96 434.87 259.7 430.36 260.78 428.24 264.19 425.24 263.72 421.29 265.62 423.92 271.17 426.99 271.02 426.99 271.02 426.99 271.02 431.73 277.11 435.8 275.97 437.61 272.83 443.17 276.35 447.35 274.98 447.73 275.62 452.88 276 454.15 272.91 459.12 271 457.79 267.62 452.94 267.99 452.86 264.97 449.07 264.49 447.41 267.62 444.59 264.64 446.12 262.1 441.8 261.81" style="fill:#d9dadb"></polygon><path d="M446.82,257.06l4-6.31-2.59-2.08L447,246.41l1.21-2.1L446,242.66l-1.74,2-2.47-.5-2.66,2.67-6.46.69L429.31,243l-6.5-1-.22,2.29,1.83,4.27-4.25-1.06-3.47,4.11-2.61-3-1.1,0c-.51,1.81-1,3.62-1.5,5.44l-3.05,2.77.79,2.53-1.71,2.24-4.1.29.45,3h0l-2.73,2.72-1.42,2.12L402.9,271l-1.81,4.56-.07.17a13.9,13.9,0,0,1,2.28,2.19c-.21.11-.67.43-2.13,1.48l3.49,2.33q3.51.33,7,.63l-.79,2.22-4.81,3-2.84,6.27,4.71.21,2.25-1.81,5.22,2.25,9.83,1.17,5.58-2h0l4.85,2.08.79-4.73,7.13-2-4.74-6.1h0l-3.07.15-2.63-5.54,3.94-1.91h0l3,.47,2.12-3.41,4.5-1.08,2.5,2.27,1.62-5.41-1.47-2.23,1.49-6.19Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M500.21,276.81l.76-3.18-3.72-4.37.57-5-3-.85.89-2.81,3.58-1.19,0-3.23-1.8-2.8c0-1.27,0-2.54,0-3.81L495,247l-10.3.64-7-2.2-.16-.06-5,.26-.69-3.54-9.62,2.38-2.19,2L452.48,248l-1.63,2.8-4,6.31,4.08,3.06-1.49,6.19,1.47,2.23L449.26,274l3.48-1.22.95,1.06,4.32.29-1.53,2.54,2.83,3,1.66-3.13,3.79.48.08,3,4.85-.37L471,283l1.3,1.3,2.69-.93,2.32,1.15,2.92-1.16,2.64,1.39,2-1.34,3.62.69.53.56,2.64,1,1.92.71-.19-4.2,4.29-5.26Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M489,284.64l-.53-.56-3.62-.69-2,1.34-2.64-1.39-2.92,1.16L475,283.35l-2.69.93L471,283l-5,1.92L464.78,288l-5.16-.38h0l.92,1.56-1.32,2.2,1.86,1.85-.11.5,4.78,2.37,4.4-.67,1.19-2.11,4.48-1.05,2.8.57,1.34-3.05h4l1.47,3,4-1.13h0l2.21-6.06Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="515.31 327.55 510.43 329.82 507.88 327.15 505.38 327.68 504.78 337.3 507.73 338.1 512.81 334.04 521.48 334.14 520.36 332.01 516.48 330.07 515.31 327.55" style="fill:#d9dadb"></polygon><polygon points="504.78 337.3 505.38 327.68 501.46 328.49 501.01 331.38 495.72 331.8 493.06 330.19 488.78 332.19 482.77 332.13 480.07 334.45 475.66 334.35 473.93 337.23 469.06 337.81 468.52 341.79 463.19 347.85 468.47 354.58 476.12 354.76 477.86 356.32 468.97 357.86 475.46 364.81 475.71 372.65 480 368.47 485.57 370.91 482.32 361.61 485.78 361.77 483.78 356.6 489.13 356.16 481.63 353.21 482.29 350.07 486.5 350.2 479.57 344.02 479.7 340.2 482.32 338.06 488.16 342.53 487.58 336.93 496.27 335.44 504.78 337.3" style="fill:#d9dadb"></polygon><path d="M448.76,304.21h0l-3-1.12-2.69,2.48-2.31-1.78-2.61-.31-1.95,5.61,1.28.87q6,.3,11.9.51l6.23-5-.67-3.82-4.62,0Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="454.85 323.9 447.44 317.06 443.21 320 451.58 324.87 454.69 323.9 454.69 323.9 454.85 323.9" style="fill:#d9dadb"></polygon><path d="M455.66,317l2.09-1.86,7.44,1.15,2.12,2.3,3.83-.08-2.07-8.86-3.57,2-4.89-2.16-5-4.06-6.23,5q-6-.21-11.9-.51l-.54,2.8,2.36,4.57,2.29-3.89,1.57,1.07,2.28,7.26,4.5,5.6,9.38,1.68L450,316l2.75-1Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="454.85 323.9 458.98 329 458.99 329.04 461.68 326.39 463.63 324.46 459.55 316.38 455.95 319.18 454.85 323.9" style="fill:#d9dadb"></polygon><polygon points="459.24 306.55 459.24 306.55 455.41 306.63 453.3 304.33 445.85 303.18 443.76 305.04 440.8 303.03 438.05 304.05 447.44 317.06 454.85 323.9 455.95 319.18 459.55 316.38 461 312.97 457.76 310.61 461.1 306.61 459.24 306.55" style="fill:#d9dadb"></polygon><path d="M494.14,294.2l-4.68-2.53-4,1.13-1.47-3h-4l-1.34,3.05-2.8-.57-4.48,1.05-1.19,2.11-4.4.67L461,293.72l-.75,3.31-2.88-.36-2.38,5,.67,3.82,5,4.06,4.89,2.16,3.57-2,5.42-2.49,8.42-.14,1.11-2.2,2.06-1.42,3.2-6.42,3.27-.68h0Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="482.75 319.72 479.28 317.55 478.2 314.71 481.34 309.22 478.75 307.62 476.25 308.72 472.28 307.1 473.43 304.15 468.76 301.88 469.64 299.87 462.6 295.2 457.18 297.69 459.24 306.55 459.24 306.55 461.1 306.61 457.76 310.61 461 312.97 459.55 316.38 463.63 324.46 461.68 326.39 461.73 326.41 467.14 329.58 471.5 327.99 477.91 326.61 478.1 326.52 478.01 322.03 481.19 322.92 482.75 319.72" style="fill:#d9dadb"></polygon><polygon points="461.73 326.41 461.68 326.39 458.99 329.04 457.94 340.6 461.21 345.3 463.18 347.85 468.52 341.79 469.06 337.81 465.76 334.22 467.14 329.58 461.73 326.41" style="fill:#d9dadb"></polygon><path d="M490,338.59v-.09l-.19.09L483.4,340,479,341.56l-1.38,4.64,3.3,3.6,4.87-.59,1.73-2.88,4.41.11,2.7-2.33h.47l-1.41-3.56-2.7,0Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M525.23,328.67l3.66-1.41.26-2.24-4,.19-4.64-2.66-6.12,1.89L510.57,328l-6.19-1.52-1.56,1.72-8.18-1,.57-3.1-2.84-1.34-2.27,4,1.08,2.83,3.47,2.17-1.56,3.2L489.9,334l.1,4.49v.09l1,2,2.7,0,1.41,3.56,5.54.05,4.28-2,2.65,1.61,5.3-.41.44-2.9,6.43-1.34,2.55,2.67,4.88-2.27L523,334.38l2.23-2.21Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M502.82,328.19l1.56-1.72,6.19,1.52,3.83-3.55,6.12-1.89,4.64,2.66,4-.19.05-.47.83-8.05-6.09-4.31,1-7.34-1.41-4.42-3.1-2.27-3.53-6.39-3.76.14-1.59,2-3.48.11-2.05,2-3.44-2.81-7-.8-1.44,1.86-1.59,2.12-3.27.68-3.2,6.42L484,304.84l-1.11,2.2-8.42.14,7.05,4.67-.88,2,4.66,2.27-1.14,2.94,4,1.62,2.5-1.1,2.59,1.6-.87,1.54,2.84,1.34-.57,3.1Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M537.29,307.51l-4-8.93-3.34-1.33.77-3.19-1.11-1.93-4.59-.71-3.26-2.49-4.12.28-2.26,2.62,1.58-.06,3.53,6.39,3.1,2.27,1.41,4.42-1,7.34L530,316.5h0l4.44-.24.58-3.25-1.49-1,1.06-3.21Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M574.12,298.63l3.66-3.77,3.79-.56,2.23-5.49q2.9-.33,5.76-.69l.42-2.27-2.55-3-.39-3.13,1.61-1.66-.72-2.83-5.39,1.05-5.31-2.66-1.38,2.06-4.14-3.88-3.19,2-5.52,0-1.32-1.29.13-2.4-1.43-2.31-6.13-.24L553,264.8l1.18-2-3.38-3.68-7.4,1.26-.62,2.34-6.07-.88-1.48,3.57,1.14,2.6-2.4,1.86-2.43-2.75-4-.8-1.25,2.5-3.2-2.27-2.44,2.54-3.18-3.4-6.64-.84-9.2,0-.72,3-3.55.65-.08.72,3.71,4.37-.76,3.18-2.52.05-4.29,5.26.19,4.2-1.92-.71-2.21,6.06,4.68,2.53,1.44-1.86,7,.8,3.44,2.81,2.05-2,3.48-.11,1.59-2,2.18-.08,2.26-2.62,4.12-.28,3.26,2.49,4.59.71,1.11,1.93-.77,3.19,3.34,1.33,4,8.93,2.7-5.4,3.64-2.18,4.11.26-1.62,3.59,3.3,1.47,5.06-1.58,3.4,1.94L551,310.34l1.64,1.5,5.19.56,1,5,3.39.37,2-3.11,3.48-.19,1.53-2.11c1.67-.15,3.34-.32,5-.48l-.15-4.4-6.83,2.43-5.18-5.55,6.71-5Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="480.23 235.22 480.23 235.22 480.23 235.22 480.23 235.22" style="fill:#d9dadb"></polygon><polygon points="480.23 235.22 480.23 235.22 480.23 235.22 480.23 235.22" style="fill:#d9dadb"></polygon><rect x="480.23" y="235.22" style="fill:#d9dadb"></rect><path d="M489.94,241.88l-4.2-1.92.2,1.95c-2.13,0-4.26,0-6.39,0l-2.06,3.5,7.16,2.26,7.47-.45h0l2.45-5.38Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M513.48,241.05l-2-1h0l.62-1.81-3.64-4-3.43-.45-1.67-2.06-1.93,2.15-4.48-.91L495,234.44l-4.85-2-4.89,2.69.42,4.41,0,.38,4.2,1.93,4.63,0-2.45,5.38h0L495,247l2.54,2.53v.88h5.33l2.58-2.95,1.37,2.23,2.44-.07-.22-6.44,3.2-.11Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M544.19,252.52l-1-3.11-6.95-3.25-3.05-4,0-5.4-3.64-2.21-4.09,2.53h0l-1.66-3.51-4.11,0-1.7,0-1.6,3.22-2.85-1.46-1.39,3-.62,1.81h0l2,1-1.29,2-3.2.11.22,6.44-2.44.07-1.37-2.23-2.58,2.95h-5.33c0,1,0,1.95,0,2.93l1.8,2.8,0,3.23-3.58,1.19-.89,2.81,3,.85-.48,4.3,3.55-.65.72-3,9.2,0,6.64.84,3.18,3.4,2.44-2.54,3.2,2.27,1.25-2.5,4,.8,2.43,2.75,2.4-1.86-1.14-2.6,1.48-3.57,3.91.57v0l-3.81-8.67,4.91.9Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M512.14,224.16l-2.49.82-4.43-3.11-3.77,1.79-.17,1.79c-1.86,0-3.72.08-5.59.1L493,222.3l-4.11,1.19L485,231.7l.31,3.46,4.89-2.69,4.85,2,1.89-1.48,4.48.91,1.93-2.15h0l1.66,2.07,3.43.45,3.64,4,1.39-3,2.85,1.46,1.6-3.22,1.7,0h0l0-.24-1.29-3.76-2-.42.12-2.2Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M517.46,212.34,516,210.8l-4.35.18-4.92-1L497,213l5,5.54-.48,5.09,3.77-1.79,4.43,3.11,2.49-.82,1.82,1.13,1.67-2.84-2.78-3.73,0-3.47,2.54.09Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M914.92,385.74c.69-.59,1.37-1.17,2-1.76l.72-4.62L924,391.69l1.83-1.69-5.59-15.35,3.52.61-3-10.68-1.65-1.25.46-4.37-3.38-6.89,1.59-9.28-1.7-6.73-4-1.11-1-3.6-3.42-2.69v7.14l-2.68-.15-.51,5.62-1.73,2.09,1.07,5.21-1.43,4.87,4.06,6L903.43,363l-2.81-1.22-1.56,4.77-5.16-1.9-1-3.3-1-3.23-2.59,4.08L891,369l2,1,.82,4.51-3.72,1.83-9.15.84-1.2-2.61-3.46,0-2.42,3.25-6.5-2.41-1.22,2.3-11.22-3.5-.36-5.39-1.13-1.95.78-4.81-8.77-2.45-2.1-2.69-3,.77L834.82,350l3-1.56.9-2.23-2.35-3.39-5.17-3-1.78-2.58.52-3.08-5.05-.93-4.2-5.78-2.27,1.14-5.39-.67-3.45,2.67-.89,4.24q-2.43,1.11-4.91,2.19l-.81,5.06,5.91,10.79,5.8,3.35,3-1.34,3.78,2,.52,4.67-2.06,3.37,2.9,4.14-1.74,7.1,1.75,13.21L819,392.1l.26,7-4.62,5.25-3.42-3.2-2,8.9.87,3.73,4.73-1.72,2.89,8.74,3.39-1.33,5.51,8.47-13.31,4.7-.63,6.05,6.4,4.25,6.35-4.8.56,6.33-6.33,3.78,8.81,6.69,4,1.52,6.31-6.85-.16-10.6,5.63,12.17.6,8,3.49,3.81.13,4.67,4.14,7.5,2.68,8,6,9.62,3.75,3.46,3.16,5.7,1.53,5.14,4.14,9,3.83,3.88,4,8.69,1.87,1.3.09,3.58,1.64,4.26,4.08,5.56,4.45-5.12,1.48-6.78,2-1.9-.12-3.25,1.08-5.26,1.69-.73-1.27-9.06-1.1-.62L898,499.7l-1.12-9.22-3.1-5.86-1.64-6.81-.16-5.3,3.35-7.74,4-4-1-3.71,4.81-14.12.46-8,1.12-3.62-1.35-5.3,2.94,1.46,2-4.17.26-6.22-2.28-5,1.7-6.4-.74-7,4.32,4.08,1.1-.79v0l-5.17-7.44q-1.44-3.45-2.91-6.87l-3-.47c-.52-1.2-1-2.4-1.58-3.6l2.33-4.16-3.71-2-1.57-5,5.66-.74q1.19,2.55,2.36,5.11l2.31-.9,1.63-2.34,1.9.36,1.47-3.82,3.25,3.53-2.24,7.61Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M924,391.69l-6.28-12.33L917,384c-.67.59-1.35,1.17-2,1.76l-1.57-4.65,2.24-7.61L912.34,370l-1.47,3.82-1.9-.36-1.63,2.34-2.31.9q-1.17-2.56-2.36-5.11l-5.66.74,1.57,5,3.71,2L900,383.47c.53,1.2,1.06,2.4,1.58,3.6l3,.47q1.47,3.42,2.91,6.87l5.17,7.44v0l3.87-2.86-.27-4.31.16-4,1.36-1.22,2.5,3.15,4.23,7.22v-.15c.68-.6,1.35-1.2,2-1.81Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M870.85,361.91,868.91,364l-3.11-2.63-5-.9c-.47-1-.94-1.92-1.42-2.87L856,358.73l-.15,3.73-1.66-.45-.78,4.81,1.13,1.95.36,5.39,11.22,3.5,1.22-2.3,6.5,2.41,2.42-3.25,3.46,0,1.2,2.61,9.15-.84,3.72-1.83-.82-4.51-2-1-1.73-6.72-2,2.2L883.16,363l.11,2.81-6.09-.68Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M892.87,361.38l1,3.3,5.16,1.9,1.56-4.77,2.81,1.22,3.05-3.55-4.06-6-3.1-2.72L897.6,355l-1.42-2.78c-.72.6-1.44,1.18-2.18,1.77a22,22,0,0,1,.28,4.2C894.1,359.4,893.24,360.28,892.87,361.38Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="874.04 188.12 877.92 192.09 881.08 196.09 881.9 196.93 884.52 200.41 885.97 201.91 882.27 196.82 882.29 196.61 880.42 194.27 880.16 193.75 877.61 190.66 877.61 190.48 872.36 184.21 872.45 184.41 866.96 178.22 861.9 173.32 864.45 176.31 864.79 177.39 867.99 181.24 871.29 184.51 872.3 185.65 872.19 185.77 874.04 188.12" style="fill:#d9dadb"></polygon><path d="M860.86,174.09l4.52,4.75,5.93,7.61h0l1.35.16,3.38,3.73.57.3.92.83.7,1.26,2.09,2.53,1.85,1.57-.6-1.1-1.7-1.75,0-.22.83.59-.78-1.14-3.2-3.85-.34-1.08-2.55-3-.41-.39-1.41-.83-2.76-2.83-2.84-3.19-1.27-1.76-2.37-2.63-1.39-1.43-1.67-1.92L855.12,166l-4.64-4.8-2.27-1.88-.31.19,5,4.71,3.43,4.14,3.12,2.59,2.16,3-2.85-2.4Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M606.17,404.49l3.85,9,8.55-.44,13,6.66,21,14.59q6.11-1,12.14-2l2.4-8.05c2.8-.48,5.58-1,8.36-1.49l.09-.21.82-1.87,1.32-.43h0l-8.12-7.9-.18-5.38-3.92-5-2.94.47-4-2.93-3.9.66-1.16-5.94-4.54-1.53-.59-6.5,3.93-4.76-2-3,.58-3.16-6,0-4-7.18-5.2,2.47-2.31-4.1h-6.71l-4.9,8.08-3.78.51-.12,4.53,2.8,4.87h0l-.35,7.94Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M667.08,424.3l-2.4,8.05,5.18-.9,2.88,4.05,6.73-1.22-1.33-2.09-3.46-7.68.76-1.7C672.66,423.32,669.88,423.82,667.08,424.3Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M623.51,371.57l-1.84-4.31-8.48,2.58-5.8,4.92-6.18.74-4.35-1.3-4.4,2.84-5-.52.93,4.65-2.18,4-3.15,0,1.49,7.77-.44,1.48h0l4.74-.76,2,3.91-3.65,8.74-.32.09-1.53.44.4,4.29h0l0-.07,6.5,3.34,13.89-9.93,14-12,.35-7.94h0l-2.8-4.87.12-4.53,3.78-.51h0Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M596.86,374.2l4.35,1.3,6.18-.74,5.8-4.92,8.48-2.58h0l1.84,4.31,3-5h6.71l2.31,4.1,5.2-2.47-2.63-4.72-5.36-2.78.5-2.7-3.64-6.48,3.55-4.16L626,345.51l-.14-4.92-2.65-1.91L618.47,335l-4.66,3.33L609.45,336,603,341.08l-4.8-1-6.13,2.35-10.57-2.24-2.21.9-2.56-3.27L572,338l-2.53-2.86-2.66,1.36-7.23.16-11.52,7.72-13.77,1.17,2.11,2.66-2.48,3.5-8,.11L524.12,353l-5.64-.58-3.38,3.44L519,364.3l-2.2,3.42,5.71.53-1.16,4.94,6.16,1.22-.35,5,7.49.41,2.38,2.81,3.49,1.27,5.26-1.24,1-3.83,4.81-.73,9,5.58,8.83-2.67,4-5.26,5.93,1.75,3-2.87,1.57,2.37-1.42.79-.16,2,1.61,2.48-.83,2.93,3.15,0,2.18-4-.93-4.65h0l5,.53Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="631.53 342.75 627.96 336.74 621.27 335.36 624.78 341.95 624.78 341.95 631.53 342.75" style="fill:#d9dadb"></polygon><polygon points="620.49 323.8 619.82 324.46 611.34 326.7 613.99 328.61 614.13 333.52 621.27 335.36 627.96 336.74 631.53 342.75 634.16 338.71 632.62 334.19 628.81 332.67 628.8 330.85 624.89 329.13 625.2 327.34 620.49 323.8" style="fill:#d9dadb"></polygon><path d="M657,333.51l-5.62-5.33-1.8,4.76-3.06.55-2.36-3.71-5-2.53-1.07,1.29-.9,1.06,4.19,3.07L640.3,336l-5.78-2.33-2.14,2.13,4.71,3.54-.3,1.79,3.9,1.72,0,1.83,3.81,1.51,1.54,4.52,5.5-6.61,2.8,2.17,1.86,5.92h5.23l-2.24-4.44h0l4.91-11.36Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="597.55 324.04 601.91 326.29 606.58 322.97 611.34 326.7 619.82 324.46 622.62 321.67 628.4 324 629.5 320.69 625.3 317.63 625.3 317.62 626.2 316.55 626.2 316.55 621.37 314.82 621.16 312.26 616.59 311.14 611.31 314.84 608.71 311.5 602.78 309.78 597.13 310.28 587.58 306.52 586.87 309.06 595.88 313.96 599.35 320.53 598.38 323.39 597.55 324.04" style="fill:#d9dadb"></polygon><polygon points="657.06 37.03 653.02 35.68 651.48 35.19 654.22 36.11 657.41 37.15 657.06 37.03" style="fill:#d9dadb"></polygon><path d="M810.39,126.45l1.14.69,2.23,1.74,2.08,1.84,15.35,12.46.21.85,3.82,3.71,4.67,3.74h0l5.64,5.19,2.68,2.65,2.27,1.88-.59-.59-3.21-3.22-4.85-4.57,1.43.74-2.77-2.73-6.15-5.65L828,139.67l-12.44-10.31L800,117.49l-5.87-4.26-8-5.48-1.88-1.28-3.31-2.09-8.11-5.18-5.38-3.1-3.31-1.94-.38,0-2.91-1.47,1.75,1.48,6,3.44.68.91-2.84-1.47,3.4,2.33L764,96.16l3.07,2.38-1.76-.61-10.23-6.66L749.25,88l-1.51-1.08L743.86,85l-8.69-5-3.49-1.69-11.35-6-5.49-3.34,0-.25-5.7-2.94-.57-.44-3.44-1.55-5.08-2.53,1.62.6,3.51,1.59.92.33-3.31-1.58L698.6,60.3,694,58.36l-1.81-.71,2.09.9-6.17-2.41-4.87-1.88-5.14-1.88-2-.68-3.48-1.26-5.3-1.92-.34-.15-.83-.27L655,44.47l-1.89-.58-6-1.79h0l-19.28-5.17c-22.26-5-25.68-5.79-36.64-7.51h0c-7.63-1.13-17.82-2.6-25.48-3.52l4.08.53,1.8.23h-.39l2.11.24.1.09,4.87.94,4.73.91.89.26,5.49,1.1,2.63.38,2.14.63,4,1,1.11.12L598.6,32l.88-.1,2.91.42,2.5.61-.77,0,1.74.54-2-.16-1.57-.4-2.27-.35,2.67.76,6.16,1,4.48,1.44.38.27,6.82,1.79,3.2.62-1.85.05,1.24.54-3.95-.59-1.67.3.51.73,3.4,1.41,2.08.42c.78.32,1.55.64,2.31,1l4.21,1.42-2.23.4,3.37,1.23L628,44.79l-.1.23,1.11.56-3.71-.69-.88.21,2.53,1.38,6,1.35L635,48.94l-7.48-1.83,1,1.62,2,1.7v.8l6.16,1.09,3,1,3,.27.1.63,2,.74,3.5.87-1.87.15-.52.77,4.21,1.63L646,59.1l11.73,3.63-1.93.7-5.37-1-2.13.1-6.43-1.34-1,1,7.94,1.7-.46,1.21-10.39-2.85.84,1.17-3.77,0,4.63,1.3.79.85,4.54.7-.74,1.87-1.93.27,1.63.86-2.07.45-3.06-.9-1.52,2.08,1.41,1.68,7.27,2.48-8-1.38,1.58,1.23-3.29-.25,6.8,4.87,1.14,3.83-4.44-2.52-2.2-1.79.13-.88-3.34-2-.32-.81-5.34-2.74.84-.19L625.4,70l-7.2-1.06-2.44.32-3.53-.21,1.43,1.13-1.69.15,1.47,1.52L613.18,73,610,71.34l-1.14.26,1,1.31-1.42.73-2.28-2.29-1.79-.1-1.5,1.83,3.79,2.53,7.22,1-2.75.71-.79,1,3.58.7,7.49,2.1L617.7,81l-5.88-1.61,1.64,1.48,0,1.94L611,82l-1.72,2.07,3.16.8-.27,2-1.74,1.83,2.82,3.18,1.45,1.44-2,.44,5,2.39,7.7,1.65-1.91,1.54-3.31-1L617,99l-2.09,3.44,6.46,3.22,3.8.17,2.65,1.3,6,.54,5.74,5,4.93,2.57L639,113.94l-5.74-4.61-3.49-.12-5.15-1.38-4.61.94,3,2.65-3.14.21,2.19,2.68,4.13.28.33-.71,4.32.67,3,3.72-4.78-1.85-5,1.16L619.6,114l-6.84-3.25,3.36,3-.34,1.62,1.74,2.32,7.25,2.53,2.92,3.84,5.38,3.53,2.76-2.12,6.46-.65,5,3.71,5.22.29-2.79,2.49-2.37-.33-4.23-3.11-3.34-.82-3.4,2.26,6.34,3.48,1.83,3.83-1.09,3,1.28,2.47-7.59,1.19-3.24-1.94,5.18-.85-1.11-6.6-2.54-1.45v-1.68l-4.16-1.43-7.39-5.48-3.12-3.31L615,118.37l-3.42-4.74-2.85-1.92-7.47,1.05.9,1.81,5,5.36.15,4.66,2.81.34,6,6.61,2.94-.95,3.58,2.15,1.82-.48,1.84,3.22-.86.42-5.19-1.5-12.27-.76-7.88,1-7.28-2.85,1.29,3.17,6.72,1.79,4.61,2.13-1,3.54-4.5-2.58-2.39,2.14-.08,1.05c-1.71.44-3.43.86-5.18,1.28l.56,2.89L588,147l1.12-1.77-.47-2.63c-4,2.47-9.31,5.77-13.4,8.07l2.68,1.71-3.57.93,1.2,3.73-4.79.92-4.52-2,.43-2.15,3.75-1.08-3.82-2.87-8.19.14,3.5,2.19,1.08,5,3.22,1.32-.46,2,1.79,3.41-4.1-2.4-3.71-.11-1,2.15-4.49,4.56,4.52,6.11-3.37.22-10.56-2.62,1.69,4,4,.82-.92,4.32-6.06-3.88-5.09-.77-1.46-8.23-9.52-5.94,6.51-.14,1.2,2.09,8.68.78,3,.58,4.18-.66,5-4.52-.29-1.95-2.2-2.48-9.13-2.15-6.57-2.87-8.37-.86-4.63.42,1.6-2.3-3.67-.83-.12,1.44-2.7-.48.62,3.18-2.3-.47-2.93,3-1-1.09-1.45,1.39.92,1-.25,2,2.63.35,2.45,2.35-.37,2L515.62,164l5.3,7.41-1.76,2.67,2.52,2.72L521,179l3.23,1.48.33,1.63-2,1.73,4.22,2.24,1.7,2.12-1.27,2.95-11.14,12.68,6.81,3.35-6,1.6-.05,2-.94.05,1.49,1.54-2.09,3,1.3,0,.39,2.94L519,222.2l-1.89,2.2-1.48-2L514,225.29l2.41,1.59-.12,2.2,2,.42,1.29,3.76,0,.24h0l4.11,0,1.66,3.51h0l4.09-2.53,3.64,2.21,0,5.4,3.05,4,6.95,3.25,1,3.11-2.47,2.09-4.91-.9,3.81,8.67v0l2.16.31.62-2.34,7.4-1.26,3.39,3.68-1.19,2,1.24,2.78,6.14.25,1.43,2.31-.13,2.4,1.32,1.29,5.52,0,3.19-2,4.14,3.88,1.38-2.06,5.31,2.66,5.39-1.05.72,2.83L587,279.74l.39,3.13,2.55,3-.42,2.27q-2.87.36-5.76.69l-2.23,5.49,6.92-2.16-.41,2.35-7.54,4,.76,1.92,3.78,1-2.61,2-.84,4.91L576.5,308l1.33,2.06,5.66,3,2.28,2.12,3.39.55,9.6,5.35.71-2.54,9.55,3.76,5.66-.5,5.93,1.73,2.6,3.33,5.28-3.69,4.57,1.12.21,2.55,4.82,1.73h0l1.07-1.29,5,2.53,2.36,3.71,3.06-.55,1.8-4.76-9.14-8.73-3-8.71-6-1.8,2.72-4.26.8-7.69,4.41-.05.67-2.56-3.38-2,1-4.7-5.61-4.55-5.88-.08c-.32-.92-.64-1.84-.95-2.76l-2.94-1.09.37-5.81L622,271.87l1.35-3.67-1.08-2.58,1.58-1.95,5.36,3.67,2-1.63-2-3,1.94-5.2,3.58-1.85.3-2.42,2.62-.53,1.12,1,2.29-.47.29-1.66,2.84-.61.6,1.31,3.78-.62,3.23,2.35,2.88,2.5,2.4-.37c-.42-.86-.84-1.72-1.25-2.58l6,2.39,1.26-4.08,2.87-1.11,2,1.81,2-1.25-.34-2,3.07-.49,2,2,5.59.63.46-2.29,5.39-1.76-1.66-4.48-8.38-.38-1.63-1.93,4.86-2.63-3.63-2.58.16-2.17,5.26-.27L680,229.76l-4.7.07-3.75-4.19,5.88-3.57,7.88-3.48-.69-2.28,9-5.38-1.89-2.64,1.78-2.64,4.44.22,3.19-1.37,3.88,3,.93,3.64,3.38,1.65,1.56-3.88,2.18,1.47,1.61-2.92,2.34,1.9.07,2.79,3.61,1.75,1.37-12,2.81-1,2.12,4.74,7.44,2,21,12.71.28-1.83L754.09,216l2.46-1.13,4.05,3.06,3.25-1.55-.72-3.36,3.57-.2,4.52,3.46,2.73-.57,3.16,2.08,2.42-.81-.93-3.31,2.87.46.82,1.17,4.73,1.33-1.2-4,3.44-1.92-2.28-2.3-.31-6,2.08-.94-1.4-3.23,3.25-1,2.6-1.79,3.94,3,2.88-1.17-.32-2.61,4.35.14.18-3.13-2.72-3.38-4.38-2.22-3.35-4-2.8-5.49,4.5.64,3.08-1.17,1.54-1.8c1.86,1.5,3.7,3,5.54,4.54l6,.26-2-6.42,5.72-2.61h0l2.63,2.1,2.48-1.17,2.15-1.75-2-2.83.9-3.27-2.9-2.71-3.66-4.86,3.13.06-1.64-2.63,2.35.43h0l1.73-.5-3-3.53-1-2.23-2.2-1.8-.62.15-9-7.63-2.3-2.67-4.21-2.56.63,1.33L796,132.36l-3.1-3.22-3.76-5.61,2.11-.47-1.16-1.42,5.06,1.45,7.09,4.11,8.66,5.12,1,.13L810,130.58l.48-.64,1.17.61L810.26,129l8.93,6.29L817,133.06l-.54-1-3.95-3-5.67-5.12,1.36.83ZM536.32,205.89l-.44,3.12-3.6-1.36-.11,2.44-2.13,0-4.27-7.19-1.71-1.07,2.53-3.89,3.22-.44,1,2.61,3.65.32L538,205Zm13.36-3.64-2.86-.54-.4-3-5-2.17.76-3.2,1.73-.26-2.3-4.1,4.58,1.55,1.12,3.25,3.07,3.79ZM790.14,149l4.78,4.91,3.15,6.2,5.35,7-3.28,3.74-2.48-7.1-7.36-8.83-2.41-5.12-11.37-9.68-1.39-2.35Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M860.94,223.75l3.18,1.95-2.23-11.41,1.92-4.56-5.09-8.53-.15-2.55-3.28-4.52-3.46-1.06-4.51-5.55,2.77.84-.18-3.44-4.53-5.34,1.56-.87-3-4.24-4.5-4.31-3.26-5.91,2.16-.52L835.61,161l-7.6-3.88.47,2.15,2.82,3-.06,1.91,1.58,2.14-3.66-1.91-10.43-10.89h0l-2.35-.43,1.64,2.63-3.13-.06,3.66,4.86,2.9,2.71-.9,3.27,2,2.83-2.15,1.75L818,172.22l-2.62-2.1-5.73,2.6,2,6.42-6-.26c-1.84-1.52-3.68-3-5.54-4.54l-1.54,1.8-3.08,1.17-4.5-.64,2.8,5.49,3.35,4,4.38,2.22,2.72,3.38-.18,3.13-4.35-.14.32,2.61-2.88,1.17-3.94-3-2.6,1.79-3.25,1,1.4,3.23-2.08.94.31,6,2.28,2.3-3.44,1.92,1.2,4,3.31,2.84,6.31,1.67c.94-.73,1.87-1.46,2.78-2.19l9.36,6.06h0l4.65,7.22,4,3,6.87-5.68,11,3.1,7.81,5.54.32-3.15,7.26-2.74-.64-3.8,6.86-3.14Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M988.56,509.1,987,493.3l-3.6-8-.28-.41.26,8.15-1.61,3.7c-.21-1.65-.43-3.29-.67-4.93l-2.48-.68,2,9.72,1.09,2.56.12,3.26,2.93,5.67-.22,3.3,5.24,7.32,1.22-4.09-1.45-8.07Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M980.75,482.73l-.36,2.88-2.25-2.11-2.21-9.37-2.16-5.65-1.35,2.34-2.83-17.44-.68-8.28-3-10.41.24-2.6.9,1.3,2.74,5.34,2.59-3.13,1.25,2.29,2.44,2.77c-.7-2.8-1.42-5.6-2.17-8.38l-3.3-6.9-.07-6q1.62-2.9,3-5.78l-.12-4.09L971,402.1l-3.19-3.54L966,392.74,962.64,388l-1.37,1.14.41,6.05-2.12-1.63.19,8.78-1.87-.48-2-11.17q-.93-2.42-1.87-4.83l-2.43,3.3-1.35-6.49-2.75,1.69,1.55,8c-.58.76-1.16,1.51-1.76,2.26l-2-1.11q2.07,5.28,4,10.59c-.44.54-.89,1.08-1.34,1.61l9,10.57,3.31,14.8,2.67,4.09,5,14.66-.17,9.68.83,5.79.5,8L971.81,484l.86-3,3.35,3.57,2.36,5.82,0,.08.16.72,2.48.68c.24,1.64.46,3.28.67,4.93l1.61-3.7-.26-8.15Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M984.72,431.58l-.88-10.53,0-1.38L981,407.84l-2.25-6.74L976,394.76l-.71-2.49-2.74-4.61-.87.49-4.63-5.34-1.66-3.47-3.18-3.17-1.81-5.44-2.07-10.89-1.23-2c.27-.71.53-1.43.78-2.14l-1-2.45-.11-2-2.75.65-2.33-6.06c-.29.75-.59,1.51-.91,2.27l-2.95-2.34,1.35,6.31.1,4.21-1.78-1,.6,3.22h0l-2.21-.84,1,4.89,2.83,2.91.65-1.15,1.64,6.25,2.6-.53-.42-4,3.81,5,.74,3.67-.87,1.46,1.11,4.67,3.79.14,7.37,11.07,2.32,1.35.73,3.39,1.45,1,1.35,4.35,2.48,9.4,2.73,9.18-.39,10c.43,1.68.84,3.37,1.25,5.06l-.72,1.71-.16,8.65.95.79,2.18,9.74,1.09-11.32-1.36-8.78Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M981.24,420.75l-2.73-9.18-2.48-9.4-.18,4.1-1-1.28,0,3.33,1.57,5.53-2.87-.21q-1.35,2.88-3,5.78l.06,6,3.3,6.9c.75,2.78,1.47,5.58,2.17,8.38l1.44,1.71.65-3.66,1.47,6.21,1.59,1.27.16-8.65.72-1.71c-.41-1.69-.82-3.38-1.25-5.06Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M966,392.74l1.85,5.82L971,402.1l2.36,7.44.13,4.1,2.87.21-1.57-5.53,0-3.33,1,1.28.18-4.1-1.35-4.35-1.45-1-.73-3.39-2.32-1.35L962.81,381l-3.79-.14-1.11-4.67.87-1.46-.74-3.67-3.81-5,.42,4-2.6.53-1.64-6.25-.65,1.15-2.83-2.91-1.3.21.7,2.82,2.35,3.1h0l1.94,5.15c-.38.62-.77,1.23-1.17,1.85L948,373.2l.63,10.44,1.58-1,1.35,6.49,2.43-3.3q.94,2.41,1.87,4.83l2,11.17,1.87.48-.19-8.78,2.12,1.63-.41-6.05,1.37-1.14Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M954,421.46l6.71,17.65.42-2.42,4.52,15.91,1.18.42,1,6.49.17-9.68-5-14.66-2.67-4.09L957,416.28l-9-10.57c.45-.53.9-1.07,1.34-1.61q-1.93-5.31-4-10.59l2,1.11c.6-.75,1.18-1.5,1.76-2.26l-1.55-8,1.17-.71L948,373.2l-2.53-4.36.25,6.58-2.35-3.15-2.22.82-1.46-4.49.13-2.17L937.2,366l-2-2.93L934,359.85l-1.62,1.76.11,4.16L929.32,360l-.13-2.64L927.75,354l-.52-6.33L925,341.86l-3.35-5.61-2.07-.31-2.2-3-2.23-.4.89,3.5,1.7,6.73-1.59,9.28,3.38,6.89-.46,4.37,1.65,1.25,3,10.68-3.52-.61L925.79,390,924,391.69l2.55,6.18c-.66.61-1.33,1.21-2,1.81v.15h0l6.62,5.12,2.33-.54,2.45,2.94,1.3,4.05,5.09,7.87,1.48,8.55,1.3,4.25,4.12-4.07,1.18-9-1.58-5.69,4.39,3.95Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M768.9,433.17l.5,5.79,11.28-3.29,3-3.25,3.89,1.2,6.18-4.23,2.42-2.57,2.54,3.91,2.26-.62,5.87,8.13,4.31-.52,1.56,1h0l.63-6.05,13.31-4.7-5.51-8.47-3.39,1.33-2.89-8.74-4.73,1.72-.87-3.73,2-8.9,3.42,3.2,4.62-5.25-.26-7,3.83-2.74-1.75-13.21,1.74-7.1-2.9-4.14,2.06-3.37-.52-4.67-3.78-2-3,1.34-5.8-3.35L803,342.08l.81-5.06q2.48-1.08,4.91-2.19l.89-4.24h0l3.45-2.67-5.4-3-3.21-1.12-3.34,1.52-1.8,3.39-7.7,3-1.91,6.56,4.16,4.66-.8,6.08c.76,1.62,1.53,3.23,2.28,4.86l-6.17-.08,1.34,5,3.42,1.27,0,3.62-3.32,1.27,3.27,8.26-.56,3.71-5.24.13-.44,4.43-5.4,3.57,1.47,9.63-7.41,6.13-.81,2.69-5.69-.62-4.62,3.21L754,404.22l7.13,7.93,8.33,3.07c.83,2.55,1.66,5.12,2.48,7.68,1.07-.32,2.14-.65,3.2-1h0l1.05,5.54-5,1.53Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M799.3,328.69l1.8-3.39-1.33-4h0l-2.64-1.46-5.68,2L791,325.2l-4.34,4.5c-1.21-2.34-2.42-4.67-3.66-7l-1.84-.6-2-4-2.22,1.38-2.11,3.7c.79,1.52,1.57,3,2.34,4.55l-2.19,4.83-2.48-2-2.58,5.52-3-2.81-10.38,1.9L757,338c-1.34.45-2.68.9-4,1.34l1.65,9-5.31,4.15,1.21,4.2-3.1,4.52-3.57-4.66-3.21.65-2.15.44L741,367.74l-1.2,3.39,1.32,3.56,2.93,1.18-1.13,3.74,6.81,12.07,4.56-.51,2.19,4.25-2.48,8.8,11.19,1.86,4.62-3.21,5.69.62.81-2.69,7.41-6.13L782.26,385l5.4-3.57.44-4.43,5.24-.13.56-3.71-3.27-8.26,3.32-1.27,0-3.62-3.42-1.27h0l-1.34-5,6.17.08c-.75-1.63-1.52-3.24-2.28-4.86l.8-6.08-4.16-4.66,1.91-6.56Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M776.2,427.46l-1.05-5.54h0c-1.06.34-2.13.67-3.2,1-.82-2.56-1.65-5.13-2.48-7.68l-8.33-3.07L754,404.22l2.48-8.8-2.19-4.25-4.56.51-6.81-12.07,1.13-3.74-2.93-1.18-1.32-3.56,1.19-3.4-2.5-10.06h.07l-4-8.35-4.18.46-9.47-5.43-4,3.27-6.85-2.3-1.64-3.09-10,3.61L697,352.44l-4.31.93,2.36,6.22-6.35-.62-7.11,3.9L664,357.94l-2.53-5.78h-5.23l-1.86-5.92-2.8-2.17-5.5,6.61-2.63,4-6.75-.8-3.51-6.58-3.55,4.16,3.64,6.48-.5,2.7,5.36,2.78,2.63,4.72,4,7.18,6,0-.58,3.16,2,3-3.93,4.76.59,6.5,4.54,1.53,1.16,5.94,3.9-.66,4,2.93,2.94-.47,3.92,5,.18,5.38,8.12,7.9h0l8.59-3,7.54,7.52,4.45,7.46,8.61,2,7.37,3.85,2.37,1.72,6.33.25,3.38-3.21,1.53-.21,4.56-4.79,3.09-.19,2.69,3.28,3.37,6.66,11.68.19L762.4,439l7,0-.5-5.79,2.3-4.18Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M760.52,334.28q-1.57-3.33-3.18-6.63l-4.72,1.13-7.72-2.07-3,2-11.43-5.46-4.77-7.44-3.61-1.34-3.38,2.94-4.82-1.31.69-3.15-3.47-4.24-3.78.93-4.48-2.32-2.37,1.87,1,3.67-3.54,3.35,3.63,5.83-7,.63-2.85,1.45-5.85-5.44-9.16-5.19-6.6,7.15L673.3,325l1-4.93,5.87-.47,7.57,7.13-10.45,3.39,1.09,5.62,5,.87.23,4.11,5,2.61,4,10.08,4.31-.93,1.46-6.61,10-3.61,1.64,3.09,6.85,2.3,4-3.27,9.47,5.43,4.18-.46,4,8.35,2.08-.42,3.21-.65,3.57,4.66,3.1-4.52-1.21-4.2,5.31-4.15-1.65-9c1.36-.44,2.7-.89,4-1.34l-.5-2.78,4.11-.73Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M779.59,280.82l5.48-3.56,7.65-4h0l1.58,1.36,5.58.33L796.62,271l1.34-2.92L790.3,260l-5.81-1.79,4.11-7.74,5.24,2.31-2.24-5.12L789,246.22,783.7,236l6.84-1.21.2-3.4q-2.88-3.32-5.81-6.58c.74-.49,1.48-1,2.2-1.49l-1.64-3.81,1.53-2.83-4.73-1.33-.82-1.17-2.87-.46.93,3.31-2.42.81L774,215.71l-2.73.57-4.52-3.46-3.57.2.72,3.36-3.25,1.55-4.05-3.06L754.09,216l1.61,2.36-.28,1.83-21-12.71-7.44-2-2.12-4.74-2.81,1-1.37,12-3.61-1.75-.07-2.79-2.34-1.9-1.61,2.92-2.18-1.47-1.56,3.89L706,211.1l-.93-3.64-3.88-3L698,205.87l-4.44-.22-1.78,2.64,1.89,2.64-9,5.38.69,2.28-7.88,3.48-5.88,3.57,3.75,4.19,4.7-.07,1.14,3.13-5.26.27-.16,2.17,3.63,2.58-4.86,2.63,1.63,1.93,8.38.38,1.66,4.48-5.39,1.76-.46,2.29-5.59-.63-2-2-3.07.49.34,2-2,1.25-2-1.81-2.87,1.11-1.26,4.08-6-2.39c.41.86.83,1.72,1.25,2.58l-2.4.37L651.9,254l-3.24-2.36-3.77.62h0l-.6-1.31-2.84.61-.29,1.66-2.29.47-1.12-1-2.62.53-.3,2.42-3.58,1.85-1.94,5.2,2,3-2,1.63-5.36-3.67-1.58,1.95,1.08,2.58L622,271.87l2.49,1.54-.37,5.81,2.94,1.09c.31.92.63,1.84.95,2.76l5.88.08,5.61,4.55-1,4.7,3.38,2,.71-2.85,9-6.49,8.93.31,2.29,9.34-7.41,5.37,1.56,3.32-2.68,2,6.51,7.78,9.69,2.17-.36,5.27,6.6-7.15,9.16,5.19,5.85,5.44,2.85-1.45q-5.67-14.11-11.71-27.8l9.61-7.07,1-8,7.49.93-1.84,4.45,6.05,6.17,11.86,7.25,9.9-3.07,3.23-4.24,8.24,5q1.75,3.25,3.48,6.54l2.36-.81,4,6,5.5-1.95,4.3,2.89-.33-5.48,4.52-11.71-.55-4.34h10.74l-1.72-3.76,1.44-2.91Zm-14.35-10.48-8.07-3.76v-12l14.2-4.15-.2-3.07,3.15-.91,2.84,6.67h0l-14.65,6.07-.73,4.58Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M799.89,274.94l-5.58-.33-1.58-1.36h0l-7.66,4-5.48,3.56h0l-7.46-.1-1.44,2.91,1.72,3.76H761.67l.55,4.34,3.76,2.09-1.88,4.61,4.32,1.06,1.53-3,9.42,2.43-3.81,7.93h0l-3.35-1-1.52,3.49-3.67.92,1.07,4.76,6.95-1.18,3.46-1.94,4,1.64,4.3-4.52.92-1-1.78-3.95.69-4.94,3-2.54,2.56,2.76,2.55-1.79-1.71-5.84q2.87-1.38,5.63-2.79l-1.25-4.79,4.11-7.35Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M770.68,309.33l1.52-3.49,3.35,1h0l3.82-7.93L770,296.5l-1.53,3-4.32-1.06,1.88-4.61-3.76-2.09-4.52,11.71.33,5.48-4.3-2.89-5.5,1.95-4-6-2.36.81q-1.73-3.29-3.48-6.54l-8.24-5L727,295.51l-9.9,3.07-11.86-7.25-.83,5.71-2.46-.12-4.1-6.55-.3,5.69-2.93.58-2.53-6.08.41-2.79-9.61,7.07q6,13.68,11.71,27.8l7-.63-3.63-5.83,3.54-3.35-1-3.67,2.37-1.87,4.48,2.32,3.78-.93,3.47,4.24-.69,3.15,4.82,1.31,3.38-2.94,3.61,1.34,4.77,7.44,11.43,5.46,3-2h0l7.72,2.07,4.72-1.13q1.6,3.3,3.18,6.63l.11.21,6.27-1.17-.12-7.49-3.46-3.63-4.87-1,.25-3.39,4-1.06-.59-4.23,1.62-1.54-1.35-3.27,1.84-.37,2.41-3.93,2.11,1.17-.19,2.62Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M779.12,318.13l2,4,1.84.6c1.24,2.33,2.45,4.66,3.66,7l4.34-4.5.51-3.28,5.68-2,2.64,1.46,1.21-2.61-6.24-7-2.79.46-1,1.24L786.75,309h0l-4.3,4.52-4-1.64L775,313.83,768.08,315,767,310.25l3.67-.92-2.13-2.16.19-2.62-2.11-1.17-2.41,3.93-1.84.37,1.35,3.27-1.62,1.54.59,4.23-4,1.06-.25,3.39,4.87,1,3.46,3.63.12,7.49,3,2.81,2.58-5.52,2.48,2,2.19-4.83c-.77-1.52-1.55-3-2.34-4.55l2.11-3.7Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M958.54,344.63l1.41,4.24,2.26,4.88-.39-3.84-2.79-7,.29-3.48-.93-6.46-1.76-4.3,1,.4-2.31-5.45,1.11.87-1.32-6,.58.18-.85-3.36-2.23-5.36-3.12-8.37-.77-.57-.72-1.95.09-1.15-1.4-2.75-.7-2-1.48-2.66-.34-1.34-2.54-4.74-.64-.87-.92-2.05-.73-.79-.9-1.75-.36-1.25-5.21-9.36-2.78-5.1,1.6,2.47-1.4-2.64-1-1.39-1-1.77-.72-.79-.85-1.46.22-.15L924.55,254l-2.18-2.61,1.07,2.47-1.53-2.09-1.75-3.29-1-2.25-1.4-1.67-.4.28-1.74-1.76.05-1.59L914,239.08l-2.09-1.42-3-4.08-4.32-4.28-1.37.12L901.26,227l-6.38-10.13L893,214.72,889.71,209l-.08-.71-3.49-4.18L887.3,207,886,207l4.64,6.54.52,1.44-1.87-1.36-1.63-2.41-1.65-1.1,1,2.21-2.61-1.42-3.62-4.79-.81-3-4.36-5.49-1.9-3.29-4.14-5.27-.82-1.86,1.93,1.17,3.64,4.36,1.46,2.29,1.56,1.61h.32l.26,0,1.94,2.89,1.59,1.71-1.54-2.62-6.52-8.78-.39-1.43-1.63-1.93-5.93-7.61-4.52-4.75-2.12-2.52,2.85,2.4-2.16-3-3.12-2.59h0l-3.43-4.13-5-4.71.31-.19-2.68-2.65-5.64-5.19h0l-4.67-3.74L831.4,144l-.21-.85-15.35-12.46-2.08-1.84-2.23-1.74-1.14-.69-2.24-1.74-1.36-.83,5.67,5.12,3.95,3,.54,1,2.24,2.22L810.26,129l1.36,1.56-1.17-.61-.48.64,1.89,1.87-1-.13-8.66-5.12-7.09-4.11-5.06-1.45,1.16,1.42-2.11.47,3.76,5.61,3.1,3.22,2.84,1.69-.63-1.33,4.21,2.56,2.3,2.67,9,7.63.62-.15,2.2,1.8,1,2.23,3,3.53-1.73.5,10.42,10.89,3.66,1.91-1.58-2.14.06-1.91-2.82-3-.47-2.15,7.6,3.88,2.71,2.77-2.16.52,3.26,5.91,4.5,4.31,3,4.24-1.56.87,4.53,5.34.18,3.44-2.77-.84,4.51,5.55,3.46,1.06,3.28,4.52.15,2.56,5.09,8.52-1.92,4.56,2.23,11.41-3.18-1.95-4,1.63L850,228.52l.64,3.8-7.26,2.74-.32,3.15-7.81-5.54-11-3.1-6.87,5.68-4-3L808.78,225h0L799.42,219c-.91.73-1.84,1.46-2.78,2.19l-6.31-1.67L787,216.63l-1.53,2.83,1.64,3.81c-.72.5-1.46,1-2.2,1.49q2.93,3.27,5.81,6.58l-.2,3.4L783.7,236,789,246.22l2.61,1.39,2.24,5.12-5.24-2.31-4.11,7.74L790.3,260l7.66,8.14L796.62,271l4.81,5.79-4.11,7.35,1.25,4.79q-2.76,1.41-5.63,2.79l1.71,5.84-2.55,1.79-2.56-2.76-3,2.54-.69,4.94,1.78,3.95-.92,1h0l4.19,4.37,1-1.23,2.79-.47,6.24,7.05-1.21,2.61h0l1.33,4,3.34-1.52,3.21,1.12,5.4,3,5.39.67,2.27-1.14,4.2,5.78,5.05.93-.52,3.08,1.78,2.58,5.17,3,2.35,3.39-.9,2.23-3,1.56,5.48,7.61,3-.77,2.1,2.69,8.77,2.45,1.66.45.15-3.73,3.32-1.14c.48,1,.95,1.91,1.42,2.87l5,.9,3.11,2.63,1.94-2.08,6.33,3.19,6.09.68-.12-2.81h0l4.13,1.46,2-2.2,2.59-4.08c.32.91.76,2.12,1.08,3l1.34-3L894,354c.74-.59,1.46-1.17,2.18-1.77L897.6,355l1.72-4.3,3.1,2.72,1.43-4.87-1.07-5.21,1.73-2.09.51-5.62,2.68.15v-7.14l3.42,2.69,1,3.6,4,1.11-.89-3.5,2.23.4,2.2,3,2.07.31,3.35,5.61,2.21,5.77.52,6.33,1.44,3.36.13,2.64,3.16,5.81-.11-4.16,1.62-1.76,1.21,3.21,2,2.93,2.63.44-.13,2.17,1.46,4.49,2.22-.82,2.34,3.14-.24-6.57,4,6.89c.4-.62.79-1.23,1.17-1.85l-1.94-5.15h0l-2.35-3.1-.7-2.82,1.3-.21-1-4.89,2.21.83h0l-.6-3.22,1.78,1-.1-4.21-1.35-6.31,2.95,2.34c.32-.76.62-1.52.91-2.27l2.33,6.06,2.75-.65-.2-2.86,1.63-.75Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="749.53 82.54 751.66 83.39 747.14 80.6 746.99 80.92 749.53 82.54" style="fill:#d9dadb"></polygon><path d="M903.51,221.28c-.27-.48-.55-.95-.83-1.42l-1.51-2.11-1-1.2,1.54,2.09-.1,0Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="911.93 240.69 911.92 240.69 911.93 240.69 911.93 240.69" style="fill:#d9dadb"></polygon><polygon points="909.34 236.82 910.54 238.93 911.92 240.69 910.82 238.76 909.34 236.82" style="fill:#d9dadb"></polygon><path d="M995.56,550.26c.3-.88.58-1.76.85-2.64l.41-6-.79.86Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="44.64 321.5 44.65 321.48 44.64 321.5 44.64 321.5" style="fill:#d9dadb"></polygon><polygon points="44.65 321.48 45.65 319.08 46.72 316.28 45.78 318.58 45.64 318.93 44.65 321.48" style="fill:#d9dadb"></polygon><polygon points="27.57 401.45 28.61 396.85 28.48 394.69 27.37 399.25 27.57 401.45" style="fill:#d9dadb"></polygon><path d="M36.21,424.7c.11.51.22,1,.34,1.53l1.15-3.81.64-4.27v-2l-1.28,6.06Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="22.56 421.79 23.27 417.74 22.41 419.52 21.85 422.97 22.56 421.79" style="fill:#d9dadb"></polygon><path d="M41.4,404l.83-3.44c-.11-.58-.21-1.16-.31-1.74l-.82,3.57C41.19,402.91,41.29,403.45,41.4,404Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M43.2,393l.91-3.41c-.08-.58-.16-1.16-.22-1.74l-.9,3.54C43.05,392,43.12,392.49,43.2,393Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M33.87,408.88l-.6,2.84c-.19.89-.37,1.79-.55,2.68Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M32.7,414.5l0-.1v.1Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="583.91 980.16 583.66 980.2 580.69 980.71 580.39 980.76 583.75 980.19 583.75 980.19 583.91 980.16" style="fill:#d9dadb"></polygon><polygon points="587.99 979.42 591.82 978.7 591.08 978.84 587.61 979.49 587.99 979.42" style="fill:#d9dadb"></polygon><path d="M618.9,987.48l6-1.36C623,986.52,621,987,618.9,987.48Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M613,988.79l-3.34.68-2.28.49.12,0c3.42-.61,7.52-1.56,11.41-2.46l-1,.23Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M553.83,997.66l.27,0-3.31.28-1.11.1Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="142.62 503.05 142.62 503.05 142.62 503.05 142.62 503.05" style="fill:#ff7b00"></polygon><polygon points="142.91 496.21 141.44 498.26 142.62 503.05 145.06 500.25 142.91 496.21" style="fill:#ff7b00"></polygon><polygon points="150.31 494.94 150.82 490.44 148.03 489.74 147.55 494.08 150.31 494.94" style="fill:#ff7b00"></polygon><polygon points="139.9 478.19 135.89 479.92 139.66 483.76 139.9 478.19" style="fill:#ff7b00"></polygon><polygon points="349.97 342.76 354.73 338.99 351.23 335.76 345.35 338.32 349.97 342.76" style="fill:#d9dadb"></polygon><polygon points="211.47 412 215.64 410.62 214.03 406.08 211.18 407.83 211.47 412" style="fill:#d9dadb"></polygon><polygon points="212.87 402.4 206.08 402.56 207.42 407.99 212.87 402.4" style="fill:#d9dadb"></polygon><path d="M235.65,421.2l2.54-5-.4-2.13-4.92,6.38Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M203.58,327.57l4.78,2.32.89-3.34-3.29-1.4-2.38,2.42Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="187.4 307.31 189.53 305.68 189.08 302.56 186.06 304.65 187.4 307.31" style="fill:#d9dadb"></polygon><path d="M744.18,934l4.3-3.08-6.16,1.73c-1.23,1-2.48,2.09-3.73,3.12Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="735.36 806.32 739.62 802.74 736.43 800.16 732.46 803.69 735.36 806.32" style="fill:#ff7b00"></polygon><polygon points="748.19 798.54 755.1 792.09 751.42 790.96 747.06 796.5 748.19 798.54" style="fill:#ff7b00"></polygon><polygon points="965.97 531.48 964 529.36 963.84 533.2 965.8 538.08 965.8 538.08 965.97 531.48" style="fill:#d9dadb"></polygon><polygon points="967.99 548.9 969.14 553.44 970 548.91 968.99 544.68 967.99 548.9" style="fill:#d9dadb"></polygon><polygon points="950.05 498.28 950.05 498.28 950.05 498.28 950.05 498.28" style="fill:#d9dadb"></polygon><polygon points="947.57 491.1 948.01 496.07 950.05 498.28 949.7 492.94 947.57 491.1" style="fill:#d9dadb"></polygon><polygon points="938.75 470.61 940.05 471.68 940.01 467.62 938.63 467.01 938.75 470.61" style="fill:#d9dadb"></polygon><polygon points="959.01 525.79 961.89 528.12 961.57 524.31 959.07 522.29 959.01 525.79" style="fill:#d9dadb"></polygon><polygon points="982.13 475.49 982.91 478.82 982.91 473.93 982.14 470.87 982.13 475.49" style="fill:#d9dadb"></polygon><polygon points="858.68 550.73 856.61 550.13 855.91 554.51 857.97 555.13 857.97 555.13 858.68 550.73" style="fill:#d9dadb"></polygon><polygon points="861.95 561.91 860.08 560.51 859.38 565.62 861.68 566.47 861.68 566.47 861.95 561.91" style="fill:#d9dadb"></polygon><polygon points="731.4 926.82 729.77 927.34 727.66 929.09 731.4 926.82" style="fill:#d9dadb"></polygon><polygon points="630.39 714.26 626.3 716.74 628.83 719.89 630.39 714.26" style="fill:#ff7b00"></polygon><polygon points="655.24 758.07 658.27 756.02 656.52 751.92 654.72 754.03 655.24 758.07" style="fill:#ff7b00"></polygon><polygon points="748.35 687.16 750.41 685.4 749.57 682.84 746.81 685.26 748.35 687.16" style="fill:#ff7b00"></polygon><polygon points="664.04 761.04 666.35 758.65 664.8 756.39 662.25 758.6 664.04 761.04" style="fill:#ff7b00"></polygon><polygon points="677.22 735.36 681.51 736.29 681.42 732.75 677.22 735.36 677.22 735.36" style="fill:#ff7b00"></polygon></g><circle cx="511.9" cy="511.98" r="488.79" transform="translate(-223.99 499.94) rotate(-45)" style="fill:none"></circle></g></g></svg></span> </span> <a class="elementor-accordion-title" tabindex="0">CIS</a> </div> <div id="elementor-tab-content-1621" class="elementor-tab-content elementor-clearfix" data-tab="1" role="region" aria-labelledby="elementor-tab-title-1621"><p> <div data-elementor-type="page" data-elementor-id="20505" class="elementor elementor-20505" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-24439bbb local-chapter_section elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="24439bbb" data-element_type="section"> <div class="elementor-container elementor-column-gap-extended"> <div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-20b4bf9" data-id="20b4bf9" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-4bd96396 elementor-widget elementor-widget-text-editor" data-id="4bd96396" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong><span data-sheets-value="{"1":2,"2":"Angolan Geophysical Association (ASGA)"}" data-sheets-userformat="{"2":14461,"3":{"1":0,"3":1},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"9":0,"14":{"1":3,"3":1},"15":"Arial","16":10}">Azerbaijan Society of Petroleum Geologists (ASPG)</span><br /></strong>Azerbaijan</p> </div> </div> <div class="elementor-element elementor-element-1d6d48f5 e-grid-align-left local_chapter_socialmedia elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="1d6d48f5" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://australiangeomechanics.org/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-7f741b3" data-id="7f741b3" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-ab4ec90 elementor-widget elementor-widget-text-editor" data-id="ab4ec90" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong><span data-sheets-value="{"1":2,"2":"Angolan Geophysical Association (ASGA)"}" data-sheets-userformat="{"2":14461,"3":{"1":0,"3":1},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"9":0,"14":{"1":3,"3":1},"15":"Arial","16":10}">Mongolian Society of Economic Geologists (MonSEG)</span><br /></strong>Mongolia</p> </div> </div> <div class="elementor-element elementor-element-44b1c32 e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="44b1c32" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://monseg.mn/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-bfb6733" data-id="bfb6733" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-b0e3dad elementor-widget elementor-widget-text-editor" data-id="b0e3dad" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong><span data-sheets-value="{"1":2,"2":"Angolan Geophysical Association (ASGA)"}" data-sheets-userformat="{"2":14461,"3":{"1":0,"3":1},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"9":0,"14":{"1":3,"3":1},"15":"Arial","16":10}">Mongolian Society of Exploration Geophysicists (MGS)</span><br /></strong>Mongolia</p> </div> </div> <div class="elementor-element elementor-element-46779c9 e-grid-align-left local_chapter_socialmedia elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="46779c9" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://australiangeomechanics.org/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-f7fdc83" data-id="f7fdc83" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-184aae9 elementor-widget elementor-widget-text-editor" data-id="184aae9" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong><span data-sheets-value="{"1":2,"2":"Angolan Geophysical Association (ASGA)"}" data-sheets-userformat="{"2":14461,"3":{"1":0,"3":1},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"9":0,"14":{"1":3,"3":1},"15":"Arial","16":10}">Kazakhstan Society of Petroleum Geologists (KONG)</span><br /></strong>Kazakhstan</p> </div> </div> <div class="elementor-element elementor-element-1c15ade e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="1c15ade" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="http://kong.kz/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> </div> </div> </div> </section> </div> </p></div> </div> </div> </div> </div> <div class="elementor-element elementor-element-f691987 student_map_accordion elementor-widget elementor-widget-accordion" data-id="f691987" data-element_type="widget" data-widget_type="accordion.default"> <div class="elementor-widget-container"> <div class="elementor-accordion"> <div class="elementor-accordion-item"> <div id="elementor-tab-title-2581" class="elementor-tab-title" data-tab="1" role="button" aria-controls="elementor-tab-content-2581" aria-expanded="false"> <span class="elementor-accordion-icon elementor-accordion-icon-left" aria-hidden="true"> <span class="elementor-accordion-icon-closed"><i class="fas fa-plus"></i></span> <span class="elementor-accordion-icon-opened"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 1000 1000"><defs><radialGradient id="Sfumatura_senza_nome_2" cx="608.8" cy="391.07" r="647.11" gradientUnits="userSpaceOnUse"><stop offset="0.41" stop-color="#fff"></stop><stop offset="0.51" stop-color="#f9f9f9"></stop><stop offset="0.64" stop-color="#e9e9e9"></stop><stop offset="0.79" stop-color="#cecece"></stop><stop offset="0.86" stop-color="#bfbfbf"></stop><stop offset="0.99" stop-color="#e6e6e6"></stop></radialGradient></defs><g style="isolation:isolate"><g id="Layer_1" data-name="Layer 1"><path d="M511.9,23.19c270,0,488.79,218.84,488.79,488.79S781.85,1000.77,511.9,1000.77,23.11,781.93,23.11,512,242,23.19,511.9,23.19m0-11.21A500.13,500.13,0,0,0,317.28,972.69,500.13,500.13,0,0,0,706.53,51.28,496.84,496.84,0,0,0,511.9,12Z" transform="translate(-11.9 -11.98)" style="fill:#fff"></path><path d="M511.89,1002.54c-131,0-254.21-51-346.86-143.68S21.35,643,21.35,512,72.37,257.76,165,165.11,380.87,21.43,511.89,21.43s254.23,51,346.88,143.68S1002.45,381,1002.45,512s-51,254.22-143.68,346.88S642.93,1002.54,511.89,1002.54Z" transform="translate(-11.9 -11.98)" style="fill:url(#Sfumatura_senza_nome_2)"></path><path d="M511.9,23.19c270,0,488.78,218.84,488.78,488.79S781.85,1000.77,511.9,1000.77,23.11,781.93,23.11,512,242,23.19,511.9,23.19m0-3.53a492.45,492.45,0,0,0-191.63,946A492.45,492.45,0,0,0,703.53,58.35,489.29,489.29,0,0,0,511.9,19.66Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><g style="mix-blend-mode:multiply"><path d="M445.09,116.49a219.41,219.41,0,0,1-27.65-5.87c-.45.38-.9.76-1.34,1.15a223.8,223.8,0,0,0,28.11,6Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M394.92,102.1a62,62,0,0,1-15-10.1l-1.95.85a63.17,63.17,0,0,0,15.23,10.26Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M477.81,120.87c.11-.44.23-.87.34-1.3-2.76-.12-5.53-.26-8.29-.44-8.51-.56-16.61-1.43-24.25-2.56l-.87,1.25c7.76,1.15,16,2,24.64,2.6Q473.6,120.69,477.81,120.87Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M521.59,25.86c-11.45-.46-22.85-.33-34,.3l.19.23c10.93-.63,22.14-.75,33.4-.3Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M487.06,26.2c-11.1.65-21.91,1.82-32.19,3.45l.71.17c10.12-1.6,20.75-2.75,31.67-3.4Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M400.68,44.74l1.59-.07a168.3,168.3,0,0,1,23.85-8.51l-1.2-.07A171.67,171.67,0,0,0,400.68,44.74Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M512.35,120.57l-.21-1.29c-10.93.63-22.14.75-33.41.31l-.33,1.3C489.85,121.34,501.24,121.22,512.35,120.57Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M382.25,55.61l1.89-.25A86.23,86.23,0,0,1,401.9,44.83l-1.59.08A87.62,87.62,0,0,0,382.25,55.61Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M455.06,29.9l-.72-.17A264.61,264.61,0,0,0,425.39,36l1.18.06A262,262,0,0,1,455.06,29.9Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M379.74,91.82c-3.75-3.62-6.24-7.46-7.33-11.43q-1,.31-2.07.66c1.11,4,3.64,7.93,7.44,11.61Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M370.28,80.84l2.08-.66a17.94,17.94,0,0,1,1.22-12.26l-2.05.45A18.19,18.19,0,0,0,370.28,80.84Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M373.37,65.05a23.62,23.62,0,0,0-1.74,3.11l2.05-.46a25.47,25.47,0,0,1,1.72-3,39.55,39.55,0,0,1,8.49-9.09l-1.88.25A40.25,40.25,0,0,0,373.37,65.05Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M417,110.49a129.72,129.72,0,0,1-21.77-8.24l-1.7,1a132.88,132.88,0,0,0,22.12,8.38Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M599.27,102l-1.61-1a167.36,167.36,0,0,1-23.84,8.51l1.22,1.14A171.07,171.07,0,0,0,599.27,102Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M617.68,91.1l-1.91-.82A86.14,86.14,0,0,1,598,100.81l1.62,1A86.74,86.74,0,0,0,617.68,91.1Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M545.11,117.08l-.75-1.24c-10.11,1.6-20.74,2.76-31.66,3.41.08.43.15.86.23,1.29C524,119.88,534.83,118.71,545.11,117.08Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M629.6,65.87l-2.1-.41a17.93,17.93,0,0,1-1.2,12.26l2.08.62A18.18,18.18,0,0,0,629.6,65.87Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M530,26.55c8.47.56,16.55,1.42,24.16,2.54l.9-.18c-7.74-1.14-15.94-2-24.56-2.59Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M626.52,81.7a24.88,24.88,0,0,0,1.76-3.15l-2.08-.61A26,26,0,0,1,624.47,81a39.47,39.47,0,0,1-8.46,9l1.92.82A40.27,40.27,0,0,0,626.52,81.7Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M574.58,110.76l-1.22-1.14a259.18,259.18,0,0,1-28.47,6.14l.75,1.24A266.77,266.77,0,0,0,574.58,110.76Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M522.18,25.88l-.37.23,8.2.44.5-.23Q526.34,26.05,522.18,25.88Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M629.54,65.67c-1.11-4-3.65-7.94-7.46-11.62l-2-.22c3.75,3.62,6.24,7.45,7.34,11.43Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M604.89,43.55a62.4,62.4,0,0,1,15,10.09l2,.22a63.31,63.31,0,0,0-15.25-10.25Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M582.79,35.16a131.06,131.06,0,0,1,21.78,8.24l1.73.05a132.29,132.29,0,0,0-22.14-8.37Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M554.69,29.17A220.14,220.14,0,0,1,582.36,35l1.37-.09a224.6,224.6,0,0,0-28.13-6Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M724.31,152.92l-1.68-1.25c-9.11,7.27-20.57,14-33.94,20.14l1.43,1.4C703.6,167.05,715.14,160.24,724.31,152.92Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M679.08,52.6A218,218,0,0,1,701.22,62l1.53.58a217.13,217.13,0,0,0-20.93-9Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M746.92,105.1l-1.86-.9a34.2,34.2,0,0,1-2.3,23.45c.62.35,1.23.71,1.84,1.07A34.46,34.46,0,0,0,746.92,105.1Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M741.08,135.09a48.88,48.88,0,0,0,3.33-6l-1.84-1.07a48.63,48.63,0,0,1-3.3,5.91,76,76,0,0,1-16.17,17.32l1.69,1.25A76.62,76.62,0,0,0,741.08,135.09Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M525.75,208.72c21-1.25,41.52-3.47,61-6.56l-.66-1.61c-19.34,3.06-39.67,5.27-60.55,6.5Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M689.43,173.53,688,172.12a321.39,321.39,0,0,1-45.59,16.29l1.09,1.52A323.63,323.63,0,0,0,689.43,173.53Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M587.09,200.39c.22.53.44,1.07.67,1.61a498.48,498.48,0,0,0,54.86-11.82l-1.08-1.53A499.46,499.46,0,0,1,587.09,200.39Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M701.83,62.31c11.79,5.91,21.44,12.39,28.7,19.29l1.75.73c-7.31-7-17-13.49-28.91-19.44Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M746.81,104.7c-2.12-7.65-6.92-15-14.15-22L730.91,82c7.17,6.92,12,14.25,14,21.85Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M271.28,154.6c-7.16-6.92-11.92-14.25-14-21.85l-1.8,1.1c2.1,7.66,6.89,15.05,14.11,22Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M255.36,133.46l1.81-1.11a34.27,34.27,0,0,1,2.34-23.45l-1.79.93A34.56,34.56,0,0,0,255.36,133.46Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M342.55,190.32a249.92,249.92,0,0,1-41.63-15.76L299.45,176a251.62,251.62,0,0,0,41.93,15.88Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M460.58,207.72l-.27,1.67c21.69.85,43.3.61,64.36-.61l-.21-1.66C503.56,208.32,482.12,208.56,460.58,207.72Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M396.25,201.79a420.49,420.49,0,0,1-52.88-11.24c-.39.52-.78,1-1.16,1.55a426.14,426.14,0,0,0,53.28,11.32C395.74,202.87,396,202.33,396.25,201.79Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M300.31,174.26c-11.77-5.91-21.41-12.39-28.66-19.3l-1.7,1.28c7.3,6.95,17,13.49,28.88,19.44Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M278.06,85.64l1.63-.75c9.12-7.27,20.59-14,34-20.13l-1.37.6C298.8,71.52,287.24,78.32,278.06,85.64Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M396.49,203.57c14.72,2.18,30.33,3.84,46.72,4.92q8,.52,16,.85c.09-.56.19-1.11.28-1.67q-7.92-.33-15.86-.84c-16.27-1.07-31.76-2.73-46.36-4.89Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M319.49,62.19l-3.1,1.34L313,65l1.38-.6Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M261.21,103.53a49.07,49.07,0,0,0-3.29,5.89l1.78-.93a49.21,49.21,0,0,1,3.27-5.85,76.34,76.34,0,0,1,16.25-17.37l-1.63.75A76.48,76.48,0,0,0,261.21,103.53Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M847.12,170.61l-1.53-1.3c2.82,10.68,1.87,21.73-3.22,32.93l1.51,1.44C849,192.44,850,181.34,847.12,170.61Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M847,170.06c-3-10.72-9.69-21.07-19.82-30.83l-1.43-1.17c10.07,9.72,16.78,20,19.72,30.7Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M816.72,130.25q4.56,3.58,8.47,7.31l1.44,1.17c-2.47-2.35-5.15-4.67-8-6.95Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M624.28,306.29a701.13,701.13,0,0,0,76.82-16.55l-.9-1.82a697.43,697.43,0,0,1-76.49,16.48Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M537.46,315.7c29.45-1.75,58.13-4.86,85.41-9.18-.19-.63-.37-1.27-.56-1.9-27.15,4.31-55.71,7.41-85,9.15Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M815.48,237.57l-1.39-1.6c-12.79,10.22-28.89,19.7-47.67,28.29.4.57.79,1.15,1.18,1.72C786.47,257.35,802.63,247.82,815.48,237.57Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M701.42,287.57l.9,1.82a453,453,0,0,0,64.31-23l-1.18-1.71A452.41,452.41,0,0,1,701.42,287.57Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M839,212.61a67.91,67.91,0,0,0,4.66-8.35l-1.51-1.45a66.57,66.57,0,0,1-4.64,8.31c-5.51,8.48-13.17,16.61-22.72,24.32.47.53.93,1.06,1.39,1.6C825.73,229.29,833.42,221.12,839,212.61Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M220.93,267.7c-16.53-8.29-30.08-17.4-40.26-27.1l-1.36,1.61c10.22,9.74,23.83,18.89,40.43,27.22Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M180.15,240.1c-10.06-9.72-16.74-20-19.67-30.7L159,210.87c2.94,10.72,9.65,21.08,19.75,30.84C179.24,241.17,179.69,240.63,180.15,240.1Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M446,314.69c-.07.65-.14,1.29-.22,1.94,30.39,1.19,60.63.86,90.12-.84l-.18-1.94C506.4,315.55,476.29,315.88,446,314.69Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M185.81,147.38l-1.74,1.56a99.8,99.8,0,0,0-17,19.47,69.93,69.93,0,0,0-4.62,8.25l1.44-1.33C172.35,160.79,172.68,160.23,185.81,147.38Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M280.25,290.26c-22.21-6.41-41.83-13.86-58.46-22.13-.4.58-.8,1.15-1.19,1.73,16.71,8.31,36.41,15.79,58.72,22.23Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M158.88,210.32c.48-.49,1-1,1.45-1.48-2.79-10.68-1.83-21.74,3.29-32.93l-1.44,1.33C157,188.49,156.07,199.59,158.88,210.32Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M356.48,308.48c20.6,3.06,42.46,5.39,65.41,6.89q11.19.75,22.37,1.2l.21-1.94q-11.12-.45-22.27-1.19c-22.85-1.5-44.61-3.82-65.12-6.86Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M355.07,308.27c.21-.63.41-1.27.61-1.9a590.13,590.13,0,0,1-74.28-15.78l-.93,1.83A594.45,594.45,0,0,0,355.07,308.27Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M925.44,258.34l-1.12-1.65c3.45,13.07,2.29,26.58-3.94,40.27l1.1,1.75C927.73,285,928.89,271.44,925.44,258.34Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M748.7,403.33c28.93-8.13,55.35-17.54,78.49-28l-.87-2c-23.08,10.48-49.43,19.86-78.29,28C748.25,402,748.48,402.65,748.7,403.33Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M547.47,435.43c35.95-2.13,71-5.93,104.25-11.2l-.42-2.07c-33.21,5.26-68.12,9-104,11.17Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M653.44,424a852.52,852.52,0,0,0,93.76-20.21l-.66-2A853,853,0,0,1,653,421.88C653.15,422.57,653.3,423.26,653.44,424Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M915.47,309.6a85.37,85.37,0,0,0,5.69-10.18l-1.11-1.75a84.83,84.83,0,0,1-5.67,10.15c-6.74,10.37-16.11,20.31-27.78,29.75l1,1.85C899.32,330,908.72,320,915.47,309.6Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M435.75,434.47c0,.7-.09,1.4-.13,2.1,37.08,1.45,74,1.05,110-1-.05-.7-.09-1.4-.14-2.1C509.57,435.51,472.74,435.92,435.75,434.47Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M827.51,372.8l.87,1.95c23-10.54,42.76-22.16,58.43-34.68l-1-1.86C870.16,350.7,850.48,362.29,827.51,372.8Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M925.26,257.67a72,72,0,0,0-10.75-22.13l-1.34-1.93a71.87,71.87,0,0,1,11,22.41Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M94,257.76l-.83,1.55c.65-1.18,1.32-2.35,2.05-3.53Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M92.48,260.66l-2.74,5.07,1-1.67C91.29,262.93,91.88,261.79,92.48,260.66Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M92.48,260.66l.73-1.35C93,259.76,92.72,260.21,92.48,260.66Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M110.64,343.25c-12.3-11.88-20.48-24.48-24.06-37.54l-1,1.78c3.58,13.08,11.78,25.72,24.11,37.63Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M160.5,377c-20.22-10.14-36.78-21.28-49.23-33.14l-1,1.87c12.48,11.89,29.08,23.05,49.35,33.22Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M326.57,426.63c25.14,3.72,51.82,6.57,79.83,8.41q13.67.9,27.31,1.45c0-.7.09-1.4.13-2.1q-13.6-.56-27.23-1.45c-27.94-1.84-54.55-4.67-79.63-8.39C326.84,425.24,326.71,425.93,326.57,426.63Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M324.85,426.37l.42-2.08A724.16,724.16,0,0,1,234.44,405c-.22.67-.43,1.35-.65,2A723.81,723.81,0,0,0,324.85,426.37Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M232.38,406.62l.66-2c-27.16-7.84-51.15-16.95-71.49-27.06l-.84,2C181.11,389.62,205.15,398.76,232.38,406.62Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M85.38,306.81l1-1.77c-3.42-13.07-2.23-26.58,4-40.27l-1,1.67C83.13,280.16,82,293.71,85.38,306.81Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M868.77,494.15c25.7-11.76,47.73-24.73,65.22-38.71l-.57-2.05c-17.48,14-39.48,26.92-65.15,38.67C868.44,492.75,868.6,493.45,868.77,494.15Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M779.82,526.05c32.29-9.07,61.79-19.57,87.62-31.29-.17-.7-.33-1.4-.5-2.1-25.8,11.71-55.25,22.2-87.51,31.26C779.57,524.63,779.69,525.34,779.82,526.05Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M555.2,561.89c40.13-2.38,79.21-6.62,116.37-12.5-.08-.73-.17-1.45-.25-2.17-37.12,5.88-76.15,10.11-116.23,12.49C555.13,560.44,555.17,561.17,555.2,561.89Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M673.49,549.08a956.27,956.27,0,0,0,104.66-22.56c-.12-.71-.25-1.42-.38-2.14a950,950,0,0,1-104.54,22.53C673.32,547.64,673.4,548.36,673.49,549.08Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M977.11,364.21l-.63-1.93c3.85,14.6,2.55,29.71-4.41,45l.63,2C979.67,394,981,378.84,977.11,364.21Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M965.36,419.43c-7.52,11.58-18,22.7-31.05,33.24.2.68.39,1.37.58,2.05C948,444.16,958.45,433,966,421.44a94.08,94.08,0,0,0,6.35-11.37l-.63-2A92.52,92.52,0,0,1,965.36,419.43Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M975.89,360.12l-.74-2.25c.41,1.21.79,2.43,1.12,3.66.22.64.43,1.28.64,1.93C976.6,362.34,976.26,361.23,975.89,360.12Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M67.22,461.77c13.93,13.27,32.47,25.74,55.09,37.09.14-.7.28-1.4.43-2.1-22.6-11.34-41.11-23.79-55-37.05C67.55,460.4,67.39,461.08,67.22,461.77Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M203.49,529.73c.1-.72.21-1.43.32-2.14-30.36-8.77-57.17-19-79.9-30.25-.15.7-.29,1.4-.43,2.1C146.25,510.76,173.09,521,203.49,529.73Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M39.56,385.2a63.72,63.72,0,0,0-.17,33.12c.17-.67.35-1.34.53-2a63.68,63.68,0,0,1,.25-33.41Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M430.39,561c0,.73,0,1.46,0,2.18,41.39,1.63,82.61,1.17,122.78-1.15,0-.72-.07-1.45-.11-2.18C512.9,562.15,471.74,562.6,430.39,561Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M67,459c-13.75-13.29-22.88-27.37-26.88-42-.18.67-.36,1.34-.53,2,4,14.61,13.15,28.71,26.92,42C66.67,460.4,66.84,459.71,67,459Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M308.62,552.06c28.07,4.16,57.85,7.34,89.12,9.39q15.24,1,30.47,1.63c0-.73,0-1.46.05-2.18q-15.21-.63-30.44-1.63c-31.23-2-61-5.22-89-9.38C308.75,550.62,308.68,551.34,308.62,552.06Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M306.7,551.78c.07-.73.13-1.45.2-2.17A809.44,809.44,0,0,1,205.38,528c-.11.71-.21,1.43-.32,2.14A810.94,810.94,0,0,0,306.7,551.78Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M682.62,673.62l0,1.08,0,1a989.91,989.91,0,0,0,108.48-23.39l0-1c0-.36,0-.72,0-1.08A989.65,989.65,0,0,1,682.62,673.62Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M792.84,649.76l0,1.08c0,.35,0,.69,0,1,33.47-9.4,64-20.29,90.81-32.44,0-.34,0-.69,0-1l0-1.08C856.87,629.47,826.31,640.35,792.84,649.76Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M999.51,497a71,71,0,0,1-6.76,31.68l0,1.08c0,.35,0,.7,0,1a71,71,0,0,0,6.77-31.34l0-1.21Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M992.37,529.54a97.38,97.38,0,0,1-6.58,11.78c-7.82,12-18.68,23.56-32.23,34.5l0,1.08,0,1C967.16,567,978,555.47,985.84,543.45a96.89,96.89,0,0,0,6.58-11.79c0-.34,0-.69,0-1Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M885,616.69l0,1.08c0,.35,0,.7,0,1.05,26.64-12.19,49.47-25.64,67.61-40.13l0-1,0-1.08C934.5,591.06,911.66,604.5,885,616.69Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M560,686.9l0,1.08,0,1c41.59-2.47,82.09-6.86,120.61-13l0-1,0-1.08C642.12,680,601.62,684.44,560,686.9Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M112.55,622.18l0,1.08,0,1C136.2,636,164,646.59,195.53,655.69l0-1c0-.36,0-.72,0-1.08C164,644.47,136.15,633.9,112.55,622.18Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M25.6,538.88l0,1.07,0,1c4.15,15.14,13.63,29.76,27.9,43.54l0-1,0-1.08C39.23,568.63,29.75,554,25.6,538.88Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M23.23,522.86l0,1.24,0,1.21a66.51,66.51,0,0,0,2.16,14.91l0-1.05,0-1.08A66.3,66.3,0,0,1,23.23,522.86Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M430.61,688.22l0,1.08,0,1c42.9,1.69,85.62,1.22,127.26-1.19l0-1,0-1.08C516.24,689.43,473.52,689.9,430.61,688.22Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M54.24,583.13l0,1.08,0,1C68.73,599,88,611.93,111.4,623.69l0-1,0-1.08C87.89,609.81,68.68,596.89,54.24,583.13Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M396.81,686.45c-32.41-2.13-63.28-5.42-92.37-9.74l0,1.08,0,1.05c29.09,4.31,60,7.6,92.37,9.73q15.79,1,31.59,1.69l0-1,0-1.08Q412.62,687.49,396.81,686.45Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M197.11,654c0,.36,0,.72,0,1.08l0,1a838.22,838.22,0,0,0,105.35,22.38c0-.35,0-.69,0-1l0-1.08A837.39,837.39,0,0,1,197.11,654Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M784.15,768c.09-.59.18-1.19.28-1.78a954.69,954.69,0,0,1-104.67,22.55l-.15,1.76A952.28,952.28,0,0,0,784.15,768Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M785.81,767.56c32.26-9.07,61.71-19.56,87.51-31.26l.39-1.83c-25.83,11.72-55.32,22.23-87.61,31.3C786,766.37,785.91,767,785.81,767.56Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M941.17,694.43l-.48,1.88c13.06-10.55,23.53-21.66,31.06-33.25a94.36,94.36,0,0,0,6.34-11.35l.51-1.93a94,94,0,0,1-6.34,11.37C964.72,672.75,954.23,683.87,941.17,694.43Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M978.45,650.92a77.12,77.12,0,0,0,4.19-11.49l.61-2.29A75.85,75.85,0,0,1,979,649C978.8,649.63,978.63,650.28,978.45,650.92Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M561.47,803.35c40.08-2.38,79.11-6.61,116.22-12.49l.15-1.76c-37.16,5.89-76.24,10.13-116.37,12.51Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M939.8,697c.15-.62.31-1.25.47-1.87-17.5,14-39.53,27-65.23,38.71l-.39,1.82C900.32,724,922.32,711,939.8,697Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M436.77,804.62c41.34,1.62,82.5,1.17,122.63-1.15v-1.74c-40.17,2.32-81.39,2.77-122.78,1.15Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M314.89,791.78l.3,1.75c28,4.16,57.77,7.33,89,9.38q15.22,1,30.44,1.62c-.05-.57-.1-1.16-.15-1.74q-15.23-.62-30.47-1.62C372.74,799.11,343,795.94,314.89,791.78Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M74.08,703.35c13.91,13.26,32.43,25.71,55,37-.17-.6-.35-1.21-.52-1.82C106,727.22,87.42,714.76,73.49,701.48,73.69,702.11,73.88,702.73,74.08,703.35Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M47.64,664.48c4.46,13.25,13.17,26,25.73,38.19-.2-.63-.4-1.25-.59-1.87-12.68-12.25-21.44-25.17-25.87-38.55Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M130.27,741c22.74,11.3,49.55,21.48,79.91,30.25l-.42-1.79c-30.4-8.77-57.24-19-80-30.28C129.92,739.77,130.1,740.37,130.27,741Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M211.75,771.68a809.44,809.44,0,0,0,101.52,21.57l-.3-1.76a807.39,807.39,0,0,1-101.64-21.6Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M447.8,895c37,1.45,73.82,1,109.71-1l.06-1.32c-36,2.07-72.91,2.48-110,1C447.65,894.11,447.73,894.55,447.8,895Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M758.59,862.25l.58-1.41a857.37,857.37,0,0,1-93.77,20.21c-.11.45-.23.9-.34,1.36A855.31,855.31,0,0,0,758.59,862.25Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M559.37,893.86c35.86-2.13,70.77-5.92,104-11.18l.33-1.36c-33.29,5.28-68.3,9.07-104.25,11.21Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M839.56,833.32c23-10.5,42.65-22.1,58.29-34.59l.93-1.57c-15.67,12.52-35.41,24.14-58.43,34.68C840.09,832.34,839.82,832.83,839.56,833.32Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M838.37,833.87l.78-1.49c-23.14,10.5-49.56,19.91-78.49,28-.19.47-.38.94-.58,1.41C788.94,853.72,815.29,844.34,838.37,833.87Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M926.43,768.35c.39-.61.78-1.22,1.15-1.82l1.23-2c-.44.73-.9,1.46-1.37,2.18-6.75,10.4-16.15,20.36-27.85,29.82l-.94,1.58C910.32,788.65,919.69,778.71,926.43,768.35Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M108.28,786.81l1.35,2a108,108,0,0,0,13.05,15c-.36-.52-.71-1-1.06-1.57A107.34,107.34,0,0,1,108.28,786.81Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M172.55,837.53c-.32-.49-.63-1-.94-1.47-20.27-10.17-36.88-21.34-49.35-33.23l1.06,1.56C135.76,816.25,152.33,827.39,172.55,837.53Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M173.59,838.05c20.34,10.11,44.33,19.22,71.49,27.06l-.75-1.4c-27.23-7.86-51.27-17-71.67-27.13Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M338.52,883.72l.51,1.35c25.08,3.72,51.69,6.56,79.63,8.39q13.62.9,27.23,1.46c-.08-.45-.15-.89-.23-1.33q-13.64-.55-27.3-1.46C390.34,890.29,363.66,887.45,338.52,883.72Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M246.49,865.52a723.53,723.53,0,0,0,90.82,19.3l-.51-1.36a723.81,723.81,0,0,1-91.06-19.35Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M717.06,932l.82-1a702.91,702.91,0,0,1-76.82,16.56l-.49.89A697.38,697.38,0,0,0,717.06,932Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M554.13,957.88c29.32-1.74,57.88-4.84,85-9.14l.48-.89c-27.28,4.32-56,7.44-85.41,9.18C554.2,957.32,554.17,957.6,554.13,957.88Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M718.28,931.69a452.38,452.38,0,0,0,64-22.87l1.11-1.06a454.19,454.19,0,0,1-64.31,23Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M832.27,878.9c-12.85,10.26-29,19.78-47.88,28.41l-1.11,1.07c18.78-8.6,34.88-18.08,47.67-28.29Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M838.74,873.41q-2.78,2.51-5.81,5l-1.32,1.19q2.8-2.26,5.39-4.59Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M204.16,890.57l1.9,1.54a187.24,187.24,0,0,0,31.71,19.71l-1.26-1.05A185.5,185.5,0,0,1,204.16,890.57Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M297.09,934.37l-1-1c-22.31-6.44-42-13.92-58.72-22.22.42.35.83.7,1.26,1C255.26,920.51,274.88,928,297.09,934.37Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M462.88,958.81c30.26,1.18,60.37.85,89.73-.84,0-.28.07-.56.11-.85-29.49,1.7-59.74,2-90.12.85C462.7,958.25,462.79,958.53,462.88,958.81Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M298.24,934.7a591.84,591.84,0,0,0,74.28,15.79l-.67-.88a594.24,594.24,0,0,1-74.61-15.85Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M373.25,949.82c.23.29.45.58.67.88,20.51,3,42.28,5.36,65.13,6.86q11.15.74,22.27,1.19c-.09-.28-.19-.56-.29-.85q-11.17-.45-22.37-1.19C415.71,955.2,393.85,952.87,373.25,949.82Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M606.65,986.29l.61-.39c-19.48,3.09-40,5.31-61,6.56l-.16.33C567,991.56,587.31,989.35,606.65,986.29Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M607.65,986.13a500.17,500.17,0,0,0,54.46-11.74l1-.47a499,499,0,0,1-54.86,11.82Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M706.42,958.83A331.55,331.55,0,0,1,664,973.67l-1,.48a335.64,335.64,0,0,0,40.35-14Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M341,968.74l2.74,1q9.15,3.35,19.38,6.3l-1.21-.46Q350.81,972.41,341,968.74Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M416.8,987.53l-.81-.37a426.31,426.31,0,0,1-53.29-11.32l1.21.45A421,421,0,0,0,416.8,987.53Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M481.14,993.46c21.54.84,43,.6,63.88-.6l.15-.34c-21.06,1.22-42.66,1.46-64.36.61Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M417,987.31l.81.37c14.6,2.16,30.1,3.82,46.37,4.89q7.92.51,15.85.84l-.33-.33q-8-.33-16-.85C447.32,991.15,431.71,989.49,417,987.31Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M521.22,26.09c-7.05,4.59-14.33,14.76-21.7,30.94,7.57-16.17,15.05-26.34,22.29-30.92l.37-.23a16.06,16.06,0,0,1,9.2-2.6l-.84,0a15.47,15.47,0,0,0-8.95,2.62Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M483.39,23.65l-.8.05c1.43-.09,2.92.73,4.47,2.5l.19.22C491,30.91,495.13,41,499.52,57c-4.19-16.08-8.11-26.15-11.7-30.64l-.19-.23C486.16,24.4,484.75,23.57,483.39,23.65Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M435.19,28.85l-.84.13a52.14,52.14,0,0,1,20,.75l.72.17c14,3.38,28.93,12.27,44.46,27.13-15.35-14.89-30.07-23.81-43.94-27.21l-.71-.17A50.78,50.78,0,0,0,435.19,28.85Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M380.12,40.86l-1,.3a140.06,140.06,0,0,1,45.84-5.07l1.2.07C449.37,37.54,474,44.34,499.52,57c-25.39-12.74-49.84-19.58-72.95-21L425.39,36A138.53,138.53,0,0,0,380.12,40.86Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M400.68,44.74a248.69,248.69,0,0,0-86.32,19.7L313,65c-1.13.49-2.25,1-3.37,1.5l-1.56.72c1.4-.65,2.82-1.28,4.24-1.9l1.37-.6a250.64,250.64,0,0,1,86.65-19.85l1.59-.08C421.55,44,455,44.31,499.52,57c-44.38-12.8-77.72-13.2-97.25-12.36Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M212,125.6c-.83.63-1.64,1.29-2.46,1.93C210.33,126.88,211.14,126.23,212,125.6Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M203,132.69c2.14-1.75,4.32-3.46,6.51-5.16-1.51,1.18-3,2.35-4.54,3.56Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M382.25,55.61A364.57,364.57,0,0,0,279.69,84.89l-1.63.75a345.53,345.53,0,0,0-66.09,40A347.2,347.2,0,0,1,277.59,86l1.63-.75A366.25,366.25,0,0,1,382,55.81l1.88-.25c47.27-5.88,78.95-2.48,115.63,1.47a415.09,415.09,0,0,0-115.38-1.67Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M71.81,298.64c-.51,1-1,2.07-1.49,3.11C70.81,300.71,71.3,299.67,71.81,298.64Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M371.63,68.16A461.74,461.74,0,0,0,259.7,108.49l-1.78.93a437.57,437.57,0,0,0-94,65.91l-1.44,1.33a417.58,417.58,0,0,0-71.7,87.4l-1,1.67q-9.7,16-17.93,32.91,8.1-16.53,17.6-32.2l1-1.67a418.19,418.19,0,0,1,71.75-87.53l1.44-1.33a439.07,439.07,0,0,1,94.1-66.08l1.79-.93a463.51,463.51,0,0,1,112-40.53l2.05-.45A498.67,498.67,0,0,1,499.52,57,497.5,497.5,0,0,0,373.68,67.7Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M66,310.94c1.39-3.09,2.84-6.14,4.31-9.19-.75,1.56-1.52,3.11-2.25,4.68Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M36.5,625.07c.17.72.35,1.44.52,2.16C36.84,626.51,36.67,625.79,36.5,625.07Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M39.6,637.53c-.91-3.41-1.76-6.85-2.58-10.3.39,1.62.75,3.25,1.16,4.86Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M40.12,417.07A452.3,452.3,0,0,1,85.56,307.49l1-1.78A484.64,484.64,0,0,1,159,210.87l1.45-1.47a509.12,509.12,0,0,1,95-75.55l1.8-1.1a519.83,519.83,0,0,1,113.07-51.7q1-.35,2.07-.66A526,526,0,0,1,499.52,57,526.32,526.32,0,0,0,372.36,80.18l-2.08.66a519.57,519.57,0,0,0-113.11,51.51l-1.81,1.11a508.88,508.88,0,0,0-95,75.38c-.48.5-1,1-1.45,1.48A483.45,483.45,0,0,0,86.4,305l-1,1.77A451.14,451.14,0,0,0,39.92,416.32c-.18.66-.36,1.33-.53,2a432.18,432.18,0,0,0-14,119.77l0,1.08,0,1.05A423,423,0,0,0,36.5,625.07,422.77,422.77,0,0,1,25.66,541l0-1,0-1.07a432.88,432.88,0,0,1,14-119.81C39.76,418.41,39.94,417.74,40.12,417.07Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M172,862.1c-4.1-4-8.07-8.05-12-12.21,3.22,3.41,6.44,6.8,9.78,10.08Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M158.64,848.51c.44.47.91.91,1.35,1.38C159.55,849.43,159.08,849,158.64,848.51Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M67.72,459.71a516.87,516.87,0,0,1,42.59-114l1-1.87a553.06,553.06,0,0,1,68-101.66l1.36-1.61A559,559,0,0,1,270,156.24l1.7-1.28A535.76,535.76,0,0,1,378,92.85l1.95-.85A500.26,500.26,0,0,1,499.52,57,500.34,500.34,0,0,0,379.74,91.82l-2,.84a536,536,0,0,0-106.5,61.94l-1.7,1.28a557.88,557.88,0,0,0-89.43,84.22c-.46.53-.91,1.07-1.37,1.61a551,551,0,0,0-68.14,101.54l-1,1.87A515.76,515.76,0,0,0,67,459c-.16.68-.33,1.37-.49,2.05a473.65,473.65,0,0,0-13,121.34l0,1.08,0,1A426.18,426.18,0,0,0,72.78,700.8c.19.62.39,1.24.59,1.87a388.43,388.43,0,0,0,48.25,99.54c.35.53.7,1,1.06,1.57a378.47,378.47,0,0,0,36,44.73,377.38,377.38,0,0,1-35.32-44.12l-1.06-1.56a388,388,0,0,1-48.18-99.48c-.2-.62-.39-1.24-.59-1.87A426.91,426.91,0,0,1,54.3,585.25l0-1,0-1.08a474.82,474.82,0,0,1,13-121.36C67.39,461.08,67.55,460.4,67.72,459.71Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M274,937.32c1.8,1.08,3.59,2.16,5.41,3.2C277.6,939.48,275.81,938.4,274,937.32Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M269.56,934.58c1.48.92,3,1.84,4.45,2.74C272.52,936.42,271,935.5,269.56,934.58Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M279.42,940.52c3.66,2.1,7.37,4.09,11.12,6Q284.92,943.66,279.42,940.52Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M394.92,102.1l-1.71,1a523.37,523.37,0,0,0-92.9,71.15l-1.48,1.42a602.36,602.36,0,0,0-77.9,92l-1.19,1.73A636.81,636.81,0,0,0,160.5,377l-.84,1.95a614.85,614.85,0,0,0-36.92,117.8c-.15.7-.29,1.4-.43,2.1a555.87,555.87,0,0,0-11,122.71l0,1.08,0,1c1.15,41.09,7.09,79.56,17.18,114.88.17.61.35,1.22.52,1.82a375.75,375.75,0,0,0,42.51,95.67c.31.49.62,1,.94,1.47a316.84,316.84,0,0,0,64,73.24l1.26,1.05a296.11,296.11,0,0,0,31.79,22.76,293.33,293.33,0,0,1-30.93-22.34c-.43-.34-.84-.69-1.26-1a316.17,316.17,0,0,1-63.78-73.15l-.93-1.47A375.93,375.93,0,0,1,130.27,741c-.17-.61-.35-1.21-.52-1.82-10.06-35.31-16-73.77-17.14-114.86l0-1,0-1.08a558,558,0,0,1,10.93-122.74c.14-.7.28-1.4.43-2.1a616.6,616.6,0,0,1,36.8-117.85l.84-2a638.54,638.54,0,0,1,59-107.67c.39-.58.79-1.15,1.19-1.73A603,603,0,0,1,299.45,176l1.47-1.42a523.16,523.16,0,0,1,92.62-71.29l1.7-1h0c42.61-25,71.19-34.39,104.28-45.22A434.9,434.9,0,0,0,394.92,102.1Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M293.74,948.21c-1.07-.54-2.13-1.11-3.2-1.66.45.23.89.5,1.34.72Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M457.56,80.33q5.07-3.33,10.21-6.43C464.23,76,460.84,78.17,457.56,80.33Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M457.48,80.38l.08,0Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M449.15,86c2.77-1.93,5.54-3.83,8.33-5.66Q453.23,83.17,449.15,86Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M467.77,73.9l.17-.11Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M430.91,99.59C437,94.84,443,90.36,449.15,86Q439.93,92.46,430.91,99.59Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M467.94,73.79c2.79-1.68,5.59-3.29,8.4-4.88C473.44,70.54,470.65,72.16,467.94,73.79Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M205.38,528a794.87,794.87,0,0,1,28.41-121c.22-.67.43-1.35.65-2a781.93,781.93,0,0,1,46-112.58l.93-1.83a674,674,0,0,1,60.81-98.49c.38-.52.77-1,1.16-1.55,22.44-29.79,46.84-56.36,72.73-78.78.44-.39.89-.77,1.34-1.15,4.44-3.82,8.94-7.47,13.47-11-4.49,3.47-9.07,7.09-13.9,10.9l-1.35,1.16c-26,22.38-50.55,48.91-73.11,78.67l-1.17,1.54a672.64,672.64,0,0,0-61.13,98.4l-.93,1.83A778.41,778.41,0,0,0,233,404.59l-.66,2a790.83,790.83,0,0,0-28.57,121c-.11.71-.22,1.42-.32,2.14a714.7,714.7,0,0,0-8,123.84c0,.36,0,.72,0,1.08l0,1c1.14,41.08,6.05,79.16,14.23,113.75l.42,1.79c8.29,34.47,19.84,65.45,34.15,92.48l.75,1.4c14.41,26.89,31.58,49.82,51,68.31l1,1c19.51,18.35,41.27,32.24,64.79,41.23l1.21.46q6.15,2.3,12.43,4.14l1.21.35q-6.5-1.89-12.82-4.26l-1.21-.45c-23.4-9-45.05-22.82-64.46-41.14l-1-.94c-19.33-18.47-36.41-41.37-50.75-68.24l-.75-1.41c-14.24-27-25.74-58-34-92.43l-.42-1.79c-8.14-34.58-13-72.65-14.17-113.73l0-1c0-.36,0-.72,0-1.08a718.79,718.79,0,0,1,7.95-123.85C205.17,529.47,205.27,528.75,205.38,528Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M492.66,60.33c2.29-1.11,4.56-2.25,6.86-3.3C497.16,58.14,494.88,59.24,492.66,60.33Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M476.34,68.91c5.07-2.84,10.46-5.68,16.32-8.58C487.18,63,481.74,65.86,476.34,68.91Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M308.82,549.89a1200.56,1200.56,0,0,1,17.75-123.26c.14-.7.27-1.39.41-2.08a1123.24,1123.24,0,0,1,29.5-116.07l.6-1.9a876.47,876.47,0,0,1,39.41-103l.76-1.63c14.6-31.45,30.53-59.81,47.49-84.12l.87-1.25c17-24.24,35.11-44.41,53.91-59.54-19,15.1-37.22,35.24-54.43,59.46l-.88,1.25c-17.12,24.29-33.21,52.62-48,84.05-.25.54-.51,1.08-.76,1.63a870.05,870.05,0,0,0-39.81,103c-.2.63-.4,1.27-.61,1.9a1114.58,1114.58,0,0,0-29.8,116l-.42,2.08a1189.07,1189.07,0,0,0-18,123.24c-.07.72-.13,1.44-.2,2.17a1087.54,1087.54,0,0,0-4.24,124.64l0,1.08c0,.35,0,.69,0,1,1.12,41.08,4.72,78.87,10.46,113l.3,1.76c5.82,33.94,13.77,64.16,23.53,90.21l.51,1.36c9.83,25.91,21.45,47.65,34.54,64.79l.67.88c13.14,17,27.74,29.35,43.47,36.67l.81.37A82.54,82.54,0,0,0,438.41,994l.92.14a80.85,80.85,0,0,1-21.53-6.47l-.81-.37c-15.58-7.3-30-19.65-43.07-36.61-.22-.3-.44-.59-.67-.88-13-17.12-24.49-38.85-34.22-64.75l-.51-1.35c-9.68-26-17.56-56.25-23.33-90.19l-.3-1.75c-5.7-34.07-9.27-71.86-10.39-112.94l0-1.05,0-1.08a1097,1097,0,0,1,4.18-124.65C308.68,551.34,308.75,550.62,308.82,549.89Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M430.39,561c.88-41.9,2.66-83.69,5.23-124.41,0-.7.09-1.4.13-2.1,2.6-40.69,6-80.29,10.07-117.84.08-.65.15-1.29.22-1.94,4.1-37.48,8.89-72.9,14.27-105.3l.27-1.67c5.4-32.3,11.37-61.56,17.82-86.83l.33-1.3c6.49-25.21,13.45-46.38,20.79-62.56-7.54,16.17-14.7,37.34-21.37,62.54-.11.43-.23.86-.34,1.3-6.64,25.26-12.78,54.51-18.34,86.8-.09.56-.19,1.11-.28,1.67-5.54,32.4-10.48,67.81-14.72,105.29l-.21,1.94c-4.21,37.55-7.72,77.14-10.42,117.82,0,.7-.09,1.4-.13,2.1-2.67,40.72-4.52,82.5-5.45,124.41,0,.72,0,1.45-.05,2.18-.89,41.9-.87,83.91.19,125l0,1.08,0,1c1.09,41.07,3.15,78.72,6,112.53,0,.58.1,1.17.15,1.74,2.91,33.68,6.63,63.5,11,89.06.08.44.15.88.23,1.33,4.42,25.4,9.52,46.54,15.14,63,.1.29.2.57.29.85,5.65,16.28,11.81,27.87,18.37,34.33l.33.33c3.73,3.57,7.58,5.49,11.53,5.68l.85,0c-3.86-.18-7.62-2.09-11.26-5.66l-.33-.33c-6.39-6.46-12.41-18-17.93-34.32-.09-.28-.18-.56-.28-.84-5.49-16.44-10.47-37.57-14.8-63-.07-.44-.15-.88-.22-1.33-4.31-25.55-8-55.37-10.81-89l-.15-1.74c-2.83-33.81-4.86-71.46-5.95-112.54l0-1,0-1.08c-1.05-41.14-1.11-83.15-.26-125.06C430.36,562.44,430.38,561.71,430.39,561Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M557.57,892.64l-.06,1.32c-1.13,25.46-2.74,46.65-4.79,63.16,0,.29-.07.57-.11.85-2.06,16.35-4.56,28-7.44,34.55l-.15.34c-1.7,3.74-3.53,5.72-5.48,5.84l.79-.05c2-.13,4-2.11,5.77-5.86l.16-.33c3-6.55,5.67-18.22,7.87-34.58,0-.28.07-.56.11-.85,2.18-16.51,3.9-37.71,5.13-63.17l.06-1.33c1.2-25.61,1.9-55.48,2-89.18v-1.74c.12-33.84-.33-71.51-1.39-112.58l0-1,0-1.08c-1.08-41.14-2.72-83.13-4.82-125,0-.72-.07-1.45-.11-2.18-2.11-41.87-4.68-83.62-7.62-124.28l-.15-2.1c-3-40.63-6.27-80.16-9.86-117.63l-.18-1.93c-3.6-37.41-7.48-72.74-11.53-105l-.21-1.67c-4-32.19-8.29-61.35-12.61-86.51-.08-.43-.15-.86-.23-1.29-4.34-25.1-8.76-46.16-13.18-62.22,4.22,16.07,8.46,37.14,12.62,62.25l.21,1.29c4.15,25.17,8.21,54.34,12.11,86.55l.21,1.66c3.89,32.32,7.62,67.66,11.09,105.07l.18,1.94c3.46,37.48,6.67,77,9.53,117.65,0,.7.09,1.4.14,2.1C548.46,476.21,551,518,553,559.83c0,.73.07,1.46.11,2.18,2,41.88,3.66,83.87,4.74,125l0,1.08,0,1c1.06,41.08,1.54,78.75,1.47,112.58v1.74C559.31,837.17,558.68,867,557.57,892.64Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M677.69,790.86c-2.92,34-7.67,64.3-14,90.46l-.33,1.36c-6.39,26-14.37,47.89-23.7,65.17l-.48.89c-9.37,17.13-20.09,29.66-31.91,37.16l-.61.39a51.47,51.47,0,0,1-18.9,7.2l.84-.13a52.56,52.56,0,0,0,19.06-7.23l.62-.39c12-7.52,22.81-20.07,32.3-37.22l.49-.89c9.44-17.31,17.52-39.19,24-65.22.11-.46.23-.91.34-1.36,6.42-26.18,11.24-56.49,14.21-90.5l.15-1.76a1031.19,1031.19,0,0,0,2.92-113l0-1,0-1.08c-1.11-41.14-4.25-83-9.13-124.54-.09-.72-.17-1.44-.26-2.17-5-41.56-11.64-82.86-19.79-123-.14-.69-.29-1.38-.43-2.07-8.21-40.06-17.88-78.9-28.73-115.59l-.57-1.89a1055.82,1055.82,0,0,0-36-102.4c-.23-.54-.45-1.08-.67-1.61-13-31.23-26.92-59.34-41.45-83.39l-.75-1.24c-14.6-24-29.81-43.88-45.37-58.73,15.37,14.88,30.42,34.8,44.84,58.81l.75,1.24c14.36,24.08,28.11,52.22,41,83.47l.66,1.61a1067.88,1067.88,0,0,1,35.56,102.46c.19.63.37,1.27.56,1.9,10.74,36.7,20.31,75.56,28.43,115.64l.42,2.07c8.07,40.11,14.7,81.42,19.6,123,.08.72.17,1.44.25,2.17,4.84,41.58,7.95,83.41,9.06,124.55l0,1.08,0,1a1044.79,1044.79,0,0,1-2.85,113Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M784.15,768c-5.48,34.55-13.94,65.65-25,92.82l-.58,1.41c-11.13,27-24.84,50.13-40.71,68.82l-.82,1c-15.95,18.54-34.06,32.66-53.93,41.89l-1,.47a135.88,135.88,0,0,1-19.26,7.06l1-.29a137.76,137.76,0,0,0,19.09-7l1-.48c20-9.26,38.22-23.41,54.27-42l.83-1c16-18.72,29.77-41.84,41-68.9.2-.47.39-.94.58-1.41,11.12-27.19,19.64-58.31,25.15-92.86.1-.6.19-1.19.29-1.79,5.41-34.68,7.81-72.81,6.79-113.89,0-.35,0-.69,0-1l0-1.08a828.27,828.27,0,0,0-13-123.71c-.13-.71-.25-1.42-.39-2.13A911,911,0,0,0,748.7,403.33c-.22-.68-.45-1.35-.67-2a878.65,878.65,0,0,0-45.71-111.92l-.9-1.82a728.34,728.34,0,0,0-57.92-97.64l-1.09-1.52c-21.06-29.49-43.66-55.71-67.37-77.78l-1.22-1.14C550,87.5,525.09,69.71,499.52,57c25.41,12.73,50.17,30.56,73.84,52.59l1.22,1.14c23.56,22.11,46,48.37,67,77.89l1.08,1.53a728.77,728.77,0,0,1,57.58,97.74l.9,1.82a884.66,884.66,0,0,1,45.44,112l.66,2a918.29,918.29,0,0,1,30.57,120.64c.13.72.26,1.43.38,2.14a833.58,833.58,0,0,1,13,123.72c0,.36,0,.72,0,1.08l0,1c1,41.09-1.36,79.2-6.73,113.88C784.33,766.83,784.24,767.43,784.15,768Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M873.32,736.3c-7.61,35.31-19.18,67.51-34.17,96.08l-.78,1.49c-15.1,28.44-33.6,53.25-55,73.89l-1.11,1.06a249.53,249.53,0,0,1-68.86,46.88L715,955a251.12,251.12,0,0,0,68.27-46.61l1.11-1.07c21.44-20.68,40-45.51,55.17-74,.26-.49.53-1,.79-1.48,15-28.6,26.65-60.82,34.3-96.15l.39-1.82c7.51-35.44,11-74,10-115,0-.35,0-.7,0-1.05l0-1.08a610.15,610.15,0,0,0-16.26-122.54c-.17-.7-.33-1.4-.5-2.09a675.64,675.64,0,0,0-39.89-117.31l-.87-1.95A684.84,684.84,0,0,0,767.6,266c-.39-.57-.78-1.15-1.18-1.72a625.49,625.49,0,0,0-76.3-91l-1.43-1.4a515.53,515.53,0,0,0-89.05-70l-1.62-1c-31.67-19.3-64.73-34.15-98.5-43.78,33.64,9.69,66.59,24.59,98.14,44l1.61,1A515.23,515.23,0,0,1,688,172.12l1.43,1.41a626.88,626.88,0,0,1,76,91.18l1.18,1.71a688.14,688.14,0,0,1,59.69,106.92l.87,2a678,678,0,0,1,39.75,117.37c.17.7.33,1.4.5,2.1a612.53,612.53,0,0,1,16.21,122.56l0,1.08c0,.35,0,.7,0,1,1,41.09-2.51,79.61-10,115Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M939.8,697a380.34,380.34,0,0,1-41,100.13l-.93,1.57a351.36,351.36,0,0,1-65.58,80.17L831,880.09q-6.27,5.61-12.8,10.92l2-1.6q5.85-4.8,11.49-9.85l1.32-1.19a352.43,352.43,0,0,0,65.72-80.28l.94-1.58a380.77,380.77,0,0,0,41.1-100.2l.48-1.88a437.17,437.17,0,0,0,12.45-116.49l0-1,0-1.08a500.14,500.14,0,0,0-18.67-121.1c-.19-.68-.38-1.37-.58-2.05a549.67,549.67,0,0,0-46.69-113.25l-1-1.85A581.49,581.49,0,0,0,816.13,237c-.46-.54-.92-1.07-1.39-1.6a575.29,575.29,0,0,0-90-82.9l-1.69-1.25A533.67,533.67,0,0,0,617.93,90.9L616,90.08A478.69,478.69,0,0,0,499.52,57,477.11,477.11,0,0,1,615.77,90.28l1.91.82a533.33,533.33,0,0,1,105,60.57l1.68,1.25A576.53,576.53,0,0,1,814.09,236l1.39,1.6a582.41,582.41,0,0,1,70.31,100.64l1,1.86a551.54,551.54,0,0,1,46.61,113.32l.57,2.05a502,502,0,0,1,18.64,121.13l0,1.08,0,1a438.22,438.22,0,0,1-12.42,116.47C940.11,695.78,940,696.41,939.8,697Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M961.51,700.39c-.51,1.22-1,2.42-1.56,3.62C960.46,702.8,961,701.61,961.51,700.39Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M956.28,712.56c1.28-2.82,2.45-5.69,3.67-8.55-1.84,4.34-3.7,8.67-5.69,12.93Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M992.78,529.8l0-1.08a443.33,443.33,0,0,0-20-119.44l-.63-2a471.54,471.54,0,0,0-50.59-108.57l-1.1-1.75a505.9,505.9,0,0,0-76.5-93.28l-1.51-1.44a527.12,527.12,0,0,0-97.77-73.52c-.61-.36-1.22-.72-1.84-1.07A528.81,528.81,0,0,0,628.38,78.34l-2.08-.62A523.41,523.41,0,0,0,499.52,57,522.36,522.36,0,0,1,626.2,77.94l2.08.61a529.41,529.41,0,0,1,114.29,49.51l1.84,1.07a529,529,0,0,1,97.69,73.68l1.51,1.45a507.06,507.06,0,0,1,76.44,93.41l1.11,1.75A472.13,472.13,0,0,1,971.7,408.07l.63,2a444,444,0,0,1,20,119.47l0,1.08c0,.35,0,.7,0,1A419.43,419.43,0,0,1,978.6,649.78l-.51,1.93a408.82,408.82,0,0,1-16.58,48.68,407.12,407.12,0,0,0,16.94-49.47c.18-.64.35-1.29.52-1.93A419.73,419.73,0,0,0,992.8,530.84C992.79,530.5,992.78,530.15,992.78,529.8Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M981.4,378.42c-.22-.77-.43-1.55-.65-2.33C981,376.87,981.18,377.65,981.4,378.42Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M984.4,389.41,983,384c-.5-1.86-1-3.7-1.57-5.55C982.44,382.07,983.45,385.72,984.4,389.41Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M976.27,361.53a420,420,0,0,0-51-103.86L924.14,256a439.43,439.43,0,0,0-77.17-86l-1.53-1.3a463.11,463.11,0,0,0-98.63-64.06l-1.86-.89A485.7,485.7,0,0,0,629.54,65.67l-2.1-.41A513.06,513.06,0,0,0,499.52,57a514.44,514.44,0,0,1,128,8.43l2.1.41A488,488,0,0,1,745.06,104.2l1.86.9a464.61,464.61,0,0,1,98.67,64.21l1.53,1.3a440.83,440.83,0,0,1,77.2,86.08l1.12,1.65a421,421,0,0,1,51,103.94l.63,1.93q1.9,5.91,3.64,11.88c-1.23-4.23-2.49-8.45-3.84-12.63C976.7,362.81,976.49,362.17,976.27,361.53Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M841.86,151.93c-.64-.58-1.25-1.18-1.89-1.75C840.61,150.75,841.23,151.35,841.86,151.93Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M852.67,162l-2.2-2.12c-2.81-2.73-5.71-5.36-8.61-8C845.52,155.24,849.14,158.59,852.67,162Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M825.19,137.56a381.61,381.61,0,0,0-92.91-55.23l-1.75-.73A405.19,405.19,0,0,0,621.88,53.86l-2-.22h0a420.57,420.57,0,0,0-64.21-1.93c22.51-.73,41.63.56,64.41,2.12l2,.22A406.76,406.76,0,0,1,730.91,82l1.75.72a383.68,383.68,0,0,1,93.06,55.38l1.43,1.17q6.54,5.33,12.82,11c-4.36-3.91-8.8-7.75-13.34-11.45Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M555.69,51.71A490.07,490.07,0,0,0,499.52,57C518.62,54.74,536.42,52.61,555.69,51.71Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M701.22,62A297.39,297.39,0,0,0,606.3,43.45l-1.73-.05C571,42.47,535.73,46.84,499.52,57c46.53-12.36,71.21-12.83,105.37-13.48l1.74.06a299.41,299.41,0,0,1,95.2,18.7l1.54.58a286.83,286.83,0,0,1,27.24,12L728.76,74q-12.69-6.33-26-11.41Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M583.73,35l-1.37.09C555.82,36.78,528,44,499.52,57c28.67-13,56.59-20.17,83.27-21.87l1.37-.08a185.21,185.21,0,0,1,62.92,7l-1.21-.35A183.49,183.49,0,0,0,583.73,35Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M584.25,28.32l-.92-.13-.72,0C583.16,28.22,583.7,28.24,584.25,28.32Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M554.17,29.09c-17.56,3.63-35.88,12.8-54.65,27.94,19-15.11,37.45-24.25,55.17-27.86l.91-.18c.72-.14,1.45-.21,2.16-.33-.92.08-1.83.16-2.69.25Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M557.76,28.66a176.35,176.35,0,0,1,24.85-.51A82.61,82.61,0,0,0,557.76,28.66Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M717.91,511.11h0l.46-4.69-21.9,10.34L687.07,529l-1,5.75c-1.5.27-3,.52-4.52.78L677.12,530l-11.55-3.1-2.66,3-5.49-1.81,1.81,7.87-4.75,2.46L663.19,568l11.56-2.35,3.8-7.56,16.9-8.74,5.19-.82,4.25-5.7,19.38-11.95-.23-5.27,3.74-2.77Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="735.3 540.6 723.64 544.83 728.11 549.39 735.12 546.44 735.12 546.44 735.3 540.6" style="fill:#d9dadb"></polygon><path d="M718.37,506.41l-.46,4.69h0l9.87,11.68,1.34-1,6.51-4.94,6.66-1.54,1.31-7,6.06-2.29,1.86-7.2,6.17-3.36.3-11.91L764.63,466l-9.21-8.78-11-.55-5.7-5-4.35,2.65,2.24,5.3-3,1.78,0,9.42,5.16,5.91-1,16.72Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M737.12,450.24l-1-7.24-.61-4.22-2.11-.6-3.34,11.23-3.34,4.19-2.57,6.24q-5.24,1.2-10.54,2.34l-2.71,2.13-6.26-1.58,6.78,10.78,23-1.45.17-.1-1-1.17,0-9.42,3-1.78-2.24-5.3,4.35-2.65Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="691.5 448.75 691.5 448.75 691.5 448.75 691.5 448.75" style="fill:#d9dadb"></polygon><polygon points="692.08 437.33 689.51 435.76 687.67 440.25 687.29 445.12 691.5 448.75 693.85 443.29 692.08 437.33" style="fill:#d9dadb"></polygon><path d="M665.57,526.94l11.55,3.1,4.41,5.45c1.51-.26,3-.51,4.52-.78l1-5.75,9.4-12.21,21.9-10.34,19.37-13,1-16.72L734.63,472l-.17.1-23,1.45-6.78-10.78-1.26-2-4.21-3.64L694,450.64l-.73-5.45-7.72-5.91-2.95-.13-3.11-4.87-6.73,1.22-2.88-4.05q-8.58,1.5-17.32,2.88l-21-14.59-13-6.66-8.55.44-13.48,7.13,6.89,7.19L601,433.17l-5.65,1.26L592.06,441l-9.53-.81.62,8.73h3.06l17.11,21.68,2.82,6.76,8,4,6.61,10.76,1.52,10.68,5.15,5.76,8,3.71,9.65,14.35,4.29,2.51,4.66,8,.46,1.46,4.75-2.46-1.81-7.87,5.49,1.81Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="561.64 373.78 556.97 376.44 551.83 376.73 546.95 380.48 550.13 383.09 554.6 382.63 557.29 380.25 560.19 379.4 559.3 377.99 561.49 375.58 561.64 373.78" style="fill:#d9dadb"></polygon><polygon points="572.22 382.46 568.46 394.66 568.21 396.42 573.45 394.88 574.99 394.44 575.29 394.34 578.95 385.61 576.96 381.7 572.22 382.46 572.22 382.46" style="fill:#d9dadb"></polygon><path d="M717.69,782.07l-1-11.61-4.49-5.89L708,774.45l-3.66,3.61-2.55-.17-2.61,5.39,2,2-11.9,7.55-2.22,1.21-4.47,3.07-2.53-.36-6.17,2.64-4.94,10,1.35,8.94,1.57,2.06-.26,3-6.18,8.72-4.2,4.51-.44,5.68,2.47,4-1.44,4.6,2,3.17,7.25,2.4,14.34-5.74,6.4-10.39,2-5.5L709,806.16c.28-1.94.55-3.9.81-5.86l3.23-3.34-.47-8.51,6.47-2.83Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><polygon points="573.85 399.17 573.45 394.88 568.21 396.42 566.97 404.7 564.05 410.29 563.08 410.54 569.42 426.66 570.37 424.62 575.01 411.7 573.86 399.18 573.85 399.17 573.85 399.17" style="fill:#d9dadb"></polygon><polygon points="594.27 392.51 580.38 402.44 573.89 399.1 573.86 399.18 575.01 411.7 570.37 424.62 570.63 428.19 580.16 429 583.41 422.44 589.06 421.19 591.53 415.86 584.64 408.67 598.12 401.54 594.27 392.51" style="fill:#d9dadb"></polygon><path d="M568.36,877.52l3.87-.6c.13-2.34.26-4.72.38-7.12L567.84,868l-4.25,5.43Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M486.78,917.66l3.38-1.68,9.25-.42,5.46-1.93,16.11.7,1.4-1.18,10.67-1.41,9.79-4,15.56-9.89L568.81,887l7.76-4.83,3.86-7.89a1.15,1.15,0,0,0,0-.19c-2.69.21-5.38.41-8.09.6l-.12,2.25-3.87.6-4.77-4.1,4.25-5.43,4.77,1.81,1.95-3c.09-1.87.19-3.76.28-5.66l-3.91-5.3,1.66-2.38-3.21-3.81-1.07-1.25-6.54,1.39-3.71-1.53-4.43,1.22-2.25.62-1,1.76-5,.87-2.3,3.34-5.75.65-3.46,7.62-6.55.68-3.56,6.11q-3.53.11-7.06.18l-7.62-3.22L504,869.54l-1.34,4.14-5.17,3.82c-2.85,0-5.71,0-8.58,0l-1.72-2.45,3.07-2.3-3.65-5.59-4.93-1.57q.84,10.35,1.72,20l-4.61,1-.48,2.13-8.05-.12-6.75-1.76,1.24-2.3-3.94-1.3-4.21,1.8.29.27,2.61,2.43,4.44,6.7,8.56,8.4.52,4.65-3-.41,4.8,5-.51,2.29Zm54.34-29.86,7.21-2.55,5.51,2.38-2.92,4.62h0l-5.28.26-3.71,3.87L537.28,892Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M553.84,887.63l-5.51-2.38-7.21,2.55L537.28,892l4.65,4.43,3.71-3.87,5.28-.26h0Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M582.8,818.17l2.34-4.58-5.49-2.9L575.16,813,571,809.74l-7.32.23c0-.76,0-1.52,0-2.28h-5.35l-7.26,2.75-.93,4-8.45,3.18L538,823.45l-3.83,1.84-5.12-2.4L522.9,824l5.2,6.18c0,1.24,0,2.48.07,3.71l9.06,2.45.72,3,4.11.21,2.18,5.68,8.74.29.66,3.81a1.48,1.48,0,0,1,0,.21l4.43-1.22,3.71,1.53,6.54-1.39,1.07,1.25,9-7,0-5.58,3.47-.14,3.43-4.1-3.05-2,1.28-2.22-2.87-1.49,5.07-6.31Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M488.89,877.52c2.87,0,5.73,0,8.58,0l5.17-3.82,1.34-4.14,5.09-1.42,7.62,3.22q3.54-.08,7.06-.18l3.56-6.11,6.55-.68,3.46-7.62,5.75-.65,2.3-3.34,5-.87,1-1.76,2.25-.62a1.48,1.48,0,0,0,0-.21l-.66-3.81-8.74-.29-2.18-5.68-4.11-.21-.72-3-9.06-2.45c0-1.23,0-2.47-.07-3.71L522.89,824l-8.23,1.36-5.1,3.56-2.93-2.51-19,2.71q.6,10.54,1.22,20.51l-8.38,0q.6,8.22,1.22,16l4.93,1.57,3.65,5.59-3.07,2.3Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><polygon points="493.35 808.93 493.34 808.93 493.35 808.93 493.35 808.93" style="fill:#ff7b00"></polygon><path d="M509.56,828.89l5.1-3.56,8.23-1.36-3.45-4.12-6.91-.43-7.29,1.5-16,3.1q-10,0-20.13-.13l-3.68-2.75q-17.56-.3-35.2-1.1l-4.86-3.69-6-.31-4.1,3-4.79-.29.53,3.37,13,13.55,2.28,4.2,9.08,9.06,1.5,2.44-.32,2.63.92,5.84,3.74,5.38.42,3.94,4.89,8.78,4,4,6.06,3.11,4.21-1.8,3.94,1.3-1.24,2.3,6.75,1.76,8.05.12.48-2.13,4.61-1q-.88-9.62-1.72-20-.63-7.82-1.22-16l8.38,0q-.63-10-1.22-20.51l19-2.71Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><polygon points="362.2 649.75 364.92 643.41 359.08 640.86 355.25 645.59 362.2 649.75" style="fill:#ff7b00"></polygon><path d="M599.26,814.76l4.71.06,5.83-17.5-6.07-3.66L603,798l-6.67-.88-2.92-5.5c0-1.81.07-3.63.1-5.47l-2.8-2.8L592.9,779l-1.16-9.55-1.52-2.69,1.3-5.24h0l-8.44-1L586.74,771l-2.7,2.19,1.7,9.45-4.46,8,3.17,4.71,3.38,5,4.57-.38,2.47,3.55-2,3.42Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M646.31,778.25l-1.94-9.65,2.54-5.15-16.48,8.88-4.32-1-4.64,3.94-3.62-1.52-5.1,3.91-4.85-3.9-6.28,2.82-2.3,4.66.73,9.53,2.35,1.86,1.33,1.06,6.07,3.66L604,814.82l-4.71-.05L592.91,807l2-3.42L592.4,800l-4.57.38-3.38-5h0l-22.31,7.56,1.57,4.75c0,.76,0,1.52,0,2.28l7.32-.23,4.15,3.29,4.49-2.34,5.49,2.9-2.34,4.58,3,2.61-5.07,6.31,2.87,1.49-1.28,2.22,3.05,2-3.43,4.1h0l-3.47.14,0,5.58-9,7,3.22,3.81h0l-1.66,2.38,3.91,5.3c-.09,1.9-.19,3.79-.28,5.66l-1.95,3c-.08,1.63-.17,3.26-.26,4.87,2.71-.19,5.4-.39,8.09-.6l.07-1.26.34-7L584,863.9l14.1-5,3.65-3.4-.44-9.9-1.18-8.77-3.35-2.16-.49-5.62L610.84,823l3.73-6.3,10-5.66,7.85-2.12,6.19-4.5h0l8.52-12.79Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><polygon points="897.15 519.48 895.15 513.86 891.17 511.1 890.81 515.1 891.75 526.32 890.9 527.23 894.46 540.61 896.9 542.31 902.05 534.87 902.05 534.87 902.12 527.26 897.15 519.48" style="fill:#d9dadb"></polygon><path d="M992.64,551.39l-.89-10.59-1.39.42.14-8.44-1.53-1-4.42-7.44-.41,3.73-2.14-3L981,521l-3.74-3.3-.79-2.52-2.79-4.61-3,3.77L967,515l1.3,5.77,4,5.57,1.17-.55,2.51,4.68.77,4.63,2.78,2.94,1.52,9.72,1.24,0,2.93,15.2c2.09,4.93,3.87,11.88,5.42,17l1.69-4.41,1.08-15.14.53-4.64-.4-5.52Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="935.4 443.67 935.05 445.86 937.45 460.57 939.9 463.51 938.61 452.71 935.4 443.67" style="fill:#d9dadb"></polygon><polygon points="939.9 463.51 939.9 463.51 939.9 463.51 939.9 463.51" style="fill:#d9dadb"></polygon><path d="M994.57,536.84l-1.19,3.54-.12,5.54c.22-.49.43-1,.63-1.45l.78,6,.93-7.09-.9-1.61Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="951.87 346.36 953.09 353.81 955.41 359.5 957.04 359.09 955.94 351.9 952.77 342.32 951.87 346.36" style="fill:#d9dadb"></polygon><path d="M950,297.65l-2.75-5.26L945,287.78l-.59-1-1-2-.59-.67,1.41,3.13,6,12.16,2,4.07,3.25,5.82c0-.17-.1-.33-.16-.5l-2-4.22Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="962.28 342.97 961.93 341.94 959.22 334.16 959.01 333.58 955.89 325.17 955.22 323.43 951.7 314.63 953.59 319.54 953.64 320.05 957.06 329 960.5 338.19 960.76 339.36 964.25 349.21 963.58 346.97 963.64 347.16 962.28 342.97" style="fill:#d9dadb"></polygon><polygon points="966.07 354.71 965.52 352.92 965.11 351.65 965.18 351.88 966.07 354.71" style="fill:#d9dadb"></polygon><polygon points="964.05 348.32 963.64 347.16 965.11 351.65 964.05 348.32" style="fill:#d9dadb"></polygon><polygon points="967.43 359.16 968.44 362.6 967.64 359.89 967.43 359.16" style="fill:#d9dadb"></polygon><polygon points="972.99 379.35 974.5 385.59 973.98 383.36 972.99 379.35" style="fill:#d9dadb"></polygon><polygon points="974.5 385.59 975.08 388.1 974.92 387.33 974.5 385.59" style="fill:#d9dadb"></polygon><polygon points="977.51 399.05 976.03 392.16 975.08 388.1 977.63 400.07 979.81 411.27 978.41 403.46 977.51 399.05" style="fill:#d9dadb"></polygon><polygon points="983.9 559.48 982.79 563.39 982.89 560.12 981.02 563.65 978.75 574.14 980.09 573.46 979.63 576.87 981.09 573.64 982.66 567.81 982.86 568.45 983.13 566.96 985.1 550.88 984.75 552.91 983.9 559.48" style="fill:#d9dadb"></polygon><path d="M508.63,777.11l-14.84,3.21.44-10.79L491.32,766l1-5.73-2.41-5.35,2-5.64q-6,0-12,0c-.05-1.21-.1-2.43-.14-3.65l-9.86,1.23-.75,8.54q-7.69-.09-15.42-.27l-7.91-9.87.6-4.75-2.92-3.25q-15.44-.47-30.9-1.31l-3.31,3.55,9.08,15.16c.05.9.11,1.8.17,2.7l-3.28,2.52,7.56,12.39.86,7.87-10,11-2,11.78-3,4.31,1.43,9.51.31,2.06,4.79.29,4.1-3,6,.31,4.86,3.69q17.63.81,35.2,1.1l3.68,2.75q10.08.15,20.13.13l16-3.1h0l-10.6-7.41-1.14-21.91q7.8,0,15.58-.19Q508.86,784.37,508.63,777.11Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M552.85,699.66l-4.17,6.82,1.78,4.36,6.51-1.38.25-2.64,6.27-.06,3.18-.19-4.62-10.74-6.43,2.69Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M557.22,706.82l-.25,2.64-6.51,1.38,2,6,2.45-.34,2.75,9.52,9.78-10.26c0-1.25,0-2.51-.08-3.76l-4.49.18.57-5.39Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M583.09,760.53l-5.5-.69-2-3.51-5.27-1.49.56,1.43L569.63,760l-6.87-2.56-.78-2.82-11.18,3.08-4.88,5.28,3.19,5.57-1.93,11.17,6.64,5.88,5.78-1.85c0,3.11,0,6.2,0,9.25l-6.77.37-5.94-5.91-7-2.62-3.38-3.88-4.07,2.84-9.81-1.89-1.34-3.31L515.71,780l-2.44-4.4-4.64,1.47q.22,7.25.45,14.29-7.77.14-15.58.19l1.14,21.91,10.6,7.41h0l7.29-1.5,6.91.43,3.45,4.12h0l6.16-1.08h0l5.11,2.4,3.83-1.84,3.71-5.78,8.45-3.18.93-4,7.26-2.75h5.35l-1.57-4.75,22.31-7.56h0l-3.17-4.71,4.46-8-1.7-9.45,2.7-2.19Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M601.62,776.55l6.28-2.82,4.85,3.9,5.1-3.91,3.62,1.52,4.64-3.94,4.32,1,16.48-8.88-1.72-.9-5.81-2.85-2.91-12.9-.21-3.86,2.48-6.71-6.15-6.8,2.88-9.85-12.63-7,2-4.41-31.71-15.93-6,9.75,4.27,1.59L587,707.85l-8.2-1-3.85,4.5L572.47,705,575,698l-1.9-2.84q-5.49.38-11,.71l4.62,10.74-3.18.19-.57,5.39,4.49-.18c0,1.25.05,2.51.08,3.76L557.71,726,562,740.68l4.31,4.05,4.05,10.11,5.27,1.49,2,3.51,5.5.69,8.44,1,7.06,4.17c0,2.75-.06,5.48-.09,8.19Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M722.08,564.81l-3.82-.64-4.65,5.06-19.67,6.53-6.76,5.45-5.77-2-5.74,6.21-4.9.48-7.89-7L658,589.09l10.78,11.66,22.42,3.87c2.85-.49,5.68-1,8.51-1.5l-20,30.92h0l-7.78-1.35L665,637.61l-.64,4.88q-3.58.53-7.2,1l-8.28,13.25q.46,11.4.76,22.75c.06,2.29.11,4.56.16,6.83l4.15,4.81.73-1.41,3-6,18.48-21.33,12.66-11,18.61-29.68,13.63-36.1-.29-7.48,3.66-1.87Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><polygon points="595.58 551.25 601.08 547.97 603.05 550.39 607.47 545.22 609.62 547.63 614.34 544.48 616.59 547.19 627.68 547.47 640.24 560.93 647.75 557.19 648.07 556.29 631.24 540.76 619.62 538.59 613.06 523.74 609.28 517.26 605.52 523.92 601.49 522.37 595.02 529.53 598.34 534.56 593.62 542.99 595.58 551.25" style="fill:#ff7b00"></polygon><polygon points="640.24 560.93 636.69 567.5 638.13 575.34 646.11 577.11 650.99 566.95 650.18 566.23 644.34 566.79 647.75 557.19 640.24 560.93" style="fill:#ff7b00"></polygon><path d="M592.24,685.39l2.65-7.76,5.91-7.4-2.37-8.94-4.29-3.6,1.45-3.59-5.5-3-4,4.46-3.59-1.87-7.26,2.7L568.11,654,565.06,659h0L563.89,661l2.27,3-1.31,3.55,4.42,3-8.5,7.83-4.66,9-.49,11.2,6.43-2.69q5.52-.33,11-.71l-.84-1.27L576,687Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><polygon points="636.96 644.77 636.96 644.77 636.96 644.77 636.96 644.77" style="fill:#ff7b00"></polygon><path d="M649.89,645.88l-3.7-2.23L640,647.42l-2.61,4.81-12.51-.6-10.41-6.17-6.47.93-1.81-1.68q-6,.57-12,1.1l-3.94,5.07-.18.21,5.5,3-1.45,3.59,4.29,3.6,2.37,8.94-5.91,7.4-2.65,7.76,7,3-6.09,3.86,31.71,15.93-2,4.41,12.63,7,.5-1.7,5.07-7.57-1-4,3.72-5.67,9-7.16,1.15-2.28-4.15-4.81c0-2.27-.1-4.54-.16-6.83q-.3-11.34-.76-22.75h0l7-11.25Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M582.21,620.05l6,.73,9,7.7,1.28,8.54,3.45,2.24,4-2,.33,7.34,0,.09,1.79,1.66,6.47-.93,10.41,6.17,12.51.6,2.61-4.81,6.16-3.77,3.7,2.23,6-.37,1.23-2q3.61-.5,7.2-1l.64-4.88,6.91-4.91,7.79,1.34h0l20-30.92c-2.83.51-5.66,1-8.51,1.5l-22.42-3.87L658,589.09l-8-1.77-1.44-7.83,3.55-6.58-12.56-13.45-11.09-.28-2.25-2.72-4.72,3.15-2.15-2.41L615,562.37,613,560l-5.5,3.27-2,5.55q.3,4.08.59,8.16l-5,.49-4.39,7.92q.25,4,.49,7.95l-4.61-.6-1.53,11.9c0,.51.06,1,.08,1.52.12,2.16.23,4.33.35,6.49l-8.66.94Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M996.77,459.09h0l-.18-1.1v0l.29,5.27.64,4.52-.27-4.47C997.1,461.92,996.94,460.5,996.77,459.09Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="987.48 517.33 987.45 517.23 987.42 517.66 987.41 519.31 987.48 517.33" style="fill:#d9dadb"></polygon><path d="M998.93,484.71l.13,2.41.08,4.92-.26-.67-.12,4.42.12,4.51-.31,3.28-.3,5.16-.84-2.72q-.18-3.74-.43-7.46l-.08,13.18.2,4.06.36.06-.05,5.15.77,4.13-.12,4.72.16,4.7-.13,4,.67-3.38.2-3.42-.2,6.52.54-8.61.22-31.35C999.5,494.13,999.26,489.49,998.93,484.71Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M998.46,476.41c-.09-1.26-.19-2.51-.3-3.77l-.38-4.9c-.23-2.45-.47-4.89-.74-7.32-.07-1-.16-2.07-.28-3.1.57,8.14,1.54,18,2.17,27.39l-.2-3.71Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M998.73,481l-.27-4.59c-.09-1.26-.19-2.51-.3-3.77l-.38-4.9c-.23-2.45-.47-4.89-.74-7.32-.07-1-.16-2.07-.28-3.1h0l-1.94-15.44-1.26-8.15q.09.64.15,1.29l2,14.53.25,2.58.35,2.52.45,4.44h0c.17,1.41.33,2.83.48,4.24l.27,4.47-.64-4.52,1,15.26-.22,7,0,2.09.69,11.52-1,1.8-.4-2.32v0q.25,3.72.43,7.46l.84,2.72.3-5.16.31-3.28-.12-4.51.12-4.42.26.67-.08-4.92Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="982.91 429.79 982.92 429.89 982.94 430.06 982.91 429.79" style="fill:#d9dadb"></polygon><polygon points="398.49 718.06 398.49 718.06 398.49 718.06 398.49 718.06" style="fill:#ff7b00"></polygon><path d="M410.79,722.1l-7.34,3.6,1.56,1.65,0,0,1.61,4.4,3.83,1.46c0-.1,0-.19.07-.29l-.15-2.92h0L415,727.2Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M555.62,698.52l.49-11.2,4.66-9,8.5-7.83-4.42-3h0l1.31-3.55-2.27-3,1.16-1.94H565l-7.57-9.54-4-1.31-2.71,3.49-3.56-1.33-2.88,2.51-5.93-2.74-.09-2.72-6.34-1.92-4.18.81-9.27-1.93-.75,3.78-5.23.89-2.57-2.56-8.69,3.87-4.41-.25-3.34,5.87-9.87-1.58L481,651.49l-4.67,2-5.24-7.5-6.52,1.78L462,652.6l-3.09.89,2.09,10L456,672.91l-.75,13.91-2.19,2.77c0,.13,0,.26,0,.4,0,1.31.07,2.62.1,3.93l-3.33,4.61-4.4.81-5.35,8.17,1.29,9.64L439,722.34l-3.54.89L430,729.68l-5-.22-.58-5.12-4.27,2.74-3.13,2h0l-2-1.88-4.62,2.85.15,2.92-.07.29,3.37,1.27-1.27,1.39q15.46.84,30.9,1.31l2.92,3.25-.59,4.75,7.9,9.87q7.73.18,15.42.27l.75-8.54,9.86-1.23c0,1.22.09,2.44.14,3.65q6,0,12,0l-2,5.64,2.41,5.35-1,5.73,2.91,3.57h0l-.44,10.79,14.84-3.21,4.64-1.47,2.44,4.39,5.62-1.48,1.34,3.31,9.81,1.89,4.07-2.84,3.38,3.88,7,2.62,5.94,5.91,6.77-.37c0-3.05,0-6.14,0-9.25l-5.78,1.85-6.64-5.88,1.93-11.17-3.19-5.57,4.87-5.28L562,754.57l-2-7-4.3-2.51L552,738.13l1.25-4.43-2.4-4,.41-12.75,1.25-.18-2-6-1.78-4.36,4.17-6.82Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M396.65,679.73l.87,0q-.11-4.78-.18-9.59l-.87-.06c-3-.19-5.88-.4-8.8-.61L383,666.29,384,676.8h0l-.81,2Q389.89,679.28,396.65,679.73Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M426.32,685.13l-4.63-8.49-8.31,2.09q-.09-4.31-.17-8.62l-6.33-2.88-9.59-.32c0,1.09,0,2.19,0,3.28q.07,4.8.18,9.59l-.87,0q-6.75-.45-13.42-1l-4.16,9.75-4,1.25,7.54,14.17,4.93.48.57,4.56,9.15,10.07,7.93-2.38-4.34-5.12c-.06-1.49-.12-3-.17-4.49l5.73.2,3.41-4.8h0l3.15,6.45,3.85.2,2.76-2.59,5.21,3-.2-16.51-5.9-3.45,2-4.8Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M456,672.91l4.93-9.44-.42-2,0,0-10.36-3.63-7.23,2.41,1.68,5.24-4.47,5.11,1.34,3.59-3.81,2.63-3.32-4.88-3.07,2.15-4.13-3.14-13.9-.82c0,2.88.1,5.75.16,8.62l8.31-2.09,4.63,8.49-5.58-.4-2,4.8,5.9,3.45.2,16.51-5.21-3-2.76,2.59-3.85-.2-3.15-6.45h0l-3.42,4.79-5.73-.19c.05,1.5.11,3,.17,4.48l4.34,5.12-7.93,2.38,6.17,6.65,7.34-3.6,4.22,5.1,2,1.88h0l3.13-2,4.27-2.75.58,5.13,5,.22,5.45-6.45,3.54-.89,2.42-5.19-1.29-9.64,5.35-8.17,4.4-.81,3.33-4.61c0-1.31-.07-2.62-.1-3.93,0-.14,0-.27,0-.4l2.19-2.77Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M464.59,647.76l6.52-1.78,5.24,7.5,4.67-2,2.56,2.86,9.87,1.58,3.34-5.87,4.41.25,8.69-3.87,2.57,2.56,5.23-.89.75-3.78,9.27,1.93,4.18-.81,4.78,1.45-1.07-5.67-4.55-4-4.38-.11-.15-5-9.32-5.28c0-1.16-.06-2.32-.1-3.48l-4.59-3.06-6.23.56h0l1.48-3.78-7.8-.39,3.07-9.19-6.65-7.66-3-3.54L485.71,600l.09,6-4.25.55-6.47,7.1q-5.71,0-11.43-.1l-4,8.25-7.08.62-7.07,3.76-3-3.4-10.74,4.49-1.64,3.92-2.6-.11-.27,4.47-5,1.26,3.9,8.26-.37,5.16,6.06,3.25-3.62,3.65,9.36,6.54,2.59,7,4.47-5.11-1.68-5.24,7.23-2.41,10.36,3.63,0,0-1.67-8,3.09-.89Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M528.89,610.42l-4.45-1.48-2.77-7.59-6.91,1.11-.82,4.11-4,3.51-2.2,7-1.47,3.78h0l6.23-.56,4.59,3.06c0,1.16.07,2.32.1,3.48l9.32,5.28.15,5,4.38.11,4.55,4,1.07,5.67,1.56.47.09,2.72,5.93,2.74,2.88-2.51,3.56,1.33,2.71-3.49,4,1.31L565,659h.08l3.05-5.07,7.16,2.43,7.26-2.7,3.59,1.87,4-4.46.18-.21,3.94-5.07q6-.52,12-1.1l0,0,0-.09-.33-7.34-4,2L598.45,637l-1.28-8.54-9-7.7-6-.73.64-6.5,8.66-.94c-.12-2.16-.23-4.33-.35-6.49l-6-2.35,1.18-5.44-4.6-4.4V581.6l-9.21,3.22,2.27,8.07-7.63,11.44-4.2.61-7-4.34-4.28,1.85c0,1.09.09,2.18.14,3.28l-19.16,2.06Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M509.35,445.74h0c.51,19.68,1,39.6,1.54,59.64,32.08-.82,63.68-2.89,94.33-6.09l-.86-1.83-.23-.5-12.07-9.6-.36-7.54-4.86-3.69L574.4,451.56,565.54,446l-2.25-14.28,7.36,11.74,6.67,3.6,4-8.41L575,422.52l-8,2.07-14-2.89-5.14,3.48h-2.3l-5.91,4.08L530.23,426,516,423.35l-4.34,1.14-4.55,3.82,3.76,5.26-4.4,5.25Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M613.39,534.35l4,1.56,3.76-6.66-.64-1.09-9.69-5.63-.7-4.11-2.39-13.76-2.54-5.36c-30.65,3.2-62.25,5.27-94.33,6.09q.21,8.08.42,16.2c-2.53.07-5.07.12-7.61.17,0,1.32.06,2.64.08,4q.3,14.91.62,29.87-4.86.1-9.72.16l2,5.11-6.45,4.83,2.91,4.71-7.9,7.55,2.38,6.63,5.73-1.46.44,5.56,4.52,3.43-1.89,7.73h0l6.65,7.66L500,616.68l7.8.39,2.2-7,4-3.51.82-4.11,6.91-1.11,2.77,7.59,4.45,1.48,3.72-2.63,19.16-2.06c0-1.1-.09-2.19-.14-3.28l4.28-1.85,7,4.34,4.2-.61,7.63-11.44-2.27-8.07,9.21-3.22v12.33l4.6,4.4-1.18,5.44,6,2.35c0-.51,0-1-.08-1.52l1.53-11.9,4.61.6q-.24-4-.49-7.95l4.39-7.92,5-.49q-.29-4.08-.59-8.16l2-5.55-2-8.26,4.73-8.43-3.32-5,6.47-7.15Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M503.78,525.71h0c-19.38-9.8-45-23.25-64.14-33.61l-8.31,4.33.4,12,6.87,10-3.46,3.72-1.41,24.11-17.91,17.95,4,11.1,5.83.26h0l5.07,14.87-1.08,7.68,5,7.61-12.14-1.1-3,4.49,10.05,7.29,4.8,4.76-2.54,6.09,10.75-4.49,3,3.4,7.07-3.76,7.08-.62,4-8.25q5.72.07,11.43.1l6.47-7.1,4.25-.55-.09-6,7.63-3.67,3,3.54h0l1.89-7.73-4.52-3.43-.44-5.56-5.73,1.46-2.38-6.63,7.9-7.55-2.91-4.71,6.45-4.83-2-5.11q4.86-.06,9.72-.16Q504.09,540.63,503.78,525.71Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><polygon points="386.65 350.69 392.37 347.99 395.19 338.58 392.33 332.51 388.56 335.29 385.75 334.31 386.17 343.3 383.63 349.29 386.65 350.69" style="fill:#d9dadb"></polygon><polygon points="502.31 350.88 499.56 347.85 495.65 352.36 500.3 354.41 500.3 354.41 502.31 350.88" style="fill:#d9dadb"></polygon><polygon points="396.09 316.94 394.67 317.27 392.92 319.04 390.9 319.44 390.05 321.68 390.84 324.07 390.01 326.58 390.52 329.05 392.57 330.5 394.64 327.44 394.5 324.66 396.75 318.84 396.09 316.94" style="fill:#d9dadb"></polygon><path d="M497.7,390.28l-2.34,4.39,8.74,4.87,12.25-2.24-1.65-4.8q-5.51.18-11,.3Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="420.24 358.16 415.9 356.56 411.56 357.13 410.7 359.37 421.76 365.12 424.18 368.17 427.62 369.46 429.5 365.57 427.87 362.56 431.5 356.22 420.24 358.16" style="fill:#d9dadb"></polygon><path d="M310.74,407.76l8.93,2.91,4.22-5-4.1-6q1.29-5.42,2.62-10.78l-2.73-8.1-14.88-4.22-1.25-5.24-2.82,1.06L289.67,386l-9.47,2.83-14.06,14.45L264.44,414l-15.35,12.06-8.93.67L238,428.56l-1.12,1.7h0q13.42,3.6,27.76,6.81,1-3.94,2-7.88l10-4.05,4.32.9,3.14-3.22q3.36.68,6.78,1.33l3.63-5.21,8.94-2.84-.71-5.44,4.95.89Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M227,438.37l-5.56,11.16-6.72,5.07-7.2,11-1.48.14-3,7.09-.74,1.8q11.53,3.57,23.81,6.83L228,469.56l3.79-3.22,4.35-.77q2.33-10.24,4.88-20.4h0q10,2.56,20.52,4.91,1.5-6.51,3.09-13-14.34-3.21-27.76-6.81l-3.28,5.06Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M410.65,414.76c.22-2.14.45-4.27.69-6.41l-.19-.11-8-4.92-1.89-4.13,5.77-3.86,3.54-4.58-4-7.78,5.24-7.81-8-2.68L395,375.15l-4.17,5.14L389.15,394l-7.53,5.09,1.64,6.14,3.9,2.44-.66,4.64,5.05,4.19-1,18.12,9.84-4.3-.2-6.21L412,417.62Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M343.39,521.13l13.35-1.28,14-11.57c10.24-6.54,25.51-12.39,36.43-17.71l-2.26-6.49-6.35-2.6-4.42.76.08-4.34L388,467.49l6.2-3.14-2.11-6.94,3.74-2.47-2.44-4.18c.29-2.74.57-5.47.87-8.2l-3.71-7.93,1-18.13-5.05-4.19.66-4.64-3.9-2.44-1.64-6.14,7.53-5.09,1.63-13.7h0l4.17-5.14-14.23-2.58-8.21,3-3.19-2.61-12.19-.61-2.76,1.49-10.57-.29-7.26,4.25-5.27-.23L323.85,382l-4.17-1.11,2.73,8.1q-1.34,5.37-2.62,10.78l4.1,6-4.22,5-8.93-2.91-3.07,3.8-4.95-.89.71,5.44L294.49,419l-3.63,5.21q-3.42-.66-6.78-1.33l-3.14,3.22-4.32-.9-10,4.05q-1.37,5.31-2.65,10.66l20.26,24.06c10.87,11.67,26,26.64,37.42,37.79-.17,1.33-.33,2.66-.5,4l6.06,4.79,3.08-.56,6,4.7L333.75,522Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M509.13,420.54,500,419l-3,.18-1.5-4.12-10.15-2.62-8.39,3.29-3.72,3.43.29,10.18-6.11,6-14.45-7.17-10.68-2.32-4.82-9.5-13.7-5.07-6.89.35-5.51-3.31c-.24,2.14-.47,4.27-.69,6.41l1.33,2.86-11.75,6.49.2,6.21-9.84,4.3h0l3.71,7.93c-.3,2.73-.58,5.46-.87,8.2l2.44,4.18-3.74,2.47,2.11,6.94-6.2,3.14,6.17,10.41-.08,4.34,4.42-.76,6.35,2.6,2.26,6.49L419.72,494l5.46,5.54,6.11-3.1,8.31-4.33c19.1,10.37,44.76,23.8,64.14,33.61h0c0-1.31,0-2.63-.08-4,2.54,0,5.08-.1,7.61-.17q-.21-8.12-.42-16.2c-.52-20-1-40-1.54-59.64l-2.86-6.93,4.4-5.25-3.76-5.26,4.55-3.82Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M413.21,670.11l13.91.82,4.13,3.14,3.07-2.15,3.32,4.88,3.81-2.63-3.93-10.56-9.36-6.54,3.62-3.65-6.06-3.25.37-5.16-3.9-8.26,5-1.26.27-4.47,2.6.11,1.63-3.92,2.54-6.09-4.8-4.76-10.05-7.29,3-4.49,12.14,1.1-5-7.6h0l1.08-7.68-5.08-14.87-5.83-.26.27,8.66,2.3,3-.88,5.17-2.28,1.45-3.52,9.64-4.34,1.51-1.21,9.63-4,.66-5.14,10.94-2.09,6.87-2.59-.17-2-.13-2.11-5.85-4.41,2.53-2.21-1.89-9.32,7.49,0,4.82-2.63,4.07,9.79,6.16,1.92,9.2-2.26,7.3v0l4.71,3.23c2.92.21,5.85.42,8.8.61l.87.06c0-1.09,0-2.19,0-3.28l9.59.32Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M284.21,463.92,264,439.86q-1.23,5.1-2.41,10.22Q251,447.74,241,445.17q-2.57,10.15-4.88,20.4l-4.36.77L228,469.56l-1.83,11.95q-12.27-3.27-23.81-6.83l-1.06,2.59,4,6L202.32,503l-5.06,10.61,12.63,1.51,3,5.67,3.8,1.08.13,5.07,4.81,8.6,3-1.07c.24-1.74.49-3.49.74-5.23l3.51-.79,2.45,5.93,3.76-2.16,4.86,1.15,4.57-2.33-.42,3.13q11.74,2.67,24,5.06l2.09-6.28-2.26-2.2c1-20.75,3.05-48.38,4.89-69.07Q278.45,462.83,284.21,463.92Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M201.22,534.55q-3.19-.93-6.33-1.88l-2,3.52-.47,2q2.56.8,5.18,1.56l5.7-1,1.89,2.42,5.76.72-.39-4.26-6.63-5.73Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M224.15,577.79l-4.31-1.08-1.9,1-2.38-2.1-3.92,7.22-1.24-.33.78,7.45,2.8,5,6.54,5.57.8,1,7.51-8.44-2.27-2.39c.16-2.39.33-4.79.52-7.18Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><polygon points="225.22 589.85 223.56 580.84 216.93 581.14 209.42 589.58 224.24 608.7 235.25 616.9 237.47 606.36 229.98 598.79 231.9 591.01 225.22 589.85" style="fill:#ff7b00"></polygon><polygon points="274.58 591.48 271.4 586.33 265.92 577.16 259.21 580.42 254.77 573.51 245.61 565.57 241.84 570.38 235.38 569.27 232.09 574.77 236.07 580.65 231.46 584.34 231.9 591.01 229.98 598.79 237.47 606.36 237.47 606.36 235.25 616.9 247.15 613.57 267.78 616.71 267.75 616.82 268.74 617.39 268.73 617.34 266.19 603.4 269.63 600.3 269.63 600.3 274.58 591.48" style="fill:#ff7b00"></polygon><path d="M203.27,538.77l-5.7,1q-2.61-.76-5.18-1.56l-.86,4.57.78,6,.74,1.16,7.29-1.13q5.07,1.47,10.27,2.89l2.87.77,2.22,2.47,2.69-1.49,1.66,3,3.85,1,1.32-5-.78-5.9-2.09.42-.9-2.87,1.34-3-1.17-5.36-4.81-8.6-.13-5.07-3.8-1.08-3-5.67-12.63-1.51-.6,1.26-3.32,7.6L190.62,524l4.27,8.65q3.13.95,6.33,1.88l2.68-2.63,6.63,5.73.39,4.26-5.76-.72Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M200.34,548.72l-7.29,1.13,2,3.09,4.86-.13L198.53,558l1.88,2.86.67,1,3.14-3.58c1.87.53,3.74,1,5.64,1.56l-1.62-5.15h0l2.37-3.11Q205.42,550.18,200.34,548.72Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M244,586.76l3.29-5.5-4.09-8.73,1.33-3.6-2.69-2.49L241.4,561l-3-2.41-2.8,4.88L231,560.58l-4.18,1.62-3.44-2.83.54-2.07-3.85-1-1.66-3-2.69,1.49-2.22-2.47-2.87-.77-2.37,3.12h0l1.62,5.15c-1.9-.51-3.77-1-5.64-1.56l-3.14,3.58,6.81,10,2,5.58.47,5,1.24.33,3.92-7.22,2.38,2.1,1.9-1,4.31,1.08,2.93,5.76c-.19,2.39-.36,4.79-.52,7.18l2.27,2.39,6.63-.3,1.66,9L243.8,603l-.44-6.67,4.61-3.69Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M247.28,581.26l6.46,1.1,3.77-4.81,6.4,5.58.29-5.16,3.34-1.8.32-5.55h0l2.81-.38,2.8-2c.26-3,.53-6,.82-9l2.35-1.46,4.51,2.7,4.64-3.25.85-2.9,5.31,1.54,1.27-4.56,8.9-4,3.32,2.66,2.63.39,7.05,1,2.77-2.25,13.11.57,3.9,1.65,6.54-8.18q.88-11,1.95-22l-9.64.85,2.52-7.34-6-4.7-3.08.56-6.06-4.79c.17-1.34.33-2.67.5-4-11.55-11-26.39-26.26-37.42-37.79q-5.76-1.1-11.39-2.25c-1.93,20.68-3.79,48.33-4.89,69.07l2.26,2.2-2.09,6.28q-12.28-2.4-24-5.06l.42-3.13-4.57,2.33-4.86-1.15-3.76,2.16-2.45-5.93-3.51.79c-.25,1.74-.5,3.49-.74,5.23l-3,1.07,1.18,5.36-1.35,3,.9,2.86,2.09-.41.78,5.9h0l-1.32,5-.54,2.07,3.44,2.83,4.18-1.63,4.63,2.88,2.8-4.88,3,2.41.44,5.46,2.68,2.49-1.33,3.6Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M278.09,615.39l2.54,13.94v0l6.65,3.77,22.68-7-3.55-8.9,1.6-13.55L303.53,596l2.91-12-4.78-2-3.44,2.86q-8-1.26-15.87-2.62L283.9,588c-.21,3.43-.41,6.87-.6,10.3l3.17,5.15-5,8.82Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M310,626.16l3-.95,4.78-.43-.91-3.93q.22-8.64.58-17.3L315,600.07l.81-4.93L311,591.47l.3-5.51-4.89-2-2.91,12,4.49,7.73-1.6,13.55Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M317.76,624.78l7.31-.36q.21-9.12.54-18.24l7.37-6.42c.06-1.56.13-3.13.2-4.69l4-3.47-4-7.28-4.49-8.21-4.7,1.32-3.33,7.85-5.11-4.15L311.33,586l-.3,5.51,4.76,3.67-.81,4.93,2.45,3.48q-.36,8.66-.58,17.3Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M301.66,582l9.67,4,4.22-4.83,5.11,4.15,3.33-7.85-2.36-4.25-5.22,1.12-3.64-7.74.57-3.8-5.27-12.44-2.63-.39-3.32-2.66-8.9,4L292,555.82l-5.31-1.54-.85,2.9-4.64,3.25-4.51-2.7-2.35,1.46c-.29,3-.56,6-.82,9l-2.8,2-2.81.38h0l-.32,5.55L264.2,578l-.29,5.16,2.75,2.37,4.45,6.9,6.7-3.26,5.49,9.17c.19-3.43.39-6.87.6-10.3l-1.55-5.78q7.84,1.37,15.87,2.62Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M435.1,522.1l3.46-3.72-6.87-10-.4-12-6.11,3.1L419.72,494l-12.57-3.41C396.27,496,379.88,499,369,504.32l-12.21,15.53-13.35,1.28q-1.06,11-1.95,22l-6.54,8.18-3.9-1.65-13.11-.57-2.77,2.25-7.05-1,5.27,12.44-.57,3.8,3.64,7.74,5.22-1.12,2.36,4.25,4.7-1.32,4.49,8.21,3.9-4.51q.35-6.18.73-12.34l4.9-4,6.13,3.68,6.69-2.87,3.66,4,1.73,7.24,7.27-4.22,7.77,6.23,7.45,1.39,3.61-6.07,11.15-.48,9.22,3.57,5.52-5.64,5-.22-2.09-5.91,17.91-17.95Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M352.45,645.87l13.1-.76,4.38-3.78,3.58,2.28,2.63-4.07,0-4.82,9.32-7.49,2.21,1.89,4.41-2.53h0l2.1,5.86,2,.13,2.59.17,2.09-6.87,5.14-10.94,4-.66,1.21-9.63,4.34-1.51,3.52-9.64,2.28-1.45.88-5.17-2.3-3-.27-8.66-1.86-5.19-5,.22-5.52,5.64-9.22-3.57-11.15.48-3.61,6.07L376,577.52l-7.77-6.23-7.27,4.22-1.73-7.24-3.66-4-6.69,2.87-6.13-3.68-4.9,4q-.39,6.16-.73,12.34l-3.9,4.51,4,7.28-4,3.47c-.07,1.56-.14,3.13-.2,4.69l-7.37,6.42q-.33,9.12-.54,18.24,6.74.86,13.58,1.65l5.22,6,5.63-1.49-2.27,9.64Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M497.26,98.49l.31,1,1.87.71,4.33-3.16-3.07-.42-1.37-1.78-1.42.52-.75-.75-1.36.73L492.69,94l-.42,1.78c-.91,0-1.83,0-2.74,0L492,97.13l2.17-.36-.23,1.74Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="469.59 97.55 471.17 96.91 471.29 98.43 472.83 99.94 476.89 92.99 478.21 92.61 478.65 90.88 480.55 90.46 481.46 91.43 483.65 90.91 482.75 89.36 480.22 87.74 478.71 87.64 478.17 85.5 475.23 84.12 474.41 88.17 473.22 85.52 472.38 84.57 470.76 86.95 470.3 85.47 470.79 84.6 468.81 84.04 467.55 85.14 465.69 85.42 466.07 89.66 467.67 90.12 467.77 91.49 472.4 88.95 471.9 91.39 468.08 93.05 468.14 93.85 469.15 94.37 468.59 95.76 469.59 97.55" style="fill:#d9dadb"></polygon><polygon points="484.77 97.56 489.24 94.6 485.42 93.66 485.22 92.34 481.91 93.04 482.42 94.23 481.52 95.82 484.93 95.54 484.77 97.56 484.77 97.56" style="fill:#d9dadb"></polygon><polygon points="329.55 148.01 327.74 149.76 331.64 150.53 336.18 155.51 343.69 154.08 348.07 154.65 351.82 151.77 352.75 153.37 355.15 151.17 357.84 151.19 358.35 148.97 360.3 148.14 360.6 143.8 361.67 141.74 359.13 140 355.22 140.76 352.85 141.89 350.15 139.16 346.37 142.06 346.98 139.01 343.82 141.75 341.2 141.85 344.08 138.28 342.06 134.8 333.36 138.99 335.09 140.37 337.6 139.74 339.65 140.61 337.67 142.3 330.62 142.58 331.77 145.09 335.58 146.08 333.9 147.84 329.55 148.01" style="fill:#d9dadb"></polygon><path d="M384.6,253.52l-2-2.67-3.73-.29-2.85.22q.92-2.37,1.84-4.71l1.05-1.12-.41-6.3-2.93-1.05,1-7.27-1.89-3.64-5.49-.88,6.67-3,6.22-6.39-5.55-1.64-4.43.76,8.22-6.25-6.34.07-1.41-1.49-6.34,6.3-.43,2.81-4.61,2,.34,2,4.31-1-6.72,5.81,1.29,2.14,3.94-.57-5.28,5.4,2.85,1.11,1.2-1.65,5.09-.64L365,236.42l.54,1.69,2.6.2-3.52,4.22,0,3-5.13-.9-1.61-1.78-3.8,4.55,2.84.43-1,3.32-6,2.4,5.68,3.25,7-.45-5.7,4.35-5.79-.77-9.56,6.44,7-2.09,2.85,2.07,2.15-1.76,4.31,1.66,5.51-2.1,7.66,2.17,7.83-3-4.93-1.67,5.5-2.32Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="356.48 194.59 356.84 192.25 353 193.35 351.63 197.34 356.48 194.59" style="fill:#d9dadb"></polygon><polygon points="353.07 198.76 347.3 201.5 350.35 203.85 353.07 198.76" style="fill:#d9dadb"></polygon><path d="M378.4,188l4.75-5.44c-1.9,0-3.8-.17-5.7,0l.52,2.31-1.18,1.72Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="384.93 185.18 385.14 182.98 378.88 186.46 379.67 190.37 384.93 185.18" style="fill:#d9dadb"></polygon><path d="M383,207.72l3.64-3.72-4.66-.17-2.38,3.3Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="333.96 222.71 334.55 224.62 338.56 222.66 339.6 225.67 345.18 222.66 344.25 216.47 341 217.49 341.01 216.06 333.96 222.71" style="fill:#d9dadb"></polygon><polygon points="332.55 238.72 332.55 238.72 332.55 238.72 332.55 238.72" style="fill:#d9dadb"></polygon><polygon points="338.39 217.22 338.62 215.16 332.17 218.13 333.89 219.91 330.6 222.44 325.19 220.21 325.25 223.31 321.56 225.53 325.47 228.45 314.7 234.77 316.33 237.65 314.91 240.74 320.86 240.89 326.78 238.19 332.55 238.72 336.89 233.43 339.6 225.67 338.56 222.66 334.55 224.62 333.96 222.71 341.01 216.06 338.39 217.22" style="fill:#d9dadb"></polygon><polygon points="11.22 504.47 11.22 504.41 11.22 504.28 11.22 504.47" style="fill:#d9dadb"></polygon><path d="M68.78,717.71l9.37,18.95,0,0L80,740.13l1.83,3.45,4.1,7.41h0l0,0,.2.36c6.2,10.54,14.58,23.45,22.07,34.82l-1.16-2.34L102.32,776l-5-8.24-1.44-3.58L95.77,761l1.9,1.81-.27-1,1.19.36-.5-1.73,6.18,4.57-1-3,1.38-.41q-1.16-2.48-2.27-5l-.43-6.15-3.4-10.35.35-2.54-2.66-9.92-6.46-20.25,1.91-1.28.62-10-.07-2.38,1.78-1.34,1.12-4.27-1.27-3.23,2.45.17-.13-14.24-4.78-16.16-1.79-2.89-4.07-2.48-5.77-10.54-2.16-6.17-6.22-11.15-4.19-1.93-2-3.63-2.36-1.64-3-6-1.17-1.39-1,3.5-2,.38,1-6.89-1-4.25L52.7,594l-1-2.95-.76-.29-.73-2.65-.91-.76L48.88,585l-2.36-3-2,7.32-.94-6.08.94-3v-4L42,570.94l-1.34-6,.4-8.63-1.81-5.56-.34-10,.11-6.69-.71-5.56-1.85,7.81-1.08,7.45-.69-.75-.2-3.2-.81-1.61-.53,2.2-1-2.27L31.49,532l-1.41.75.21,5.18-1.18-2.37h0l-1.21-2.69-.32,1.52-.47-2.88-.3,2.27-.58-.22-.58-7.39c0-2.26.05-4.51.1-6.77l-.21-5,.94-6,.05-12.63-.67-1.9-.54,4.79c-.09-.41-.17-.81-.24-1.21l-.49,2.68-.16-3.74-.37,2.88,0-9.14-.13-2.15-.47,15.8.09,6-.4,3.28v3.36l.14,7.71C26.27,616.64,50.84,675.06,68.78,717.71Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M114.19,795.23l-6-9,0,0Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="21.22 528.47 21.75 526.27 22.56 527.88 22.76 531.08 23.45 531.83 24.53 524.38 26.38 516.57 25.61 514.56 24.27 503.58 22.63 497.17 21.22 501.43 20.79 510.13 21.44 515.99 20.25 526.2 21.22 528.47" style="fill:#d9dadb"></polygon><path d="M34.52,509.16l-.22-1L32,502.55l-1,1.39-1.14-5.6-.58,7.4-.63-1.6-.93,7.42.77,8.7,0,5.31.49,4.11.13,5.88,1.18,2.38-.21-5.18,1.41-.75.66,6.17L33.34,528l-.65-5.87.43-8.7Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M29.32,505.74l.58-7.4-.64-10.4.43-4.84-.23-12.3-1.2,2.78-.52,6.13-.78-.9-.73,5.28-.37,9.74.67,1.9-.05,12.63-.94,6,.21,5c-.05,2.26-.09,4.51-.1,6.77l.58,7.39.58.22.3-2.27.47,2.88.32-1.52,1.21,2.69h0L29,529.68l-.49-4.11,0-5.31-.77-8.7.93-7.42Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M23.12,516.19c0-1.34.08-2.76.11-4.18l-.12,1Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M23.12,516.45v0Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M23.51,509.75l-.08-5.21c-.07,2.57-.13,5-.2,7.47Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M30.09,429.29,28.41,439l-2.86,22.94V462L25,467.83l0,.18c-.49,6.14-.81,13.16-1.07,20.31l.11,1.77,0,9.14.37-2.88.16,3.74.48-2.68c.08.4.16.8.25,1.21l.54-4.79.37-9.74.73-5.28.78.9.52-6.13h0l1.2-2.78v-1.52L29,467.22l.87-7.59-.06-3.39L29.35,452l.47-5.59.47,1.44.91-3.94-1-4.51-.21,0-.59,2.3-.35-1.1.75-6.81Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M23.42,503.74v.8c.14-5.27.29-10.78.48-16.22l0-.38Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="19.58 409.12 18.23 416.68 18.19 417.31 20.39 404.6 19.58 409.12" style="fill:#d9dadb"></polygon><polygon points="18.48 439.83 19.2 440.55 20 435.48 19.58 434.4 18.67 438.24 18.48 439.83" style="fill:#d9dadb"></polygon><polygon points="13.08 456.03 13.65 449.94 13.65 450 13.1 455.85 13.08 456.03" style="fill:#d9dadb"></polygon><polygon points="69.93 731.6 69.87 731.48 69.93 731.6 69.93 731.6" style="fill:#d9dadb"></polygon><polygon points="66.27 724.71 66.25 724.68 69.87 731.48 68.1 728.14 66.27 724.71" style="fill:#d9dadb"></polygon><polygon points="74.26 739.4 74.05 739.03 74.04 739.01 74.26 739.4" style="fill:#d9dadb"></polygon><polygon points="74.04 739.01 74.04 739.01 74.03 739.01 74.04 739.01" style="fill:#d9dadb"></polygon><polygon points="33.63 363.04 34.43 356.19 32.34 362.12 31.97 366.25 33.63 363.04" style="fill:#d9dadb"></polygon><path d="M51.54,346.81l-1.11,3.12-2.64,7.74-.11.32-.14.43-.77,2.38q1.21-3.71,2.49-7.36l.39-1q1.41-4,2.9-7.94c.43-1.48.92-3,1.46-4.44l-.43,1.13-1.27,3.44Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M46.68,364.64l4-13.57,1.79-6.16.12-.4q-1.48,3.94-2.9,7.94l-.39,1Q48,357.1,46.77,360.8L46,363.28l.77-1.75-1.25,5.7Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M201,182.18l-5,1.39-9.86,5.73L182,190.57l-.93,2.67-3.94,1.81-2.2,2.79,1.9,2.86.95,4.16-4.4,2.07.49,2.41,5-2.09.11,1.44L175.32,212l-.67,2.71,1.12.67,7.14-6,1.13-2.37-1.57-.21.94-2.51,4.11-1,2.44-2.16L188.5,200l2.9-2.95.25-2.27-2.72.81.09-1.86,2.62-1.93-.09-2.94,10.35-4.9C201.6,183.35,201.32,182.76,201,182.18Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M183.32,183.54l1.16-1.17,2.54-6.56c-1.15,1-2.28,1.93-3.42,2.9l-2.41,4.93Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="153.66 193.09 158.9 186.62 159.99 184.38 153.2 189.08 151.39 192.51 153.66 193.09" style="fill:#d9dadb"></polygon><polygon points="225.69 104.44 230.11 101 226.82 102.08 221.33 106.38 225.69 104.44" style="fill:#d9dadb"></polygon><polygon points="221.33 106.38 221.33 106.38 221.33 106.38 221.33 106.38" style="fill:#d9dadb"></polygon><path d="M365.16,60.41l5-.22q.87-.86,1.83-1.68L370,57.74l-2.9.32-2.87.08-7,1.45-4.69,2.74-2.14.7-.14-.7,3.15-1.58-4.62,1.4-3.94,1.93c-1.62,2.45-4.6,3.51-6.17,6L334.48,73c-.34.46-.66.91-1,1.37l2.55-.88,1.58-1,1.33.21-2.83,2-3.48,1-4.1,3-2.82.29c-.29.5-.56,1-.81,1.51l-3.75,1.48-3,3.13-7.55,3.6-.66-.34-5.7.55-5.63,3-1.08-1.19L300,88.32l.7-1.54c-3,.45-3,.45-7.25,2.2l-2.06,2.45,1.07.95-3,3.32-3.16,2.38-2.57,1-6.38,5.54-.53,1.41-3.05,2.34-4.81,7.25,2.48-1.36,3.71-3.49,6.73-6L283,105l-4.62,5.25-3.44,3.21L274.2,115c12.47-6.72,12.47-6.72,14.56-8.24l4.65-4.71,6.44-3.5,4-2.14-.12,1-3.47,3.32-7.19,4.11-1.89,2.81,5.1-2.07,1.11.82,5-2.44.84.59,4.46-2,9.37-8.55-1.78-.49,3-1.2L319.68,90l3.82-1.71,1.51.84,6.21-3,3.3-2.09L336.85,82l-.77-.8,3.56-1,6-4.16c.1-.27.21-.53.33-.8l3.95-1.26,4-2.16c.4-.77.84-1.55,1.33-2.33L352.65,69l2.1-1.23-2.42-.41,6.59-1.26,6.95-2.2L367.5,63l-1.14-1.6-3.94.44-5.15,1.65-2-.35,4-1.57Q362.2,61,365.16,60.41Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="301.29 71.36 302.3 72.23 307.58 70.19 309.23 68.25 305.95 68.6 303.14 69.82 301.29 71.36" style="fill:#d9dadb"></polygon><polygon points="277.59 76.17 279.38 75.87 285.75 72.27 288.84 69.94 292.11 68.37 294.32 66.97 294.55 66.16 301.35 63.21 299.47 63.51 292.25 65.73 288.49 67.31 286.08 67.81 285.54 68.82 281.58 70.68 282.71 71.15 282.8 71.69 283.54 71.88 280.8 73.55 277.59 76.17" style="fill:#d9dadb"></polygon><path d="M287,88.41c.66-.81,1.35-1.62,2.07-2.42l-4,1-2.41,2.25Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M274,96.17l6.71-2.44c.39-.56.79-1.13,1.2-1.69l-4.42,1.74L274,96.17Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="345.76 55.89 346.84 57 345.07 58.42 352.56 55.59 351.36 54.6 354.69 52.91 345.76 55.89" style="fill:#d9dadb"></polygon><polygon points="341.44 42.44 333.93 45.91 333.55 46.63 344.53 42.74 343.16 42.84 343.84 41.91 341.44 42.44" style="fill:#d9dadb"></polygon><polygon points="396.15 27.05 398.88 25.43 396.76 25.09 396.02 24.61 392.92 25.51 386.93 26.87 390.69 25.61 390.97 25.31 387.02 26.06 380.17 28.37 375.82 29.42 380.01 27.93 383.52 26.51 379.66 27.39 372.93 29.48 366.48 30.96 360.34 33.57 358.59 34.67 358.89 35.05 352.14 37.22 346.94 39.47 348.77 39.37 352.11 38.67 347.79 40.33 351.39 39.75 357.28 37.77 358.02 37.21 360.26 36.38 366.37 35.29 376.74 33.28 382.45 31.63 381.49 31.49 373.31 32.91 373.27 32.34 381.33 31.03 384.66 30.12 384.19 29.58 386.42 29.32 391.18 28.11 390 27.83 391.74 27.21 396.15 27.05" style="fill:#d9dadb"></polygon><polygon points="400.02 26.16 406.67 25.14 408.5 24.02 415.71 23.02 420.37 21.58 416.41 21.73 414.51 21.32 415.19 21.01 413.58 20.95 413.42 20.53 408.35 21.44 403.17 22.05 398.93 23.51 403.13 23.49 402.53 23.82 403.46 24.04 403.46 24.04 400.02 26.16" style="fill:#d9dadb"></polygon><polygon points="355.82 41.58 365.39 39.69 367.32 38.67 371.19 39.08 373.12 38.44 373.27 37.56 376.34 36.75 370.31 37.18 368.73 36.94 373.44 35.66 371.56 35.6 367.16 36.7 364.56 37.73 354.97 40.38 355.71 40.64 359.66 39.87 355.65 41.04 355.82 41.58" style="fill:#d9dadb"></polygon><path d="M448.94,86.36l6.51-2.11-1.06-1.72L451.62,82l-3.05,1.25-.17-1.32-3.12.59-3.11.78,4-1.92,2.66-1.52-1.91-.16-2,.83-4.5.14.69-.71,3-.6-1.8-1.41,3.42-.75,1.5,1.49,5.52-.25V77l-2.28-.46,2.48-.75-.65-.71-.66-.68,1.82-1.1-1-1.06c-.8-.39-1.84-1-2.62-1.39l-1.92.38,0-.49-2-1.11-1.36.32V68.89l-2.74.41-1.09.59c.41.41.85.8,1.32,1.2l-.38,1-2.26,1,.27-.9-1.94.47,1.56-1-.9-1-5.93,2.16,2.09-2.17,1.78-1.16-.38-.9-4,1.86-.73-.82.63-.88-4.2.66,6.54-1.93c-1.16-.36-2.69-.92-3.84-1.32l-2.64.85-2.8,1.61-.6-1.2,4.09-1.46-5.78.77.92-1.08-.94-.28-7.35-.64-2.75.73.57.88.49.74-7.58.36.45-2.07-2.79.72-2.14-2-2.79.22L395.15,67l-2.31.47-.63.6,2,1.27-1.8.82-4.19.74,1.45-3-1.51-.34-2.34,1.28L385,70.41l-2.14-.61-3.58,1.67,1.37.78-1.88.91,1.84.13-1.85.95,3.27-.3-.36,2.85-3,2.91-3,.7-5.63,4.14-7.65,2.85-2.06,1.8L355,90.58l-1.81,1.8-2.85.27L348.76,94l-2.39.51-1-.33L343,95.85l.94.82,5.42-1.11-4.49,2.71,1.3,1.06-4.1,2.36-3.43,2.25-1.61-.16,2.45-3.43L339,99l-1.83.2L333.31,104l1.3,2.27-8.31,3.5.21-2.3L317,110.26l-.52,1.88-4.49-.07-6.87,4.38-3.9,3.37,2.23.48-5.57,2-5.56,3.83,1.79,1.18-6.87,3.4-8.18,8.16.63,2-7.67,5.83.9,3.1,4-.3-6.37,5.69,3.3,2.66L287.13,150l5.4-6,7.24-.7,2.75-2.51.36,1.95,2.71-2,2.13-3.2,1.17,1.43,2.62-3.53,6.91-.91,0,2.09,5.93-3.26-2.48,3.44,8.86-.58,10.12-4.12,2.8.3,3.58-1.83-.32,1.59,3.64,1.29,10.75.36,4.77-1.72,2.7.33,6.43-1.6L371,127l-7.13.67-1.19-1.57,5-.81,7.21-2.42,1-2.82,1.89,1,.52,1.65-1.66,2.57,1.68,4.24,7.4-6.86c-.67-.24-1.32-.49-2-.74l2.54-1.07-.79-3.45-1.71-.59,3.53-3.69,6.25-1.16,1.07,2.75,4.46.18-.9-1.78,1.66-2.42,5.55.81,2.57-.73.73-3.42-2.37-.11.26-1.29,3.78-2.35,1.16,2.52,1.56.12,3.19-2.89L414,101.87l2.55-2.82,2.85.11,2,2.21,1.69-.74,3.11-3.84-.55-1.69-3.43.79,7.83-4,3.65,0,2.11-2,2.06.21,1.95-.46-1.6-.93-1.54-.12,1-.87,2.07-.43,2.42,1.09,2.7-.77-2.24-1,2.31-.88Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="423.68 59.18 427.26 57.85 426.44 57.33 424.62 58.23 423.68 59.18" style="fill:#d9dadb"></polygon><polygon points="423.04 56.54 424.94 55.35 422.19 55.95 421.37 56.87 423.04 56.54" style="fill:#d9dadb"></polygon><polygon points="380.79 54.84 382.72 53.55 380.09 53.61 378.21 54.7 380.79 54.84" style="fill:#d9dadb"></polygon><polygon points="317.45 93.89 321.17 88.84 314.46 91.25 313.6 93.32 317.45 93.89" style="fill:#d9dadb"></polygon><path d="M437.66,61.3l.13-.7,1-.41c.07-.3.15-.6.24-.89l1.75-.62.25-1.52-2.35-.28.52,0,.09-.15a14.72,14.72,0,0,1,.89-1.23l-2.8-.43-2.29.26c.17-.21.36-.42.55-.62l2.08-.5.41-.74L437,53.31l-2.39.3-.15-.38,2-.23.6-.61-1.37-.18,1.4-.3-1.35-.77-2.05.39-.94.73-1.6.28L430.5,52l-2.78.46-2.93,1.09L426,54l-1.71,0c-.44.43-.87.86-1.27,1.3l1.23.11-1.67.38-.39,1.49-1.65-.21L419.9,56l-2.87.66,3.05-1.23,1.54-1.11-2.56.16-1.59.49-5.36.9L410.54,57l-1.86-.21c.32-.37.66-.73,1-1.09l1.86-.34-.81-.68-3.21-.2-1.3.24-2.33,1.16-3.62.8-1.79,1-1-.71,1.25-.66,3.47-.6c.4-.39.82-.77,1.25-1.15l-4.27.77-1.79.1.79-.69-1.45-.87-3.31,1c-.57.48-1.12,1-1.65,1.45L389,57.5l-.28.87,2.8-.77-1.86,1.28-1.23.43-.6.58,1.7.14-1,.66-2.72.43.67,1,2.13.62,3.05-.9L390,61.59l1-.6,2.05-.16,2.35-.6-.39.87,1.64.13,3.29-.67c-.34.52-.64,1-.92,1.55l6.1,0L407,61c1.77.36,1.77.36,4.06-.32l.16.91,2.37-.48L412,62.23l.33.84,1.31-.42,3.09.43,2.16,0,6.3,1-.72-1.44,2.66-.07,1,1.43,4.21.57,1-.17,1.15-1,2.22-.59c0-.14,0-.29,0-.43l.83-.31-3-.47.74-.52Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M426.64,51.53l6.25-.68,1.23-.54-1.48-.14-.12-.43-3.39-.61-2.88.65.8-.68H425l-4,.72-1,1.08-2.65.74,1-1.05-1.07-.21L414,50.8l-1.11.78-.61-.31-2.42.57c-.44.33-.87.65-1.28,1l2.63-.06-3.32.61c-.23.18-.45.37-.67.56l4.75-.29L413.51,55l2.87-.37c.35-.34.73-.69,1.11-1l1.58.1,3.27-.58-.32-.46,2.57-.2Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M396.37,53.22q.86-.64,1.77-1.29l2.34-.54,3.57-1.31.24-.77c-5.71,1-5.71,1-7.94,2.13l-.42.6-5.44,1h-1.1l-2.69.18L382,54.48l1.19.25-2.34.61-.4.76.36.72-2,.17a47.76,47.76,0,0,0-3.9,3.69l2-.11-2.79,1c-.72.81-1.38,1.62-2,2.45l2.08,0,2.06-1,2.45.32,2.59-1.75,1.8-.3-.63-1.1,2.6-1.18-1.36-1.38,2.37-1.05-.23-.84,4.27-1.31,3.11-.64-.29.56Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="424.64 23.16 420.86 23.85 421.47 24.19 418.75 24.25 420.02 24.89 419.52 25.89 416 25.86 416.92 26.38 416.92 26.38 416.95 27.11 421.17 26.88 420.63 26.63 423.51 25.79 423.5 24.7 424.98 23.6 424.64 23.16" style="fill:#d9dadb"></polygon><path d="M420.25,40.12l1.85-.64,2.06,0,2.43-.87-2.22.17,1.13-.62L425,37.8l-2.43.25,1.54-.67L423,37.21l-4,.82-1.91.51.4.5-3.68.81.54-1-2.4.46c-1.06.36-2.12.73-3.15,1.11l.22.74-1.61,1c-1.34.53-2.65,1.07-3.92,1.63l4.33.3,3.2-.77-1.76-.19,3.66-.6,4.43-.15,2-.31-.81-.74-3.38.32-.62-.22-2.88.36,4-1.26Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M376.4,56.37l1.31-1.62,3.81-1.29.81-1.26-7.41.64-6.12,1.45-1.5,1,5.37-1-4.16,2Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M410.69,45.08l.91-.42-5.66.48-4.41.86-1.83.88-.46.95-2.18-.16-2.74.35-2.4,1.69,2.95-.38,2.36.08,5.58-.42,2.26-.76-1.53-.14,1.95-.42,1-.53-2.93.14,3-.64.72-.41-3.51.35-.83-.12,4-.67Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M385.3,52.61l4.16-.17,2.29-.73,1.24-.8-1.92-.36-4.23,1.14Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M422.33,44.61l-1.16.77-2.13.86-3.48.32L414,47.4l1.56.09,3.61-.31,3-.29.54-.28,2.33-.28,1.2-.59,2.58-.25c.79-.38,1.6-.74,2.42-1.11l-2.82-.07L426.8,45l-3,.18,1.19-.83Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="383.77 32.84 384.83 31.89 377.78 33.46 381.16 33.65 383.77 32.84" style="fill:#d9dadb"></polygon><path d="M423.91,41.72c.54,0,1.07,0,1.61,0l1.61.46,2.95-1.48-1.29-.44a15.58,15.58,0,0,0-2.47.3A19.45,19.45,0,0,0,423.91,41.72Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="403.09 38.03 408.32 36.5 408.86 35.82 400.85 36.65 400.34 37.97 403.09 38.03" style="fill:#d9dadb"></polygon><path d="M425.49,48.07h2.93l2-.65-3.11-.2-.87.48Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="395.54 39.12 398.34 37.59 397.24 37 392.87 39 395.54 39.12" style="fill:#d9dadb"></polygon><polygon points="388.24 41.84 390.75 41.78 392.48 41.16 392.9 40.43 389.58 40.79 389.12 41.43 388.24 41.84" style="fill:#d9dadb"></polygon><path d="M420.33,44.27l1.18-.52-5.54.34-2.84,1Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="420.92 30.16 422.65 28.82 421.29 28.8 416.5 30.54 420.92 30.16" style="fill:#d9dadb"></polygon><polygon points="420 28.29 422.17 28.11 422.35 27.82 419.02 27.71 419.02 27.71 420 28.29" style="fill:#d9dadb"></polygon><polygon points="388.13 33.19 388.19 33.68 390.12 33.43 391.62 33.03 390.23 32.74 388.13 33.19 388.13 33.19" style="fill:#d9dadb"></polygon><path d="M535.09,23.45l-6.94-.29-3.38-.09-.89,0h-.23c4.51.12,9.11.26,13,.43Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M499.54,23.34l1.44-.11.44.08,2.41,0,3.23-.19h4.7l5.79-.09,2.48,0h3.62l-10-.23c-9.51,0-9.51,0-28.38.69-9.47.51-9.47.51-28.38,2.36l-2.62.31a21.52,21.52,0,0,1,2.41-.17l4-.44,3.25-.28,5.81-.58,2.89-.21c1.29-.1,2.58-.21,3.87-.3l6.36-.36,2.52-.17,1.6-.06.56-.06,3.34-.11.83.05,3.13-.05,1.13-.12-2.18,0,.32-.1,3.83-.06-.3.09Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M391.34,37.9,391,38l-5.78,1.5h0l-3.68,1,.55-.07-.19,0,10.52-2.81Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M394.71,37l-2.25.6,6.1-1.51c-3.1.86-7.27,1.94-10.35,2.89l-2,.52.18-.14-5.72,1.66-2.12.38,3.42-1c-11.47,3.09-14.32,4-24.3,7.29l-14.26,5.1-4.76,1.82,1.36-.59c-10.84,3.95-15.29,5.82-26.74,10.85-29.07,13.86-33.53,16-55.6,29.13-14.44,9.44-33.41,22.49-47.27,32.76l.07-.06-5.79,4.63,2-1.27-3.56,3.22L196.27,139l-2,2-8.75,7.63L176,159l-8.34,8.38-2.68,2,7.36-7.72-9.78,9,0-.64-4.28,4.11.83.05-1.7,2.74,3.54-2.75-1.76,3.72-.6.81,3.74-1.82a56.5,56.5,0,0,0-3,7.83l2.62,0,2.89-3,4.62-2.46,1,1-1.42,2.35-7.22,6.32-3.58,4.93,3,2.24-2.13,2.36-5.52,2.11-5.4,6.34,4.6-1.1,3-2.21-.07,3.82,4-.26,3.26-5.7-1.88-.25,4.74-9.19,2.71-2.65,1-2.23,4.31-3.28,1.43-4.94,3.21.1-1.33,2.44,1.23.27,3.87-3.17.88-3.55-.88-1.65-6.24.29-4.22,1.63,8.29-6,5,.35,3.5-1.26,1.73,5-1.77,8.49,5.18-1.29,3.5-2.11,3,1.43,4.4-1.29,1.3.26,5.25-4.75,1.69-3.23-.74-1.13,3-2.2-.19-1.9-4.7-.27,5.19-3.81,4.71,1.39,2.43-2.88-.66-2.75,2-1,.14-2.29,3.92-3.34,2.07-4.09,2.26-.83,1.14-1.83,3-1.36,6.6-5.79.94-2.19,3.53-1.81.57-1.57,2.59-1.19,6-4.8.9-1.24-9.34,4.67-.11-.85-4.8.3,2-2.31,5.33-4.66c.05-.27.1-.54.16-.82l11.51-5.75,2.17-2.19.62-2.29,3.56-1.78,7.39-6.26-1.74-.38c.28-.62.57-1.24.88-1.85l3.57-1.61.92-2.22L278.54,96l-6.22,3.57-1.79.32-3.6,2.21-3.39,1.38-3,2.19-7.89,2.53-10.88,8.33-10.51,5.55-3.71-.69-6.71,5.22-4.28,2.61L209.23,135l-.12-.51L204.2,138l2.55-2.5-1.36.38,9-7.94,14.09-9.74,3.17-1.53,2.83-2,4.47-4.68-1.11.19,3.47-2.11,7.82-6,7.77-5,7.14-5,1.68-1.73,3.2-1.52,8.35-4.45L279,83.17l-.89.29,4.8-2.57,8.42-3.72,4.85-1.63.64.15,2.27-1.06.23.38,2.65-.86-2.2,1.55.61.24,5.73-3.19,3.27-1.33-5.72,3.39,2.83-.68-2.76,1.46-.16,1.09,4.82-1.17,4.6-3,5.2-2.89-1.12,2-5.19,2.79,3.47-.59,3.7-1.32L317.32,74l-2.32,1-1.8,1.59,2.55-.85-2.2,1.55,2.31.27-.27.53,2.82-.7,5.61-3,2.13.5,2.4-1.14,1.32,0L334.08,71l3.67-3.37L333.19,69l-2.46.31-3.93,1-2.6-.21,6.32-2.64,3.68-.79,5.27-2.34-5,1,2-1c2-.54,4.06-1.05,6.1-1.56l4.64-2.38,3.4-.59,4.57-1.67,8.18-2,3.3-1.5-2.18-.72L359.57,55,355,56l-6.66,2.76-3.31.73-.67.68-3.35.68v-1l-2.17.26,3.41-1.33L346.35,57l-4.44,1.38c2.76-1.47,6.39-3.5,9.19-4.88l5-1.75,1.48-.88,7.65-2.46,3.35-1.65-2.15.4-2.68,1.11-2,.22,2-.79-.74-.09,5-1.24,3.35-1.66,9.7-3.16,1.51-.28-1.9.78,2.94-.7,5.45-1.7,7.87-2,3.91-1,3.64-.7,3.63-1-.47-.09,2.88-.72,3.14-.27,2.2-.54-1.86,0,4.28-.83,2.2-.24,4.66-.72-1.88.11.31-.28,2.82-.62,2.2-.37-2.1.6,1.09-.1,2.94-.63,1.44-.44-1.25,0,1.42-.32,2.56-.4-1.68.39.88,0,2.19-.47,2.74-.4,2.5-.44.75-.17-2,.27h0c-4.52.66-9,1.35-12.9,2C406.57,34.16,405.76,34.31,394.71,37Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M345.09,52.18l2.08-.84-5.53,2h0l-1.66.71,3.4-1.23Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M448.85,27l-8,1.09-1.95.28,1.12-.11c3-.44,6-.87,8.84-1.26Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M456.63,26.05a21.52,21.52,0,0,0-2.41.17l-5.33.73,2.67-.3Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="198.55 114.75 197.65 115.47 198.47 114.82 198.55 114.75" style="fill:#d9dadb"></polygon><polygon points="192.59 119.51 192.75 119.39 192.76 119.39 197.65 115.47 191.91 120.05 192.59 119.51" style="fill:#d9dadb"></polygon><polygon points="168.61 140.22 172.05 137.09 172.05 137.09 168.61 140.22" style="fill:#d9dadb"></polygon><polygon points="176 133.97 179.39 130.66 183.77 126.9 184.53 126.18 183.99 126.62 174.59 134.79 172.05 137.09 171.46 138.18 176 133.97" style="fill:#d9dadb"></polygon><path d="M110.68,232.47l1.1-1.1.1.52,2.2-2.94.61-.46,1.86-2.47.89-.91,4.55-6.05,7-9.34,3.85-4.16-1.32,1.86-3.69,4.78-3.54,4.38,1-.53,2.71-3.15,3.45-4.58,1.43-1.08-3.32,4.25,2.83-2.5,3.16-3.75-.54,2.88,2.43-1.81.75-2.36,2.51-2.11-.32,4,3.06-4.15,4.07-3.75,4.63-1.72,3.18-2.52.06.77-1.66,2.27,1.64.15,3.06-3,3.57-4.92,7.22-6.32,1.42-2.35-1-1-4.62,2.46-2.89,3-2.62,0a56.5,56.5,0,0,1,3-7.83l-3.74,1.82L156.9,181,154.09,183v-2l-1.68,1.23-.26-1.34,4.94-5.35C138.93,194.54,133.9,201.16,110.68,232.47Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M167.18,165.64l2.37-2.71,2.79-2.28,3.71-3.46,3.19-3.41L177.65,155,174,158.35l-6.16,6-.58.59c-3.1,3.2-5.85,6.07-8.37,8.7l3.75-3.6Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M108.72,235.08l-.21.31,2.17-2.92-.14.14Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M158.33,174.13l-1.25,1.36,1.78-1.87Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="423.16 223.71 426.34 229.11 430.1 223.64 428.72 220.72 426.5 223.42 423.16 223.71" style="fill:#d9dadb"></polygon><polygon points="417.77 172.55 412.46 173.87 415.13 176.03 417.77 172.55" style="fill:#d9dadb"></polygon><polygon points="485.11 129.07 481.03 130.9 484.11 132.64 485.11 129.07" style="fill:#d9dadb"></polygon><path d="M473.39,222,471.72,230l4.45-4.18.18-2.16h0l2.38-3.26Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="563.16 135.53 564.82 132.67 559.85 132.68 559.52 135.05 563.16 135.53" style="fill:#d9dadb"></polygon><polygon points="568.42 87.79 568.42 87.79 568.42 87.79 568.42 87.79" style="fill:#d9dadb"></polygon><path d="M583.16,134.81l1.18-.94,5.39-1.23-5.51-1.74-8.31-6.19.57-3-3.66-1.39.22-1.26,2.66-.13-.44-1.95-2.13-.8,1.81-1.21-2.77-2.69.9-1.29,1.94.42.17-1.2-1.81-.73.76-2.14,4-4,0-.8,2.23-2.84-1.22-1.6-2.32-1.11-2.12.76.84,2.16-3.57,3.18-2.73.33.14,1.56-2.51,2.45,1.14,1.66-1.28,3.21,2.78.54.36,2.73-3.1,2.61,2.06.78,2.52,7.36-1.81,2.09.74,1.76,6.32,1,1-.42,2.27,1.7-.56,2.11Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="565.37 62.16 569.05 61.97 566.66 60.6 567.39 59.05 564.39 57.99 558.38 57.9 559.44 58.69 559.6 59.78 562.64 60.68 562.51 61.2 565.37 62.16" style="fill:#d9dadb"></polygon><polygon points="567.86 64.09 570.59 64.18 570.13 62.86 568.73 63.13 567.86 64.09" style="fill:#d9dadb"></polygon><polygon points="569.75 60.99 570.36 61.56 572.85 63.43 573.63 63.03 576.82 63.62 578.43 62.62 580.25 62.63 580.94 61.04 577.75 60.41 573.16 58.62 571.59 59.28 572.28 60.31 570.28 59.78 569.75 60.99" style="fill:#d9dadb"></polygon><path d="M599.67,75.15l.35-.48-1.5-1.32,1-1.2-2-2.13-5.07-.23,1.44,1-3.63-.92-1.38.12L594,72.24l-.34.51Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="588.49 58.18 591.7 58.07 589.42 57.2 586.77 56.91 588.49 58.18" style="fill:#d9dadb"></polygon><polygon points="598.8 39.36 604.4 40.16 607.12 39.62 606.58 38.72 601.86 36.83 602.67 36.56 600.51 35.64 594.52 34.3 593.81 35.15 595 36 593.69 36.66 598.5 37.35 595.7 38.34 598.8 39.36" style="fill:#d9dadb"></polygon><polygon points="611.85 38.83 615 38.64 614.34 37.04 612.44 36.66 609.41 36.99 610.48 37.96 609.48 38.62 611.85 38.83" style="fill:#d9dadb"></polygon><polygon points="594.68 31.74 592.76 31.15 590.65 30.89 591.64 31.87 593 32.35 591.87 32.43 594.07 33.34 592.85 33.58 595.89 33.95 596.21 33.33 595.88 32.98 596.37 32.67 594.68 31.74" style="fill:#d9dadb"></polygon><polygon points="553.67 14.85 549.98 14.49 550.84 14.91 555.49 15.48 560.41 15.94 561 15.79 557.76 15.4 553.67 14.85 553.67 14.85" style="fill:#d9dadb"></polygon><polygon points="749.45 79.98 745.84 78.05 740.1 74.9 743.57 76.98 748.6 79.71 749.29 80.24 759.55 86.26 762.75 88.12 765.23 89.73 775.42 96.45 761.88 87.5 755.07 83.34 749.45 79.98" style="fill:#d9dadb"></polygon><polygon points="878.82 191.73 878.34 191.13 878.79 191.69 878.82 191.73" style="fill:#d9dadb"></polygon><polygon points="888.09 203.48 887.4 202.6 887.58 202.82 888.09 203.48" style="fill:#d9dadb"></polygon><polygon points="880.33 193.59 885.48 200.11 887.4 202.6 886.62 201.59 885.11 199.63 885.26 199.83 880.51 193.81 880.33 193.59" style="fill:#d9dadb"></polygon><polygon points="477.22 141.09 477.22 141.08 477.22 141.08 477.22 141.09" style="fill:#d9dadb"></polygon><path d="M515.23,154l2.93-3,2.3.47-.62-3.18h0l-4.08-.77,4-2-6.13-3.3-2.62-.75-1.71-.51-1.14,1.59-1.58-.77-3.89,5.92-.57-2.71.77-2.88-4.63,2.35-1.33,4.12-1-1.62L493,145.78l-2.59,1.08,2.36,1.1-.85,2.6-4.37-2.87-3.28,1.69.69,2.37-2,.59-2-2.22-1.51,1.56-2.69-.12,2.65,3-4,2.24-.28-3.45-1.73.28-.78-1.17-8.09,7.07,6.44-2.27,1.73,1.51-4.5,2,1.55,1.8-3.57-.09-4.61,2.36.71,1.73L457.92,168l-3.48,5.55-.12,2.26-8.16,3.75,3.72,2.67-4,1.68-2.08-1.4-1.72,1.19L440,180.92l-2.14,2.49.43,4.23-2.2,1.14-1.23-3.18-3.36.41-4,5.17-4.61-1.35,1,2.71-2.36.69-.29,1.76,7,.28,1.93,3-10.64-.18,2,2.16L419.08,202l3,1.82,4.64-1.43-4.07,4.51-5.5-.69-1.05,6.16,4.92,2.94-1.32,1.81,6.27-.84,1,1.2,6.16-4.27,1.75-.17.32-2.81,3.07,1.2,2.12-4.07,2.48,5.82,0,.57,2.5-1.29.34-4.09,4-1.2-.24-6.32,2.26.13,1.5-2.9-2.32-3.37,1.05-3,.3-5.94,4.83-4.8,4.24,1.28,1.12-3L461,177.18l4-3.25c.33-1.64.67-3.27,1-4.89l3.37-.7.08-1.29,3.42-2.11.51-2.87,4-2.95,2.7.74,1-3.18,4.51,1.51,1.53-.66-.31-3.78,2.21-.68,2.75-.88,1,1.28,1,1.27,3,.48,1.71-.91,4.06,2.26,2.7-2.44-1.28-2.39,1.69-2.81,4.73-1.34,3.5,2.33-.79,1.89Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="423.25 219.66 423.25 219.66 423.25 219.66 423.25 219.66" style="fill:#d9dadb"></polygon><polygon points="421.86 214.28 424.25 212.01 425.11 208.76 415.89 211.37 416.56 213.82 411.29 215.45 409.34 223.05 411.42 225.38 410.92 230.03 417.41 231.01 415.31 228.04 419.19 222.52 421.67 218.71 423.25 219.66 425.68 216.45 421.86 214.28" style="fill:#d9dadb"></polygon><path d="M499.17,170l-1.22-2.5h0l1.2-1.69-1.68-2.05.87-1.44-1.72-.6.94-2.1-3.07-2-2.42,0-1.82-1.68-1.13-2.81h0l-2.21.68.31,3.78-1.53.66-4.51-1.51-1,3.18-2.7-.74-4,2.95-.51,2.87-3.42,2.11-.08,1.29-3.37.7c-.33,1.62-.67,3.25-1,4.89l-4,3.25,1.41,2.12-1.12,3L457.07,181l-4.83,4.8-.3,5.94-1.05,3,2.32,3.37-1.49,2.9h0l-2.26-.13.24,6.32-4,1.2-.34,4.09-2.5,1.29-.56,7.54L445,226l2.14,2.14-.66,2.17-1.89.09,2.13,4.69-1.52,2,6,.95,3.36-5.52,5.49.8,3.36-6.92,2-2.52L464,221.44l2-.22.38-1.91-1.58-1.2-.18-2.54,5.75.39,4-2.41-6.74-1.71,4.12-3.16,1.69,2.4,4.24-1.23-4.25-6-3.27-.8.27-6.28,1.92-.31V191.2l4-2,5.13-4.59,4.88-1.42,3.7-4-2-2.33,1.88-1.6-.85-1.43,2.75-1.05-.46-2.26,1.83-.71Zm-48.54,47.18-4.27.26,2.9-4.12,2.1-1,3.62-.47-.42,2.91Zm8.07,1.1-4.58,4.94.41-5,4.37-3.92Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M526.86,186.09l-4.22-2.24,2-1.73-.33-1.63L521,179l.64-2.18-2.52-2.72,1.76-2.67-5.3-7.41,2.52-2.11.37-2-2.45-2.35-2.63-.35.25-2-.92-1,1.45-1.39-1-1.08.79-1.89-3.5-2.33-4.73,1.34-1.69,2.81,1.28,2.39-2.7,2.44-4.06-2.26-1.71.91-3-.47-1-1.28-1-1.28-2.75.88h0l1.13,2.81,1.82,1.68,2.42,0,3.07,2-.94,2.1,1.72.6-.87,1.44,1.68,2.05-1.2,1.69,1.22,2.5h.47l4.15,2.52.6,3.41-3.28,1-3.45,4.85-1.37,1.35-1.81-.79-1.54,3-4.06-.18,1.38,3-2.59,1.5,2.13,7.8L488.26,204l4.09,2.42,2.12-1.29L496,206.7l-1.53,2.74,7.22-2.28,2.23-.06,2.5-1.8,1.11.92,2.62-2.72.64,1.3,4.77-1.28h0l.64.32,11.14-12.68h0l1.27-2.95Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M307.08,332.41l5.75-3.17-1-4.64-7.51-.24.9-4.76-4.53,2.21L298,331.47l-7.18,9.31-1.3.09-2.2,4.6,2.38,2.38-3,9c2.78.63,5.59,1.24,8.43,1.85l4.63-6.76L298.62,350l3-1-1.7-4.82,3.88-1.9Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M352.79,339l7-1,8.17-4,1-2.63-4.87-1.9-3.12.87-5.08-5.74-3.13,1.72-4.94-1.48L342.48,318l-7.1-.65-2.56-2.1-5.24.15-6.49-3.58-6.84.13-3.53-3.11-8.82,3.6-.5.3-.67,9.11,4.53-2.21-.9,4.76,7.51.24,1,4.64-5.75,3.18-3.3,9.87-3.88,1.9,1.7,4.82-3,1,1.21,1.93-4.63,6.76,3-1,2.36,4.89,0,5.94,3.84,1,.1,0,7-3.6,11.38.28,2.4,2,6.19-6.49,4.42.62,1.48-4.33,6.2-3.12-2-3.57,1.93-3.9Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M399.34,274.22l-2.68,2.66,0,.15,1.55,4.06c4.59-3,4.88-3.1,5-3.18h0a20.85,20.85,0,0,0-2.29-2.18C400.46,275.22,399.91,274.71,399.34,274.22Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M410.23,292.27,408,294.08l-4.71-.21-3.08-.16-.07.2-.51,2.18-5.08,2.73-3.85,6.26,6.82-2.66.6,3.4,4.72,1.26,1.79-3.25,2.56-.53,2.4,4.9,3.16-4.45,3.25,1.77,4.5-4.47-6.23-2,1.2-4.55Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M399.61,296.09l.51-2.18.07-.2,3.08.16,2.84-6.27,4.81-3,.79-2.22q-3.54-.3-7-.63l-3.49-2.33a18.27,18.27,0,0,1-2.91,1.7l-.92-2-8.13-3.93-1.74-5q-2.28-.27-4.53-.57v-4.93l-3.37,1.16-2.15,4.92-9,1.3,1.44,2.53-2.91.62-5.42-3.42-3.31-.76.26,7.52-7.11-.12-1.6-3.18L341,276.38l-.12,5.71,6.06,1.48-.81,2.11,4,.43,1.78,1.88-2.42,3.34,1.64,6.41-1.44,11.08L342.48,318l5.33,6.89,4.94,1.48,3.13-1.72,5.08,5.74,3.12-.87,4.87,1.9.63-1.64v0l-1-2.5,2.23-4,5.51-2.49L388,326.81l9.36-4.83,1.34-.7-4.73-4h0l2.73-2.48-2.3-1.64,3.38-3.25-1.5-2.93,1.82-1.19-.6-3.4-6.82,2.66,3.85-6.26Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M401,275.72l.07-.17L402.9,271l-3.18-1.21,1.42-2.12-3.92-2.77-7,1.38-1.06-3.81L383,264.63v4.93q2.25.3,4.53.57l1.74,5,8.13,3.93-.63-2.07,0-.15,2.68-2.66C399.9,274.71,400.46,275.22,401,275.72Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M413,248.68l-2.45,0-7.08,3.19-.57,4.18-3.07,1.06-.19-5.27L394.27,258l-1,4-3.53.25-.57.21,1.06,3.81,7-1.38,3.92,2.77,2.73-2.72-.45-3,4.1-.29,1.71-2.24-.79-2.53,3.05-2.77C412,252.3,412.48,250.49,413,248.68Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="449.18 281.24 447.32 279.39 448.64 277.19 447.72 275.63 447.73 275.63 447.35 274.98 443.17 276.35 437.61 272.83 435.8 275.97 424.61 279.08 423.81 283.8 418.96 281.73 413.38 283.71 403.55 282.54 402.36 287.09 408.58 289.07 411.76 290.13 413.2 288.42 418.5 287.7 419.25 290.6 428.88 291.81 431.19 293.59 433.88 291.11 436.86 292.23 438.44 289.61 443.06 289.64 445.44 284.69 448.32 285.05 448.32 285.05 449.18 281.24" style="fill:#d9dadb"></polygon><path d="M457.89,353.47l2.89.6.7,2.49,2.5,0,.7-2.28L461.62,350l-6.09-3.74-6.84-2.36.09-1.66,2-1.14L450.1,340l-9-1.67-4.09-5-1.72-7-7.05-5.68.35-4.89,1.22-1.45-.86-3.37,6.56-2.39.75.52,1.95-5.61-7-.9-.76-2.9-5.3.73-1.43,1.71-3.18-1.07-4.5,4.47-3.25-1.77-3.16,4.45-2.4-4.9-2.56.53-1.79,3.25-4.72-1.26L396.28,307l1.5,2.93-3.38,3.25,2.3,1.64L394,317.31h0l4.73,4,7.41-3.89,7.59,3.91,1.07,8.76,3.75,3.13,10.78,11.6,3.61.57,2.59,3.12,4.58.8,1.57,3.27,4,2.59,2.73,8.46-4.13,5.54,1.74,2.58,3.16-1.49,2.7-6.14,3.79-.44-.3-3.47L452,358.09l0-3.24,3.09-3.8Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="441.8 261.81 440.84 260.75 437.36 261.96 434.87 259.7 430.36 260.78 428.24 264.19 425.24 263.72 421.29 265.62 423.92 271.17 426.99 271.02 426.99 271.02 426.99 271.02 431.73 277.11 435.8 275.97 437.61 272.83 443.17 276.35 447.35 274.98 447.73 275.62 452.88 276 454.15 272.91 459.12 271 457.79 267.62 452.94 267.99 452.86 264.97 449.07 264.49 447.41 267.62 444.59 264.64 446.12 262.1 441.8 261.81" style="fill:#d9dadb"></polygon><path d="M446.82,257.06l4-6.31-2.59-2.08L447,246.41l1.21-2.1L446,242.66l-1.74,2-2.47-.5-2.66,2.67-6.46.69L429.31,243l-6.5-1-.22,2.29,1.83,4.27-4.25-1.06-3.47,4.11-2.61-3-1.1,0c-.51,1.81-1,3.62-1.5,5.44l-3.05,2.77.79,2.53-1.71,2.24-4.1.29.45,3h0l-2.73,2.72-1.42,2.12L402.9,271l-1.81,4.56-.07.17a13.9,13.9,0,0,1,2.28,2.19c-.21.11-.67.43-2.13,1.48l3.49,2.33q3.51.33,7,.63l-.79,2.22-4.81,3-2.84,6.27,4.71.21,2.25-1.81,5.22,2.25,9.83,1.17,5.58-2h0l4.85,2.08.79-4.73,7.13-2-4.74-6.1h0l-3.07.15-2.63-5.54,3.94-1.91h0l3,.47,2.12-3.41,4.5-1.08,2.5,2.27,1.62-5.41-1.47-2.23,1.49-6.19Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M500.21,276.81l.76-3.18-3.72-4.37.57-5-3-.85.89-2.81,3.58-1.19,0-3.23-1.8-2.8c0-1.27,0-2.54,0-3.81L495,247l-10.3.64-7-2.2-.16-.06-5,.26-.69-3.54-9.62,2.38-2.19,2L452.48,248l-1.63,2.8-4,6.31,4.08,3.06-1.49,6.19,1.47,2.23L449.26,274l3.48-1.22.95,1.06,4.32.29-1.53,2.54,2.83,3,1.66-3.13,3.79.48.08,3,4.85-.37L471,283l1.3,1.3,2.69-.93,2.32,1.15,2.92-1.16,2.64,1.39,2-1.34,3.62.69.53.56,2.64,1,1.92.71-.19-4.2,4.29-5.26Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M489,284.64l-.53-.56-3.62-.69-2,1.34-2.64-1.39-2.92,1.16L475,283.35l-2.69.93L471,283l-5,1.92L464.78,288l-5.16-.38h0l.92,1.56-1.32,2.2,1.86,1.85-.11.5,4.78,2.37,4.4-.67,1.19-2.11,4.48-1.05,2.8.57,1.34-3.05h4l1.47,3,4-1.13h0l2.21-6.06Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="515.31 327.55 510.43 329.82 507.88 327.15 505.38 327.68 504.78 337.3 507.73 338.1 512.81 334.04 521.48 334.14 520.36 332.01 516.48 330.07 515.31 327.55" style="fill:#d9dadb"></polygon><polygon points="504.78 337.3 505.38 327.68 501.46 328.49 501.01 331.38 495.72 331.8 493.06 330.19 488.78 332.19 482.77 332.13 480.07 334.45 475.66 334.35 473.93 337.23 469.06 337.81 468.52 341.79 463.19 347.85 468.47 354.58 476.12 354.76 477.86 356.32 468.97 357.86 475.46 364.81 475.71 372.65 480 368.47 485.57 370.91 482.32 361.61 485.78 361.77 483.78 356.6 489.13 356.16 481.63 353.21 482.29 350.07 486.5 350.2 479.57 344.02 479.7 340.2 482.32 338.06 488.16 342.53 487.58 336.93 496.27 335.44 504.78 337.3" style="fill:#d9dadb"></polygon><path d="M448.76,304.21h0l-3-1.12-2.69,2.48-2.31-1.78-2.61-.31-1.95,5.61,1.28.87q6,.3,11.9.51l6.23-5-.67-3.82-4.62,0Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="454.85 323.9 447.44 317.06 443.21 320 451.58 324.87 454.69 323.9 454.69 323.9 454.85 323.9" style="fill:#d9dadb"></polygon><path d="M455.66,317l2.09-1.86,7.44,1.15,2.12,2.3,3.83-.08-2.07-8.86-3.57,2-4.89-2.16-5-4.06-6.23,5q-6-.21-11.9-.51l-.54,2.8,2.36,4.57,2.29-3.89,1.57,1.07,2.28,7.26,4.5,5.6,9.38,1.68L450,316l2.75-1Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="454.85 323.9 458.98 329 458.99 329.04 461.68 326.39 463.63 324.46 459.55 316.38 455.95 319.18 454.85 323.9" style="fill:#d9dadb"></polygon><polygon points="459.24 306.55 459.24 306.55 455.41 306.63 453.3 304.33 445.85 303.18 443.76 305.04 440.8 303.03 438.05 304.05 447.44 317.06 454.85 323.9 455.95 319.18 459.55 316.38 461 312.97 457.76 310.61 461.1 306.61 459.24 306.55" style="fill:#d9dadb"></polygon><path d="M494.14,294.2l-4.68-2.53-4,1.13-1.47-3h-4l-1.34,3.05-2.8-.57-4.48,1.05-1.19,2.11-4.4.67L461,293.72l-.75,3.31-2.88-.36-2.38,5,.67,3.82,5,4.06,4.89,2.16,3.57-2,5.42-2.49,8.42-.14,1.11-2.2,2.06-1.42,3.2-6.42,3.27-.68h0Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="482.75 319.72 479.28 317.55 478.2 314.71 481.34 309.22 478.75 307.62 476.25 308.72 472.28 307.1 473.43 304.15 468.76 301.88 469.64 299.87 462.6 295.2 457.18 297.69 459.24 306.55 459.24 306.55 461.1 306.61 457.76 310.61 461 312.97 459.55 316.38 463.63 324.46 461.68 326.39 461.73 326.41 467.14 329.58 471.5 327.99 477.91 326.61 478.1 326.52 478.01 322.03 481.19 322.92 482.75 319.72" style="fill:#d9dadb"></polygon><polygon points="461.73 326.41 461.68 326.39 458.99 329.04 457.94 340.6 461.21 345.3 463.18 347.85 468.52 341.79 469.06 337.81 465.76 334.22 467.14 329.58 461.73 326.41" style="fill:#d9dadb"></polygon><path d="M490,338.59v-.09l-.19.09L483.4,340,479,341.56l-1.38,4.64,3.3,3.6,4.87-.59,1.73-2.88,4.41.11,2.7-2.33h.47l-1.41-3.56-2.7,0Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M525.23,328.67l3.66-1.41.26-2.24-4,.19-4.64-2.66-6.12,1.89L510.57,328l-6.19-1.52-1.56,1.72-8.18-1,.57-3.1-2.84-1.34-2.27,4,1.08,2.83,3.47,2.17-1.56,3.2L489.9,334l.1,4.49v.09l1,2,2.7,0,1.41,3.56,5.54.05,4.28-2,2.65,1.61,5.3-.41.44-2.9,6.43-1.34,2.55,2.67,4.88-2.27L523,334.38l2.23-2.21Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M502.82,328.19l1.56-1.72,6.19,1.52,3.83-3.55,6.12-1.89,4.64,2.66,4-.19.05-.47.83-8.05-6.09-4.31,1-7.34-1.41-4.42-3.1-2.27-3.53-6.39-3.76.14-1.59,2-3.48.11-2.05,2-3.44-2.81-7-.8-1.44,1.86-1.59,2.12-3.27.68-3.2,6.42L484,304.84l-1.11,2.2-8.42.14,7.05,4.67-.88,2,4.66,2.27-1.14,2.94,4,1.62,2.5-1.1,2.59,1.6-.87,1.54,2.84,1.34-.57,3.1Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M537.29,307.51l-4-8.93-3.34-1.33.77-3.19-1.11-1.93-4.59-.71-3.26-2.49-4.12.28-2.26,2.62,1.58-.06,3.53,6.39,3.1,2.27,1.41,4.42-1,7.34L530,316.5h0l4.44-.24.58-3.25-1.49-1,1.06-3.21Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M574.12,298.63l3.66-3.77,3.79-.56,2.23-5.49q2.9-.33,5.76-.69l.42-2.27-2.55-3-.39-3.13,1.61-1.66-.72-2.83-5.39,1.05-5.31-2.66-1.38,2.06-4.14-3.88-3.19,2-5.52,0-1.32-1.29.13-2.4-1.43-2.31-6.13-.24L553,264.8l1.18-2-3.38-3.68-7.4,1.26-.62,2.34-6.07-.88-1.48,3.57,1.14,2.6-2.4,1.86-2.43-2.75-4-.8-1.25,2.5-3.2-2.27-2.44,2.54-3.18-3.4-6.64-.84-9.2,0-.72,3-3.55.65-.08.72,3.71,4.37-.76,3.18-2.52.05-4.29,5.26.19,4.2-1.92-.71-2.21,6.06,4.68,2.53,1.44-1.86,7,.8,3.44,2.81,2.05-2,3.48-.11,1.59-2,2.18-.08,2.26-2.62,4.12-.28,3.26,2.49,4.59.71,1.11,1.93-.77,3.19,3.34,1.33,4,8.93,2.7-5.4,3.64-2.18,4.11.26-1.62,3.59,3.3,1.47,5.06-1.58,3.4,1.94L551,310.34l1.64,1.5,5.19.56,1,5,3.39.37,2-3.11,3.48-.19,1.53-2.11c1.67-.15,3.34-.32,5-.48l-.15-4.4-6.83,2.43-5.18-5.55,6.71-5Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="480.23 235.22 480.23 235.22 480.23 235.22 480.23 235.22" style="fill:#d9dadb"></polygon><polygon points="480.23 235.22 480.23 235.22 480.23 235.22 480.23 235.22" style="fill:#d9dadb"></polygon><rect x="480.23" y="235.22" style="fill:#d9dadb"></rect><path d="M489.94,241.88l-4.2-1.92.2,1.95c-2.13,0-4.26,0-6.39,0l-2.06,3.5,7.16,2.26,7.47-.45h0l2.45-5.38Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M513.48,241.05l-2-1h0l.62-1.81-3.64-4-3.43-.45-1.67-2.06-1.93,2.15-4.48-.91L495,234.44l-4.85-2-4.89,2.69.42,4.41,0,.38,4.2,1.93,4.63,0-2.45,5.38h0L495,247l2.54,2.53v.88h5.33l2.58-2.95,1.37,2.23,2.44-.07-.22-6.44,3.2-.11Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M544.19,252.52l-1-3.11-6.95-3.25-3.05-4,0-5.4-3.64-2.21-4.09,2.53h0l-1.66-3.51-4.11,0-1.7,0-1.6,3.22-2.85-1.46-1.39,3-.62,1.81h0l2,1-1.29,2-3.2.11.22,6.44-2.44.07-1.37-2.23-2.58,2.95h-5.33c0,1,0,1.95,0,2.93l1.8,2.8,0,3.23-3.58,1.19-.89,2.81,3,.85-.48,4.3,3.55-.65.72-3,9.2,0,6.64.84,3.18,3.4,2.44-2.54,3.2,2.27,1.25-2.5,4,.8,2.43,2.75,2.4-1.86-1.14-2.6,1.48-3.57,3.91.57v0l-3.81-8.67,4.91.9Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M512.14,224.16l-2.49.82-4.43-3.11-3.77,1.79-.17,1.79c-1.86,0-3.72.08-5.59.1L493,222.3l-4.11,1.19L485,231.7l.31,3.46,4.89-2.69,4.85,2,1.89-1.48,4.48.91,1.93-2.15h0l1.66,2.07,3.43.45,3.64,4,1.39-3,2.85,1.46,1.6-3.22,1.7,0h0l0-.24-1.29-3.76-2-.42.12-2.2Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M517.46,212.34,516,210.8l-4.35.18-4.92-1L497,213l5,5.54-.48,5.09,3.77-1.79,4.43,3.11,2.49-.82,1.82,1.13,1.67-2.84-2.78-3.73,0-3.47,2.54.09Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M914.92,385.74c.69-.59,1.37-1.17,2-1.76l.72-4.62L924,391.69l1.83-1.69-5.59-15.35,3.52.61-3-10.68-1.65-1.25.46-4.37-3.38-6.89,1.59-9.28-1.7-6.73-4-1.11-1-3.6-3.42-2.69v7.14l-2.68-.15-.51,5.62-1.73,2.09,1.07,5.21-1.43,4.87,4.06,6L903.43,363l-2.81-1.22-1.56,4.77-5.16-1.9-1-3.3-1-3.23-2.59,4.08L891,369l2,1,.82,4.51-3.72,1.83-9.15.84-1.2-2.61-3.46,0-2.42,3.25-6.5-2.41-1.22,2.3-11.22-3.5-.36-5.39-1.13-1.95.78-4.81-8.77-2.45-2.1-2.69-3,.77L834.82,350l3-1.56.9-2.23-2.35-3.39-5.17-3-1.78-2.58.52-3.08-5.05-.93-4.2-5.78-2.27,1.14-5.39-.67-3.45,2.67-.89,4.24q-2.43,1.11-4.91,2.19l-.81,5.06,5.91,10.79,5.8,3.35,3-1.34,3.78,2,.52,4.67-2.06,3.37,2.9,4.14-1.74,7.1,1.75,13.21L819,392.1l.26,7-4.62,5.25-3.42-3.2-2,8.9.87,3.73,4.73-1.72,2.89,8.74,3.39-1.33,5.51,8.47-13.31,4.7-.63,6.05,6.4,4.25,6.35-4.8.56,6.33-6.33,3.78,8.81,6.69,4,1.52,6.31-6.85-.16-10.6,5.63,12.17.6,8,3.49,3.81.13,4.67,4.14,7.5,2.68,8,6,9.62,3.75,3.46,3.16,5.7,1.53,5.14,4.14,9,3.83,3.88,4,8.69,1.87,1.3.09,3.58,1.64,4.26,4.08,5.56,4.45-5.12,1.48-6.78,2-1.9-.12-3.25,1.08-5.26,1.69-.73-1.27-9.06-1.1-.62L898,499.7l-1.12-9.22-3.1-5.86-1.64-6.81-.16-5.3,3.35-7.74,4-4-1-3.71,4.81-14.12.46-8,1.12-3.62-1.35-5.3,2.94,1.46,2-4.17.26-6.22-2.28-5,1.7-6.4-.74-7,4.32,4.08,1.1-.79v0l-5.17-7.44q-1.44-3.45-2.91-6.87l-3-.47c-.52-1.2-1-2.4-1.58-3.6l2.33-4.16-3.71-2-1.57-5,5.66-.74q1.19,2.55,2.36,5.11l2.31-.9,1.63-2.34,1.9.36,1.47-3.82,3.25,3.53-2.24,7.61Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M924,391.69l-6.28-12.33L917,384c-.67.59-1.35,1.17-2,1.76l-1.57-4.65,2.24-7.61L912.34,370l-1.47,3.82-1.9-.36-1.63,2.34-2.31.9q-1.17-2.56-2.36-5.11l-5.66.74,1.57,5,3.71,2L900,383.47c.53,1.2,1.06,2.4,1.58,3.6l3,.47q1.47,3.42,2.91,6.87l5.17,7.44v0l3.87-2.86-.27-4.31.16-4,1.36-1.22,2.5,3.15,4.23,7.22v-.15c.68-.6,1.35-1.2,2-1.81Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M870.85,361.91,868.91,364l-3.11-2.63-5-.9c-.47-1-.94-1.92-1.42-2.87L856,358.73l-.15,3.73-1.66-.45-.78,4.81,1.13,1.95.36,5.39,11.22,3.5,1.22-2.3,6.5,2.41,2.42-3.25,3.46,0,1.2,2.61,9.15-.84,3.72-1.83-.82-4.51-2-1-1.73-6.72-2,2.2L883.16,363l.11,2.81-6.09-.68Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M892.87,361.38l1,3.3,5.16,1.9,1.56-4.77,2.81,1.22,3.05-3.55-4.06-6-3.1-2.72L897.6,355l-1.42-2.78c-.72.6-1.44,1.18-2.18,1.77a22,22,0,0,1,.28,4.2C894.1,359.4,893.24,360.28,892.87,361.38Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="874.04 188.12 877.92 192.09 881.08 196.09 881.9 196.93 884.52 200.41 885.97 201.91 882.27 196.82 882.29 196.61 880.42 194.27 880.16 193.75 877.61 190.66 877.61 190.48 872.36 184.21 872.45 184.41 866.96 178.22 861.9 173.32 864.45 176.31 864.79 177.39 867.99 181.24 871.29 184.51 872.3 185.65 872.19 185.77 874.04 188.12" style="fill:#d9dadb"></polygon><path d="M860.86,174.09l4.52,4.75,5.93,7.61h0l1.35.16,3.38,3.73.57.3.92.83.7,1.26,2.09,2.53,1.85,1.57-.6-1.1-1.7-1.75,0-.22.83.59-.78-1.14-3.2-3.85-.34-1.08-2.55-3-.41-.39-1.41-.83-2.76-2.83-2.84-3.19-1.27-1.76-2.37-2.63-1.39-1.43-1.67-1.92L855.12,166l-4.64-4.8-2.27-1.88-.31.19,5,4.71,3.43,4.14,3.12,2.59,2.16,3-2.85-2.4Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M606.17,404.49l3.85,9,8.55-.44,13,6.66,21,14.59q6.11-1,12.14-2l2.4-8.05c2.8-.48,5.58-1,8.36-1.49l.09-.21.82-1.87,1.32-.43h0l-8.12-7.9-.18-5.38-3.92-5-2.94.47-4-2.93-3.9.66-1.16-5.94-4.54-1.53-.59-6.5,3.93-4.76-2-3,.58-3.16-6,0-4-7.18-5.2,2.47-2.31-4.1h-6.71l-4.9,8.08-3.78.51-.12,4.53,2.8,4.87h0l-.35,7.94Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M667.08,424.3l-2.4,8.05,5.18-.9,2.88,4.05,6.73-1.22-1.33-2.09-3.46-7.68.76-1.7C672.66,423.32,669.88,423.82,667.08,424.3Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M623.51,371.57l-1.84-4.31-8.48,2.58-5.8,4.92-6.18.74-4.35-1.3-4.4,2.84-5-.52.93,4.65-2.18,4-3.15,0,1.49,7.77-.44,1.48h0l4.74-.76,2,3.91-3.65,8.74-.32.09-1.53.44.4,4.29h0l0-.07,6.5,3.34,13.89-9.93,14-12,.35-7.94h0l-2.8-4.87.12-4.53,3.78-.51h0Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M596.86,374.2l4.35,1.3,6.18-.74,5.8-4.92,8.48-2.58h0l1.84,4.31,3-5h6.71l2.31,4.1,5.2-2.47-2.63-4.72-5.36-2.78.5-2.7-3.64-6.48,3.55-4.16L626,345.51l-.14-4.92-2.65-1.91L618.47,335l-4.66,3.33L609.45,336,603,341.08l-4.8-1-6.13,2.35-10.57-2.24-2.21.9-2.56-3.27L572,338l-2.53-2.86-2.66,1.36-7.23.16-11.52,7.72-13.77,1.17,2.11,2.66-2.48,3.5-8,.11L524.12,353l-5.64-.58-3.38,3.44L519,364.3l-2.2,3.42,5.71.53-1.16,4.94,6.16,1.22-.35,5,7.49.41,2.38,2.81,3.49,1.27,5.26-1.24,1-3.83,4.81-.73,9,5.58,8.83-2.67,4-5.26,5.93,1.75,3-2.87,1.57,2.37-1.42.79-.16,2,1.61,2.48-.83,2.93,3.15,0,2.18-4-.93-4.65h0l5,.53Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="631.53 342.75 627.96 336.74 621.27 335.36 624.78 341.95 624.78 341.95 631.53 342.75" style="fill:#d9dadb"></polygon><polygon points="620.49 323.8 619.82 324.46 611.34 326.7 613.99 328.61 614.13 333.52 621.27 335.36 627.96 336.74 631.53 342.75 634.16 338.71 632.62 334.19 628.81 332.67 628.8 330.85 624.89 329.13 625.2 327.34 620.49 323.8" style="fill:#d9dadb"></polygon><path d="M657,333.51l-5.62-5.33-1.8,4.76-3.06.55-2.36-3.71-5-2.53-1.07,1.29-.9,1.06,4.19,3.07L640.3,336l-5.78-2.33-2.14,2.13,4.71,3.54-.3,1.79,3.9,1.72,0,1.83,3.81,1.51,1.54,4.52,5.5-6.61,2.8,2.17,1.86,5.92h5.23l-2.24-4.44h0l4.91-11.36Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="597.55 324.04 601.91 326.29 606.58 322.97 611.34 326.7 619.82 324.46 622.62 321.67 628.4 324 629.5 320.69 625.3 317.63 625.3 317.62 626.2 316.55 626.2 316.55 621.37 314.82 621.16 312.26 616.59 311.14 611.31 314.84 608.71 311.5 602.78 309.78 597.13 310.28 587.58 306.52 586.87 309.06 595.88 313.96 599.35 320.53 598.38 323.39 597.55 324.04" style="fill:#d9dadb"></polygon><polygon points="657.06 37.03 653.02 35.68 651.48 35.19 654.22 36.11 657.41 37.15 657.06 37.03" style="fill:#d9dadb"></polygon><path d="M810.39,126.45l1.14.69,2.23,1.74,2.08,1.84,15.35,12.46.21.85,3.82,3.71,4.67,3.74h0l5.64,5.19,2.68,2.65,2.27,1.88-.59-.59-3.21-3.22-4.85-4.57,1.43.74-2.77-2.73-6.15-5.65L828,139.67l-12.44-10.31L800,117.49l-5.87-4.26-8-5.48-1.88-1.28-3.31-2.09-8.11-5.18-5.38-3.1-3.31-1.94-.38,0-2.91-1.47,1.75,1.48,6,3.44.68.91-2.84-1.47,3.4,2.33L764,96.16l3.07,2.38-1.76-.61-10.23-6.66L749.25,88l-1.51-1.08L743.86,85l-8.69-5-3.49-1.69-11.35-6-5.49-3.34,0-.25-5.7-2.94-.57-.44-3.44-1.55-5.08-2.53,1.62.6,3.51,1.59.92.33-3.31-1.58L698.6,60.3,694,58.36l-1.81-.71,2.09.9-6.17-2.41-4.87-1.88-5.14-1.88-2-.68-3.48-1.26-5.3-1.92-.34-.15-.83-.27L655,44.47l-1.89-.58-6-1.79h0l-19.28-5.17c-22.26-5-25.68-5.79-36.64-7.51h0c-7.63-1.13-17.82-2.6-25.48-3.52l4.08.53,1.8.23h-.39l2.11.24.1.09,4.87.94,4.73.91.89.26,5.49,1.1,2.63.38,2.14.63,4,1,1.11.12L598.6,32l.88-.1,2.91.42,2.5.61-.77,0,1.74.54-2-.16-1.57-.4-2.27-.35,2.67.76,6.16,1,4.48,1.44.38.27,6.82,1.79,3.2.62-1.85.05,1.24.54-3.95-.59-1.67.3.51.73,3.4,1.41,2.08.42c.78.32,1.55.64,2.31,1l4.21,1.42-2.23.4,3.37,1.23L628,44.79l-.1.23,1.11.56-3.71-.69-.88.21,2.53,1.38,6,1.35L635,48.94l-7.48-1.83,1,1.62,2,1.7v.8l6.16,1.09,3,1,3,.27.1.63,2,.74,3.5.87-1.87.15-.52.77,4.21,1.63L646,59.1l11.73,3.63-1.93.7-5.37-1-2.13.1-6.43-1.34-1,1,7.94,1.7-.46,1.21-10.39-2.85.84,1.17-3.77,0,4.63,1.3.79.85,4.54.7-.74,1.87-1.93.27,1.63.86-2.07.45-3.06-.9-1.52,2.08,1.41,1.68,7.27,2.48-8-1.38,1.58,1.23-3.29-.25,6.8,4.87,1.14,3.83-4.44-2.52-2.2-1.79.13-.88-3.34-2-.32-.81-5.34-2.74.84-.19L625.4,70l-7.2-1.06-2.44.32-3.53-.21,1.43,1.13-1.69.15,1.47,1.52L613.18,73,610,71.34l-1.14.26,1,1.31-1.42.73-2.28-2.29-1.79-.1-1.5,1.83,3.79,2.53,7.22,1-2.75.71-.79,1,3.58.7,7.49,2.1L617.7,81l-5.88-1.61,1.64,1.48,0,1.94L611,82l-1.72,2.07,3.16.8-.27,2-1.74,1.83,2.82,3.18,1.45,1.44-2,.44,5,2.39,7.7,1.65-1.91,1.54-3.31-1L617,99l-2.09,3.44,6.46,3.22,3.8.17,2.65,1.3,6,.54,5.74,5,4.93,2.57L639,113.94l-5.74-4.61-3.49-.12-5.15-1.38-4.61.94,3,2.65-3.14.21,2.19,2.68,4.13.28.33-.71,4.32.67,3,3.72-4.78-1.85-5,1.16L619.6,114l-6.84-3.25,3.36,3-.34,1.62,1.74,2.32,7.25,2.53,2.92,3.84,5.38,3.53,2.76-2.12,6.46-.65,5,3.71,5.22.29-2.79,2.49-2.37-.33-4.23-3.11-3.34-.82-3.4,2.26,6.34,3.48,1.83,3.83-1.09,3,1.28,2.47-7.59,1.19-3.24-1.94,5.18-.85-1.11-6.6-2.54-1.45v-1.68l-4.16-1.43-7.39-5.48-3.12-3.31L615,118.37l-3.42-4.74-2.85-1.92-7.47,1.05.9,1.81,5,5.36.15,4.66,2.81.34,6,6.61,2.94-.95,3.58,2.15,1.82-.48,1.84,3.22-.86.42-5.19-1.5-12.27-.76-7.88,1-7.28-2.85,1.29,3.17,6.72,1.79,4.61,2.13-1,3.54-4.5-2.58-2.39,2.14-.08,1.05c-1.71.44-3.43.86-5.18,1.28l.56,2.89L588,147l1.12-1.77-.47-2.63c-4,2.47-9.31,5.77-13.4,8.07l2.68,1.71-3.57.93,1.2,3.73-4.79.92-4.52-2,.43-2.15,3.75-1.08-3.82-2.87-8.19.14,3.5,2.19,1.08,5,3.22,1.32-.46,2,1.79,3.41-4.1-2.4-3.71-.11-1,2.15-4.49,4.56,4.52,6.11-3.37.22-10.56-2.62,1.69,4,4,.82-.92,4.32-6.06-3.88-5.09-.77-1.46-8.23-9.52-5.94,6.51-.14,1.2,2.09,8.68.78,3,.58,4.18-.66,5-4.52-.29-1.95-2.2-2.48-9.13-2.15-6.57-2.87-8.37-.86-4.63.42,1.6-2.3-3.67-.83-.12,1.44-2.7-.48.62,3.18-2.3-.47-2.93,3-1-1.09-1.45,1.39.92,1-.25,2,2.63.35,2.45,2.35-.37,2L515.62,164l5.3,7.41-1.76,2.67,2.52,2.72L521,179l3.23,1.48.33,1.63-2,1.73,4.22,2.24,1.7,2.12-1.27,2.95-11.14,12.68,6.81,3.35-6,1.6-.05,2-.94.05,1.49,1.54-2.09,3,1.3,0,.39,2.94L519,222.2l-1.89,2.2-1.48-2L514,225.29l2.41,1.59-.12,2.2,2,.42,1.29,3.76,0,.24h0l4.11,0,1.66,3.51h0l4.09-2.53,3.64,2.21,0,5.4,3.05,4,6.95,3.25,1,3.11-2.47,2.09-4.91-.9,3.81,8.67v0l2.16.31.62-2.34,7.4-1.26,3.39,3.68-1.19,2,1.24,2.78,6.14.25,1.43,2.31-.13,2.4,1.32,1.29,5.52,0,3.19-2,4.14,3.88,1.38-2.06,5.31,2.66,5.39-1.05.72,2.83L587,279.74l.39,3.13,2.55,3-.42,2.27q-2.87.36-5.76.69l-2.23,5.49,6.92-2.16-.41,2.35-7.54,4,.76,1.92,3.78,1-2.61,2-.84,4.91L576.5,308l1.33,2.06,5.66,3,2.28,2.12,3.39.55,9.6,5.35.71-2.54,9.55,3.76,5.66-.5,5.93,1.73,2.6,3.33,5.28-3.69,4.57,1.12.21,2.55,4.82,1.73h0l1.07-1.29,5,2.53,2.36,3.71,3.06-.55,1.8-4.76-9.14-8.73-3-8.71-6-1.8,2.72-4.26.8-7.69,4.41-.05.67-2.56-3.38-2,1-4.7-5.61-4.55-5.88-.08c-.32-.92-.64-1.84-.95-2.76l-2.94-1.09.37-5.81L622,271.87l1.35-3.67-1.08-2.58,1.58-1.95,5.36,3.67,2-1.63-2-3,1.94-5.2,3.58-1.85.3-2.42,2.62-.53,1.12,1,2.29-.47.29-1.66,2.84-.61.6,1.31,3.78-.62,3.23,2.35,2.88,2.5,2.4-.37c-.42-.86-.84-1.72-1.25-2.58l6,2.39,1.26-4.08,2.87-1.11,2,1.81,2-1.25-.34-2,3.07-.49,2,2,5.59.63.46-2.29,5.39-1.76-1.66-4.48-8.38-.38-1.63-1.93,4.86-2.63-3.63-2.58.16-2.17,5.26-.27L680,229.76l-4.7.07-3.75-4.19,5.88-3.57,7.88-3.48-.69-2.28,9-5.38-1.89-2.64,1.78-2.64,4.44.22,3.19-1.37,3.88,3,.93,3.64,3.38,1.65,1.56-3.88,2.18,1.47,1.61-2.92,2.34,1.9.07,2.79,3.61,1.75,1.37-12,2.81-1,2.12,4.74,7.44,2,21,12.71.28-1.83L754.09,216l2.46-1.13,4.05,3.06,3.25-1.55-.72-3.36,3.57-.2,4.52,3.46,2.73-.57,3.16,2.08,2.42-.81-.93-3.31,2.87.46.82,1.17,4.73,1.33-1.2-4,3.44-1.92-2.28-2.3-.31-6,2.08-.94-1.4-3.23,3.25-1,2.6-1.79,3.94,3,2.88-1.17-.32-2.61,4.35.14.18-3.13-2.72-3.38-4.38-2.22-3.35-4-2.8-5.49,4.5.64,3.08-1.17,1.54-1.8c1.86,1.5,3.7,3,5.54,4.54l6,.26-2-6.42,5.72-2.61h0l2.63,2.1,2.48-1.17,2.15-1.75-2-2.83.9-3.27-2.9-2.71-3.66-4.86,3.13.06-1.64-2.63,2.35.43h0l1.73-.5-3-3.53-1-2.23-2.2-1.8-.62.15-9-7.63-2.3-2.67-4.21-2.56.63,1.33L796,132.36l-3.1-3.22-3.76-5.61,2.11-.47-1.16-1.42,5.06,1.45,7.09,4.11,8.66,5.12,1,.13L810,130.58l.48-.64,1.17.61L810.26,129l8.93,6.29L817,133.06l-.54-1-3.95-3-5.67-5.12,1.36.83ZM536.32,205.89l-.44,3.12-3.6-1.36-.11,2.44-2.13,0-4.27-7.19-1.71-1.07,2.53-3.89,3.22-.44,1,2.61,3.65.32L538,205Zm13.36-3.64-2.86-.54-.4-3-5-2.17.76-3.2,1.73-.26-2.3-4.1,4.58,1.55,1.12,3.25,3.07,3.79ZM790.14,149l4.78,4.91,3.15,6.2,5.35,7-3.28,3.74-2.48-7.1-7.36-8.83-2.41-5.12-11.37-9.68-1.39-2.35Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M860.94,223.75l3.18,1.95-2.23-11.41,1.92-4.56-5.09-8.53-.15-2.55-3.28-4.52-3.46-1.06-4.51-5.55,2.77.84-.18-3.44-4.53-5.34,1.56-.87-3-4.24-4.5-4.31-3.26-5.91,2.16-.52L835.61,161l-7.6-3.88.47,2.15,2.82,3-.06,1.91,1.58,2.14-3.66-1.91-10.43-10.89h0l-2.35-.43,1.64,2.63-3.13-.06,3.66,4.86,2.9,2.71-.9,3.27,2,2.83-2.15,1.75L818,172.22l-2.62-2.1-5.73,2.6,2,6.42-6-.26c-1.84-1.52-3.68-3-5.54-4.54l-1.54,1.8-3.08,1.17-4.5-.64,2.8,5.49,3.35,4,4.38,2.22,2.72,3.38-.18,3.13-4.35-.14.32,2.61-2.88,1.17-3.94-3-2.6,1.79-3.25,1,1.4,3.23-2.08.94.31,6,2.28,2.3-3.44,1.92,1.2,4,3.31,2.84,6.31,1.67c.94-.73,1.87-1.46,2.78-2.19l9.36,6.06h0l4.65,7.22,4,3,6.87-5.68,11,3.1,7.81,5.54.32-3.15,7.26-2.74-.64-3.8,6.86-3.14Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M988.56,509.1,987,493.3l-3.6-8-.28-.41.26,8.15-1.61,3.7c-.21-1.65-.43-3.29-.67-4.93l-2.48-.68,2,9.72,1.09,2.56.12,3.26,2.93,5.67-.22,3.3,5.24,7.32,1.22-4.09-1.45-8.07Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M980.75,482.73l-.36,2.88-2.25-2.11-2.21-9.37-2.16-5.65-1.35,2.34-2.83-17.44-.68-8.28-3-10.41.24-2.6.9,1.3,2.74,5.34,2.59-3.13,1.25,2.29,2.44,2.77c-.7-2.8-1.42-5.6-2.17-8.38l-3.3-6.9-.07-6q1.62-2.9,3-5.78l-.12-4.09L971,402.1l-3.19-3.54L966,392.74,962.64,388l-1.37,1.14.41,6.05-2.12-1.63.19,8.78-1.87-.48-2-11.17q-.93-2.42-1.87-4.83l-2.43,3.3-1.35-6.49-2.75,1.69,1.55,8c-.58.76-1.16,1.51-1.76,2.26l-2-1.11q2.07,5.28,4,10.59c-.44.54-.89,1.08-1.34,1.61l9,10.57,3.31,14.8,2.67,4.09,5,14.66-.17,9.68.83,5.79.5,8L971.81,484l.86-3,3.35,3.57,2.36,5.82,0,.08.16.72,2.48.68c.24,1.64.46,3.28.67,4.93l1.61-3.7-.26-8.15Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M984.72,431.58l-.88-10.53,0-1.38L981,407.84l-2.25-6.74L976,394.76l-.71-2.49-2.74-4.61-.87.49-4.63-5.34-1.66-3.47-3.18-3.17-1.81-5.44-2.07-10.89-1.23-2c.27-.71.53-1.43.78-2.14l-1-2.45-.11-2-2.75.65-2.33-6.06c-.29.75-.59,1.51-.91,2.27l-2.95-2.34,1.35,6.31.1,4.21-1.78-1,.6,3.22h0l-2.21-.84,1,4.89,2.83,2.91.65-1.15,1.64,6.25,2.6-.53-.42-4,3.81,5,.74,3.67-.87,1.46,1.11,4.67,3.79.14,7.37,11.07,2.32,1.35.73,3.39,1.45,1,1.35,4.35,2.48,9.4,2.73,9.18-.39,10c.43,1.68.84,3.37,1.25,5.06l-.72,1.71-.16,8.65.95.79,2.18,9.74,1.09-11.32-1.36-8.78Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M981.24,420.75l-2.73-9.18-2.48-9.4-.18,4.1-1-1.28,0,3.33,1.57,5.53-2.87-.21q-1.35,2.88-3,5.78l.06,6,3.3,6.9c.75,2.78,1.47,5.58,2.17,8.38l1.44,1.71.65-3.66,1.47,6.21,1.59,1.27.16-8.65.72-1.71c-.41-1.69-.82-3.38-1.25-5.06Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M966,392.74l1.85,5.82L971,402.1l2.36,7.44.13,4.1,2.87.21-1.57-5.53,0-3.33,1,1.28.18-4.1-1.35-4.35-1.45-1-.73-3.39-2.32-1.35L962.81,381l-3.79-.14-1.11-4.67.87-1.46-.74-3.67-3.81-5,.42,4-2.6.53-1.64-6.25-.65,1.15-2.83-2.91-1.3.21.7,2.82,2.35,3.1h0l1.94,5.15c-.38.62-.77,1.23-1.17,1.85L948,373.2l.63,10.44,1.58-1,1.35,6.49,2.43-3.3q.94,2.41,1.87,4.83l2,11.17,1.87.48-.19-8.78,2.12,1.63-.41-6.05,1.37-1.14Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M954,421.46l6.71,17.65.42-2.42,4.52,15.91,1.18.42,1,6.49.17-9.68-5-14.66-2.67-4.09L957,416.28l-9-10.57c.45-.53.9-1.07,1.34-1.61q-1.93-5.31-4-10.59l2,1.11c.6-.75,1.18-1.5,1.76-2.26l-1.55-8,1.17-.71L948,373.2l-2.53-4.36.25,6.58-2.35-3.15-2.22.82-1.46-4.49.13-2.17L937.2,366l-2-2.93L934,359.85l-1.62,1.76.11,4.16L929.32,360l-.13-2.64L927.75,354l-.52-6.33L925,341.86l-3.35-5.61-2.07-.31-2.2-3-2.23-.4.89,3.5,1.7,6.73-1.59,9.28,3.38,6.89-.46,4.37,1.65,1.25,3,10.68-3.52-.61L925.79,390,924,391.69l2.55,6.18c-.66.61-1.33,1.21-2,1.81v.15h0l6.62,5.12,2.33-.54,2.45,2.94,1.3,4.05,5.09,7.87,1.48,8.55,1.3,4.25,4.12-4.07,1.18-9-1.58-5.69,4.39,3.95Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M768.9,433.17l.5,5.79,11.28-3.29,3-3.25,3.89,1.2,6.18-4.23,2.42-2.57,2.54,3.91,2.26-.62,5.87,8.13,4.31-.52,1.56,1h0l.63-6.05,13.31-4.7-5.51-8.47-3.39,1.33-2.89-8.74-4.73,1.72-.87-3.73,2-8.9,3.42,3.2,4.62-5.25-.26-7,3.83-2.74-1.75-13.21,1.74-7.1-2.9-4.14,2.06-3.37-.52-4.67-3.78-2-3,1.34-5.8-3.35L803,342.08l.81-5.06q2.48-1.08,4.91-2.19l.89-4.24h0l3.45-2.67-5.4-3-3.21-1.12-3.34,1.52-1.8,3.39-7.7,3-1.91,6.56,4.16,4.66-.8,6.08c.76,1.62,1.53,3.23,2.28,4.86l-6.17-.08,1.34,5,3.42,1.27,0,3.62-3.32,1.27,3.27,8.26-.56,3.71-5.24.13-.44,4.43-5.4,3.57,1.47,9.63-7.41,6.13-.81,2.69-5.69-.62-4.62,3.21L754,404.22l7.13,7.93,8.33,3.07c.83,2.55,1.66,5.12,2.48,7.68,1.07-.32,2.14-.65,3.2-1h0l1.05,5.54-5,1.53Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M799.3,328.69l1.8-3.39-1.33-4h0l-2.64-1.46-5.68,2L791,325.2l-4.34,4.5c-1.21-2.34-2.42-4.67-3.66-7l-1.84-.6-2-4-2.22,1.38-2.11,3.7c.79,1.52,1.57,3,2.34,4.55l-2.19,4.83-2.48-2-2.58,5.52-3-2.81-10.38,1.9L757,338c-1.34.45-2.68.9-4,1.34l1.65,9-5.31,4.15,1.21,4.2-3.1,4.52-3.57-4.66-3.21.65-2.15.44L741,367.74l-1.2,3.39,1.32,3.56,2.93,1.18-1.13,3.74,6.81,12.07,4.56-.51,2.19,4.25-2.48,8.8,11.19,1.86,4.62-3.21,5.69.62.81-2.69,7.41-6.13L782.26,385l5.4-3.57.44-4.43,5.24-.13.56-3.71-3.27-8.26,3.32-1.27,0-3.62-3.42-1.27h0l-1.34-5,6.17.08c-.75-1.63-1.52-3.24-2.28-4.86l.8-6.08-4.16-4.66,1.91-6.56Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M776.2,427.46l-1.05-5.54h0c-1.06.34-2.13.67-3.2,1-.82-2.56-1.65-5.13-2.48-7.68l-8.33-3.07L754,404.22l2.48-8.8-2.19-4.25-4.56.51-6.81-12.07,1.13-3.74-2.93-1.18-1.32-3.56,1.19-3.4-2.5-10.06h.07l-4-8.35-4.18.46-9.47-5.43-4,3.27-6.85-2.3-1.64-3.09-10,3.61L697,352.44l-4.31.93,2.36,6.22-6.35-.62-7.11,3.9L664,357.94l-2.53-5.78h-5.23l-1.86-5.92-2.8-2.17-5.5,6.61-2.63,4-6.75-.8-3.51-6.58-3.55,4.16,3.64,6.48-.5,2.7,5.36,2.78,2.63,4.72,4,7.18,6,0-.58,3.16,2,3-3.93,4.76.59,6.5,4.54,1.53,1.16,5.94,3.9-.66,4,2.93,2.94-.47,3.92,5,.18,5.38,8.12,7.9h0l8.59-3,7.54,7.52,4.45,7.46,8.61,2,7.37,3.85,2.37,1.72,6.33.25,3.38-3.21,1.53-.21,4.56-4.79,3.09-.19,2.69,3.28,3.37,6.66,11.68.19L762.4,439l7,0-.5-5.79,2.3-4.18Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M760.52,334.28q-1.57-3.33-3.18-6.63l-4.72,1.13-7.72-2.07-3,2-11.43-5.46-4.77-7.44-3.61-1.34-3.38,2.94-4.82-1.31.69-3.15-3.47-4.24-3.78.93-4.48-2.32-2.37,1.87,1,3.67-3.54,3.35,3.63,5.83-7,.63-2.85,1.45-5.85-5.44-9.16-5.19-6.6,7.15L673.3,325l1-4.93,5.87-.47,7.57,7.13-10.45,3.39,1.09,5.62,5,.87.23,4.11,5,2.61,4,10.08,4.31-.93,1.46-6.61,10-3.61,1.64,3.09,6.85,2.3,4-3.27,9.47,5.43,4.18-.46,4,8.35,2.08-.42,3.21-.65,3.57,4.66,3.1-4.52-1.21-4.2,5.31-4.15-1.65-9c1.36-.44,2.7-.89,4-1.34l-.5-2.78,4.11-.73Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M779.59,280.82l5.48-3.56,7.65-4h0l1.58,1.36,5.58.33L796.62,271l1.34-2.92L790.3,260l-5.81-1.79,4.11-7.74,5.24,2.31-2.24-5.12L789,246.22,783.7,236l6.84-1.21.2-3.4q-2.88-3.32-5.81-6.58c.74-.49,1.48-1,2.2-1.49l-1.64-3.81,1.53-2.83-4.73-1.33-.82-1.17-2.87-.46.93,3.31-2.42.81L774,215.71l-2.73.57-4.52-3.46-3.57.2.72,3.36-3.25,1.55-4.05-3.06L754.09,216l1.61,2.36-.28,1.83-21-12.71-7.44-2-2.12-4.74-2.81,1-1.37,12-3.61-1.75-.07-2.79-2.34-1.9-1.61,2.92-2.18-1.47-1.56,3.89L706,211.1l-.93-3.64-3.88-3L698,205.87l-4.44-.22-1.78,2.64,1.89,2.64-9,5.38.69,2.28-7.88,3.48-5.88,3.57,3.75,4.19,4.7-.07,1.14,3.13-5.26.27-.16,2.17,3.63,2.58-4.86,2.63,1.63,1.93,8.38.38,1.66,4.48-5.39,1.76-.46,2.29-5.59-.63-2-2-3.07.49.34,2-2,1.25-2-1.81-2.87,1.11-1.26,4.08-6-2.39c.41.86.83,1.72,1.25,2.58l-2.4.37L651.9,254l-3.24-2.36-3.77.62h0l-.6-1.31-2.84.61-.29,1.66-2.29.47-1.12-1-2.62.53-.3,2.42-3.58,1.85-1.94,5.2,2,3-2,1.63-5.36-3.67-1.58,1.95,1.08,2.58L622,271.87l2.49,1.54-.37,5.81,2.94,1.09c.31.92.63,1.84.95,2.76l5.88.08,5.61,4.55-1,4.7,3.38,2,.71-2.85,9-6.49,8.93.31,2.29,9.34-7.41,5.37,1.56,3.32-2.68,2,6.51,7.78,9.69,2.17-.36,5.27,6.6-7.15,9.16,5.19,5.85,5.44,2.85-1.45q-5.67-14.11-11.71-27.8l9.61-7.07,1-8,7.49.93-1.84,4.45,6.05,6.17,11.86,7.25,9.9-3.07,3.23-4.24,8.24,5q1.75,3.25,3.48,6.54l2.36-.81,4,6,5.5-1.95,4.3,2.89-.33-5.48,4.52-11.71-.55-4.34h10.74l-1.72-3.76,1.44-2.91Zm-14.35-10.48-8.07-3.76v-12l14.2-4.15-.2-3.07,3.15-.91,2.84,6.67h0l-14.65,6.07-.73,4.58Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M799.89,274.94l-5.58-.33-1.58-1.36h0l-7.66,4-5.48,3.56h0l-7.46-.1-1.44,2.91,1.72,3.76H761.67l.55,4.34,3.76,2.09-1.88,4.61,4.32,1.06,1.53-3,9.42,2.43-3.81,7.93h0l-3.35-1-1.52,3.49-3.67.92,1.07,4.76,6.95-1.18,3.46-1.94,4,1.64,4.3-4.52.92-1-1.78-3.95.69-4.94,3-2.54,2.56,2.76,2.55-1.79-1.71-5.84q2.87-1.38,5.63-2.79l-1.25-4.79,4.11-7.35Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M770.68,309.33l1.52-3.49,3.35,1h0l3.82-7.93L770,296.5l-1.53,3-4.32-1.06,1.88-4.61-3.76-2.09-4.52,11.71.33,5.48-4.3-2.89-5.5,1.95-4-6-2.36.81q-1.73-3.29-3.48-6.54l-8.24-5L727,295.51l-9.9,3.07-11.86-7.25-.83,5.71-2.46-.12-4.1-6.55-.3,5.69-2.93.58-2.53-6.08.41-2.79-9.61,7.07q6,13.68,11.71,27.8l7-.63-3.63-5.83,3.54-3.35-1-3.67,2.37-1.87,4.48,2.32,3.78-.93,3.47,4.24-.69,3.15,4.82,1.31,3.38-2.94,3.61,1.34,4.77,7.44,11.43,5.46,3-2h0l7.72,2.07,4.72-1.13q1.6,3.3,3.18,6.63l.11.21,6.27-1.17-.12-7.49-3.46-3.63-4.87-1,.25-3.39,4-1.06-.59-4.23,1.62-1.54-1.35-3.27,1.84-.37,2.41-3.93,2.11,1.17-.19,2.62Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M779.12,318.13l2,4,1.84.6c1.24,2.33,2.45,4.66,3.66,7l4.34-4.5.51-3.28,5.68-2,2.64,1.46,1.21-2.61-6.24-7-2.79.46-1,1.24L786.75,309h0l-4.3,4.52-4-1.64L775,313.83,768.08,315,767,310.25l3.67-.92-2.13-2.16.19-2.62-2.11-1.17-2.41,3.93-1.84.37,1.35,3.27-1.62,1.54.59,4.23-4,1.06-.25,3.39,4.87,1,3.46,3.63.12,7.49,3,2.81,2.58-5.52,2.48,2,2.19-4.83c-.77-1.52-1.55-3-2.34-4.55l2.11-3.7Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M958.54,344.63l1.41,4.24,2.26,4.88-.39-3.84-2.79-7,.29-3.48-.93-6.46-1.76-4.3,1,.4-2.31-5.45,1.11.87-1.32-6,.58.18-.85-3.36-2.23-5.36-3.12-8.37-.77-.57-.72-1.95.09-1.15-1.4-2.75-.7-2-1.48-2.66-.34-1.34-2.54-4.74-.64-.87-.92-2.05-.73-.79-.9-1.75-.36-1.25-5.21-9.36-2.78-5.1,1.6,2.47-1.4-2.64-1-1.39-1-1.77-.72-.79-.85-1.46.22-.15L924.55,254l-2.18-2.61,1.07,2.47-1.53-2.09-1.75-3.29-1-2.25-1.4-1.67-.4.28-1.74-1.76.05-1.59L914,239.08l-2.09-1.42-3-4.08-4.32-4.28-1.37.12L901.26,227l-6.38-10.13L893,214.72,889.71,209l-.08-.71-3.49-4.18L887.3,207,886,207l4.64,6.54.52,1.44-1.87-1.36-1.63-2.41-1.65-1.1,1,2.21-2.61-1.42-3.62-4.79-.81-3-4.36-5.49-1.9-3.29-4.14-5.27-.82-1.86,1.93,1.17,3.64,4.36,1.46,2.29,1.56,1.61h.32l.26,0,1.94,2.89,1.59,1.71-1.54-2.62-6.52-8.78-.39-1.43-1.63-1.93-5.93-7.61-4.52-4.75-2.12-2.52,2.85,2.4-2.16-3-3.12-2.59h0l-3.43-4.13-5-4.71.31-.19-2.68-2.65-5.64-5.19h0l-4.67-3.74L831.4,144l-.21-.85-15.35-12.46-2.08-1.84-2.23-1.74-1.14-.69-2.24-1.74-1.36-.83,5.67,5.12,3.95,3,.54,1,2.24,2.22L810.26,129l1.36,1.56-1.17-.61-.48.64,1.89,1.87-1-.13-8.66-5.12-7.09-4.11-5.06-1.45,1.16,1.42-2.11.47,3.76,5.61,3.1,3.22,2.84,1.69-.63-1.33,4.21,2.56,2.3,2.67,9,7.63.62-.15,2.2,1.8,1,2.23,3,3.53-1.73.5,10.42,10.89,3.66,1.91-1.58-2.14.06-1.91-2.82-3-.47-2.15,7.6,3.88,2.71,2.77-2.16.52,3.26,5.91,4.5,4.31,3,4.24-1.56.87,4.53,5.34.18,3.44-2.77-.84,4.51,5.55,3.46,1.06,3.28,4.52.15,2.56,5.09,8.52-1.92,4.56,2.23,11.41-3.18-1.95-4,1.63L850,228.52l.64,3.8-7.26,2.74-.32,3.15-7.81-5.54-11-3.1-6.87,5.68-4-3L808.78,225h0L799.42,219c-.91.73-1.84,1.46-2.78,2.19l-6.31-1.67L787,216.63l-1.53,2.83,1.64,3.81c-.72.5-1.46,1-2.2,1.49q2.93,3.27,5.81,6.58l-.2,3.4L783.7,236,789,246.22l2.61,1.39,2.24,5.12-5.24-2.31-4.11,7.74L790.3,260l7.66,8.14L796.62,271l4.81,5.79-4.11,7.35,1.25,4.79q-2.76,1.41-5.63,2.79l1.71,5.84-2.55,1.79-2.56-2.76-3,2.54-.69,4.94,1.78,3.95-.92,1h0l4.19,4.37,1-1.23,2.79-.47,6.24,7.05-1.21,2.61h0l1.33,4,3.34-1.52,3.21,1.12,5.4,3,5.39.67,2.27-1.14,4.2,5.78,5.05.93-.52,3.08,1.78,2.58,5.17,3,2.35,3.39-.9,2.23-3,1.56,5.48,7.61,3-.77,2.1,2.69,8.77,2.45,1.66.45.15-3.73,3.32-1.14c.48,1,.95,1.91,1.42,2.87l5,.9,3.11,2.63,1.94-2.08,6.33,3.19,6.09.68-.12-2.81h0l4.13,1.46,2-2.2,2.59-4.08c.32.91.76,2.12,1.08,3l1.34-3L894,354c.74-.59,1.46-1.17,2.18-1.77L897.6,355l1.72-4.3,3.1,2.72,1.43-4.87-1.07-5.21,1.73-2.09.51-5.62,2.68.15v-7.14l3.42,2.69,1,3.6,4,1.11-.89-3.5,2.23.4,2.2,3,2.07.31,3.35,5.61,2.21,5.77.52,6.33,1.44,3.36.13,2.64,3.16,5.81-.11-4.16,1.62-1.76,1.21,3.21,2,2.93,2.63.44-.13,2.17,1.46,4.49,2.22-.82,2.34,3.14-.24-6.57,4,6.89c.4-.62.79-1.23,1.17-1.85l-1.94-5.15h0l-2.35-3.1-.7-2.82,1.3-.21-1-4.89,2.21.83h0l-.6-3.22,1.78,1-.1-4.21-1.35-6.31,2.95,2.34c.32-.76.62-1.52.91-2.27l2.33,6.06,2.75-.65-.2-2.86,1.63-.75Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="749.53 82.54 751.66 83.39 747.14 80.6 746.99 80.92 749.53 82.54" style="fill:#d9dadb"></polygon><path d="M903.51,221.28c-.27-.48-.55-.95-.83-1.42l-1.51-2.11-1-1.2,1.54,2.09-.1,0Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="911.93 240.69 911.92 240.69 911.93 240.69 911.93 240.69" style="fill:#d9dadb"></polygon><polygon points="909.34 236.82 910.54 238.93 911.92 240.69 910.82 238.76 909.34 236.82" style="fill:#d9dadb"></polygon><path d="M995.56,550.26c.3-.88.58-1.76.85-2.64l.41-6-.79.86Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="44.64 321.5 44.65 321.48 44.64 321.5 44.64 321.5" style="fill:#d9dadb"></polygon><polygon points="44.65 321.48 45.65 319.08 46.72 316.28 45.78 318.58 45.64 318.93 44.65 321.48" style="fill:#d9dadb"></polygon><polygon points="27.57 401.45 28.61 396.85 28.48 394.69 27.37 399.25 27.57 401.45" style="fill:#d9dadb"></polygon><path d="M36.21,424.7c.11.51.22,1,.34,1.53l1.15-3.81.64-4.27v-2l-1.28,6.06Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="22.56 421.79 23.27 417.74 22.41 419.52 21.85 422.97 22.56 421.79" style="fill:#d9dadb"></polygon><path d="M41.4,404l.83-3.44c-.11-.58-.21-1.16-.31-1.74l-.82,3.57C41.19,402.91,41.29,403.45,41.4,404Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M43.2,393l.91-3.41c-.08-.58-.16-1.16-.22-1.74l-.9,3.54C43.05,392,43.12,392.49,43.2,393Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M33.87,408.88l-.6,2.84c-.19.89-.37,1.79-.55,2.68Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M32.7,414.5l0-.1v.1Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="583.91 980.16 583.66 980.2 580.69 980.71 580.39 980.76 583.75 980.19 583.75 980.19 583.91 980.16" style="fill:#d9dadb"></polygon><polygon points="587.99 979.42 591.82 978.7 591.08 978.84 587.61 979.49 587.99 979.42" style="fill:#d9dadb"></polygon><path d="M618.9,987.48l6-1.36C623,986.52,621,987,618.9,987.48Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M613,988.79l-3.34.68-2.28.49.12,0c3.42-.61,7.52-1.56,11.41-2.46l-1,.23Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M553.83,997.66l.27,0-3.31.28-1.11.1Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="142.62 503.05 142.62 503.05 142.62 503.05 142.62 503.05" style="fill:#ff7b00"></polygon><polygon points="142.91 496.21 141.44 498.26 142.62 503.05 145.06 500.25 142.91 496.21" style="fill:#ff7b00"></polygon><polygon points="150.31 494.94 150.82 490.44 148.03 489.74 147.55 494.08 150.31 494.94" style="fill:#ff7b00"></polygon><polygon points="139.9 478.19 135.89 479.92 139.66 483.76 139.9 478.19" style="fill:#ff7b00"></polygon><polygon points="349.97 342.76 354.73 338.99 351.23 335.76 345.35 338.32 349.97 342.76" style="fill:#d9dadb"></polygon><polygon points="211.47 412 215.64 410.62 214.03 406.08 211.18 407.83 211.47 412" style="fill:#d9dadb"></polygon><polygon points="212.87 402.4 206.08 402.56 207.42 407.99 212.87 402.4" style="fill:#d9dadb"></polygon><path d="M235.65,421.2l2.54-5-.4-2.13-4.92,6.38Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M203.58,327.57l4.78,2.32.89-3.34-3.29-1.4-2.38,2.42Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="187.4 307.31 189.53 305.68 189.08 302.56 186.06 304.65 187.4 307.31" style="fill:#d9dadb"></polygon><path d="M744.18,934l4.3-3.08-6.16,1.73c-1.23,1-2.48,2.09-3.73,3.12Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="735.36 806.32 739.62 802.74 736.43 800.16 732.46 803.69 735.36 806.32" style="fill:#ff7b00"></polygon><polygon points="748.19 798.54 755.1 792.09 751.42 790.96 747.06 796.5 748.19 798.54" style="fill:#ff7b00"></polygon><polygon points="965.97 531.48 964 529.36 963.84 533.2 965.8 538.08 965.8 538.08 965.97 531.48" style="fill:#d9dadb"></polygon><polygon points="967.99 548.9 969.14 553.44 970 548.91 968.99 544.68 967.99 548.9" style="fill:#d9dadb"></polygon><polygon points="950.05 498.28 950.05 498.28 950.05 498.28 950.05 498.28" style="fill:#d9dadb"></polygon><polygon points="947.57 491.1 948.01 496.07 950.05 498.28 949.7 492.94 947.57 491.1" style="fill:#d9dadb"></polygon><polygon points="938.75 470.61 940.05 471.68 940.01 467.62 938.63 467.01 938.75 470.61" style="fill:#d9dadb"></polygon><polygon points="959.01 525.79 961.89 528.12 961.57 524.31 959.07 522.29 959.01 525.79" style="fill:#d9dadb"></polygon><polygon points="982.13 475.49 982.91 478.82 982.91 473.93 982.14 470.87 982.13 475.49" style="fill:#d9dadb"></polygon><polygon points="858.68 550.73 856.61 550.13 855.91 554.51 857.97 555.13 857.97 555.13 858.68 550.73" style="fill:#d9dadb"></polygon><polygon points="861.95 561.91 860.08 560.51 859.38 565.62 861.68 566.47 861.68 566.47 861.95 561.91" style="fill:#d9dadb"></polygon><polygon points="731.4 926.82 729.77 927.34 727.66 929.09 731.4 926.82" style="fill:#d9dadb"></polygon><polygon points="630.39 714.26 626.3 716.74 628.83 719.89 630.39 714.26" style="fill:#ff7b00"></polygon><polygon points="655.24 758.07 658.27 756.02 656.52 751.92 654.72 754.03 655.24 758.07" style="fill:#ff7b00"></polygon><polygon points="748.35 687.16 750.41 685.4 749.57 682.84 746.81 685.26 748.35 687.16" style="fill:#ff7b00"></polygon><polygon points="664.04 761.04 666.35 758.65 664.8 756.39 662.25 758.6 664.04 761.04" style="fill:#ff7b00"></polygon><polygon points="677.22 735.36 681.51 736.29 681.42 732.75 677.22 735.36 677.22 735.36" style="fill:#ff7b00"></polygon></g><circle cx="511.9" cy="511.98" r="488.79" transform="translate(-223.99 499.94) rotate(-45)" style="fill:none"></circle></g></g></svg></span> </span> <a class="elementor-accordion-title" tabindex="0">Europe</a> </div> <div id="elementor-tab-content-2581" class="elementor-tab-content elementor-clearfix" data-tab="1" role="region" aria-labelledby="elementor-tab-title-2581"><p> <div data-elementor-type="page" data-elementor-id="20468" class="elementor elementor-20468" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-5fc16273 local-chapter_section elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="5fc16273" data-element_type="section"> <div class="elementor-container elementor-column-gap-extended"> <div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-1d10b26d" data-id="1d10b26d" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-43ac5e8f elementor-widget elementor-widget-text-editor" data-id="43ac5e8f" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong>Austrian Geophysical Society (AGS)</strong><br />Austria</p> </div> </div> <div class="elementor-element elementor-element-236d2c98 e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="236d2c98" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://www.geophysik.at/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-530faaa3 elementor-widget elementor-widget-text-editor" data-id="530faaa3" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong>European Federation of Geologists (EFG)</strong><br />Belgium</p> </div> </div> <div class="elementor-element elementor-element-1dcacaa e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="1dcacaa" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://eurogeologists.eu/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-6fc8d11 elementor-widget elementor-widget-text-editor" data-id="6fc8d11" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong>Bulgarian Geophysical Society (BgGS)</strong><br />Bulgaria</p> </div> </div> <div class="elementor-element elementor-element-b96a052 e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="b96a052" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="http://www.bggs.eu/events-en.html" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-4d313d6 elementor-widget elementor-widget-text-editor" data-id="4d313d6" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong>Cyprus Association of Geologists and Mining Engineers (CAGME)</strong><br />Cyprus</p> </div> </div> <div class="elementor-element elementor-element-be2ca7a elementor-widget elementor-widget-text-editor" data-id="be2ca7a" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong>Czech Association of Geophysicists (CAAG)</strong><br />Czech Republic</p> </div> </div> <div class="elementor-element elementor-element-ef8366f e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="ef8366f" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://www.caag.cz/index-en.php" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-95e52fd elementor-widget elementor-widget-text-editor" data-id="95e52fd" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong>French Association of Geothermal Professionals (AFPG)</strong><br />France</p> </div> </div> <div class="elementor-element elementor-element-175f6f6 e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="175f6f6" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="http://www.afpg.asso.fr/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-646aa22 elementor-widget elementor-widget-text-editor" data-id="646aa22" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong>Geological Society of France (SGF)</strong><br />France</p> </div> </div> <div class="elementor-element elementor-element-6739be4 e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="6739be4" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://www.geosoc.fr/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-741bf6b elementor-widget elementor-widget-text-editor" data-id="741bf6b" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong>European Geosciences Union (EGU)</strong><br />Germany</p> </div> </div> <div class="elementor-element elementor-element-c35b2d1 e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="c35b2d1" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://www.egu.eu/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-60c7f7a elementor-widget elementor-widget-text-editor" data-id="60c7f7a" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong>German Geophysical Society (DGG)</strong><br />Germany</p> </div> </div> <div class="elementor-element elementor-element-8ffd884 e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="8ffd884" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://dgg-online.de/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-7d2898c elementor-widget elementor-widget-text-editor" data-id="7d2898c" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong>German Scientific Society for Oil, Natural Gas and Coal (DGMK)</strong><br />Germany</p> </div> </div> <div class="elementor-element elementor-element-6c48f56 e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="6c48f56" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://dgmk.de/en/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-547a34b elementor-widget elementor-widget-text-editor" data-id="547a34b" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong>International Geothermal Association (IGA)</strong><br />The Netherlands</p> </div> </div> <div class="elementor-element elementor-element-37bebeb e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="37bebeb" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://www.lovegeothermal.org/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-ae5126e" data-id="ae5126e" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-1ee1d40 elementor-widget elementor-widget-text-editor" data-id="1ee1d40" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong>Balkan Geophysical Society (BGS)</strong><br />Greece</p> </div> </div> <div class="elementor-element elementor-element-e8acdba e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="e8acdba" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="http://www.balkangeophysoc.gr/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-564fa07 elementor-widget elementor-widget-text-editor" data-id="564fa07" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong>Hellenic Geophysical Union (HGU)</strong><br />Greece</p> </div> </div> <div class="elementor-element elementor-element-824bc1b e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="824bc1b" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="http://www.balkangeophysoc.gr/helenic/index.html" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-ad0805c elementor-widget elementor-widget-text-editor" data-id="ad0805c" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong>Association of Hungarian Geophysicists (AHG)</strong><br />Hungary</p> </div> </div> <div class="elementor-element elementor-element-225f33c e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="225f33c" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="http://www.mageof.hu/index.php/en/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-dd70404 elementor-widget elementor-widget-text-editor" data-id="dd70404" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong><span data-sheets-value="{"1":2,"2":"Institute of Geologists of Ireland (IGI)"}" data-sheets-userformat="{"2":14463,"3":{"1":0,"3":1},"4":{"1":3,"3":2},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"9":0,"14":{"1":3,"3":1},"15":"Arial","16":10}">Institute of Geologists of Ireland (IGI)</span></strong><br />Ireland</p> </div> </div> <div class="elementor-element elementor-element-c6267c8 e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="c6267c8" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://igi.ie/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-fda2db1 elementor-widget elementor-widget-text-editor" data-id="fda2db1" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong><span data-sheets-value="{"1":2,"2":"Italian EAGE-SEG Section"}" data-sheets-userformat="{"2":14463,"3":{"1":0,"3":1},"4":{"1":3,"3":2},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"9":0,"14":{"1":3,"3":1},"15":"Arial","16":10}">Italian EAGE-SEG Section</span></strong><br />Italy</p> </div> </div> <div class="elementor-element elementor-element-cee3e13 e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="cee3e13" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://www.eageseg.org/en/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-5d68aef elementor-widget elementor-widget-text-editor" data-id="5d68aef" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong>Italian Geological Society (SGI)</strong><br />Italy</p> </div> </div> <div class="elementor-element elementor-element-e576622 e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="e576622" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://www.socgeol.it/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-61be978 elementor-widget elementor-widget-text-editor" data-id="61be978" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong>European Association of Geochemistry (EAG)</strong><br />France</p> </div> </div> <div class="elementor-element elementor-element-97dc1f2 e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="97dc1f2" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://www.eag.eu.com/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-68d820a elementor-widget elementor-widget-text-editor" data-id="68d820a" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong>Petroleum Geological Circle (PGK)</strong><br />The Netherlands</p> </div> </div> <div class="elementor-element elementor-element-a80c168 e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="a80c168" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://pgknet.nl/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-6830a2c elementor-widget elementor-widget-text-editor" data-id="6830a2c" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong>Royal Geological and Mining Society of the Netherlands (KNGMG)</strong><br />The Netherlands</p> </div> </div> <div class="elementor-element elementor-element-d159456 e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="d159456" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://www.kngmg.nl/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-8b151fb elementor-widget elementor-widget-text-editor" data-id="8b151fb" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong>Norwegian Petroleum Society (NPF)</strong><br />Norway</p> </div> </div> <div class="elementor-element elementor-element-b3c3f15 e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="b3c3f15" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://npf.no/en/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-46eeabe elementor-widget elementor-widget-text-editor" data-id="46eeabe" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong>Geological Society of Norway (NGF)</strong><br />Norway</p> </div> </div> <div class="elementor-element elementor-element-0c92ea0 e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="0c92ea0" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://www.geologi.no/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-29db04e" data-id="29db04e" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-0fd3a92 elementor-widget elementor-widget-text-editor" data-id="0fd3a92" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong>Oslo Society of Exploration Geophysicists (OSEG)</strong><br />Norway</p> </div> </div> <div class="elementor-element elementor-element-96c7cab e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="96c7cab" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://www.meetup.com/es/oslo-society-of-exploration-geophysicists/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-3f3c997 elementor-widget elementor-widget-text-editor" data-id="3f3c997" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong>Scandinavian Visualization Society (ScanViz)</strong><br />Norway</p> </div> </div> <div class="elementor-element elementor-element-507c56c elementor-widget elementor-widget-text-editor" data-id="507c56c" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong>Geosynoptics Society Geos (GEOS)</strong><br />Poland</p> </div> </div> <div class="elementor-element elementor-element-5c224d7 e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="5c224d7" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://nauka-polska.pl/#/profile/institution?id=14139&_k=a4hojf" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-e199611 elementor-widget elementor-widget-text-editor" data-id="e199611" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong><span data-sheets-value="{"1":2,"2":"Scientific Association of the Oil and Gas Industry Engineers and Technicians (SAOGIET)"}" data-sheets-userformat="{"2":14463,"3":{"1":0,"3":1},"4":{"1":3,"3":2},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"9":0,"14":{"1":3,"3":1},"15":"Arial","16":10}">Scientific Association of the Oil and Gas Industry Engineers and Technicians (SAOGIET)</span></strong><br />Poland</p> </div> </div> <div class="elementor-element elementor-element-cdf7d45 e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="cdf7d45" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://www.sitpnig.pl/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-1b2ba15 elementor-widget elementor-widget-text-editor" data-id="1b2ba15" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong>Portuguese Association of Petroleum Geoscientists and Engineers (APGEP)</strong><br />Portugal</p> </div> </div> <div class="elementor-element elementor-element-3d025b8 elementor-widget elementor-widget-text-editor" data-id="3d025b8" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <strong>Romanian Society of Applied Geophysics (RSAG)</strong> Romania </div> </div> <div class="elementor-element elementor-element-fae41fa e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="fae41fa" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://appliedgeophysics.ro/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-3afe7a3 elementor-widget elementor-widget-text-editor" data-id="3afe7a3" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong>Romanian Society of Geophysics (RSG)</strong><br />Romania</p> </div> </div> <div class="elementor-element elementor-element-fb4209f elementor-widget elementor-widget-text-editor" data-id="fb4209f" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong>Association of Geophysicists and Environmentalists of Serbia (AGES)</strong><br />Serbia</p> </div> </div> <div class="elementor-element elementor-element-1b3b2f4 e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="1b3b2f4" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://www.ageserbia.org/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-25fd4ff elementor-widget elementor-widget-text-editor" data-id="25fd4ff" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong><span data-sheets-value="{"1":2,"2":"All Ukrainian Association of Geoinformatics (AUAG)"}" data-sheets-userformat="{"2":14461,"3":{"1":0,"3":1},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"9":0,"14":{"1":3,"3":1},"15":"Arial","16":10}">All Ukrainian Association of Geoinformatics (AUAG)</span></strong><br />Ukraine</p> </div> </div> <div class="elementor-element elementor-element-e87f3b0 e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="e87f3b0" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="http://geoinformatics.org.ua/eng/home/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-e18b142 elementor-widget elementor-widget-text-editor" data-id="e18b142" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong><span data-sheets-value="{"1":2,"2":"All Ukrainian Association of Geoinformatics (AUAG)"}" data-sheets-userformat="{"2":14461,"3":{"1":0,"3":1},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"9":0,"14":{"1":3,"3":1},"15":"Arial","16":10}">Ukrainian Association of Geologists (UAG)</span></strong><br />Ukraine</p> </div> </div> <div class="elementor-element elementor-element-4b7e86f e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="4b7e86f" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://geologists.org.ua/en/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-eec4b98 elementor-widget elementor-widget-text-editor" data-id="eec4b98" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong>Association of Spanish Petroleum Geologists and Geophysicists (AGGEP)</strong><br />Spain</p> </div> </div> <div class="elementor-element elementor-element-824e682 e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="824e682" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://www.aggep.org/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-92936d8" data-id="92936d8" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-37a6038 elementor-widget elementor-widget-text-editor" data-id="37a6038" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong><span data-sheets-value="{"1":2,"2":"Swiss Association of Energy Geoscientists (SASEG)"}" data-sheets-userformat="{"2":14463,"3":{"1":0,"3":1},"4":{"1":3,"3":2},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"9":0,"14":{"1":3,"3":1},"15":"Arial","16":10}">Swiss Association of Energy Geoscientists (SASEG)</span></strong><br />Switzerland</p> </div> </div> <div class="elementor-element elementor-element-a2b5614 e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="a2b5614" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://www.saseg.ch/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-be403d2 elementor-widget elementor-widget-text-editor" data-id="be403d2" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong><span data-sheets-value="{"1":2,"2":"TMMOB Chamber of Geophysics Engineers"}" data-sheets-userformat="{"2":14463,"3":{"1":0,"3":1},"4":{"1":3,"3":2},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"9":0,"14":{"1":3,"3":1},"15":"Arial","16":10}">TMMOB Chamber of Geophysics Engineers</span></strong><br />Turkey</p> </div> </div> <div class="elementor-element elementor-element-a158393 e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="a158393" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://www.tmmob.org.tr/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-de97caa elementor-widget elementor-widget-text-editor" data-id="de97caa" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong><span data-sheets-value="{"1":2,"2":"Turkish Petroleum Geologists Association (TAPG / TPJD)"}" data-sheets-userformat="{"2":14463,"3":{"1":0,"3":1},"4":{"1":3,"3":2},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"9":0,"14":{"1":3,"3":1},"15":"Arial","16":10}">Turkish Petroleum Geologists Association (TAPG / TPJD)</span></strong><br />Turkey</p> </div> </div> <div class="elementor-element elementor-element-2f1fa9d e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="2f1fa9d" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="http://tpjd.org.tr/index.php?lang=en" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-bda9cfb elementor-widget elementor-widget-text-editor" data-id="bda9cfb" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong><span data-sheets-value="{"1":2,"2":"Geoscience Energy Society of Great Britain (GESGB) - former PESGB"}" data-sheets-userformat="{"2":14463,"3":{"1":0,"3":1},"4":{"1":3,"3":2},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"9":0,"14":{"1":3,"3":1},"15":"Arial","16":10}">Geoscience Energy Society of Great Britain (GESGB) – former PESGB</span></strong><br />United Kingdom</p> </div> </div> <div class="elementor-element elementor-element-26ae295 e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="26ae295" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://www.ges-gb.org.uk/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-1ef9dcf elementor-widget elementor-widget-text-editor" data-id="1ef9dcf" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong><span data-sheets-value="{"1":2,"2":"German Geological Society (DGGV)"}" data-sheets-userformat="{"2":14463,"3":{"1":0,"3":1},"4":{"1":3,"3":2},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"9":0,"14":{"1":3,"3":1},"15":"Arial","16":10}">German Geological Society (DGGV)</span></strong><br />Germany</p> </div> </div> <div class="elementor-element elementor-element-885c866 e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="885c866" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://www.dggv.de/en/startseite-english/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-d9e0e2f elementor-widget elementor-widget-text-editor" data-id="d9e0e2f" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong><span data-sheets-value="{"1":2,"2":"Hungarian Geological Society (HGS)"}" data-sheets-userformat="{"2":14461,"3":{"1":0,"3":1},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"9":0,"14":{"1":3,"3":1},"15":"Arial","16":10}">Hungarian Geological Society (HGS)</span></strong><br />Hungary</p> </div> </div> <div class="elementor-element elementor-element-aa49349 e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="aa49349" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://foldtan.hu/en" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-976ba4a elementor-widget elementor-widget-text-editor" data-id="976ba4a" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong><span data-sheets-value="{"1":2,"2":"InterPore"}" data-sheets-userformat="{"2":14365,"3":{"1":0,"3":1},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"14":{"1":2,"2":0},"15":"Arial","16":10}">InterPore</span></strong><br />The Netherlands</p> </div> </div> <div class="elementor-element elementor-element-a7fc211 e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="a7fc211" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://www.interpore.org/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-a40241d elementor-widget elementor-widget-text-editor" data-id="a40241d" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong><span data-sheets-value="{"1":2,"2":"Pole Avenia"}" data-sheets-userformat="{"2":14365,"3":{"1":0,"3":1},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"14":{"1":2,"2":0},"15":"Arial","16":10}">Pole Avenia</span></strong><br />France</p> </div> </div> <div class="elementor-element elementor-element-38ea3c9 e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="38ea3c9" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://www.pole-avenia.com/en" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> </div> </div> </div> </section> </div> </p></div> </div> </div> </div> </div> <div class="elementor-element elementor-element-ba9f503 student_map_accordion elementor-widget elementor-widget-accordion" data-id="ba9f503" data-element_type="widget" data-widget_type="accordion.default"> <div class="elementor-widget-container"> <div class="elementor-accordion"> <div class="elementor-accordion-item"> <div id="elementor-tab-title-1951" class="elementor-tab-title" data-tab="1" role="button" aria-controls="elementor-tab-content-1951" aria-expanded="false"> <span class="elementor-accordion-icon elementor-accordion-icon-left" aria-hidden="true"> <span class="elementor-accordion-icon-closed"><i class="fas fa-plus"></i></span> <span class="elementor-accordion-icon-opened"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 1000 1000"><defs><radialGradient id="Sfumatura_senza_nome_2" cx="608.8" cy="391.07" r="647.11" gradientUnits="userSpaceOnUse"><stop offset="0.41" stop-color="#fff"></stop><stop offset="0.51" stop-color="#f9f9f9"></stop><stop offset="0.64" stop-color="#e9e9e9"></stop><stop offset="0.79" stop-color="#cecece"></stop><stop offset="0.86" stop-color="#bfbfbf"></stop><stop offset="0.99" stop-color="#e6e6e6"></stop></radialGradient></defs><g style="isolation:isolate"><g id="Layer_1" data-name="Layer 1"><path d="M511.9,23.19c270,0,488.79,218.84,488.79,488.79S781.85,1000.77,511.9,1000.77,23.11,781.93,23.11,512,242,23.19,511.9,23.19m0-11.21A500.13,500.13,0,0,0,317.28,972.69,500.13,500.13,0,0,0,706.53,51.28,496.84,496.84,0,0,0,511.9,12Z" transform="translate(-11.9 -11.98)" style="fill:#fff"></path><path d="M511.89,1002.54c-131,0-254.21-51-346.86-143.68S21.35,643,21.35,512,72.37,257.76,165,165.11,380.87,21.43,511.89,21.43s254.23,51,346.88,143.68S1002.45,381,1002.45,512s-51,254.22-143.68,346.88S642.93,1002.54,511.89,1002.54Z" transform="translate(-11.9 -11.98)" style="fill:url(#Sfumatura_senza_nome_2)"></path><path d="M511.9,23.19c270,0,488.78,218.84,488.78,488.79S781.85,1000.77,511.9,1000.77,23.11,781.93,23.11,512,242,23.19,511.9,23.19m0-3.53a492.45,492.45,0,0,0-191.63,946A492.45,492.45,0,0,0,703.53,58.35,489.29,489.29,0,0,0,511.9,19.66Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><g style="mix-blend-mode:multiply"><path d="M445.09,116.49a219.41,219.41,0,0,1-27.65-5.87c-.45.38-.9.76-1.34,1.15a223.8,223.8,0,0,0,28.11,6Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M394.92,102.1a62,62,0,0,1-15-10.1l-1.95.85a63.17,63.17,0,0,0,15.23,10.26Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M477.81,120.87c.11-.44.23-.87.34-1.3-2.76-.12-5.53-.26-8.29-.44-8.51-.56-16.61-1.43-24.25-2.56l-.87,1.25c7.76,1.15,16,2,24.64,2.6Q473.6,120.69,477.81,120.87Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M521.59,25.86c-11.45-.46-22.85-.33-34,.3l.19.23c10.93-.63,22.14-.75,33.4-.3Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M487.06,26.2c-11.1.65-21.91,1.82-32.19,3.45l.71.17c10.12-1.6,20.75-2.75,31.67-3.4Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M400.68,44.74l1.59-.07a168.3,168.3,0,0,1,23.85-8.51l-1.2-.07A171.67,171.67,0,0,0,400.68,44.74Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M512.35,120.57l-.21-1.29c-10.93.63-22.14.75-33.41.31l-.33,1.3C489.85,121.34,501.24,121.22,512.35,120.57Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M382.25,55.61l1.89-.25A86.23,86.23,0,0,1,401.9,44.83l-1.59.08A87.62,87.62,0,0,0,382.25,55.61Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M455.06,29.9l-.72-.17A264.61,264.61,0,0,0,425.39,36l1.18.06A262,262,0,0,1,455.06,29.9Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M379.74,91.82c-3.75-3.62-6.24-7.46-7.33-11.43q-1,.31-2.07.66c1.11,4,3.64,7.93,7.44,11.61Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M370.28,80.84l2.08-.66a17.94,17.94,0,0,1,1.22-12.26l-2.05.45A18.19,18.19,0,0,0,370.28,80.84Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M373.37,65.05a23.62,23.62,0,0,0-1.74,3.11l2.05-.46a25.47,25.47,0,0,1,1.72-3,39.55,39.55,0,0,1,8.49-9.09l-1.88.25A40.25,40.25,0,0,0,373.37,65.05Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M417,110.49a129.72,129.72,0,0,1-21.77-8.24l-1.7,1a132.88,132.88,0,0,0,22.12,8.38Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M599.27,102l-1.61-1a167.36,167.36,0,0,1-23.84,8.51l1.22,1.14A171.07,171.07,0,0,0,599.27,102Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M617.68,91.1l-1.91-.82A86.14,86.14,0,0,1,598,100.81l1.62,1A86.74,86.74,0,0,0,617.68,91.1Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M545.11,117.08l-.75-1.24c-10.11,1.6-20.74,2.76-31.66,3.41.08.43.15.86.23,1.29C524,119.88,534.83,118.71,545.11,117.08Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M629.6,65.87l-2.1-.41a17.93,17.93,0,0,1-1.2,12.26l2.08.62A18.18,18.18,0,0,0,629.6,65.87Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M530,26.55c8.47.56,16.55,1.42,24.16,2.54l.9-.18c-7.74-1.14-15.94-2-24.56-2.59Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M626.52,81.7a24.88,24.88,0,0,0,1.76-3.15l-2.08-.61A26,26,0,0,1,624.47,81a39.47,39.47,0,0,1-8.46,9l1.92.82A40.27,40.27,0,0,0,626.52,81.7Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M574.58,110.76l-1.22-1.14a259.18,259.18,0,0,1-28.47,6.14l.75,1.24A266.77,266.77,0,0,0,574.58,110.76Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M522.18,25.88l-.37.23,8.2.44.5-.23Q526.34,26.05,522.18,25.88Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M629.54,65.67c-1.11-4-3.65-7.94-7.46-11.62l-2-.22c3.75,3.62,6.24,7.45,7.34,11.43Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M604.89,43.55a62.4,62.4,0,0,1,15,10.09l2,.22a63.31,63.31,0,0,0-15.25-10.25Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M582.79,35.16a131.06,131.06,0,0,1,21.78,8.24l1.73.05a132.29,132.29,0,0,0-22.14-8.37Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M554.69,29.17A220.14,220.14,0,0,1,582.36,35l1.37-.09a224.6,224.6,0,0,0-28.13-6Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M724.31,152.92l-1.68-1.25c-9.11,7.27-20.57,14-33.94,20.14l1.43,1.4C703.6,167.05,715.14,160.24,724.31,152.92Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M679.08,52.6A218,218,0,0,1,701.22,62l1.53.58a217.13,217.13,0,0,0-20.93-9Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M746.92,105.1l-1.86-.9a34.2,34.2,0,0,1-2.3,23.45c.62.35,1.23.71,1.84,1.07A34.46,34.46,0,0,0,746.92,105.1Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M741.08,135.09a48.88,48.88,0,0,0,3.33-6l-1.84-1.07a48.63,48.63,0,0,1-3.3,5.91,76,76,0,0,1-16.17,17.32l1.69,1.25A76.62,76.62,0,0,0,741.08,135.09Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M525.75,208.72c21-1.25,41.52-3.47,61-6.56l-.66-1.61c-19.34,3.06-39.67,5.27-60.55,6.5Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M689.43,173.53,688,172.12a321.39,321.39,0,0,1-45.59,16.29l1.09,1.52A323.63,323.63,0,0,0,689.43,173.53Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M587.09,200.39c.22.53.44,1.07.67,1.61a498.48,498.48,0,0,0,54.86-11.82l-1.08-1.53A499.46,499.46,0,0,1,587.09,200.39Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M701.83,62.31c11.79,5.91,21.44,12.39,28.7,19.29l1.75.73c-7.31-7-17-13.49-28.91-19.44Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M746.81,104.7c-2.12-7.65-6.92-15-14.15-22L730.91,82c7.17,6.92,12,14.25,14,21.85Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M271.28,154.6c-7.16-6.92-11.92-14.25-14-21.85l-1.8,1.1c2.1,7.66,6.89,15.05,14.11,22Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M255.36,133.46l1.81-1.11a34.27,34.27,0,0,1,2.34-23.45l-1.79.93A34.56,34.56,0,0,0,255.36,133.46Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M342.55,190.32a249.92,249.92,0,0,1-41.63-15.76L299.45,176a251.62,251.62,0,0,0,41.93,15.88Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M460.58,207.72l-.27,1.67c21.69.85,43.3.61,64.36-.61l-.21-1.66C503.56,208.32,482.12,208.56,460.58,207.72Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M396.25,201.79a420.49,420.49,0,0,1-52.88-11.24c-.39.52-.78,1-1.16,1.55a426.14,426.14,0,0,0,53.28,11.32C395.74,202.87,396,202.33,396.25,201.79Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M300.31,174.26c-11.77-5.91-21.41-12.39-28.66-19.3l-1.7,1.28c7.3,6.95,17,13.49,28.88,19.44Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M278.06,85.64l1.63-.75c9.12-7.27,20.59-14,34-20.13l-1.37.6C298.8,71.52,287.24,78.32,278.06,85.64Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M396.49,203.57c14.72,2.18,30.33,3.84,46.72,4.92q8,.52,16,.85c.09-.56.19-1.11.28-1.67q-7.92-.33-15.86-.84c-16.27-1.07-31.76-2.73-46.36-4.89Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M319.49,62.19l-3.1,1.34L313,65l1.38-.6Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M261.21,103.53a49.07,49.07,0,0,0-3.29,5.89l1.78-.93a49.21,49.21,0,0,1,3.27-5.85,76.34,76.34,0,0,1,16.25-17.37l-1.63.75A76.48,76.48,0,0,0,261.21,103.53Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M847.12,170.61l-1.53-1.3c2.82,10.68,1.87,21.73-3.22,32.93l1.51,1.44C849,192.44,850,181.34,847.12,170.61Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M847,170.06c-3-10.72-9.69-21.07-19.82-30.83l-1.43-1.17c10.07,9.72,16.78,20,19.72,30.7Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M816.72,130.25q4.56,3.58,8.47,7.31l1.44,1.17c-2.47-2.35-5.15-4.67-8-6.95Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M624.28,306.29a701.13,701.13,0,0,0,76.82-16.55l-.9-1.82a697.43,697.43,0,0,1-76.49,16.48Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M537.46,315.7c29.45-1.75,58.13-4.86,85.41-9.18-.19-.63-.37-1.27-.56-1.9-27.15,4.31-55.71,7.41-85,9.15Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M815.48,237.57l-1.39-1.6c-12.79,10.22-28.89,19.7-47.67,28.29.4.57.79,1.15,1.18,1.72C786.47,257.35,802.63,247.82,815.48,237.57Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M701.42,287.57l.9,1.82a453,453,0,0,0,64.31-23l-1.18-1.71A452.41,452.41,0,0,1,701.42,287.57Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M839,212.61a67.91,67.91,0,0,0,4.66-8.35l-1.51-1.45a66.57,66.57,0,0,1-4.64,8.31c-5.51,8.48-13.17,16.61-22.72,24.32.47.53.93,1.06,1.39,1.6C825.73,229.29,833.42,221.12,839,212.61Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M220.93,267.7c-16.53-8.29-30.08-17.4-40.26-27.1l-1.36,1.61c10.22,9.74,23.83,18.89,40.43,27.22Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M180.15,240.1c-10.06-9.72-16.74-20-19.67-30.7L159,210.87c2.94,10.72,9.65,21.08,19.75,30.84C179.24,241.17,179.69,240.63,180.15,240.1Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M446,314.69c-.07.65-.14,1.29-.22,1.94,30.39,1.19,60.63.86,90.12-.84l-.18-1.94C506.4,315.55,476.29,315.88,446,314.69Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M185.81,147.38l-1.74,1.56a99.8,99.8,0,0,0-17,19.47,69.93,69.93,0,0,0-4.62,8.25l1.44-1.33C172.35,160.79,172.68,160.23,185.81,147.38Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M280.25,290.26c-22.21-6.41-41.83-13.86-58.46-22.13-.4.58-.8,1.15-1.19,1.73,16.71,8.31,36.41,15.79,58.72,22.23Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M158.88,210.32c.48-.49,1-1,1.45-1.48-2.79-10.68-1.83-21.74,3.29-32.93l-1.44,1.33C157,188.49,156.07,199.59,158.88,210.32Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M356.48,308.48c20.6,3.06,42.46,5.39,65.41,6.89q11.19.75,22.37,1.2l.21-1.94q-11.12-.45-22.27-1.19c-22.85-1.5-44.61-3.82-65.12-6.86Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M355.07,308.27c.21-.63.41-1.27.61-1.9a590.13,590.13,0,0,1-74.28-15.78l-.93,1.83A594.45,594.45,0,0,0,355.07,308.27Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M925.44,258.34l-1.12-1.65c3.45,13.07,2.29,26.58-3.94,40.27l1.1,1.75C927.73,285,928.89,271.44,925.44,258.34Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M748.7,403.33c28.93-8.13,55.35-17.54,78.49-28l-.87-2c-23.08,10.48-49.43,19.86-78.29,28C748.25,402,748.48,402.65,748.7,403.33Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M547.47,435.43c35.95-2.13,71-5.93,104.25-11.2l-.42-2.07c-33.21,5.26-68.12,9-104,11.17Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M653.44,424a852.52,852.52,0,0,0,93.76-20.21l-.66-2A853,853,0,0,1,653,421.88C653.15,422.57,653.3,423.26,653.44,424Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M915.47,309.6a85.37,85.37,0,0,0,5.69-10.18l-1.11-1.75a84.83,84.83,0,0,1-5.67,10.15c-6.74,10.37-16.11,20.31-27.78,29.75l1,1.85C899.32,330,908.72,320,915.47,309.6Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M435.75,434.47c0,.7-.09,1.4-.13,2.1,37.08,1.45,74,1.05,110-1-.05-.7-.09-1.4-.14-2.1C509.57,435.51,472.74,435.92,435.75,434.47Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M827.51,372.8l.87,1.95c23-10.54,42.76-22.16,58.43-34.68l-1-1.86C870.16,350.7,850.48,362.29,827.51,372.8Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M925.26,257.67a72,72,0,0,0-10.75-22.13l-1.34-1.93a71.87,71.87,0,0,1,11,22.41Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M94,257.76l-.83,1.55c.65-1.18,1.32-2.35,2.05-3.53Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M92.48,260.66l-2.74,5.07,1-1.67C91.29,262.93,91.88,261.79,92.48,260.66Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M92.48,260.66l.73-1.35C93,259.76,92.72,260.21,92.48,260.66Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M110.64,343.25c-12.3-11.88-20.48-24.48-24.06-37.54l-1,1.78c3.58,13.08,11.78,25.72,24.11,37.63Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M160.5,377c-20.22-10.14-36.78-21.28-49.23-33.14l-1,1.87c12.48,11.89,29.08,23.05,49.35,33.22Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M326.57,426.63c25.14,3.72,51.82,6.57,79.83,8.41q13.67.9,27.31,1.45c0-.7.09-1.4.13-2.1q-13.6-.56-27.23-1.45c-27.94-1.84-54.55-4.67-79.63-8.39C326.84,425.24,326.71,425.93,326.57,426.63Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M324.85,426.37l.42-2.08A724.16,724.16,0,0,1,234.44,405c-.22.67-.43,1.35-.65,2A723.81,723.81,0,0,0,324.85,426.37Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M232.38,406.62l.66-2c-27.16-7.84-51.15-16.95-71.49-27.06l-.84,2C181.11,389.62,205.15,398.76,232.38,406.62Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M85.38,306.81l1-1.77c-3.42-13.07-2.23-26.58,4-40.27l-1,1.67C83.13,280.16,82,293.71,85.38,306.81Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M868.77,494.15c25.7-11.76,47.73-24.73,65.22-38.71l-.57-2.05c-17.48,14-39.48,26.92-65.15,38.67C868.44,492.75,868.6,493.45,868.77,494.15Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M779.82,526.05c32.29-9.07,61.79-19.57,87.62-31.29-.17-.7-.33-1.4-.5-2.1-25.8,11.71-55.25,22.2-87.51,31.26C779.57,524.63,779.69,525.34,779.82,526.05Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M555.2,561.89c40.13-2.38,79.21-6.62,116.37-12.5-.08-.73-.17-1.45-.25-2.17-37.12,5.88-76.15,10.11-116.23,12.49C555.13,560.44,555.17,561.17,555.2,561.89Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M673.49,549.08a956.27,956.27,0,0,0,104.66-22.56c-.12-.71-.25-1.42-.38-2.14a950,950,0,0,1-104.54,22.53C673.32,547.64,673.4,548.36,673.49,549.08Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M977.11,364.21l-.63-1.93c3.85,14.6,2.55,29.71-4.41,45l.63,2C979.67,394,981,378.84,977.11,364.21Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M965.36,419.43c-7.52,11.58-18,22.7-31.05,33.24.2.68.39,1.37.58,2.05C948,444.16,958.45,433,966,421.44a94.08,94.08,0,0,0,6.35-11.37l-.63-2A92.52,92.52,0,0,1,965.36,419.43Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M975.89,360.12l-.74-2.25c.41,1.21.79,2.43,1.12,3.66.22.64.43,1.28.64,1.93C976.6,362.34,976.26,361.23,975.89,360.12Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M67.22,461.77c13.93,13.27,32.47,25.74,55.09,37.09.14-.7.28-1.4.43-2.1-22.6-11.34-41.11-23.79-55-37.05C67.55,460.4,67.39,461.08,67.22,461.77Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M203.49,529.73c.1-.72.21-1.43.32-2.14-30.36-8.77-57.17-19-79.9-30.25-.15.7-.29,1.4-.43,2.1C146.25,510.76,173.09,521,203.49,529.73Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M39.56,385.2a63.72,63.72,0,0,0-.17,33.12c.17-.67.35-1.34.53-2a63.68,63.68,0,0,1,.25-33.41Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M430.39,561c0,.73,0,1.46,0,2.18,41.39,1.63,82.61,1.17,122.78-1.15,0-.72-.07-1.45-.11-2.18C512.9,562.15,471.74,562.6,430.39,561Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M67,459c-13.75-13.29-22.88-27.37-26.88-42-.18.67-.36,1.34-.53,2,4,14.61,13.15,28.71,26.92,42C66.67,460.4,66.84,459.71,67,459Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M308.62,552.06c28.07,4.16,57.85,7.34,89.12,9.39q15.24,1,30.47,1.63c0-.73,0-1.46.05-2.18q-15.21-.63-30.44-1.63c-31.23-2-61-5.22-89-9.38C308.75,550.62,308.68,551.34,308.62,552.06Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M306.7,551.78c.07-.73.13-1.45.2-2.17A809.44,809.44,0,0,1,205.38,528c-.11.71-.21,1.43-.32,2.14A810.94,810.94,0,0,0,306.7,551.78Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M682.62,673.62l0,1.08,0,1a989.91,989.91,0,0,0,108.48-23.39l0-1c0-.36,0-.72,0-1.08A989.65,989.65,0,0,1,682.62,673.62Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M792.84,649.76l0,1.08c0,.35,0,.69,0,1,33.47-9.4,64-20.29,90.81-32.44,0-.34,0-.69,0-1l0-1.08C856.87,629.47,826.31,640.35,792.84,649.76Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M999.51,497a71,71,0,0,1-6.76,31.68l0,1.08c0,.35,0,.7,0,1a71,71,0,0,0,6.77-31.34l0-1.21Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M992.37,529.54a97.38,97.38,0,0,1-6.58,11.78c-7.82,12-18.68,23.56-32.23,34.5l0,1.08,0,1C967.16,567,978,555.47,985.84,543.45a96.89,96.89,0,0,0,6.58-11.79c0-.34,0-.69,0-1Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M885,616.69l0,1.08c0,.35,0,.7,0,1.05,26.64-12.19,49.47-25.64,67.61-40.13l0-1,0-1.08C934.5,591.06,911.66,604.5,885,616.69Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M560,686.9l0,1.08,0,1c41.59-2.47,82.09-6.86,120.61-13l0-1,0-1.08C642.12,680,601.62,684.44,560,686.9Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M112.55,622.18l0,1.08,0,1C136.2,636,164,646.59,195.53,655.69l0-1c0-.36,0-.72,0-1.08C164,644.47,136.15,633.9,112.55,622.18Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M25.6,538.88l0,1.07,0,1c4.15,15.14,13.63,29.76,27.9,43.54l0-1,0-1.08C39.23,568.63,29.75,554,25.6,538.88Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M23.23,522.86l0,1.24,0,1.21a66.51,66.51,0,0,0,2.16,14.91l0-1.05,0-1.08A66.3,66.3,0,0,1,23.23,522.86Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M430.61,688.22l0,1.08,0,1c42.9,1.69,85.62,1.22,127.26-1.19l0-1,0-1.08C516.24,689.43,473.52,689.9,430.61,688.22Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M54.24,583.13l0,1.08,0,1C68.73,599,88,611.93,111.4,623.69l0-1,0-1.08C87.89,609.81,68.68,596.89,54.24,583.13Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M396.81,686.45c-32.41-2.13-63.28-5.42-92.37-9.74l0,1.08,0,1.05c29.09,4.31,60,7.6,92.37,9.73q15.79,1,31.59,1.69l0-1,0-1.08Q412.62,687.49,396.81,686.45Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M197.11,654c0,.36,0,.72,0,1.08l0,1a838.22,838.22,0,0,0,105.35,22.38c0-.35,0-.69,0-1l0-1.08A837.39,837.39,0,0,1,197.11,654Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M784.15,768c.09-.59.18-1.19.28-1.78a954.69,954.69,0,0,1-104.67,22.55l-.15,1.76A952.28,952.28,0,0,0,784.15,768Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M785.81,767.56c32.26-9.07,61.71-19.56,87.51-31.26l.39-1.83c-25.83,11.72-55.32,22.23-87.61,31.3C786,766.37,785.91,767,785.81,767.56Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M941.17,694.43l-.48,1.88c13.06-10.55,23.53-21.66,31.06-33.25a94.36,94.36,0,0,0,6.34-11.35l.51-1.93a94,94,0,0,1-6.34,11.37C964.72,672.75,954.23,683.87,941.17,694.43Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M978.45,650.92a77.12,77.12,0,0,0,4.19-11.49l.61-2.29A75.85,75.85,0,0,1,979,649C978.8,649.63,978.63,650.28,978.45,650.92Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M561.47,803.35c40.08-2.38,79.11-6.61,116.22-12.49l.15-1.76c-37.16,5.89-76.24,10.13-116.37,12.51Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M939.8,697c.15-.62.31-1.25.47-1.87-17.5,14-39.53,27-65.23,38.71l-.39,1.82C900.32,724,922.32,711,939.8,697Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M436.77,804.62c41.34,1.62,82.5,1.17,122.63-1.15v-1.74c-40.17,2.32-81.39,2.77-122.78,1.15Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M314.89,791.78l.3,1.75c28,4.16,57.77,7.33,89,9.38q15.22,1,30.44,1.62c-.05-.57-.1-1.16-.15-1.74q-15.23-.62-30.47-1.62C372.74,799.11,343,795.94,314.89,791.78Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M74.08,703.35c13.91,13.26,32.43,25.71,55,37-.17-.6-.35-1.21-.52-1.82C106,727.22,87.42,714.76,73.49,701.48,73.69,702.11,73.88,702.73,74.08,703.35Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M47.64,664.48c4.46,13.25,13.17,26,25.73,38.19-.2-.63-.4-1.25-.59-1.87-12.68-12.25-21.44-25.17-25.87-38.55Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M130.27,741c22.74,11.3,49.55,21.48,79.91,30.25l-.42-1.79c-30.4-8.77-57.24-19-80-30.28C129.92,739.77,130.1,740.37,130.27,741Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M211.75,771.68a809.44,809.44,0,0,0,101.52,21.57l-.3-1.76a807.39,807.39,0,0,1-101.64-21.6Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M447.8,895c37,1.45,73.82,1,109.71-1l.06-1.32c-36,2.07-72.91,2.48-110,1C447.65,894.11,447.73,894.55,447.8,895Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M758.59,862.25l.58-1.41a857.37,857.37,0,0,1-93.77,20.21c-.11.45-.23.9-.34,1.36A855.31,855.31,0,0,0,758.59,862.25Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M559.37,893.86c35.86-2.13,70.77-5.92,104-11.18l.33-1.36c-33.29,5.28-68.3,9.07-104.25,11.21Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M839.56,833.32c23-10.5,42.65-22.1,58.29-34.59l.93-1.57c-15.67,12.52-35.41,24.14-58.43,34.68C840.09,832.34,839.82,832.83,839.56,833.32Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M838.37,833.87l.78-1.49c-23.14,10.5-49.56,19.91-78.49,28-.19.47-.38.94-.58,1.41C788.94,853.72,815.29,844.34,838.37,833.87Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M926.43,768.35c.39-.61.78-1.22,1.15-1.82l1.23-2c-.44.73-.9,1.46-1.37,2.18-6.75,10.4-16.15,20.36-27.85,29.82l-.94,1.58C910.32,788.65,919.69,778.71,926.43,768.35Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M108.28,786.81l1.35,2a108,108,0,0,0,13.05,15c-.36-.52-.71-1-1.06-1.57A107.34,107.34,0,0,1,108.28,786.81Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M172.55,837.53c-.32-.49-.63-1-.94-1.47-20.27-10.17-36.88-21.34-49.35-33.23l1.06,1.56C135.76,816.25,152.33,827.39,172.55,837.53Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M173.59,838.05c20.34,10.11,44.33,19.22,71.49,27.06l-.75-1.4c-27.23-7.86-51.27-17-71.67-27.13Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M338.52,883.72l.51,1.35c25.08,3.72,51.69,6.56,79.63,8.39q13.62.9,27.23,1.46c-.08-.45-.15-.89-.23-1.33q-13.64-.55-27.3-1.46C390.34,890.29,363.66,887.45,338.52,883.72Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M246.49,865.52a723.53,723.53,0,0,0,90.82,19.3l-.51-1.36a723.81,723.81,0,0,1-91.06-19.35Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M717.06,932l.82-1a702.91,702.91,0,0,1-76.82,16.56l-.49.89A697.38,697.38,0,0,0,717.06,932Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M554.13,957.88c29.32-1.74,57.88-4.84,85-9.14l.48-.89c-27.28,4.32-56,7.44-85.41,9.18C554.2,957.32,554.17,957.6,554.13,957.88Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M718.28,931.69a452.38,452.38,0,0,0,64-22.87l1.11-1.06a454.19,454.19,0,0,1-64.31,23Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M832.27,878.9c-12.85,10.26-29,19.78-47.88,28.41l-1.11,1.07c18.78-8.6,34.88-18.08,47.67-28.29Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M838.74,873.41q-2.78,2.51-5.81,5l-1.32,1.19q2.8-2.26,5.39-4.59Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M204.16,890.57l1.9,1.54a187.24,187.24,0,0,0,31.71,19.71l-1.26-1.05A185.5,185.5,0,0,1,204.16,890.57Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M297.09,934.37l-1-1c-22.31-6.44-42-13.92-58.72-22.22.42.35.83.7,1.26,1C255.26,920.51,274.88,928,297.09,934.37Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M462.88,958.81c30.26,1.18,60.37.85,89.73-.84,0-.28.07-.56.11-.85-29.49,1.7-59.74,2-90.12.85C462.7,958.25,462.79,958.53,462.88,958.81Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M298.24,934.7a591.84,591.84,0,0,0,74.28,15.79l-.67-.88a594.24,594.24,0,0,1-74.61-15.85Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M373.25,949.82c.23.29.45.58.67.88,20.51,3,42.28,5.36,65.13,6.86q11.15.74,22.27,1.19c-.09-.28-.19-.56-.29-.85q-11.17-.45-22.37-1.19C415.71,955.2,393.85,952.87,373.25,949.82Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M606.65,986.29l.61-.39c-19.48,3.09-40,5.31-61,6.56l-.16.33C567,991.56,587.31,989.35,606.65,986.29Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M607.65,986.13a500.17,500.17,0,0,0,54.46-11.74l1-.47a499,499,0,0,1-54.86,11.82Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M706.42,958.83A331.55,331.55,0,0,1,664,973.67l-1,.48a335.64,335.64,0,0,0,40.35-14Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M341,968.74l2.74,1q9.15,3.35,19.38,6.3l-1.21-.46Q350.81,972.41,341,968.74Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M416.8,987.53l-.81-.37a426.31,426.31,0,0,1-53.29-11.32l1.21.45A421,421,0,0,0,416.8,987.53Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M481.14,993.46c21.54.84,43,.6,63.88-.6l.15-.34c-21.06,1.22-42.66,1.46-64.36.61Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M417,987.31l.81.37c14.6,2.16,30.1,3.82,46.37,4.89q7.92.51,15.85.84l-.33-.33q-8-.33-16-.85C447.32,991.15,431.71,989.49,417,987.31Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M521.22,26.09c-7.05,4.59-14.33,14.76-21.7,30.94,7.57-16.17,15.05-26.34,22.29-30.92l.37-.23a16.06,16.06,0,0,1,9.2-2.6l-.84,0a15.47,15.47,0,0,0-8.95,2.62Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M483.39,23.65l-.8.05c1.43-.09,2.92.73,4.47,2.5l.19.22C491,30.91,495.13,41,499.52,57c-4.19-16.08-8.11-26.15-11.7-30.64l-.19-.23C486.16,24.4,484.75,23.57,483.39,23.65Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M435.19,28.85l-.84.13a52.14,52.14,0,0,1,20,.75l.72.17c14,3.38,28.93,12.27,44.46,27.13-15.35-14.89-30.07-23.81-43.94-27.21l-.71-.17A50.78,50.78,0,0,0,435.19,28.85Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M380.12,40.86l-1,.3a140.06,140.06,0,0,1,45.84-5.07l1.2.07C449.37,37.54,474,44.34,499.52,57c-25.39-12.74-49.84-19.58-72.95-21L425.39,36A138.53,138.53,0,0,0,380.12,40.86Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M400.68,44.74a248.69,248.69,0,0,0-86.32,19.7L313,65c-1.13.49-2.25,1-3.37,1.5l-1.56.72c1.4-.65,2.82-1.28,4.24-1.9l1.37-.6a250.64,250.64,0,0,1,86.65-19.85l1.59-.08C421.55,44,455,44.31,499.52,57c-44.38-12.8-77.72-13.2-97.25-12.36Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M212,125.6c-.83.63-1.64,1.29-2.46,1.93C210.33,126.88,211.14,126.23,212,125.6Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M203,132.69c2.14-1.75,4.32-3.46,6.51-5.16-1.51,1.18-3,2.35-4.54,3.56Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M382.25,55.61A364.57,364.57,0,0,0,279.69,84.89l-1.63.75a345.53,345.53,0,0,0-66.09,40A347.2,347.2,0,0,1,277.59,86l1.63-.75A366.25,366.25,0,0,1,382,55.81l1.88-.25c47.27-5.88,78.95-2.48,115.63,1.47a415.09,415.09,0,0,0-115.38-1.67Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M71.81,298.64c-.51,1-1,2.07-1.49,3.11C70.81,300.71,71.3,299.67,71.81,298.64Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M371.63,68.16A461.74,461.74,0,0,0,259.7,108.49l-1.78.93a437.57,437.57,0,0,0-94,65.91l-1.44,1.33a417.58,417.58,0,0,0-71.7,87.4l-1,1.67q-9.7,16-17.93,32.91,8.1-16.53,17.6-32.2l1-1.67a418.19,418.19,0,0,1,71.75-87.53l1.44-1.33a439.07,439.07,0,0,1,94.1-66.08l1.79-.93a463.51,463.51,0,0,1,112-40.53l2.05-.45A498.67,498.67,0,0,1,499.52,57,497.5,497.5,0,0,0,373.68,67.7Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M66,310.94c1.39-3.09,2.84-6.14,4.31-9.19-.75,1.56-1.52,3.11-2.25,4.68Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M36.5,625.07c.17.72.35,1.44.52,2.16C36.84,626.51,36.67,625.79,36.5,625.07Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M39.6,637.53c-.91-3.41-1.76-6.85-2.58-10.3.39,1.62.75,3.25,1.16,4.86Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M40.12,417.07A452.3,452.3,0,0,1,85.56,307.49l1-1.78A484.64,484.64,0,0,1,159,210.87l1.45-1.47a509.12,509.12,0,0,1,95-75.55l1.8-1.1a519.83,519.83,0,0,1,113.07-51.7q1-.35,2.07-.66A526,526,0,0,1,499.52,57,526.32,526.32,0,0,0,372.36,80.18l-2.08.66a519.57,519.57,0,0,0-113.11,51.51l-1.81,1.11a508.88,508.88,0,0,0-95,75.38c-.48.5-1,1-1.45,1.48A483.45,483.45,0,0,0,86.4,305l-1,1.77A451.14,451.14,0,0,0,39.92,416.32c-.18.66-.36,1.33-.53,2a432.18,432.18,0,0,0-14,119.77l0,1.08,0,1.05A423,423,0,0,0,36.5,625.07,422.77,422.77,0,0,1,25.66,541l0-1,0-1.07a432.88,432.88,0,0,1,14-119.81C39.76,418.41,39.94,417.74,40.12,417.07Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M172,862.1c-4.1-4-8.07-8.05-12-12.21,3.22,3.41,6.44,6.8,9.78,10.08Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M158.64,848.51c.44.47.91.91,1.35,1.38C159.55,849.43,159.08,849,158.64,848.51Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M67.72,459.71a516.87,516.87,0,0,1,42.59-114l1-1.87a553.06,553.06,0,0,1,68-101.66l1.36-1.61A559,559,0,0,1,270,156.24l1.7-1.28A535.76,535.76,0,0,1,378,92.85l1.95-.85A500.26,500.26,0,0,1,499.52,57,500.34,500.34,0,0,0,379.74,91.82l-2,.84a536,536,0,0,0-106.5,61.94l-1.7,1.28a557.88,557.88,0,0,0-89.43,84.22c-.46.53-.91,1.07-1.37,1.61a551,551,0,0,0-68.14,101.54l-1,1.87A515.76,515.76,0,0,0,67,459c-.16.68-.33,1.37-.49,2.05a473.65,473.65,0,0,0-13,121.34l0,1.08,0,1A426.18,426.18,0,0,0,72.78,700.8c.19.62.39,1.24.59,1.87a388.43,388.43,0,0,0,48.25,99.54c.35.53.7,1,1.06,1.57a378.47,378.47,0,0,0,36,44.73,377.38,377.38,0,0,1-35.32-44.12l-1.06-1.56a388,388,0,0,1-48.18-99.48c-.2-.62-.39-1.24-.59-1.87A426.91,426.91,0,0,1,54.3,585.25l0-1,0-1.08a474.82,474.82,0,0,1,13-121.36C67.39,461.08,67.55,460.4,67.72,459.71Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M274,937.32c1.8,1.08,3.59,2.16,5.41,3.2C277.6,939.48,275.81,938.4,274,937.32Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M269.56,934.58c1.48.92,3,1.84,4.45,2.74C272.52,936.42,271,935.5,269.56,934.58Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M279.42,940.52c3.66,2.1,7.37,4.09,11.12,6Q284.92,943.66,279.42,940.52Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M394.92,102.1l-1.71,1a523.37,523.37,0,0,0-92.9,71.15l-1.48,1.42a602.36,602.36,0,0,0-77.9,92l-1.19,1.73A636.81,636.81,0,0,0,160.5,377l-.84,1.95a614.85,614.85,0,0,0-36.92,117.8c-.15.7-.29,1.4-.43,2.1a555.87,555.87,0,0,0-11,122.71l0,1.08,0,1c1.15,41.09,7.09,79.56,17.18,114.88.17.61.35,1.22.52,1.82a375.75,375.75,0,0,0,42.51,95.67c.31.49.62,1,.94,1.47a316.84,316.84,0,0,0,64,73.24l1.26,1.05a296.11,296.11,0,0,0,31.79,22.76,293.33,293.33,0,0,1-30.93-22.34c-.43-.34-.84-.69-1.26-1a316.17,316.17,0,0,1-63.78-73.15l-.93-1.47A375.93,375.93,0,0,1,130.27,741c-.17-.61-.35-1.21-.52-1.82-10.06-35.31-16-73.77-17.14-114.86l0-1,0-1.08a558,558,0,0,1,10.93-122.74c.14-.7.28-1.4.43-2.1a616.6,616.6,0,0,1,36.8-117.85l.84-2a638.54,638.54,0,0,1,59-107.67c.39-.58.79-1.15,1.19-1.73A603,603,0,0,1,299.45,176l1.47-1.42a523.16,523.16,0,0,1,92.62-71.29l1.7-1h0c42.61-25,71.19-34.39,104.28-45.22A434.9,434.9,0,0,0,394.92,102.1Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M293.74,948.21c-1.07-.54-2.13-1.11-3.2-1.66.45.23.89.5,1.34.72Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M457.56,80.33q5.07-3.33,10.21-6.43C464.23,76,460.84,78.17,457.56,80.33Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M457.48,80.38l.08,0Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M449.15,86c2.77-1.93,5.54-3.83,8.33-5.66Q453.23,83.17,449.15,86Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M467.77,73.9l.17-.11Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M430.91,99.59C437,94.84,443,90.36,449.15,86Q439.93,92.46,430.91,99.59Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M467.94,73.79c2.79-1.68,5.59-3.29,8.4-4.88C473.44,70.54,470.65,72.16,467.94,73.79Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M205.38,528a794.87,794.87,0,0,1,28.41-121c.22-.67.43-1.35.65-2a781.93,781.93,0,0,1,46-112.58l.93-1.83a674,674,0,0,1,60.81-98.49c.38-.52.77-1,1.16-1.55,22.44-29.79,46.84-56.36,72.73-78.78.44-.39.89-.77,1.34-1.15,4.44-3.82,8.94-7.47,13.47-11-4.49,3.47-9.07,7.09-13.9,10.9l-1.35,1.16c-26,22.38-50.55,48.91-73.11,78.67l-1.17,1.54a672.64,672.64,0,0,0-61.13,98.4l-.93,1.83A778.41,778.41,0,0,0,233,404.59l-.66,2a790.83,790.83,0,0,0-28.57,121c-.11.71-.22,1.42-.32,2.14a714.7,714.7,0,0,0-8,123.84c0,.36,0,.72,0,1.08l0,1c1.14,41.08,6.05,79.16,14.23,113.75l.42,1.79c8.29,34.47,19.84,65.45,34.15,92.48l.75,1.4c14.41,26.89,31.58,49.82,51,68.31l1,1c19.51,18.35,41.27,32.24,64.79,41.23l1.21.46q6.15,2.3,12.43,4.14l1.21.35q-6.5-1.89-12.82-4.26l-1.21-.45c-23.4-9-45.05-22.82-64.46-41.14l-1-.94c-19.33-18.47-36.41-41.37-50.75-68.24l-.75-1.41c-14.24-27-25.74-58-34-92.43l-.42-1.79c-8.14-34.58-13-72.65-14.17-113.73l0-1c0-.36,0-.72,0-1.08a718.79,718.79,0,0,1,7.95-123.85C205.17,529.47,205.27,528.75,205.38,528Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M492.66,60.33c2.29-1.11,4.56-2.25,6.86-3.3C497.16,58.14,494.88,59.24,492.66,60.33Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M476.34,68.91c5.07-2.84,10.46-5.68,16.32-8.58C487.18,63,481.74,65.86,476.34,68.91Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M308.82,549.89a1200.56,1200.56,0,0,1,17.75-123.26c.14-.7.27-1.39.41-2.08a1123.24,1123.24,0,0,1,29.5-116.07l.6-1.9a876.47,876.47,0,0,1,39.41-103l.76-1.63c14.6-31.45,30.53-59.81,47.49-84.12l.87-1.25c17-24.24,35.11-44.41,53.91-59.54-19,15.1-37.22,35.24-54.43,59.46l-.88,1.25c-17.12,24.29-33.21,52.62-48,84.05-.25.54-.51,1.08-.76,1.63a870.05,870.05,0,0,0-39.81,103c-.2.63-.4,1.27-.61,1.9a1114.58,1114.58,0,0,0-29.8,116l-.42,2.08a1189.07,1189.07,0,0,0-18,123.24c-.07.72-.13,1.44-.2,2.17a1087.54,1087.54,0,0,0-4.24,124.64l0,1.08c0,.35,0,.69,0,1,1.12,41.08,4.72,78.87,10.46,113l.3,1.76c5.82,33.94,13.77,64.16,23.53,90.21l.51,1.36c9.83,25.91,21.45,47.65,34.54,64.79l.67.88c13.14,17,27.74,29.35,43.47,36.67l.81.37A82.54,82.54,0,0,0,438.41,994l.92.14a80.85,80.85,0,0,1-21.53-6.47l-.81-.37c-15.58-7.3-30-19.65-43.07-36.61-.22-.3-.44-.59-.67-.88-13-17.12-24.49-38.85-34.22-64.75l-.51-1.35c-9.68-26-17.56-56.25-23.33-90.19l-.3-1.75c-5.7-34.07-9.27-71.86-10.39-112.94l0-1.05,0-1.08a1097,1097,0,0,1,4.18-124.65C308.68,551.34,308.75,550.62,308.82,549.89Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M430.39,561c.88-41.9,2.66-83.69,5.23-124.41,0-.7.09-1.4.13-2.1,2.6-40.69,6-80.29,10.07-117.84.08-.65.15-1.29.22-1.94,4.1-37.48,8.89-72.9,14.27-105.3l.27-1.67c5.4-32.3,11.37-61.56,17.82-86.83l.33-1.3c6.49-25.21,13.45-46.38,20.79-62.56-7.54,16.17-14.7,37.34-21.37,62.54-.11.43-.23.86-.34,1.3-6.64,25.26-12.78,54.51-18.34,86.8-.09.56-.19,1.11-.28,1.67-5.54,32.4-10.48,67.81-14.72,105.29l-.21,1.94c-4.21,37.55-7.72,77.14-10.42,117.82,0,.7-.09,1.4-.13,2.1-2.67,40.72-4.52,82.5-5.45,124.41,0,.72,0,1.45-.05,2.18-.89,41.9-.87,83.91.19,125l0,1.08,0,1c1.09,41.07,3.15,78.72,6,112.53,0,.58.1,1.17.15,1.74,2.91,33.68,6.63,63.5,11,89.06.08.44.15.88.23,1.33,4.42,25.4,9.52,46.54,15.14,63,.1.29.2.57.29.85,5.65,16.28,11.81,27.87,18.37,34.33l.33.33c3.73,3.57,7.58,5.49,11.53,5.68l.85,0c-3.86-.18-7.62-2.09-11.26-5.66l-.33-.33c-6.39-6.46-12.41-18-17.93-34.32-.09-.28-.18-.56-.28-.84-5.49-16.44-10.47-37.57-14.8-63-.07-.44-.15-.88-.22-1.33-4.31-25.55-8-55.37-10.81-89l-.15-1.74c-2.83-33.81-4.86-71.46-5.95-112.54l0-1,0-1.08c-1.05-41.14-1.11-83.15-.26-125.06C430.36,562.44,430.38,561.71,430.39,561Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M557.57,892.64l-.06,1.32c-1.13,25.46-2.74,46.65-4.79,63.16,0,.29-.07.57-.11.85-2.06,16.35-4.56,28-7.44,34.55l-.15.34c-1.7,3.74-3.53,5.72-5.48,5.84l.79-.05c2-.13,4-2.11,5.77-5.86l.16-.33c3-6.55,5.67-18.22,7.87-34.58,0-.28.07-.56.11-.85,2.18-16.51,3.9-37.71,5.13-63.17l.06-1.33c1.2-25.61,1.9-55.48,2-89.18v-1.74c.12-33.84-.33-71.51-1.39-112.58l0-1,0-1.08c-1.08-41.14-2.72-83.13-4.82-125,0-.72-.07-1.45-.11-2.18-2.11-41.87-4.68-83.62-7.62-124.28l-.15-2.1c-3-40.63-6.27-80.16-9.86-117.63l-.18-1.93c-3.6-37.41-7.48-72.74-11.53-105l-.21-1.67c-4-32.19-8.29-61.35-12.61-86.51-.08-.43-.15-.86-.23-1.29-4.34-25.1-8.76-46.16-13.18-62.22,4.22,16.07,8.46,37.14,12.62,62.25l.21,1.29c4.15,25.17,8.21,54.34,12.11,86.55l.21,1.66c3.89,32.32,7.62,67.66,11.09,105.07l.18,1.94c3.46,37.48,6.67,77,9.53,117.65,0,.7.09,1.4.14,2.1C548.46,476.21,551,518,553,559.83c0,.73.07,1.46.11,2.18,2,41.88,3.66,83.87,4.74,125l0,1.08,0,1c1.06,41.08,1.54,78.75,1.47,112.58v1.74C559.31,837.17,558.68,867,557.57,892.64Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M677.69,790.86c-2.92,34-7.67,64.3-14,90.46l-.33,1.36c-6.39,26-14.37,47.89-23.7,65.17l-.48.89c-9.37,17.13-20.09,29.66-31.91,37.16l-.61.39a51.47,51.47,0,0,1-18.9,7.2l.84-.13a52.56,52.56,0,0,0,19.06-7.23l.62-.39c12-7.52,22.81-20.07,32.3-37.22l.49-.89c9.44-17.31,17.52-39.19,24-65.22.11-.46.23-.91.34-1.36,6.42-26.18,11.24-56.49,14.21-90.5l.15-1.76a1031.19,1031.19,0,0,0,2.92-113l0-1,0-1.08c-1.11-41.14-4.25-83-9.13-124.54-.09-.72-.17-1.44-.26-2.17-5-41.56-11.64-82.86-19.79-123-.14-.69-.29-1.38-.43-2.07-8.21-40.06-17.88-78.9-28.73-115.59l-.57-1.89a1055.82,1055.82,0,0,0-36-102.4c-.23-.54-.45-1.08-.67-1.61-13-31.23-26.92-59.34-41.45-83.39l-.75-1.24c-14.6-24-29.81-43.88-45.37-58.73,15.37,14.88,30.42,34.8,44.84,58.81l.75,1.24c14.36,24.08,28.11,52.22,41,83.47l.66,1.61a1067.88,1067.88,0,0,1,35.56,102.46c.19.63.37,1.27.56,1.9,10.74,36.7,20.31,75.56,28.43,115.64l.42,2.07c8.07,40.11,14.7,81.42,19.6,123,.08.72.17,1.44.25,2.17,4.84,41.58,7.95,83.41,9.06,124.55l0,1.08,0,1a1044.79,1044.79,0,0,1-2.85,113Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M784.15,768c-5.48,34.55-13.94,65.65-25,92.82l-.58,1.41c-11.13,27-24.84,50.13-40.71,68.82l-.82,1c-15.95,18.54-34.06,32.66-53.93,41.89l-1,.47a135.88,135.88,0,0,1-19.26,7.06l1-.29a137.76,137.76,0,0,0,19.09-7l1-.48c20-9.26,38.22-23.41,54.27-42l.83-1c16-18.72,29.77-41.84,41-68.9.2-.47.39-.94.58-1.41,11.12-27.19,19.64-58.31,25.15-92.86.1-.6.19-1.19.29-1.79,5.41-34.68,7.81-72.81,6.79-113.89,0-.35,0-.69,0-1l0-1.08a828.27,828.27,0,0,0-13-123.71c-.13-.71-.25-1.42-.39-2.13A911,911,0,0,0,748.7,403.33c-.22-.68-.45-1.35-.67-2a878.65,878.65,0,0,0-45.71-111.92l-.9-1.82a728.34,728.34,0,0,0-57.92-97.64l-1.09-1.52c-21.06-29.49-43.66-55.71-67.37-77.78l-1.22-1.14C550,87.5,525.09,69.71,499.52,57c25.41,12.73,50.17,30.56,73.84,52.59l1.22,1.14c23.56,22.11,46,48.37,67,77.89l1.08,1.53a728.77,728.77,0,0,1,57.58,97.74l.9,1.82a884.66,884.66,0,0,1,45.44,112l.66,2a918.29,918.29,0,0,1,30.57,120.64c.13.72.26,1.43.38,2.14a833.58,833.58,0,0,1,13,123.72c0,.36,0,.72,0,1.08l0,1c1,41.09-1.36,79.2-6.73,113.88C784.33,766.83,784.24,767.43,784.15,768Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M873.32,736.3c-7.61,35.31-19.18,67.51-34.17,96.08l-.78,1.49c-15.1,28.44-33.6,53.25-55,73.89l-1.11,1.06a249.53,249.53,0,0,1-68.86,46.88L715,955a251.12,251.12,0,0,0,68.27-46.61l1.11-1.07c21.44-20.68,40-45.51,55.17-74,.26-.49.53-1,.79-1.48,15-28.6,26.65-60.82,34.3-96.15l.39-1.82c7.51-35.44,11-74,10-115,0-.35,0-.7,0-1.05l0-1.08a610.15,610.15,0,0,0-16.26-122.54c-.17-.7-.33-1.4-.5-2.09a675.64,675.64,0,0,0-39.89-117.31l-.87-1.95A684.84,684.84,0,0,0,767.6,266c-.39-.57-.78-1.15-1.18-1.72a625.49,625.49,0,0,0-76.3-91l-1.43-1.4a515.53,515.53,0,0,0-89.05-70l-1.62-1c-31.67-19.3-64.73-34.15-98.5-43.78,33.64,9.69,66.59,24.59,98.14,44l1.61,1A515.23,515.23,0,0,1,688,172.12l1.43,1.41a626.88,626.88,0,0,1,76,91.18l1.18,1.71a688.14,688.14,0,0,1,59.69,106.92l.87,2a678,678,0,0,1,39.75,117.37c.17.7.33,1.4.5,2.1a612.53,612.53,0,0,1,16.21,122.56l0,1.08c0,.35,0,.7,0,1,1,41.09-2.51,79.61-10,115Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M939.8,697a380.34,380.34,0,0,1-41,100.13l-.93,1.57a351.36,351.36,0,0,1-65.58,80.17L831,880.09q-6.27,5.61-12.8,10.92l2-1.6q5.85-4.8,11.49-9.85l1.32-1.19a352.43,352.43,0,0,0,65.72-80.28l.94-1.58a380.77,380.77,0,0,0,41.1-100.2l.48-1.88a437.17,437.17,0,0,0,12.45-116.49l0-1,0-1.08a500.14,500.14,0,0,0-18.67-121.1c-.19-.68-.38-1.37-.58-2.05a549.67,549.67,0,0,0-46.69-113.25l-1-1.85A581.49,581.49,0,0,0,816.13,237c-.46-.54-.92-1.07-1.39-1.6a575.29,575.29,0,0,0-90-82.9l-1.69-1.25A533.67,533.67,0,0,0,617.93,90.9L616,90.08A478.69,478.69,0,0,0,499.52,57,477.11,477.11,0,0,1,615.77,90.28l1.91.82a533.33,533.33,0,0,1,105,60.57l1.68,1.25A576.53,576.53,0,0,1,814.09,236l1.39,1.6a582.41,582.41,0,0,1,70.31,100.64l1,1.86a551.54,551.54,0,0,1,46.61,113.32l.57,2.05a502,502,0,0,1,18.64,121.13l0,1.08,0,1a438.22,438.22,0,0,1-12.42,116.47C940.11,695.78,940,696.41,939.8,697Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M961.51,700.39c-.51,1.22-1,2.42-1.56,3.62C960.46,702.8,961,701.61,961.51,700.39Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M956.28,712.56c1.28-2.82,2.45-5.69,3.67-8.55-1.84,4.34-3.7,8.67-5.69,12.93Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M992.78,529.8l0-1.08a443.33,443.33,0,0,0-20-119.44l-.63-2a471.54,471.54,0,0,0-50.59-108.57l-1.1-1.75a505.9,505.9,0,0,0-76.5-93.28l-1.51-1.44a527.12,527.12,0,0,0-97.77-73.52c-.61-.36-1.22-.72-1.84-1.07A528.81,528.81,0,0,0,628.38,78.34l-2.08-.62A523.41,523.41,0,0,0,499.52,57,522.36,522.36,0,0,1,626.2,77.94l2.08.61a529.41,529.41,0,0,1,114.29,49.51l1.84,1.07a529,529,0,0,1,97.69,73.68l1.51,1.45a507.06,507.06,0,0,1,76.44,93.41l1.11,1.75A472.13,472.13,0,0,1,971.7,408.07l.63,2a444,444,0,0,1,20,119.47l0,1.08c0,.35,0,.7,0,1A419.43,419.43,0,0,1,978.6,649.78l-.51,1.93a408.82,408.82,0,0,1-16.58,48.68,407.12,407.12,0,0,0,16.94-49.47c.18-.64.35-1.29.52-1.93A419.73,419.73,0,0,0,992.8,530.84C992.79,530.5,992.78,530.15,992.78,529.8Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M981.4,378.42c-.22-.77-.43-1.55-.65-2.33C981,376.87,981.18,377.65,981.4,378.42Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M984.4,389.41,983,384c-.5-1.86-1-3.7-1.57-5.55C982.44,382.07,983.45,385.72,984.4,389.41Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M976.27,361.53a420,420,0,0,0-51-103.86L924.14,256a439.43,439.43,0,0,0-77.17-86l-1.53-1.3a463.11,463.11,0,0,0-98.63-64.06l-1.86-.89A485.7,485.7,0,0,0,629.54,65.67l-2.1-.41A513.06,513.06,0,0,0,499.52,57a514.44,514.44,0,0,1,128,8.43l2.1.41A488,488,0,0,1,745.06,104.2l1.86.9a464.61,464.61,0,0,1,98.67,64.21l1.53,1.3a440.83,440.83,0,0,1,77.2,86.08l1.12,1.65a421,421,0,0,1,51,103.94l.63,1.93q1.9,5.91,3.64,11.88c-1.23-4.23-2.49-8.45-3.84-12.63C976.7,362.81,976.49,362.17,976.27,361.53Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M841.86,151.93c-.64-.58-1.25-1.18-1.89-1.75C840.61,150.75,841.23,151.35,841.86,151.93Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M852.67,162l-2.2-2.12c-2.81-2.73-5.71-5.36-8.61-8C845.52,155.24,849.14,158.59,852.67,162Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M825.19,137.56a381.61,381.61,0,0,0-92.91-55.23l-1.75-.73A405.19,405.19,0,0,0,621.88,53.86l-2-.22h0a420.57,420.57,0,0,0-64.21-1.93c22.51-.73,41.63.56,64.41,2.12l2,.22A406.76,406.76,0,0,1,730.91,82l1.75.72a383.68,383.68,0,0,1,93.06,55.38l1.43,1.17q6.54,5.33,12.82,11c-4.36-3.91-8.8-7.75-13.34-11.45Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M555.69,51.71A490.07,490.07,0,0,0,499.52,57C518.62,54.74,536.42,52.61,555.69,51.71Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M701.22,62A297.39,297.39,0,0,0,606.3,43.45l-1.73-.05C571,42.47,535.73,46.84,499.52,57c46.53-12.36,71.21-12.83,105.37-13.48l1.74.06a299.41,299.41,0,0,1,95.2,18.7l1.54.58a286.83,286.83,0,0,1,27.24,12L728.76,74q-12.69-6.33-26-11.41Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M583.73,35l-1.37.09C555.82,36.78,528,44,499.52,57c28.67-13,56.59-20.17,83.27-21.87l1.37-.08a185.21,185.21,0,0,1,62.92,7l-1.21-.35A183.49,183.49,0,0,0,583.73,35Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M584.25,28.32l-.92-.13-.72,0C583.16,28.22,583.7,28.24,584.25,28.32Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M554.17,29.09c-17.56,3.63-35.88,12.8-54.65,27.94,19-15.11,37.45-24.25,55.17-27.86l.91-.18c.72-.14,1.45-.21,2.16-.33-.92.08-1.83.16-2.69.25Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M557.76,28.66a176.35,176.35,0,0,1,24.85-.51A82.61,82.61,0,0,0,557.76,28.66Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M717.91,511.11h0l.46-4.69-21.9,10.34L687.07,529l-1,5.75c-1.5.27-3,.52-4.52.78L677.12,530l-11.55-3.1-2.66,3-5.49-1.81,1.81,7.87-4.75,2.46L663.19,568l11.56-2.35,3.8-7.56,16.9-8.74,5.19-.82,4.25-5.7,19.38-11.95-.23-5.27,3.74-2.77Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="735.3 540.6 723.64 544.83 728.11 549.39 735.12 546.44 735.12 546.44 735.3 540.6" style="fill:#d9dadb"></polygon><path d="M718.37,506.41l-.46,4.69h0l9.87,11.68,1.34-1,6.51-4.94,6.66-1.54,1.31-7,6.06-2.29,1.86-7.2,6.17-3.36.3-11.91L764.63,466l-9.21-8.78-11-.55-5.7-5-4.35,2.65,2.24,5.3-3,1.78,0,9.42,5.16,5.91-1,16.72Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M737.12,450.24l-1-7.24-.61-4.22-2.11-.6-3.34,11.23-3.34,4.19-2.57,6.24q-5.24,1.2-10.54,2.34l-2.71,2.13-6.26-1.58,6.78,10.78,23-1.45.17-.1-1-1.17,0-9.42,3-1.78-2.24-5.3,4.35-2.65Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="691.5 448.75 691.5 448.75 691.5 448.75 691.5 448.75" style="fill:#d9dadb"></polygon><polygon points="692.08 437.33 689.51 435.76 687.67 440.25 687.29 445.12 691.5 448.75 693.85 443.29 692.08 437.33" style="fill:#d9dadb"></polygon><path d="M665.57,526.94l11.55,3.1,4.41,5.45c1.51-.26,3-.51,4.52-.78l1-5.75,9.4-12.21,21.9-10.34,19.37-13,1-16.72L734.63,472l-.17.1-23,1.45-6.78-10.78-1.26-2-4.21-3.64L694,450.64l-.73-5.45-7.72-5.91-2.95-.13-3.11-4.87-6.73,1.22-2.88-4.05q-8.58,1.5-17.32,2.88l-21-14.59-13-6.66-8.55.44-13.48,7.13,6.89,7.19L601,433.17l-5.65,1.26L592.06,441l-9.53-.81.62,8.73h3.06l17.11,21.68,2.82,6.76,8,4,6.61,10.76,1.52,10.68,5.15,5.76,8,3.71,9.65,14.35,4.29,2.51,4.66,8,.46,1.46,4.75-2.46-1.81-7.87,5.49,1.81Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="561.64 373.78 556.97 376.44 551.83 376.73 546.95 380.48 550.13 383.09 554.6 382.63 557.29 380.25 560.19 379.4 559.3 377.99 561.49 375.58 561.64 373.78" style="fill:#d9dadb"></polygon><polygon points="572.22 382.46 568.46 394.66 568.21 396.42 573.45 394.88 574.99 394.44 575.29 394.34 578.95 385.61 576.96 381.7 572.22 382.46 572.22 382.46" style="fill:#d9dadb"></polygon><path d="M717.69,782.07l-1-11.61-4.49-5.89L708,774.45l-3.66,3.61-2.55-.17-2.61,5.39,2,2-11.9,7.55-2.22,1.21-4.47,3.07-2.53-.36-6.17,2.64-4.94,10,1.35,8.94,1.57,2.06-.26,3-6.18,8.72-4.2,4.51-.44,5.68,2.47,4-1.44,4.6,2,3.17,7.25,2.4,14.34-5.74,6.4-10.39,2-5.5L709,806.16c.28-1.94.55-3.9.81-5.86l3.23-3.34-.47-8.51,6.47-2.83Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><polygon points="573.85 399.17 573.45 394.88 568.21 396.42 566.97 404.7 564.05 410.29 563.08 410.54 569.42 426.66 570.37 424.62 575.01 411.7 573.86 399.18 573.85 399.17 573.85 399.17" style="fill:#d9dadb"></polygon><polygon points="594.27 392.51 580.38 402.44 573.89 399.1 573.86 399.18 575.01 411.7 570.37 424.62 570.63 428.19 580.16 429 583.41 422.44 589.06 421.19 591.53 415.86 584.64 408.67 598.12 401.54 594.27 392.51" style="fill:#d9dadb"></polygon><path d="M568.36,877.52l3.87-.6c.13-2.34.26-4.72.38-7.12L567.84,868l-4.25,5.43Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M486.78,917.66l3.38-1.68,9.25-.42,5.46-1.93,16.11.7,1.4-1.18,10.67-1.41,9.79-4,15.56-9.89L568.81,887l7.76-4.83,3.86-7.89a1.15,1.15,0,0,0,0-.19c-2.69.21-5.38.41-8.09.6l-.12,2.25-3.87.6-4.77-4.1,4.25-5.43,4.77,1.81,1.95-3c.09-1.87.19-3.76.28-5.66l-3.91-5.3,1.66-2.38-3.21-3.81-1.07-1.25-6.54,1.39-3.71-1.53-4.43,1.22-2.25.62-1,1.76-5,.87-2.3,3.34-5.75.65-3.46,7.62-6.55.68-3.56,6.11q-3.53.11-7.06.18l-7.62-3.22L504,869.54l-1.34,4.14-5.17,3.82c-2.85,0-5.71,0-8.58,0l-1.72-2.45,3.07-2.3-3.65-5.59-4.93-1.57q.84,10.35,1.72,20l-4.61,1-.48,2.13-8.05-.12-6.75-1.76,1.24-2.3-3.94-1.3-4.21,1.8.29.27,2.61,2.43,4.44,6.7,8.56,8.4.52,4.65-3-.41,4.8,5-.51,2.29Zm54.34-29.86,7.21-2.55,5.51,2.38-2.92,4.62h0l-5.28.26-3.71,3.87L537.28,892Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M553.84,887.63l-5.51-2.38-7.21,2.55L537.28,892l4.65,4.43,3.71-3.87,5.28-.26h0Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M582.8,818.17l2.34-4.58-5.49-2.9L575.16,813,571,809.74l-7.32.23c0-.76,0-1.52,0-2.28h-5.35l-7.26,2.75-.93,4-8.45,3.18L538,823.45l-3.83,1.84-5.12-2.4L522.9,824l5.2,6.18c0,1.24,0,2.48.07,3.71l9.06,2.45.72,3,4.11.21,2.18,5.68,8.74.29.66,3.81a1.48,1.48,0,0,1,0,.21l4.43-1.22,3.71,1.53,6.54-1.39,1.07,1.25,9-7,0-5.58,3.47-.14,3.43-4.1-3.05-2,1.28-2.22-2.87-1.49,5.07-6.31Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M488.89,877.52c2.87,0,5.73,0,8.58,0l5.17-3.82,1.34-4.14,5.09-1.42,7.62,3.22q3.54-.08,7.06-.18l3.56-6.11,6.55-.68,3.46-7.62,5.75-.65,2.3-3.34,5-.87,1-1.76,2.25-.62a1.48,1.48,0,0,0,0-.21l-.66-3.81-8.74-.29-2.18-5.68-4.11-.21-.72-3-9.06-2.45c0-1.23,0-2.47-.07-3.71L522.89,824l-8.23,1.36-5.1,3.56-2.93-2.51-19,2.71q.6,10.54,1.22,20.51l-8.38,0q.6,8.22,1.22,16l4.93,1.57,3.65,5.59-3.07,2.3Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><polygon points="493.35 808.93 493.34 808.93 493.35 808.93 493.35 808.93" style="fill:#ff7b00"></polygon><path d="M509.56,828.89l5.1-3.56,8.23-1.36-3.45-4.12-6.91-.43-7.29,1.5-16,3.1q-10,0-20.13-.13l-3.68-2.75q-17.56-.3-35.2-1.1l-4.86-3.69-6-.31-4.1,3-4.79-.29.53,3.37,13,13.55,2.28,4.2,9.08,9.06,1.5,2.44-.32,2.63.92,5.84,3.74,5.38.42,3.94,4.89,8.78,4,4,6.06,3.11,4.21-1.8,3.94,1.3-1.24,2.3,6.75,1.76,8.05.12.48-2.13,4.61-1q-.88-9.62-1.72-20-.63-7.82-1.22-16l8.38,0q-.63-10-1.22-20.51l19-2.71Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><polygon points="362.2 649.75 364.92 643.41 359.08 640.86 355.25 645.59 362.2 649.75" style="fill:#ff7b00"></polygon><path d="M599.26,814.76l4.71.06,5.83-17.5-6.07-3.66L603,798l-6.67-.88-2.92-5.5c0-1.81.07-3.63.1-5.47l-2.8-2.8L592.9,779l-1.16-9.55-1.52-2.69,1.3-5.24h0l-8.44-1L586.74,771l-2.7,2.19,1.7,9.45-4.46,8,3.17,4.71,3.38,5,4.57-.38,2.47,3.55-2,3.42Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M646.31,778.25l-1.94-9.65,2.54-5.15-16.48,8.88-4.32-1-4.64,3.94-3.62-1.52-5.1,3.91-4.85-3.9-6.28,2.82-2.3,4.66.73,9.53,2.35,1.86,1.33,1.06,6.07,3.66L604,814.82l-4.71-.05L592.91,807l2-3.42L592.4,800l-4.57.38-3.38-5h0l-22.31,7.56,1.57,4.75c0,.76,0,1.52,0,2.28l7.32-.23,4.15,3.29,4.49-2.34,5.49,2.9-2.34,4.58,3,2.61-5.07,6.31,2.87,1.49-1.28,2.22,3.05,2-3.43,4.1h0l-3.47.14,0,5.58-9,7,3.22,3.81h0l-1.66,2.38,3.91,5.3c-.09,1.9-.19,3.79-.28,5.66l-1.95,3c-.08,1.63-.17,3.26-.26,4.87,2.71-.19,5.4-.39,8.09-.6l.07-1.26.34-7L584,863.9l14.1-5,3.65-3.4-.44-9.9-1.18-8.77-3.35-2.16-.49-5.62L610.84,823l3.73-6.3,10-5.66,7.85-2.12,6.19-4.5h0l8.52-12.79Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><polygon points="897.15 519.48 895.15 513.86 891.17 511.1 890.81 515.1 891.75 526.32 890.9 527.23 894.46 540.61 896.9 542.31 902.05 534.87 902.05 534.87 902.12 527.26 897.15 519.48" style="fill:#d9dadb"></polygon><path d="M992.64,551.39l-.89-10.59-1.39.42.14-8.44-1.53-1-4.42-7.44-.41,3.73-2.14-3L981,521l-3.74-3.3-.79-2.52-2.79-4.61-3,3.77L967,515l1.3,5.77,4,5.57,1.17-.55,2.51,4.68.77,4.63,2.78,2.94,1.52,9.72,1.24,0,2.93,15.2c2.09,4.93,3.87,11.88,5.42,17l1.69-4.41,1.08-15.14.53-4.64-.4-5.52Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="935.4 443.67 935.05 445.86 937.45 460.57 939.9 463.51 938.61 452.71 935.4 443.67" style="fill:#d9dadb"></polygon><polygon points="939.9 463.51 939.9 463.51 939.9 463.51 939.9 463.51" style="fill:#d9dadb"></polygon><path d="M994.57,536.84l-1.19,3.54-.12,5.54c.22-.49.43-1,.63-1.45l.78,6,.93-7.09-.9-1.61Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="951.87 346.36 953.09 353.81 955.41 359.5 957.04 359.09 955.94 351.9 952.77 342.32 951.87 346.36" style="fill:#d9dadb"></polygon><path d="M950,297.65l-2.75-5.26L945,287.78l-.59-1-1-2-.59-.67,1.41,3.13,6,12.16,2,4.07,3.25,5.82c0-.17-.1-.33-.16-.5l-2-4.22Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="962.28 342.97 961.93 341.94 959.22 334.16 959.01 333.58 955.89 325.17 955.22 323.43 951.7 314.63 953.59 319.54 953.64 320.05 957.06 329 960.5 338.19 960.76 339.36 964.25 349.21 963.58 346.97 963.64 347.16 962.28 342.97" style="fill:#d9dadb"></polygon><polygon points="966.07 354.71 965.52 352.92 965.11 351.65 965.18 351.88 966.07 354.71" style="fill:#d9dadb"></polygon><polygon points="964.05 348.32 963.64 347.16 965.11 351.65 964.05 348.32" style="fill:#d9dadb"></polygon><polygon points="967.43 359.16 968.44 362.6 967.64 359.89 967.43 359.16" style="fill:#d9dadb"></polygon><polygon points="972.99 379.35 974.5 385.59 973.98 383.36 972.99 379.35" style="fill:#d9dadb"></polygon><polygon points="974.5 385.59 975.08 388.1 974.92 387.33 974.5 385.59" style="fill:#d9dadb"></polygon><polygon points="977.51 399.05 976.03 392.16 975.08 388.1 977.63 400.07 979.81 411.27 978.41 403.46 977.51 399.05" style="fill:#d9dadb"></polygon><polygon points="983.9 559.48 982.79 563.39 982.89 560.12 981.02 563.65 978.75 574.14 980.09 573.46 979.63 576.87 981.09 573.64 982.66 567.81 982.86 568.45 983.13 566.96 985.1 550.88 984.75 552.91 983.9 559.48" style="fill:#d9dadb"></polygon><path d="M508.63,777.11l-14.84,3.21.44-10.79L491.32,766l1-5.73-2.41-5.35,2-5.64q-6,0-12,0c-.05-1.21-.1-2.43-.14-3.65l-9.86,1.23-.75,8.54q-7.69-.09-15.42-.27l-7.91-9.87.6-4.75-2.92-3.25q-15.44-.47-30.9-1.31l-3.31,3.55,9.08,15.16c.05.9.11,1.8.17,2.7l-3.28,2.52,7.56,12.39.86,7.87-10,11-2,11.78-3,4.31,1.43,9.51.31,2.06,4.79.29,4.1-3,6,.31,4.86,3.69q17.63.81,35.2,1.1l3.68,2.75q10.08.15,20.13.13l16-3.1h0l-10.6-7.41-1.14-21.91q7.8,0,15.58-.19Q508.86,784.37,508.63,777.11Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M552.85,699.66l-4.17,6.82,1.78,4.36,6.51-1.38.25-2.64,6.27-.06,3.18-.19-4.62-10.74-6.43,2.69Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M557.22,706.82l-.25,2.64-6.51,1.38,2,6,2.45-.34,2.75,9.52,9.78-10.26c0-1.25,0-2.51-.08-3.76l-4.49.18.57-5.39Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M583.09,760.53l-5.5-.69-2-3.51-5.27-1.49.56,1.43L569.63,760l-6.87-2.56-.78-2.82-11.18,3.08-4.88,5.28,3.19,5.57-1.93,11.17,6.64,5.88,5.78-1.85c0,3.11,0,6.2,0,9.25l-6.77.37-5.94-5.91-7-2.62-3.38-3.88-4.07,2.84-9.81-1.89-1.34-3.31L515.71,780l-2.44-4.4-4.64,1.47q.22,7.25.45,14.29-7.77.14-15.58.19l1.14,21.91,10.6,7.41h0l7.29-1.5,6.91.43,3.45,4.12h0l6.16-1.08h0l5.11,2.4,3.83-1.84,3.71-5.78,8.45-3.18.93-4,7.26-2.75h5.35l-1.57-4.75,22.31-7.56h0l-3.17-4.71,4.46-8-1.7-9.45,2.7-2.19Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M601.62,776.55l6.28-2.82,4.85,3.9,5.1-3.91,3.62,1.52,4.64-3.94,4.32,1,16.48-8.88-1.72-.9-5.81-2.85-2.91-12.9-.21-3.86,2.48-6.71-6.15-6.8,2.88-9.85-12.63-7,2-4.41-31.71-15.93-6,9.75,4.27,1.59L587,707.85l-8.2-1-3.85,4.5L572.47,705,575,698l-1.9-2.84q-5.49.38-11,.71l4.62,10.74-3.18.19-.57,5.39,4.49-.18c0,1.25.05,2.51.08,3.76L557.71,726,562,740.68l4.31,4.05,4.05,10.11,5.27,1.49,2,3.51,5.5.69,8.44,1,7.06,4.17c0,2.75-.06,5.48-.09,8.19Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M722.08,564.81l-3.82-.64-4.65,5.06-19.67,6.53-6.76,5.45-5.77-2-5.74,6.21-4.9.48-7.89-7L658,589.09l10.78,11.66,22.42,3.87c2.85-.49,5.68-1,8.51-1.5l-20,30.92h0l-7.78-1.35L665,637.61l-.64,4.88q-3.58.53-7.2,1l-8.28,13.25q.46,11.4.76,22.75c.06,2.29.11,4.56.16,6.83l4.15,4.81.73-1.41,3-6,18.48-21.33,12.66-11,18.61-29.68,13.63-36.1-.29-7.48,3.66-1.87Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><polygon points="595.58 551.25 601.08 547.97 603.05 550.39 607.47 545.22 609.62 547.63 614.34 544.48 616.59 547.19 627.68 547.47 640.24 560.93 647.75 557.19 648.07 556.29 631.24 540.76 619.62 538.59 613.06 523.74 609.28 517.26 605.52 523.92 601.49 522.37 595.02 529.53 598.34 534.56 593.62 542.99 595.58 551.25" style="fill:#ff7b00"></polygon><polygon points="640.24 560.93 636.69 567.5 638.13 575.34 646.11 577.11 650.99 566.95 650.18 566.23 644.34 566.79 647.75 557.19 640.24 560.93" style="fill:#ff7b00"></polygon><path d="M592.24,685.39l2.65-7.76,5.91-7.4-2.37-8.94-4.29-3.6,1.45-3.59-5.5-3-4,4.46-3.59-1.87-7.26,2.7L568.11,654,565.06,659h0L563.89,661l2.27,3-1.31,3.55,4.42,3-8.5,7.83-4.66,9-.49,11.2,6.43-2.69q5.52-.33,11-.71l-.84-1.27L576,687Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><polygon points="636.96 644.77 636.96 644.77 636.96 644.77 636.96 644.77" style="fill:#ff7b00"></polygon><path d="M649.89,645.88l-3.7-2.23L640,647.42l-2.61,4.81-12.51-.6-10.41-6.17-6.47.93-1.81-1.68q-6,.57-12,1.1l-3.94,5.07-.18.21,5.5,3-1.45,3.59,4.29,3.6,2.37,8.94-5.91,7.4-2.65,7.76,7,3-6.09,3.86,31.71,15.93-2,4.41,12.63,7,.5-1.7,5.07-7.57-1-4,3.72-5.67,9-7.16,1.15-2.28-4.15-4.81c0-2.27-.1-4.54-.16-6.83q-.3-11.34-.76-22.75h0l7-11.25Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M582.21,620.05l6,.73,9,7.7,1.28,8.54,3.45,2.24,4-2,.33,7.34,0,.09,1.79,1.66,6.47-.93,10.41,6.17,12.51.6,2.61-4.81,6.16-3.77,3.7,2.23,6-.37,1.23-2q3.61-.5,7.2-1l.64-4.88,6.91-4.91,7.79,1.34h0l20-30.92c-2.83.51-5.66,1-8.51,1.5l-22.42-3.87L658,589.09l-8-1.77-1.44-7.83,3.55-6.58-12.56-13.45-11.09-.28-2.25-2.72-4.72,3.15-2.15-2.41L615,562.37,613,560l-5.5,3.27-2,5.55q.3,4.08.59,8.16l-5,.49-4.39,7.92q.25,4,.49,7.95l-4.61-.6-1.53,11.9c0,.51.06,1,.08,1.52.12,2.16.23,4.33.35,6.49l-8.66.94Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M996.77,459.09h0l-.18-1.1v0l.29,5.27.64,4.52-.27-4.47C997.1,461.92,996.94,460.5,996.77,459.09Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="987.48 517.33 987.45 517.23 987.42 517.66 987.41 519.31 987.48 517.33" style="fill:#d9dadb"></polygon><path d="M998.93,484.71l.13,2.41.08,4.92-.26-.67-.12,4.42.12,4.51-.31,3.28-.3,5.16-.84-2.72q-.18-3.74-.43-7.46l-.08,13.18.2,4.06.36.06-.05,5.15.77,4.13-.12,4.72.16,4.7-.13,4,.67-3.38.2-3.42-.2,6.52.54-8.61.22-31.35C999.5,494.13,999.26,489.49,998.93,484.71Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M998.46,476.41c-.09-1.26-.19-2.51-.3-3.77l-.38-4.9c-.23-2.45-.47-4.89-.74-7.32-.07-1-.16-2.07-.28-3.1.57,8.14,1.54,18,2.17,27.39l-.2-3.71Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M998.73,481l-.27-4.59c-.09-1.26-.19-2.51-.3-3.77l-.38-4.9c-.23-2.45-.47-4.89-.74-7.32-.07-1-.16-2.07-.28-3.1h0l-1.94-15.44-1.26-8.15q.09.64.15,1.29l2,14.53.25,2.58.35,2.52.45,4.44h0c.17,1.41.33,2.83.48,4.24l.27,4.47-.64-4.52,1,15.26-.22,7,0,2.09.69,11.52-1,1.8-.4-2.32v0q.25,3.72.43,7.46l.84,2.72.3-5.16.31-3.28-.12-4.51.12-4.42.26.67-.08-4.92Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="982.91 429.79 982.92 429.89 982.94 430.06 982.91 429.79" style="fill:#d9dadb"></polygon><polygon points="398.49 718.06 398.49 718.06 398.49 718.06 398.49 718.06" style="fill:#ff7b00"></polygon><path d="M410.79,722.1l-7.34,3.6,1.56,1.65,0,0,1.61,4.4,3.83,1.46c0-.1,0-.19.07-.29l-.15-2.92h0L415,727.2Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M555.62,698.52l.49-11.2,4.66-9,8.5-7.83-4.42-3h0l1.31-3.55-2.27-3,1.16-1.94H565l-7.57-9.54-4-1.31-2.71,3.49-3.56-1.33-2.88,2.51-5.93-2.74-.09-2.72-6.34-1.92-4.18.81-9.27-1.93-.75,3.78-5.23.89-2.57-2.56-8.69,3.87-4.41-.25-3.34,5.87-9.87-1.58L481,651.49l-4.67,2-5.24-7.5-6.52,1.78L462,652.6l-3.09.89,2.09,10L456,672.91l-.75,13.91-2.19,2.77c0,.13,0,.26,0,.4,0,1.31.07,2.62.1,3.93l-3.33,4.61-4.4.81-5.35,8.17,1.29,9.64L439,722.34l-3.54.89L430,729.68l-5-.22-.58-5.12-4.27,2.74-3.13,2h0l-2-1.88-4.62,2.85.15,2.92-.07.29,3.37,1.27-1.27,1.39q15.46.84,30.9,1.31l2.92,3.25-.59,4.75,7.9,9.87q7.73.18,15.42.27l.75-8.54,9.86-1.23c0,1.22.09,2.44.14,3.65q6,0,12,0l-2,5.64,2.41,5.35-1,5.73,2.91,3.57h0l-.44,10.79,14.84-3.21,4.64-1.47,2.44,4.39,5.62-1.48,1.34,3.31,9.81,1.89,4.07-2.84,3.38,3.88,7,2.62,5.94,5.91,6.77-.37c0-3.05,0-6.14,0-9.25l-5.78,1.85-6.64-5.88,1.93-11.17-3.19-5.57,4.87-5.28L562,754.57l-2-7-4.3-2.51L552,738.13l1.25-4.43-2.4-4,.41-12.75,1.25-.18-2-6-1.78-4.36,4.17-6.82Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M396.65,679.73l.87,0q-.11-4.78-.18-9.59l-.87-.06c-3-.19-5.88-.4-8.8-.61L383,666.29,384,676.8h0l-.81,2Q389.89,679.28,396.65,679.73Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M426.32,685.13l-4.63-8.49-8.31,2.09q-.09-4.31-.17-8.62l-6.33-2.88-9.59-.32c0,1.09,0,2.19,0,3.28q.07,4.8.18,9.59l-.87,0q-6.75-.45-13.42-1l-4.16,9.75-4,1.25,7.54,14.17,4.93.48.57,4.56,9.15,10.07,7.93-2.38-4.34-5.12c-.06-1.49-.12-3-.17-4.49l5.73.2,3.41-4.8h0l3.15,6.45,3.85.2,2.76-2.59,5.21,3-.2-16.51-5.9-3.45,2-4.8Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M456,672.91l4.93-9.44-.42-2,0,0-10.36-3.63-7.23,2.41,1.68,5.24-4.47,5.11,1.34,3.59-3.81,2.63-3.32-4.88-3.07,2.15-4.13-3.14-13.9-.82c0,2.88.1,5.75.16,8.62l8.31-2.09,4.63,8.49-5.58-.4-2,4.8,5.9,3.45.2,16.51-5.21-3-2.76,2.59-3.85-.2-3.15-6.45h0l-3.42,4.79-5.73-.19c.05,1.5.11,3,.17,4.48l4.34,5.12-7.93,2.38,6.17,6.65,7.34-3.6,4.22,5.1,2,1.88h0l3.13-2,4.27-2.75.58,5.13,5,.22,5.45-6.45,3.54-.89,2.42-5.19-1.29-9.64,5.35-8.17,4.4-.81,3.33-4.61c0-1.31-.07-2.62-.1-3.93,0-.14,0-.27,0-.4l2.19-2.77Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M464.59,647.76l6.52-1.78,5.24,7.5,4.67-2,2.56,2.86,9.87,1.58,3.34-5.87,4.41.25,8.69-3.87,2.57,2.56,5.23-.89.75-3.78,9.27,1.93,4.18-.81,4.78,1.45-1.07-5.67-4.55-4-4.38-.11-.15-5-9.32-5.28c0-1.16-.06-2.32-.1-3.48l-4.59-3.06-6.23.56h0l1.48-3.78-7.8-.39,3.07-9.19-6.65-7.66-3-3.54L485.71,600l.09,6-4.25.55-6.47,7.1q-5.71,0-11.43-.1l-4,8.25-7.08.62-7.07,3.76-3-3.4-10.74,4.49-1.64,3.92-2.6-.11-.27,4.47-5,1.26,3.9,8.26-.37,5.16,6.06,3.25-3.62,3.65,9.36,6.54,2.59,7,4.47-5.11-1.68-5.24,7.23-2.41,10.36,3.63,0,0-1.67-8,3.09-.89Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M528.89,610.42l-4.45-1.48-2.77-7.59-6.91,1.11-.82,4.11-4,3.51-2.2,7-1.47,3.78h0l6.23-.56,4.59,3.06c0,1.16.07,2.32.1,3.48l9.32,5.28.15,5,4.38.11,4.55,4,1.07,5.67,1.56.47.09,2.72,5.93,2.74,2.88-2.51,3.56,1.33,2.71-3.49,4,1.31L565,659h.08l3.05-5.07,7.16,2.43,7.26-2.7,3.59,1.87,4-4.46.18-.21,3.94-5.07q6-.52,12-1.1l0,0,0-.09-.33-7.34-4,2L598.45,637l-1.28-8.54-9-7.7-6-.73.64-6.5,8.66-.94c-.12-2.16-.23-4.33-.35-6.49l-6-2.35,1.18-5.44-4.6-4.4V581.6l-9.21,3.22,2.27,8.07-7.63,11.44-4.2.61-7-4.34-4.28,1.85c0,1.09.09,2.18.14,3.28l-19.16,2.06Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M509.35,445.74h0c.51,19.68,1,39.6,1.54,59.64,32.08-.82,63.68-2.89,94.33-6.09l-.86-1.83-.23-.5-12.07-9.6-.36-7.54-4.86-3.69L574.4,451.56,565.54,446l-2.25-14.28,7.36,11.74,6.67,3.6,4-8.41L575,422.52l-8,2.07-14-2.89-5.14,3.48h-2.3l-5.91,4.08L530.23,426,516,423.35l-4.34,1.14-4.55,3.82,3.76,5.26-4.4,5.25Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M613.39,534.35l4,1.56,3.76-6.66-.64-1.09-9.69-5.63-.7-4.11-2.39-13.76-2.54-5.36c-30.65,3.2-62.25,5.27-94.33,6.09q.21,8.08.42,16.2c-2.53.07-5.07.12-7.61.17,0,1.32.06,2.64.08,4q.3,14.91.62,29.87-4.86.1-9.72.16l2,5.11-6.45,4.83,2.91,4.71-7.9,7.55,2.38,6.63,5.73-1.46.44,5.56,4.52,3.43-1.89,7.73h0l6.65,7.66L500,616.68l7.8.39,2.2-7,4-3.51.82-4.11,6.91-1.11,2.77,7.59,4.45,1.48,3.72-2.63,19.16-2.06c0-1.1-.09-2.19-.14-3.28l4.28-1.85,7,4.34,4.2-.61,7.63-11.44-2.27-8.07,9.21-3.22v12.33l4.6,4.4-1.18,5.44,6,2.35c0-.51,0-1-.08-1.52l1.53-11.9,4.61.6q-.24-4-.49-7.95l4.39-7.92,5-.49q-.29-4.08-.59-8.16l2-5.55-2-8.26,4.73-8.43-3.32-5,6.47-7.15Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M503.78,525.71h0c-19.38-9.8-45-23.25-64.14-33.61l-8.31,4.33.4,12,6.87,10-3.46,3.72-1.41,24.11-17.91,17.95,4,11.1,5.83.26h0l5.07,14.87-1.08,7.68,5,7.61-12.14-1.1-3,4.49,10.05,7.29,4.8,4.76-2.54,6.09,10.75-4.49,3,3.4,7.07-3.76,7.08-.62,4-8.25q5.72.07,11.43.1l6.47-7.1,4.25-.55-.09-6,7.63-3.67,3,3.54h0l1.89-7.73-4.52-3.43-.44-5.56-5.73,1.46-2.38-6.63,7.9-7.55-2.91-4.71,6.45-4.83-2-5.11q4.86-.06,9.72-.16Q504.09,540.63,503.78,525.71Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><polygon points="386.65 350.69 392.37 347.99 395.19 338.58 392.33 332.51 388.56 335.29 385.75 334.31 386.17 343.3 383.63 349.29 386.65 350.69" style="fill:#d9dadb"></polygon><polygon points="502.31 350.88 499.56 347.85 495.65 352.36 500.3 354.41 500.3 354.41 502.31 350.88" style="fill:#d9dadb"></polygon><polygon points="396.09 316.94 394.67 317.27 392.92 319.04 390.9 319.44 390.05 321.68 390.84 324.07 390.01 326.58 390.52 329.05 392.57 330.5 394.64 327.44 394.5 324.66 396.75 318.84 396.09 316.94" style="fill:#d9dadb"></polygon><path d="M497.7,390.28l-2.34,4.39,8.74,4.87,12.25-2.24-1.65-4.8q-5.51.18-11,.3Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="420.24 358.16 415.9 356.56 411.56 357.13 410.7 359.37 421.76 365.12 424.18 368.17 427.62 369.46 429.5 365.57 427.87 362.56 431.5 356.22 420.24 358.16" style="fill:#d9dadb"></polygon><path d="M310.74,407.76l8.93,2.91,4.22-5-4.1-6q1.29-5.42,2.62-10.78l-2.73-8.1-14.88-4.22-1.25-5.24-2.82,1.06L289.67,386l-9.47,2.83-14.06,14.45L264.44,414l-15.35,12.06-8.93.67L238,428.56l-1.12,1.7h0q13.42,3.6,27.76,6.81,1-3.94,2-7.88l10-4.05,4.32.9,3.14-3.22q3.36.68,6.78,1.33l3.63-5.21,8.94-2.84-.71-5.44,4.95.89Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M227,438.37l-5.56,11.16-6.72,5.07-7.2,11-1.48.14-3,7.09-.74,1.8q11.53,3.57,23.81,6.83L228,469.56l3.79-3.22,4.35-.77q2.33-10.24,4.88-20.4h0q10,2.56,20.52,4.91,1.5-6.51,3.09-13-14.34-3.21-27.76-6.81l-3.28,5.06Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M410.65,414.76c.22-2.14.45-4.27.69-6.41l-.19-.11-8-4.92-1.89-4.13,5.77-3.86,3.54-4.58-4-7.78,5.24-7.81-8-2.68L395,375.15l-4.17,5.14L389.15,394l-7.53,5.09,1.64,6.14,3.9,2.44-.66,4.64,5.05,4.19-1,18.12,9.84-4.3-.2-6.21L412,417.62Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M343.39,521.13l13.35-1.28,14-11.57c10.24-6.54,25.51-12.39,36.43-17.71l-2.26-6.49-6.35-2.6-4.42.76.08-4.34L388,467.49l6.2-3.14-2.11-6.94,3.74-2.47-2.44-4.18c.29-2.74.57-5.47.87-8.2l-3.71-7.93,1-18.13-5.05-4.19.66-4.64-3.9-2.44-1.64-6.14,7.53-5.09,1.63-13.7h0l4.17-5.14-14.23-2.58-8.21,3-3.19-2.61-12.19-.61-2.76,1.49-10.57-.29-7.26,4.25-5.27-.23L323.85,382l-4.17-1.11,2.73,8.1q-1.34,5.37-2.62,10.78l4.1,6-4.22,5-8.93-2.91-3.07,3.8-4.95-.89.71,5.44L294.49,419l-3.63,5.21q-3.42-.66-6.78-1.33l-3.14,3.22-4.32-.9-10,4.05q-1.37,5.31-2.65,10.66l20.26,24.06c10.87,11.67,26,26.64,37.42,37.79-.17,1.33-.33,2.66-.5,4l6.06,4.79,3.08-.56,6,4.7L333.75,522Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M509.13,420.54,500,419l-3,.18-1.5-4.12-10.15-2.62-8.39,3.29-3.72,3.43.29,10.18-6.11,6-14.45-7.17-10.68-2.32-4.82-9.5-13.7-5.07-6.89.35-5.51-3.31c-.24,2.14-.47,4.27-.69,6.41l1.33,2.86-11.75,6.49.2,6.21-9.84,4.3h0l3.71,7.93c-.3,2.73-.58,5.46-.87,8.2l2.44,4.18-3.74,2.47,2.11,6.94-6.2,3.14,6.17,10.41-.08,4.34,4.42-.76,6.35,2.6,2.26,6.49L419.72,494l5.46,5.54,6.11-3.1,8.31-4.33c19.1,10.37,44.76,23.8,64.14,33.61h0c0-1.31,0-2.63-.08-4,2.54,0,5.08-.1,7.61-.17q-.21-8.12-.42-16.2c-.52-20-1-40-1.54-59.64l-2.86-6.93,4.4-5.25-3.76-5.26,4.55-3.82Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M413.21,670.11l13.91.82,4.13,3.14,3.07-2.15,3.32,4.88,3.81-2.63-3.93-10.56-9.36-6.54,3.62-3.65-6.06-3.25.37-5.16-3.9-8.26,5-1.26.27-4.47,2.6.11,1.63-3.92,2.54-6.09-4.8-4.76-10.05-7.29,3-4.49,12.14,1.1-5-7.6h0l1.08-7.68-5.08-14.87-5.83-.26.27,8.66,2.3,3-.88,5.17-2.28,1.45-3.52,9.64-4.34,1.51-1.21,9.63-4,.66-5.14,10.94-2.09,6.87-2.59-.17-2-.13-2.11-5.85-4.41,2.53-2.21-1.89-9.32,7.49,0,4.82-2.63,4.07,9.79,6.16,1.92,9.2-2.26,7.3v0l4.71,3.23c2.92.21,5.85.42,8.8.61l.87.06c0-1.09,0-2.19,0-3.28l9.59.32Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M284.21,463.92,264,439.86q-1.23,5.1-2.41,10.22Q251,447.74,241,445.17q-2.57,10.15-4.88,20.4l-4.36.77L228,469.56l-1.83,11.95q-12.27-3.27-23.81-6.83l-1.06,2.59,4,6L202.32,503l-5.06,10.61,12.63,1.51,3,5.67,3.8,1.08.13,5.07,4.81,8.6,3-1.07c.24-1.74.49-3.49.74-5.23l3.51-.79,2.45,5.93,3.76-2.16,4.86,1.15,4.57-2.33-.42,3.13q11.74,2.67,24,5.06l2.09-6.28-2.26-2.2c1-20.75,3.05-48.38,4.89-69.07Q278.45,462.83,284.21,463.92Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M201.22,534.55q-3.19-.93-6.33-1.88l-2,3.52-.47,2q2.56.8,5.18,1.56l5.7-1,1.89,2.42,5.76.72-.39-4.26-6.63-5.73Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M224.15,577.79l-4.31-1.08-1.9,1-2.38-2.1-3.92,7.22-1.24-.33.78,7.45,2.8,5,6.54,5.57.8,1,7.51-8.44-2.27-2.39c.16-2.39.33-4.79.52-7.18Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><polygon points="225.22 589.85 223.56 580.84 216.93 581.14 209.42 589.58 224.24 608.7 235.25 616.9 237.47 606.36 229.98 598.79 231.9 591.01 225.22 589.85" style="fill:#ff7b00"></polygon><polygon points="274.58 591.48 271.4 586.33 265.92 577.16 259.21 580.42 254.77 573.51 245.61 565.57 241.84 570.38 235.38 569.27 232.09 574.77 236.07 580.65 231.46 584.34 231.9 591.01 229.98 598.79 237.47 606.36 237.47 606.36 235.25 616.9 247.15 613.57 267.78 616.71 267.75 616.82 268.74 617.39 268.73 617.34 266.19 603.4 269.63 600.3 269.63 600.3 274.58 591.48" style="fill:#ff7b00"></polygon><path d="M203.27,538.77l-5.7,1q-2.61-.76-5.18-1.56l-.86,4.57.78,6,.74,1.16,7.29-1.13q5.07,1.47,10.27,2.89l2.87.77,2.22,2.47,2.69-1.49,1.66,3,3.85,1,1.32-5-.78-5.9-2.09.42-.9-2.87,1.34-3-1.17-5.36-4.81-8.6-.13-5.07-3.8-1.08-3-5.67-12.63-1.51-.6,1.26-3.32,7.6L190.62,524l4.27,8.65q3.13.95,6.33,1.88l2.68-2.63,6.63,5.73.39,4.26-5.76-.72Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M200.34,548.72l-7.29,1.13,2,3.09,4.86-.13L198.53,558l1.88,2.86.67,1,3.14-3.58c1.87.53,3.74,1,5.64,1.56l-1.62-5.15h0l2.37-3.11Q205.42,550.18,200.34,548.72Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M244,586.76l3.29-5.5-4.09-8.73,1.33-3.6-2.69-2.49L241.4,561l-3-2.41-2.8,4.88L231,560.58l-4.18,1.62-3.44-2.83.54-2.07-3.85-1-1.66-3-2.69,1.49-2.22-2.47-2.87-.77-2.37,3.12h0l1.62,5.15c-1.9-.51-3.77-1-5.64-1.56l-3.14,3.58,6.81,10,2,5.58.47,5,1.24.33,3.92-7.22,2.38,2.1,1.9-1,4.31,1.08,2.93,5.76c-.19,2.39-.36,4.79-.52,7.18l2.27,2.39,6.63-.3,1.66,9L243.8,603l-.44-6.67,4.61-3.69Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M247.28,581.26l6.46,1.1,3.77-4.81,6.4,5.58.29-5.16,3.34-1.8.32-5.55h0l2.81-.38,2.8-2c.26-3,.53-6,.82-9l2.35-1.46,4.51,2.7,4.64-3.25.85-2.9,5.31,1.54,1.27-4.56,8.9-4,3.32,2.66,2.63.39,7.05,1,2.77-2.25,13.11.57,3.9,1.65,6.54-8.18q.88-11,1.95-22l-9.64.85,2.52-7.34-6-4.7-3.08.56-6.06-4.79c.17-1.34.33-2.67.5-4-11.55-11-26.39-26.26-37.42-37.79q-5.76-1.1-11.39-2.25c-1.93,20.68-3.79,48.33-4.89,69.07l2.26,2.2-2.09,6.28q-12.28-2.4-24-5.06l.42-3.13-4.57,2.33-4.86-1.15-3.76,2.16-2.45-5.93-3.51.79c-.25,1.74-.5,3.49-.74,5.23l-3,1.07,1.18,5.36-1.35,3,.9,2.86,2.09-.41.78,5.9h0l-1.32,5-.54,2.07,3.44,2.83,4.18-1.63,4.63,2.88,2.8-4.88,3,2.41.44,5.46,2.68,2.49-1.33,3.6Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M278.09,615.39l2.54,13.94v0l6.65,3.77,22.68-7-3.55-8.9,1.6-13.55L303.53,596l2.91-12-4.78-2-3.44,2.86q-8-1.26-15.87-2.62L283.9,588c-.21,3.43-.41,6.87-.6,10.3l3.17,5.15-5,8.82Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M310,626.16l3-.95,4.78-.43-.91-3.93q.22-8.64.58-17.3L315,600.07l.81-4.93L311,591.47l.3-5.51-4.89-2-2.91,12,4.49,7.73-1.6,13.55Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M317.76,624.78l7.31-.36q.21-9.12.54-18.24l7.37-6.42c.06-1.56.13-3.13.2-4.69l4-3.47-4-7.28-4.49-8.21-4.7,1.32-3.33,7.85-5.11-4.15L311.33,586l-.3,5.51,4.76,3.67-.81,4.93,2.45,3.48q-.36,8.66-.58,17.3Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M301.66,582l9.67,4,4.22-4.83,5.11,4.15,3.33-7.85-2.36-4.25-5.22,1.12-3.64-7.74.57-3.8-5.27-12.44-2.63-.39-3.32-2.66-8.9,4L292,555.82l-5.31-1.54-.85,2.9-4.64,3.25-4.51-2.7-2.35,1.46c-.29,3-.56,6-.82,9l-2.8,2-2.81.38h0l-.32,5.55L264.2,578l-.29,5.16,2.75,2.37,4.45,6.9,6.7-3.26,5.49,9.17c.19-3.43.39-6.87.6-10.3l-1.55-5.78q7.84,1.37,15.87,2.62Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M435.1,522.1l3.46-3.72-6.87-10-.4-12-6.11,3.1L419.72,494l-12.57-3.41C396.27,496,379.88,499,369,504.32l-12.21,15.53-13.35,1.28q-1.06,11-1.95,22l-6.54,8.18-3.9-1.65-13.11-.57-2.77,2.25-7.05-1,5.27,12.44-.57,3.8,3.64,7.74,5.22-1.12,2.36,4.25,4.7-1.32,4.49,8.21,3.9-4.51q.35-6.18.73-12.34l4.9-4,6.13,3.68,6.69-2.87,3.66,4,1.73,7.24,7.27-4.22,7.77,6.23,7.45,1.39,3.61-6.07,11.15-.48,9.22,3.57,5.52-5.64,5-.22-2.09-5.91,17.91-17.95Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M352.45,645.87l13.1-.76,4.38-3.78,3.58,2.28,2.63-4.07,0-4.82,9.32-7.49,2.21,1.89,4.41-2.53h0l2.1,5.86,2,.13,2.59.17,2.09-6.87,5.14-10.94,4-.66,1.21-9.63,4.34-1.51,3.52-9.64,2.28-1.45.88-5.17-2.3-3-.27-8.66-1.86-5.19-5,.22-5.52,5.64-9.22-3.57-11.15.48-3.61,6.07L376,577.52l-7.77-6.23-7.27,4.22-1.73-7.24-3.66-4-6.69,2.87-6.13-3.68-4.9,4q-.39,6.16-.73,12.34l-3.9,4.51,4,7.28-4,3.47c-.07,1.56-.14,3.13-.2,4.69l-7.37,6.42q-.33,9.12-.54,18.24,6.74.86,13.58,1.65l5.22,6,5.63-1.49-2.27,9.64Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M497.26,98.49l.31,1,1.87.71,4.33-3.16-3.07-.42-1.37-1.78-1.42.52-.75-.75-1.36.73L492.69,94l-.42,1.78c-.91,0-1.83,0-2.74,0L492,97.13l2.17-.36-.23,1.74Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="469.59 97.55 471.17 96.91 471.29 98.43 472.83 99.94 476.89 92.99 478.21 92.61 478.65 90.88 480.55 90.46 481.46 91.43 483.65 90.91 482.75 89.36 480.22 87.74 478.71 87.64 478.17 85.5 475.23 84.12 474.41 88.17 473.22 85.52 472.38 84.57 470.76 86.95 470.3 85.47 470.79 84.6 468.81 84.04 467.55 85.14 465.69 85.42 466.07 89.66 467.67 90.12 467.77 91.49 472.4 88.95 471.9 91.39 468.08 93.05 468.14 93.85 469.15 94.37 468.59 95.76 469.59 97.55" style="fill:#d9dadb"></polygon><polygon points="484.77 97.56 489.24 94.6 485.42 93.66 485.22 92.34 481.91 93.04 482.42 94.23 481.52 95.82 484.93 95.54 484.77 97.56 484.77 97.56" style="fill:#d9dadb"></polygon><polygon points="329.55 148.01 327.74 149.76 331.64 150.53 336.18 155.51 343.69 154.08 348.07 154.65 351.82 151.77 352.75 153.37 355.15 151.17 357.84 151.19 358.35 148.97 360.3 148.14 360.6 143.8 361.67 141.74 359.13 140 355.22 140.76 352.85 141.89 350.15 139.16 346.37 142.06 346.98 139.01 343.82 141.75 341.2 141.85 344.08 138.28 342.06 134.8 333.36 138.99 335.09 140.37 337.6 139.74 339.65 140.61 337.67 142.3 330.62 142.58 331.77 145.09 335.58 146.08 333.9 147.84 329.55 148.01" style="fill:#d9dadb"></polygon><path d="M384.6,253.52l-2-2.67-3.73-.29-2.85.22q.92-2.37,1.84-4.71l1.05-1.12-.41-6.3-2.93-1.05,1-7.27-1.89-3.64-5.49-.88,6.67-3,6.22-6.39-5.55-1.64-4.43.76,8.22-6.25-6.34.07-1.41-1.49-6.34,6.3-.43,2.81-4.61,2,.34,2,4.31-1-6.72,5.81,1.29,2.14,3.94-.57-5.28,5.4,2.85,1.11,1.2-1.65,5.09-.64L365,236.42l.54,1.69,2.6.2-3.52,4.22,0,3-5.13-.9-1.61-1.78-3.8,4.55,2.84.43-1,3.32-6,2.4,5.68,3.25,7-.45-5.7,4.35-5.79-.77-9.56,6.44,7-2.09,2.85,2.07,2.15-1.76,4.31,1.66,5.51-2.1,7.66,2.17,7.83-3-4.93-1.67,5.5-2.32Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="356.48 194.59 356.84 192.25 353 193.35 351.63 197.34 356.48 194.59" style="fill:#d9dadb"></polygon><polygon points="353.07 198.76 347.3 201.5 350.35 203.85 353.07 198.76" style="fill:#d9dadb"></polygon><path d="M378.4,188l4.75-5.44c-1.9,0-3.8-.17-5.7,0l.52,2.31-1.18,1.72Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="384.93 185.18 385.14 182.98 378.88 186.46 379.67 190.37 384.93 185.18" style="fill:#d9dadb"></polygon><path d="M383,207.72l3.64-3.72-4.66-.17-2.38,3.3Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="333.96 222.71 334.55 224.62 338.56 222.66 339.6 225.67 345.18 222.66 344.25 216.47 341 217.49 341.01 216.06 333.96 222.71" style="fill:#d9dadb"></polygon><polygon points="332.55 238.72 332.55 238.72 332.55 238.72 332.55 238.72" style="fill:#d9dadb"></polygon><polygon points="338.39 217.22 338.62 215.16 332.17 218.13 333.89 219.91 330.6 222.44 325.19 220.21 325.25 223.31 321.56 225.53 325.47 228.45 314.7 234.77 316.33 237.65 314.91 240.74 320.86 240.89 326.78 238.19 332.55 238.72 336.89 233.43 339.6 225.67 338.56 222.66 334.55 224.62 333.96 222.71 341.01 216.06 338.39 217.22" style="fill:#d9dadb"></polygon><polygon points="11.22 504.47 11.22 504.41 11.22 504.28 11.22 504.47" style="fill:#d9dadb"></polygon><path d="M68.78,717.71l9.37,18.95,0,0L80,740.13l1.83,3.45,4.1,7.41h0l0,0,.2.36c6.2,10.54,14.58,23.45,22.07,34.82l-1.16-2.34L102.32,776l-5-8.24-1.44-3.58L95.77,761l1.9,1.81-.27-1,1.19.36-.5-1.73,6.18,4.57-1-3,1.38-.41q-1.16-2.48-2.27-5l-.43-6.15-3.4-10.35.35-2.54-2.66-9.92-6.46-20.25,1.91-1.28.62-10-.07-2.38,1.78-1.34,1.12-4.27-1.27-3.23,2.45.17-.13-14.24-4.78-16.16-1.79-2.89-4.07-2.48-5.77-10.54-2.16-6.17-6.22-11.15-4.19-1.93-2-3.63-2.36-1.64-3-6-1.17-1.39-1,3.5-2,.38,1-6.89-1-4.25L52.7,594l-1-2.95-.76-.29-.73-2.65-.91-.76L48.88,585l-2.36-3-2,7.32-.94-6.08.94-3v-4L42,570.94l-1.34-6,.4-8.63-1.81-5.56-.34-10,.11-6.69-.71-5.56-1.85,7.81-1.08,7.45-.69-.75-.2-3.2-.81-1.61-.53,2.2-1-2.27L31.49,532l-1.41.75.21,5.18-1.18-2.37h0l-1.21-2.69-.32,1.52-.47-2.88-.3,2.27-.58-.22-.58-7.39c0-2.26.05-4.51.1-6.77l-.21-5,.94-6,.05-12.63-.67-1.9-.54,4.79c-.09-.41-.17-.81-.24-1.21l-.49,2.68-.16-3.74-.37,2.88,0-9.14-.13-2.15-.47,15.8.09,6-.4,3.28v3.36l.14,7.71C26.27,616.64,50.84,675.06,68.78,717.71Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M114.19,795.23l-6-9,0,0Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="21.22 528.47 21.75 526.27 22.56 527.88 22.76 531.08 23.45 531.83 24.53 524.38 26.38 516.57 25.61 514.56 24.27 503.58 22.63 497.17 21.22 501.43 20.79 510.13 21.44 515.99 20.25 526.2 21.22 528.47" style="fill:#d9dadb"></polygon><path d="M34.52,509.16l-.22-1L32,502.55l-1,1.39-1.14-5.6-.58,7.4-.63-1.6-.93,7.42.77,8.7,0,5.31.49,4.11.13,5.88,1.18,2.38-.21-5.18,1.41-.75.66,6.17L33.34,528l-.65-5.87.43-8.7Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M29.32,505.74l.58-7.4-.64-10.4.43-4.84-.23-12.3-1.2,2.78-.52,6.13-.78-.9-.73,5.28-.37,9.74.67,1.9-.05,12.63-.94,6,.21,5c-.05,2.26-.09,4.51-.1,6.77l.58,7.39.58.22.3-2.27.47,2.88.32-1.52,1.21,2.69h0L29,529.68l-.49-4.11,0-5.31-.77-8.7.93-7.42Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M23.12,516.19c0-1.34.08-2.76.11-4.18l-.12,1Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M23.12,516.45v0Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M23.51,509.75l-.08-5.21c-.07,2.57-.13,5-.2,7.47Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M30.09,429.29,28.41,439l-2.86,22.94V462L25,467.83l0,.18c-.49,6.14-.81,13.16-1.07,20.31l.11,1.77,0,9.14.37-2.88.16,3.74.48-2.68c.08.4.16.8.25,1.21l.54-4.79.37-9.74.73-5.28.78.9.52-6.13h0l1.2-2.78v-1.52L29,467.22l.87-7.59-.06-3.39L29.35,452l.47-5.59.47,1.44.91-3.94-1-4.51-.21,0-.59,2.3-.35-1.1.75-6.81Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M23.42,503.74v.8c.14-5.27.29-10.78.48-16.22l0-.38Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="19.58 409.12 18.23 416.68 18.19 417.31 20.39 404.6 19.58 409.12" style="fill:#d9dadb"></polygon><polygon points="18.48 439.83 19.2 440.55 20 435.48 19.58 434.4 18.67 438.24 18.48 439.83" style="fill:#d9dadb"></polygon><polygon points="13.08 456.03 13.65 449.94 13.65 450 13.1 455.85 13.08 456.03" style="fill:#d9dadb"></polygon><polygon points="69.93 731.6 69.87 731.48 69.93 731.6 69.93 731.6" style="fill:#d9dadb"></polygon><polygon points="66.27 724.71 66.25 724.68 69.87 731.48 68.1 728.14 66.27 724.71" style="fill:#d9dadb"></polygon><polygon points="74.26 739.4 74.05 739.03 74.04 739.01 74.26 739.4" style="fill:#d9dadb"></polygon><polygon points="74.04 739.01 74.04 739.01 74.03 739.01 74.04 739.01" style="fill:#d9dadb"></polygon><polygon points="33.63 363.04 34.43 356.19 32.34 362.12 31.97 366.25 33.63 363.04" style="fill:#d9dadb"></polygon><path d="M51.54,346.81l-1.11,3.12-2.64,7.74-.11.32-.14.43-.77,2.38q1.21-3.71,2.49-7.36l.39-1q1.41-4,2.9-7.94c.43-1.48.92-3,1.46-4.44l-.43,1.13-1.27,3.44Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M46.68,364.64l4-13.57,1.79-6.16.12-.4q-1.48,3.94-2.9,7.94l-.39,1Q48,357.1,46.77,360.8L46,363.28l.77-1.75-1.25,5.7Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M201,182.18l-5,1.39-9.86,5.73L182,190.57l-.93,2.67-3.94,1.81-2.2,2.79,1.9,2.86.95,4.16-4.4,2.07.49,2.41,5-2.09.11,1.44L175.32,212l-.67,2.71,1.12.67,7.14-6,1.13-2.37-1.57-.21.94-2.51,4.11-1,2.44-2.16L188.5,200l2.9-2.95.25-2.27-2.72.81.09-1.86,2.62-1.93-.09-2.94,10.35-4.9C201.6,183.35,201.32,182.76,201,182.18Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M183.32,183.54l1.16-1.17,2.54-6.56c-1.15,1-2.28,1.93-3.42,2.9l-2.41,4.93Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="153.66 193.09 158.9 186.62 159.99 184.38 153.2 189.08 151.39 192.51 153.66 193.09" style="fill:#d9dadb"></polygon><polygon points="225.69 104.44 230.11 101 226.82 102.08 221.33 106.38 225.69 104.44" style="fill:#d9dadb"></polygon><polygon points="221.33 106.38 221.33 106.38 221.33 106.38 221.33 106.38" style="fill:#d9dadb"></polygon><path d="M365.16,60.41l5-.22q.87-.86,1.83-1.68L370,57.74l-2.9.32-2.87.08-7,1.45-4.69,2.74-2.14.7-.14-.7,3.15-1.58-4.62,1.4-3.94,1.93c-1.62,2.45-4.6,3.51-6.17,6L334.48,73c-.34.46-.66.91-1,1.37l2.55-.88,1.58-1,1.33.21-2.83,2-3.48,1-4.1,3-2.82.29c-.29.5-.56,1-.81,1.51l-3.75,1.48-3,3.13-7.55,3.6-.66-.34-5.7.55-5.63,3-1.08-1.19L300,88.32l.7-1.54c-3,.45-3,.45-7.25,2.2l-2.06,2.45,1.07.95-3,3.32-3.16,2.38-2.57,1-6.38,5.54-.53,1.41-3.05,2.34-4.81,7.25,2.48-1.36,3.71-3.49,6.73-6L283,105l-4.62,5.25-3.44,3.21L274.2,115c12.47-6.72,12.47-6.72,14.56-8.24l4.65-4.71,6.44-3.5,4-2.14-.12,1-3.47,3.32-7.19,4.11-1.89,2.81,5.1-2.07,1.11.82,5-2.44.84.59,4.46-2,9.37-8.55-1.78-.49,3-1.2L319.68,90l3.82-1.71,1.51.84,6.21-3,3.3-2.09L336.85,82l-.77-.8,3.56-1,6-4.16c.1-.27.21-.53.33-.8l3.95-1.26,4-2.16c.4-.77.84-1.55,1.33-2.33L352.65,69l2.1-1.23-2.42-.41,6.59-1.26,6.95-2.2L367.5,63l-1.14-1.6-3.94.44-5.15,1.65-2-.35,4-1.57Q362.2,61,365.16,60.41Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="301.29 71.36 302.3 72.23 307.58 70.19 309.23 68.25 305.95 68.6 303.14 69.82 301.29 71.36" style="fill:#d9dadb"></polygon><polygon points="277.59 76.17 279.38 75.87 285.75 72.27 288.84 69.94 292.11 68.37 294.32 66.97 294.55 66.16 301.35 63.21 299.47 63.51 292.25 65.73 288.49 67.31 286.08 67.81 285.54 68.82 281.58 70.68 282.71 71.15 282.8 71.69 283.54 71.88 280.8 73.55 277.59 76.17" style="fill:#d9dadb"></polygon><path d="M287,88.41c.66-.81,1.35-1.62,2.07-2.42l-4,1-2.41,2.25Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M274,96.17l6.71-2.44c.39-.56.79-1.13,1.2-1.69l-4.42,1.74L274,96.17Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="345.76 55.89 346.84 57 345.07 58.42 352.56 55.59 351.36 54.6 354.69 52.91 345.76 55.89" style="fill:#d9dadb"></polygon><polygon points="341.44 42.44 333.93 45.91 333.55 46.63 344.53 42.74 343.16 42.84 343.84 41.91 341.44 42.44" style="fill:#d9dadb"></polygon><polygon points="396.15 27.05 398.88 25.43 396.76 25.09 396.02 24.61 392.92 25.51 386.93 26.87 390.69 25.61 390.97 25.31 387.02 26.06 380.17 28.37 375.82 29.42 380.01 27.93 383.52 26.51 379.66 27.39 372.93 29.48 366.48 30.96 360.34 33.57 358.59 34.67 358.89 35.05 352.14 37.22 346.94 39.47 348.77 39.37 352.11 38.67 347.79 40.33 351.39 39.75 357.28 37.77 358.02 37.21 360.26 36.38 366.37 35.29 376.74 33.28 382.45 31.63 381.49 31.49 373.31 32.91 373.27 32.34 381.33 31.03 384.66 30.12 384.19 29.58 386.42 29.32 391.18 28.11 390 27.83 391.74 27.21 396.15 27.05" style="fill:#d9dadb"></polygon><polygon points="400.02 26.16 406.67 25.14 408.5 24.02 415.71 23.02 420.37 21.58 416.41 21.73 414.51 21.32 415.19 21.01 413.58 20.95 413.42 20.53 408.35 21.44 403.17 22.05 398.93 23.51 403.13 23.49 402.53 23.82 403.46 24.04 403.46 24.04 400.02 26.16" style="fill:#d9dadb"></polygon><polygon points="355.82 41.58 365.39 39.69 367.32 38.67 371.19 39.08 373.12 38.44 373.27 37.56 376.34 36.75 370.31 37.18 368.73 36.94 373.44 35.66 371.56 35.6 367.16 36.7 364.56 37.73 354.97 40.38 355.71 40.64 359.66 39.87 355.65 41.04 355.82 41.58" style="fill:#d9dadb"></polygon><path d="M448.94,86.36l6.51-2.11-1.06-1.72L451.62,82l-3.05,1.25-.17-1.32-3.12.59-3.11.78,4-1.92,2.66-1.52-1.91-.16-2,.83-4.5.14.69-.71,3-.6-1.8-1.41,3.42-.75,1.5,1.49,5.52-.25V77l-2.28-.46,2.48-.75-.65-.71-.66-.68,1.82-1.1-1-1.06c-.8-.39-1.84-1-2.62-1.39l-1.92.38,0-.49-2-1.11-1.36.32V68.89l-2.74.41-1.09.59c.41.41.85.8,1.32,1.2l-.38,1-2.26,1,.27-.9-1.94.47,1.56-1-.9-1-5.93,2.16,2.09-2.17,1.78-1.16-.38-.9-4,1.86-.73-.82.63-.88-4.2.66,6.54-1.93c-1.16-.36-2.69-.92-3.84-1.32l-2.64.85-2.8,1.61-.6-1.2,4.09-1.46-5.78.77.92-1.08-.94-.28-7.35-.64-2.75.73.57.88.49.74-7.58.36.45-2.07-2.79.72-2.14-2-2.79.22L395.15,67l-2.31.47-.63.6,2,1.27-1.8.82-4.19.74,1.45-3-1.51-.34-2.34,1.28L385,70.41l-2.14-.61-3.58,1.67,1.37.78-1.88.91,1.84.13-1.85.95,3.27-.3-.36,2.85-3,2.91-3,.7-5.63,4.14-7.65,2.85-2.06,1.8L355,90.58l-1.81,1.8-2.85.27L348.76,94l-2.39.51-1-.33L343,95.85l.94.82,5.42-1.11-4.49,2.71,1.3,1.06-4.1,2.36-3.43,2.25-1.61-.16,2.45-3.43L339,99l-1.83.2L333.31,104l1.3,2.27-8.31,3.5.21-2.3L317,110.26l-.52,1.88-4.49-.07-6.87,4.38-3.9,3.37,2.23.48-5.57,2-5.56,3.83,1.79,1.18-6.87,3.4-8.18,8.16.63,2-7.67,5.83.9,3.1,4-.3-6.37,5.69,3.3,2.66L287.13,150l5.4-6,7.24-.7,2.75-2.51.36,1.95,2.71-2,2.13-3.2,1.17,1.43,2.62-3.53,6.91-.91,0,2.09,5.93-3.26-2.48,3.44,8.86-.58,10.12-4.12,2.8.3,3.58-1.83-.32,1.59,3.64,1.29,10.75.36,4.77-1.72,2.7.33,6.43-1.6L371,127l-7.13.67-1.19-1.57,5-.81,7.21-2.42,1-2.82,1.89,1,.52,1.65-1.66,2.57,1.68,4.24,7.4-6.86c-.67-.24-1.32-.49-2-.74l2.54-1.07-.79-3.45-1.71-.59,3.53-3.69,6.25-1.16,1.07,2.75,4.46.18-.9-1.78,1.66-2.42,5.55.81,2.57-.73.73-3.42-2.37-.11.26-1.29,3.78-2.35,1.16,2.52,1.56.12,3.19-2.89L414,101.87l2.55-2.82,2.85.11,2,2.21,1.69-.74,3.11-3.84-.55-1.69-3.43.79,7.83-4,3.65,0,2.11-2,2.06.21,1.95-.46-1.6-.93-1.54-.12,1-.87,2.07-.43,2.42,1.09,2.7-.77-2.24-1,2.31-.88Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="423.68 59.18 427.26 57.85 426.44 57.33 424.62 58.23 423.68 59.18" style="fill:#d9dadb"></polygon><polygon points="423.04 56.54 424.94 55.35 422.19 55.95 421.37 56.87 423.04 56.54" style="fill:#d9dadb"></polygon><polygon points="380.79 54.84 382.72 53.55 380.09 53.61 378.21 54.7 380.79 54.84" style="fill:#d9dadb"></polygon><polygon points="317.45 93.89 321.17 88.84 314.46 91.25 313.6 93.32 317.45 93.89" style="fill:#d9dadb"></polygon><path d="M437.66,61.3l.13-.7,1-.41c.07-.3.15-.6.24-.89l1.75-.62.25-1.52-2.35-.28.52,0,.09-.15a14.72,14.72,0,0,1,.89-1.23l-2.8-.43-2.29.26c.17-.21.36-.42.55-.62l2.08-.5.41-.74L437,53.31l-2.39.3-.15-.38,2-.23.6-.61-1.37-.18,1.4-.3-1.35-.77-2.05.39-.94.73-1.6.28L430.5,52l-2.78.46-2.93,1.09L426,54l-1.71,0c-.44.43-.87.86-1.27,1.3l1.23.11-1.67.38-.39,1.49-1.65-.21L419.9,56l-2.87.66,3.05-1.23,1.54-1.11-2.56.16-1.59.49-5.36.9L410.54,57l-1.86-.21c.32-.37.66-.73,1-1.09l1.86-.34-.81-.68-3.21-.2-1.3.24-2.33,1.16-3.62.8-1.79,1-1-.71,1.25-.66,3.47-.6c.4-.39.82-.77,1.25-1.15l-4.27.77-1.79.1.79-.69-1.45-.87-3.31,1c-.57.48-1.12,1-1.65,1.45L389,57.5l-.28.87,2.8-.77-1.86,1.28-1.23.43-.6.58,1.7.14-1,.66-2.72.43.67,1,2.13.62,3.05-.9L390,61.59l1-.6,2.05-.16,2.35-.6-.39.87,1.64.13,3.29-.67c-.34.52-.64,1-.92,1.55l6.1,0L407,61c1.77.36,1.77.36,4.06-.32l.16.91,2.37-.48L412,62.23l.33.84,1.31-.42,3.09.43,2.16,0,6.3,1-.72-1.44,2.66-.07,1,1.43,4.21.57,1-.17,1.15-1,2.22-.59c0-.14,0-.29,0-.43l.83-.31-3-.47.74-.52Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M426.64,51.53l6.25-.68,1.23-.54-1.48-.14-.12-.43-3.39-.61-2.88.65.8-.68H425l-4,.72-1,1.08-2.65.74,1-1.05-1.07-.21L414,50.8l-1.11.78-.61-.31-2.42.57c-.44.33-.87.65-1.28,1l2.63-.06-3.32.61c-.23.18-.45.37-.67.56l4.75-.29L413.51,55l2.87-.37c.35-.34.73-.69,1.11-1l1.58.1,3.27-.58-.32-.46,2.57-.2Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M396.37,53.22q.86-.64,1.77-1.29l2.34-.54,3.57-1.31.24-.77c-5.71,1-5.71,1-7.94,2.13l-.42.6-5.44,1h-1.1l-2.69.18L382,54.48l1.19.25-2.34.61-.4.76.36.72-2,.17a47.76,47.76,0,0,0-3.9,3.69l2-.11-2.79,1c-.72.81-1.38,1.62-2,2.45l2.08,0,2.06-1,2.45.32,2.59-1.75,1.8-.3-.63-1.1,2.6-1.18-1.36-1.38,2.37-1.05-.23-.84,4.27-1.31,3.11-.64-.29.56Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="424.64 23.16 420.86 23.85 421.47 24.19 418.75 24.25 420.02 24.89 419.52 25.89 416 25.86 416.92 26.38 416.92 26.38 416.95 27.11 421.17 26.88 420.63 26.63 423.51 25.79 423.5 24.7 424.98 23.6 424.64 23.16" style="fill:#d9dadb"></polygon><path d="M420.25,40.12l1.85-.64,2.06,0,2.43-.87-2.22.17,1.13-.62L425,37.8l-2.43.25,1.54-.67L423,37.21l-4,.82-1.91.51.4.5-3.68.81.54-1-2.4.46c-1.06.36-2.12.73-3.15,1.11l.22.74-1.61,1c-1.34.53-2.65,1.07-3.92,1.63l4.33.3,3.2-.77-1.76-.19,3.66-.6,4.43-.15,2-.31-.81-.74-3.38.32-.62-.22-2.88.36,4-1.26Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M376.4,56.37l1.31-1.62,3.81-1.29.81-1.26-7.41.64-6.12,1.45-1.5,1,5.37-1-4.16,2Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M410.69,45.08l.91-.42-5.66.48-4.41.86-1.83.88-.46.95-2.18-.16-2.74.35-2.4,1.69,2.95-.38,2.36.08,5.58-.42,2.26-.76-1.53-.14,1.95-.42,1-.53-2.93.14,3-.64.72-.41-3.51.35-.83-.12,4-.67Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M385.3,52.61l4.16-.17,2.29-.73,1.24-.8-1.92-.36-4.23,1.14Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M422.33,44.61l-1.16.77-2.13.86-3.48.32L414,47.4l1.56.09,3.61-.31,3-.29.54-.28,2.33-.28,1.2-.59,2.58-.25c.79-.38,1.6-.74,2.42-1.11l-2.82-.07L426.8,45l-3,.18,1.19-.83Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="383.77 32.84 384.83 31.89 377.78 33.46 381.16 33.65 383.77 32.84" style="fill:#d9dadb"></polygon><path d="M423.91,41.72c.54,0,1.07,0,1.61,0l1.61.46,2.95-1.48-1.29-.44a15.58,15.58,0,0,0-2.47.3A19.45,19.45,0,0,0,423.91,41.72Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="403.09 38.03 408.32 36.5 408.86 35.82 400.85 36.65 400.34 37.97 403.09 38.03" style="fill:#d9dadb"></polygon><path d="M425.49,48.07h2.93l2-.65-3.11-.2-.87.48Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="395.54 39.12 398.34 37.59 397.24 37 392.87 39 395.54 39.12" style="fill:#d9dadb"></polygon><polygon points="388.24 41.84 390.75 41.78 392.48 41.16 392.9 40.43 389.58 40.79 389.12 41.43 388.24 41.84" style="fill:#d9dadb"></polygon><path d="M420.33,44.27l1.18-.52-5.54.34-2.84,1Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="420.92 30.16 422.65 28.82 421.29 28.8 416.5 30.54 420.92 30.16" style="fill:#d9dadb"></polygon><polygon points="420 28.29 422.17 28.11 422.35 27.82 419.02 27.71 419.02 27.71 420 28.29" style="fill:#d9dadb"></polygon><polygon points="388.13 33.19 388.19 33.68 390.12 33.43 391.62 33.03 390.23 32.74 388.13 33.19 388.13 33.19" style="fill:#d9dadb"></polygon><path d="M535.09,23.45l-6.94-.29-3.38-.09-.89,0h-.23c4.51.12,9.11.26,13,.43Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M499.54,23.34l1.44-.11.44.08,2.41,0,3.23-.19h4.7l5.79-.09,2.48,0h3.62l-10-.23c-9.51,0-9.51,0-28.38.69-9.47.51-9.47.51-28.38,2.36l-2.62.31a21.52,21.52,0,0,1,2.41-.17l4-.44,3.25-.28,5.81-.58,2.89-.21c1.29-.1,2.58-.21,3.87-.3l6.36-.36,2.52-.17,1.6-.06.56-.06,3.34-.11.83.05,3.13-.05,1.13-.12-2.18,0,.32-.1,3.83-.06-.3.09Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M391.34,37.9,391,38l-5.78,1.5h0l-3.68,1,.55-.07-.19,0,10.52-2.81Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M394.71,37l-2.25.6,6.1-1.51c-3.1.86-7.27,1.94-10.35,2.89l-2,.52.18-.14-5.72,1.66-2.12.38,3.42-1c-11.47,3.09-14.32,4-24.3,7.29l-14.26,5.1-4.76,1.82,1.36-.59c-10.84,3.95-15.29,5.82-26.74,10.85-29.07,13.86-33.53,16-55.6,29.13-14.44,9.44-33.41,22.49-47.27,32.76l.07-.06-5.79,4.63,2-1.27-3.56,3.22L196.27,139l-2,2-8.75,7.63L176,159l-8.34,8.38-2.68,2,7.36-7.72-9.78,9,0-.64-4.28,4.11.83.05-1.7,2.74,3.54-2.75-1.76,3.72-.6.81,3.74-1.82a56.5,56.5,0,0,0-3,7.83l2.62,0,2.89-3,4.62-2.46,1,1-1.42,2.35-7.22,6.32-3.58,4.93,3,2.24-2.13,2.36-5.52,2.11-5.4,6.34,4.6-1.1,3-2.21-.07,3.82,4-.26,3.26-5.7-1.88-.25,4.74-9.19,2.71-2.65,1-2.23,4.31-3.28,1.43-4.94,3.21.1-1.33,2.44,1.23.27,3.87-3.17.88-3.55-.88-1.65-6.24.29-4.22,1.63,8.29-6,5,.35,3.5-1.26,1.73,5-1.77,8.49,5.18-1.29,3.5-2.11,3,1.43,4.4-1.29,1.3.26,5.25-4.75,1.69-3.23-.74-1.13,3-2.2-.19-1.9-4.7-.27,5.19-3.81,4.71,1.39,2.43-2.88-.66-2.75,2-1,.14-2.29,3.92-3.34,2.07-4.09,2.26-.83,1.14-1.83,3-1.36,6.6-5.79.94-2.19,3.53-1.81.57-1.57,2.59-1.19,6-4.8.9-1.24-9.34,4.67-.11-.85-4.8.3,2-2.31,5.33-4.66c.05-.27.1-.54.16-.82l11.51-5.75,2.17-2.19.62-2.29,3.56-1.78,7.39-6.26-1.74-.38c.28-.62.57-1.24.88-1.85l3.57-1.61.92-2.22L278.54,96l-6.22,3.57-1.79.32-3.6,2.21-3.39,1.38-3,2.19-7.89,2.53-10.88,8.33-10.51,5.55-3.71-.69-6.71,5.22-4.28,2.61L209.23,135l-.12-.51L204.2,138l2.55-2.5-1.36.38,9-7.94,14.09-9.74,3.17-1.53,2.83-2,4.47-4.68-1.11.19,3.47-2.11,7.82-6,7.77-5,7.14-5,1.68-1.73,3.2-1.52,8.35-4.45L279,83.17l-.89.29,4.8-2.57,8.42-3.72,4.85-1.63.64.15,2.27-1.06.23.38,2.65-.86-2.2,1.55.61.24,5.73-3.19,3.27-1.33-5.72,3.39,2.83-.68-2.76,1.46-.16,1.09,4.82-1.17,4.6-3,5.2-2.89-1.12,2-5.19,2.79,3.47-.59,3.7-1.32L317.32,74l-2.32,1-1.8,1.59,2.55-.85-2.2,1.55,2.31.27-.27.53,2.82-.7,5.61-3,2.13.5,2.4-1.14,1.32,0L334.08,71l3.67-3.37L333.19,69l-2.46.31-3.93,1-2.6-.21,6.32-2.64,3.68-.79,5.27-2.34-5,1,2-1c2-.54,4.06-1.05,6.1-1.56l4.64-2.38,3.4-.59,4.57-1.67,8.18-2,3.3-1.5-2.18-.72L359.57,55,355,56l-6.66,2.76-3.31.73-.67.68-3.35.68v-1l-2.17.26,3.41-1.33L346.35,57l-4.44,1.38c2.76-1.47,6.39-3.5,9.19-4.88l5-1.75,1.48-.88,7.65-2.46,3.35-1.65-2.15.4-2.68,1.11-2,.22,2-.79-.74-.09,5-1.24,3.35-1.66,9.7-3.16,1.51-.28-1.9.78,2.94-.7,5.45-1.7,7.87-2,3.91-1,3.64-.7,3.63-1-.47-.09,2.88-.72,3.14-.27,2.2-.54-1.86,0,4.28-.83,2.2-.24,4.66-.72-1.88.11.31-.28,2.82-.62,2.2-.37-2.1.6,1.09-.1,2.94-.63,1.44-.44-1.25,0,1.42-.32,2.56-.4-1.68.39.88,0,2.19-.47,2.74-.4,2.5-.44.75-.17-2,.27h0c-4.52.66-9,1.35-12.9,2C406.57,34.16,405.76,34.31,394.71,37Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M345.09,52.18l2.08-.84-5.53,2h0l-1.66.71,3.4-1.23Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M448.85,27l-8,1.09-1.95.28,1.12-.11c3-.44,6-.87,8.84-1.26Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M456.63,26.05a21.52,21.52,0,0,0-2.41.17l-5.33.73,2.67-.3Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="198.55 114.75 197.65 115.47 198.47 114.82 198.55 114.75" style="fill:#d9dadb"></polygon><polygon points="192.59 119.51 192.75 119.39 192.76 119.39 197.65 115.47 191.91 120.05 192.59 119.51" style="fill:#d9dadb"></polygon><polygon points="168.61 140.22 172.05 137.09 172.05 137.09 168.61 140.22" style="fill:#d9dadb"></polygon><polygon points="176 133.97 179.39 130.66 183.77 126.9 184.53 126.18 183.99 126.62 174.59 134.79 172.05 137.09 171.46 138.18 176 133.97" style="fill:#d9dadb"></polygon><path d="M110.68,232.47l1.1-1.1.1.52,2.2-2.94.61-.46,1.86-2.47.89-.91,4.55-6.05,7-9.34,3.85-4.16-1.32,1.86-3.69,4.78-3.54,4.38,1-.53,2.71-3.15,3.45-4.58,1.43-1.08-3.32,4.25,2.83-2.5,3.16-3.75-.54,2.88,2.43-1.81.75-2.36,2.51-2.11-.32,4,3.06-4.15,4.07-3.75,4.63-1.72,3.18-2.52.06.77-1.66,2.27,1.64.15,3.06-3,3.57-4.92,7.22-6.32,1.42-2.35-1-1-4.62,2.46-2.89,3-2.62,0a56.5,56.5,0,0,1,3-7.83l-3.74,1.82L156.9,181,154.09,183v-2l-1.68,1.23-.26-1.34,4.94-5.35C138.93,194.54,133.9,201.16,110.68,232.47Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M167.18,165.64l2.37-2.71,2.79-2.28,3.71-3.46,3.19-3.41L177.65,155,174,158.35l-6.16,6-.58.59c-3.1,3.2-5.85,6.07-8.37,8.7l3.75-3.6Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M108.72,235.08l-.21.31,2.17-2.92-.14.14Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M158.33,174.13l-1.25,1.36,1.78-1.87Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="423.16 223.71 426.34 229.11 430.1 223.64 428.72 220.72 426.5 223.42 423.16 223.71" style="fill:#d9dadb"></polygon><polygon points="417.77 172.55 412.46 173.87 415.13 176.03 417.77 172.55" style="fill:#d9dadb"></polygon><polygon points="485.11 129.07 481.03 130.9 484.11 132.64 485.11 129.07" style="fill:#d9dadb"></polygon><path d="M473.39,222,471.72,230l4.45-4.18.18-2.16h0l2.38-3.26Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="563.16 135.53 564.82 132.67 559.85 132.68 559.52 135.05 563.16 135.53" style="fill:#d9dadb"></polygon><polygon points="568.42 87.79 568.42 87.79 568.42 87.79 568.42 87.79" style="fill:#d9dadb"></polygon><path d="M583.16,134.81l1.18-.94,5.39-1.23-5.51-1.74-8.31-6.19.57-3-3.66-1.39.22-1.26,2.66-.13-.44-1.95-2.13-.8,1.81-1.21-2.77-2.69.9-1.29,1.94.42.17-1.2-1.81-.73.76-2.14,4-4,0-.8,2.23-2.84-1.22-1.6-2.32-1.11-2.12.76.84,2.16-3.57,3.18-2.73.33.14,1.56-2.51,2.45,1.14,1.66-1.28,3.21,2.78.54.36,2.73-3.1,2.61,2.06.78,2.52,7.36-1.81,2.09.74,1.76,6.32,1,1-.42,2.27,1.7-.56,2.11Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="565.37 62.16 569.05 61.97 566.66 60.6 567.39 59.05 564.39 57.99 558.38 57.9 559.44 58.69 559.6 59.78 562.64 60.68 562.51 61.2 565.37 62.16" style="fill:#d9dadb"></polygon><polygon points="567.86 64.09 570.59 64.18 570.13 62.86 568.73 63.13 567.86 64.09" style="fill:#d9dadb"></polygon><polygon points="569.75 60.99 570.36 61.56 572.85 63.43 573.63 63.03 576.82 63.62 578.43 62.62 580.25 62.63 580.94 61.04 577.75 60.41 573.16 58.62 571.59 59.28 572.28 60.31 570.28 59.78 569.75 60.99" style="fill:#d9dadb"></polygon><path d="M599.67,75.15l.35-.48-1.5-1.32,1-1.2-2-2.13-5.07-.23,1.44,1-3.63-.92-1.38.12L594,72.24l-.34.51Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="588.49 58.18 591.7 58.07 589.42 57.2 586.77 56.91 588.49 58.18" style="fill:#d9dadb"></polygon><polygon points="598.8 39.36 604.4 40.16 607.12 39.62 606.58 38.72 601.86 36.83 602.67 36.56 600.51 35.64 594.52 34.3 593.81 35.15 595 36 593.69 36.66 598.5 37.35 595.7 38.34 598.8 39.36" style="fill:#d9dadb"></polygon><polygon points="611.85 38.83 615 38.64 614.34 37.04 612.44 36.66 609.41 36.99 610.48 37.96 609.48 38.62 611.85 38.83" style="fill:#d9dadb"></polygon><polygon points="594.68 31.74 592.76 31.15 590.65 30.89 591.64 31.87 593 32.35 591.87 32.43 594.07 33.34 592.85 33.58 595.89 33.95 596.21 33.33 595.88 32.98 596.37 32.67 594.68 31.74" style="fill:#d9dadb"></polygon><polygon points="553.67 14.85 549.98 14.49 550.84 14.91 555.49 15.48 560.41 15.94 561 15.79 557.76 15.4 553.67 14.85 553.67 14.85" style="fill:#d9dadb"></polygon><polygon points="749.45 79.98 745.84 78.05 740.1 74.9 743.57 76.98 748.6 79.71 749.29 80.24 759.55 86.26 762.75 88.12 765.23 89.73 775.42 96.45 761.88 87.5 755.07 83.34 749.45 79.98" style="fill:#d9dadb"></polygon><polygon points="878.82 191.73 878.34 191.13 878.79 191.69 878.82 191.73" style="fill:#d9dadb"></polygon><polygon points="888.09 203.48 887.4 202.6 887.58 202.82 888.09 203.48" style="fill:#d9dadb"></polygon><polygon points="880.33 193.59 885.48 200.11 887.4 202.6 886.62 201.59 885.11 199.63 885.26 199.83 880.51 193.81 880.33 193.59" style="fill:#d9dadb"></polygon><polygon points="477.22 141.09 477.22 141.08 477.22 141.08 477.22 141.09" style="fill:#d9dadb"></polygon><path d="M515.23,154l2.93-3,2.3.47-.62-3.18h0l-4.08-.77,4-2-6.13-3.3-2.62-.75-1.71-.51-1.14,1.59-1.58-.77-3.89,5.92-.57-2.71.77-2.88-4.63,2.35-1.33,4.12-1-1.62L493,145.78l-2.59,1.08,2.36,1.1-.85,2.6-4.37-2.87-3.28,1.69.69,2.37-2,.59-2-2.22-1.51,1.56-2.69-.12,2.65,3-4,2.24-.28-3.45-1.73.28-.78-1.17-8.09,7.07,6.44-2.27,1.73,1.51-4.5,2,1.55,1.8-3.57-.09-4.61,2.36.71,1.73L457.92,168l-3.48,5.55-.12,2.26-8.16,3.75,3.72,2.67-4,1.68-2.08-1.4-1.72,1.19L440,180.92l-2.14,2.49.43,4.23-2.2,1.14-1.23-3.18-3.36.41-4,5.17-4.61-1.35,1,2.71-2.36.69-.29,1.76,7,.28,1.93,3-10.64-.18,2,2.16L419.08,202l3,1.82,4.64-1.43-4.07,4.51-5.5-.69-1.05,6.16,4.92,2.94-1.32,1.81,6.27-.84,1,1.2,6.16-4.27,1.75-.17.32-2.81,3.07,1.2,2.12-4.07,2.48,5.82,0,.57,2.5-1.29.34-4.09,4-1.2-.24-6.32,2.26.13,1.5-2.9-2.32-3.37,1.05-3,.3-5.94,4.83-4.8,4.24,1.28,1.12-3L461,177.18l4-3.25c.33-1.64.67-3.27,1-4.89l3.37-.7.08-1.29,3.42-2.11.51-2.87,4-2.95,2.7.74,1-3.18,4.51,1.51,1.53-.66-.31-3.78,2.21-.68,2.75-.88,1,1.28,1,1.27,3,.48,1.71-.91,4.06,2.26,2.7-2.44-1.28-2.39,1.69-2.81,4.73-1.34,3.5,2.33-.79,1.89Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="423.25 219.66 423.25 219.66 423.25 219.66 423.25 219.66" style="fill:#d9dadb"></polygon><polygon points="421.86 214.28 424.25 212.01 425.11 208.76 415.89 211.37 416.56 213.82 411.29 215.45 409.34 223.05 411.42 225.38 410.92 230.03 417.41 231.01 415.31 228.04 419.19 222.52 421.67 218.71 423.25 219.66 425.68 216.45 421.86 214.28" style="fill:#d9dadb"></polygon><path d="M499.17,170l-1.22-2.5h0l1.2-1.69-1.68-2.05.87-1.44-1.72-.6.94-2.1-3.07-2-2.42,0-1.82-1.68-1.13-2.81h0l-2.21.68.31,3.78-1.53.66-4.51-1.51-1,3.18-2.7-.74-4,2.95-.51,2.87-3.42,2.11-.08,1.29-3.37.7c-.33,1.62-.67,3.25-1,4.89l-4,3.25,1.41,2.12-1.12,3L457.07,181l-4.83,4.8-.3,5.94-1.05,3,2.32,3.37-1.49,2.9h0l-2.26-.13.24,6.32-4,1.2-.34,4.09-2.5,1.29-.56,7.54L445,226l2.14,2.14-.66,2.17-1.89.09,2.13,4.69-1.52,2,6,.95,3.36-5.52,5.49.8,3.36-6.92,2-2.52L464,221.44l2-.22.38-1.91-1.58-1.2-.18-2.54,5.75.39,4-2.41-6.74-1.71,4.12-3.16,1.69,2.4,4.24-1.23-4.25-6-3.27-.8.27-6.28,1.92-.31V191.2l4-2,5.13-4.59,4.88-1.42,3.7-4-2-2.33,1.88-1.6-.85-1.43,2.75-1.05-.46-2.26,1.83-.71Zm-48.54,47.18-4.27.26,2.9-4.12,2.1-1,3.62-.47-.42,2.91Zm8.07,1.1-4.58,4.94.41-5,4.37-3.92Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M526.86,186.09l-4.22-2.24,2-1.73-.33-1.63L521,179l.64-2.18-2.52-2.72,1.76-2.67-5.3-7.41,2.52-2.11.37-2-2.45-2.35-2.63-.35.25-2-.92-1,1.45-1.39-1-1.08.79-1.89-3.5-2.33-4.73,1.34-1.69,2.81,1.28,2.39-2.7,2.44-4.06-2.26-1.71.91-3-.47-1-1.28-1-1.28-2.75.88h0l1.13,2.81,1.82,1.68,2.42,0,3.07,2-.94,2.1,1.72.6-.87,1.44,1.68,2.05-1.2,1.69,1.22,2.5h.47l4.15,2.52.6,3.41-3.28,1-3.45,4.85-1.37,1.35-1.81-.79-1.54,3-4.06-.18,1.38,3-2.59,1.5,2.13,7.8L488.26,204l4.09,2.42,2.12-1.29L496,206.7l-1.53,2.74,7.22-2.28,2.23-.06,2.5-1.8,1.11.92,2.62-2.72.64,1.3,4.77-1.28h0l.64.32,11.14-12.68h0l1.27-2.95Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M307.08,332.41l5.75-3.17-1-4.64-7.51-.24.9-4.76-4.53,2.21L298,331.47l-7.18,9.31-1.3.09-2.2,4.6,2.38,2.38-3,9c2.78.63,5.59,1.24,8.43,1.85l4.63-6.76L298.62,350l3-1-1.7-4.82,3.88-1.9Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M352.79,339l7-1,8.17-4,1-2.63-4.87-1.9-3.12.87-5.08-5.74-3.13,1.72-4.94-1.48L342.48,318l-7.1-.65-2.56-2.1-5.24.15-6.49-3.58-6.84.13-3.53-3.11-8.82,3.6-.5.3-.67,9.11,4.53-2.21-.9,4.76,7.51.24,1,4.64-5.75,3.18-3.3,9.87-3.88,1.9,1.7,4.82-3,1,1.21,1.93-4.63,6.76,3-1,2.36,4.89,0,5.94,3.84,1,.1,0,7-3.6,11.38.28,2.4,2,6.19-6.49,4.42.62,1.48-4.33,6.2-3.12-2-3.57,1.93-3.9Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M399.34,274.22l-2.68,2.66,0,.15,1.55,4.06c4.59-3,4.88-3.1,5-3.18h0a20.85,20.85,0,0,0-2.29-2.18C400.46,275.22,399.91,274.71,399.34,274.22Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M410.23,292.27,408,294.08l-4.71-.21-3.08-.16-.07.2-.51,2.18-5.08,2.73-3.85,6.26,6.82-2.66.6,3.4,4.72,1.26,1.79-3.25,2.56-.53,2.4,4.9,3.16-4.45,3.25,1.77,4.5-4.47-6.23-2,1.2-4.55Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M399.61,296.09l.51-2.18.07-.2,3.08.16,2.84-6.27,4.81-3,.79-2.22q-3.54-.3-7-.63l-3.49-2.33a18.27,18.27,0,0,1-2.91,1.7l-.92-2-8.13-3.93-1.74-5q-2.28-.27-4.53-.57v-4.93l-3.37,1.16-2.15,4.92-9,1.3,1.44,2.53-2.91.62-5.42-3.42-3.31-.76.26,7.52-7.11-.12-1.6-3.18L341,276.38l-.12,5.71,6.06,1.48-.81,2.11,4,.43,1.78,1.88-2.42,3.34,1.64,6.41-1.44,11.08L342.48,318l5.33,6.89,4.94,1.48,3.13-1.72,5.08,5.74,3.12-.87,4.87,1.9.63-1.64v0l-1-2.5,2.23-4,5.51-2.49L388,326.81l9.36-4.83,1.34-.7-4.73-4h0l2.73-2.48-2.3-1.64,3.38-3.25-1.5-2.93,1.82-1.19-.6-3.4-6.82,2.66,3.85-6.26Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M401,275.72l.07-.17L402.9,271l-3.18-1.21,1.42-2.12-3.92-2.77-7,1.38-1.06-3.81L383,264.63v4.93q2.25.3,4.53.57l1.74,5,8.13,3.93-.63-2.07,0-.15,2.68-2.66C399.9,274.71,400.46,275.22,401,275.72Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M413,248.68l-2.45,0-7.08,3.19-.57,4.18-3.07,1.06-.19-5.27L394.27,258l-1,4-3.53.25-.57.21,1.06,3.81,7-1.38,3.92,2.77,2.73-2.72-.45-3,4.1-.29,1.71-2.24-.79-2.53,3.05-2.77C412,252.3,412.48,250.49,413,248.68Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="449.18 281.24 447.32 279.39 448.64 277.19 447.72 275.63 447.73 275.63 447.35 274.98 443.17 276.35 437.61 272.83 435.8 275.97 424.61 279.08 423.81 283.8 418.96 281.73 413.38 283.71 403.55 282.54 402.36 287.09 408.58 289.07 411.76 290.13 413.2 288.42 418.5 287.7 419.25 290.6 428.88 291.81 431.19 293.59 433.88 291.11 436.86 292.23 438.44 289.61 443.06 289.64 445.44 284.69 448.32 285.05 448.32 285.05 449.18 281.24" style="fill:#d9dadb"></polygon><path d="M457.89,353.47l2.89.6.7,2.49,2.5,0,.7-2.28L461.62,350l-6.09-3.74-6.84-2.36.09-1.66,2-1.14L450.1,340l-9-1.67-4.09-5-1.72-7-7.05-5.68.35-4.89,1.22-1.45-.86-3.37,6.56-2.39.75.52,1.95-5.61-7-.9-.76-2.9-5.3.73-1.43,1.71-3.18-1.07-4.5,4.47-3.25-1.77-3.16,4.45-2.4-4.9-2.56.53-1.79,3.25-4.72-1.26L396.28,307l1.5,2.93-3.38,3.25,2.3,1.64L394,317.31h0l4.73,4,7.41-3.89,7.59,3.91,1.07,8.76,3.75,3.13,10.78,11.6,3.61.57,2.59,3.12,4.58.8,1.57,3.27,4,2.59,2.73,8.46-4.13,5.54,1.74,2.58,3.16-1.49,2.7-6.14,3.79-.44-.3-3.47L452,358.09l0-3.24,3.09-3.8Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="441.8 261.81 440.84 260.75 437.36 261.96 434.87 259.7 430.36 260.78 428.24 264.19 425.24 263.72 421.29 265.62 423.92 271.17 426.99 271.02 426.99 271.02 426.99 271.02 431.73 277.11 435.8 275.97 437.61 272.83 443.17 276.35 447.35 274.98 447.73 275.62 452.88 276 454.15 272.91 459.12 271 457.79 267.62 452.94 267.99 452.86 264.97 449.07 264.49 447.41 267.62 444.59 264.64 446.12 262.1 441.8 261.81" style="fill:#d9dadb"></polygon><path d="M446.82,257.06l4-6.31-2.59-2.08L447,246.41l1.21-2.1L446,242.66l-1.74,2-2.47-.5-2.66,2.67-6.46.69L429.31,243l-6.5-1-.22,2.29,1.83,4.27-4.25-1.06-3.47,4.11-2.61-3-1.1,0c-.51,1.81-1,3.62-1.5,5.44l-3.05,2.77.79,2.53-1.71,2.24-4.1.29.45,3h0l-2.73,2.72-1.42,2.12L402.9,271l-1.81,4.56-.07.17a13.9,13.9,0,0,1,2.28,2.19c-.21.11-.67.43-2.13,1.48l3.49,2.33q3.51.33,7,.63l-.79,2.22-4.81,3-2.84,6.27,4.71.21,2.25-1.81,5.22,2.25,9.83,1.17,5.58-2h0l4.85,2.08.79-4.73,7.13-2-4.74-6.1h0l-3.07.15-2.63-5.54,3.94-1.91h0l3,.47,2.12-3.41,4.5-1.08,2.5,2.27,1.62-5.41-1.47-2.23,1.49-6.19Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M500.21,276.81l.76-3.18-3.72-4.37.57-5-3-.85.89-2.81,3.58-1.19,0-3.23-1.8-2.8c0-1.27,0-2.54,0-3.81L495,247l-10.3.64-7-2.2-.16-.06-5,.26-.69-3.54-9.62,2.38-2.19,2L452.48,248l-1.63,2.8-4,6.31,4.08,3.06-1.49,6.19,1.47,2.23L449.26,274l3.48-1.22.95,1.06,4.32.29-1.53,2.54,2.83,3,1.66-3.13,3.79.48.08,3,4.85-.37L471,283l1.3,1.3,2.69-.93,2.32,1.15,2.92-1.16,2.64,1.39,2-1.34,3.62.69.53.56,2.64,1,1.92.71-.19-4.2,4.29-5.26Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M489,284.64l-.53-.56-3.62-.69-2,1.34-2.64-1.39-2.92,1.16L475,283.35l-2.69.93L471,283l-5,1.92L464.78,288l-5.16-.38h0l.92,1.56-1.32,2.2,1.86,1.85-.11.5,4.78,2.37,4.4-.67,1.19-2.11,4.48-1.05,2.8.57,1.34-3.05h4l1.47,3,4-1.13h0l2.21-6.06Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="515.31 327.55 510.43 329.82 507.88 327.15 505.38 327.68 504.78 337.3 507.73 338.1 512.81 334.04 521.48 334.14 520.36 332.01 516.48 330.07 515.31 327.55" style="fill:#d9dadb"></polygon><polygon points="504.78 337.3 505.38 327.68 501.46 328.49 501.01 331.38 495.72 331.8 493.06 330.19 488.78 332.19 482.77 332.13 480.07 334.45 475.66 334.35 473.93 337.23 469.06 337.81 468.52 341.79 463.19 347.85 468.47 354.58 476.12 354.76 477.86 356.32 468.97 357.86 475.46 364.81 475.71 372.65 480 368.47 485.57 370.91 482.32 361.61 485.78 361.77 483.78 356.6 489.13 356.16 481.63 353.21 482.29 350.07 486.5 350.2 479.57 344.02 479.7 340.2 482.32 338.06 488.16 342.53 487.58 336.93 496.27 335.44 504.78 337.3" style="fill:#d9dadb"></polygon><path d="M448.76,304.21h0l-3-1.12-2.69,2.48-2.31-1.78-2.61-.31-1.95,5.61,1.28.87q6,.3,11.9.51l6.23-5-.67-3.82-4.62,0Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="454.85 323.9 447.44 317.06 443.21 320 451.58 324.87 454.69 323.9 454.69 323.9 454.85 323.9" style="fill:#d9dadb"></polygon><path d="M455.66,317l2.09-1.86,7.44,1.15,2.12,2.3,3.83-.08-2.07-8.86-3.57,2-4.89-2.16-5-4.06-6.23,5q-6-.21-11.9-.51l-.54,2.8,2.36,4.57,2.29-3.89,1.57,1.07,2.28,7.26,4.5,5.6,9.38,1.68L450,316l2.75-1Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="454.85 323.9 458.98 329 458.99 329.04 461.68 326.39 463.63 324.46 459.55 316.38 455.95 319.18 454.85 323.9" style="fill:#d9dadb"></polygon><polygon points="459.24 306.55 459.24 306.55 455.41 306.63 453.3 304.33 445.85 303.18 443.76 305.04 440.8 303.03 438.05 304.05 447.44 317.06 454.85 323.9 455.95 319.18 459.55 316.38 461 312.97 457.76 310.61 461.1 306.61 459.24 306.55" style="fill:#d9dadb"></polygon><path d="M494.14,294.2l-4.68-2.53-4,1.13-1.47-3h-4l-1.34,3.05-2.8-.57-4.48,1.05-1.19,2.11-4.4.67L461,293.72l-.75,3.31-2.88-.36-2.38,5,.67,3.82,5,4.06,4.89,2.16,3.57-2,5.42-2.49,8.42-.14,1.11-2.2,2.06-1.42,3.2-6.42,3.27-.68h0Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="482.75 319.72 479.28 317.55 478.2 314.71 481.34 309.22 478.75 307.62 476.25 308.72 472.28 307.1 473.43 304.15 468.76 301.88 469.64 299.87 462.6 295.2 457.18 297.69 459.24 306.55 459.24 306.55 461.1 306.61 457.76 310.61 461 312.97 459.55 316.38 463.63 324.46 461.68 326.39 461.73 326.41 467.14 329.58 471.5 327.99 477.91 326.61 478.1 326.52 478.01 322.03 481.19 322.92 482.75 319.72" style="fill:#d9dadb"></polygon><polygon points="461.73 326.41 461.68 326.39 458.99 329.04 457.94 340.6 461.21 345.3 463.18 347.85 468.52 341.79 469.06 337.81 465.76 334.22 467.14 329.58 461.73 326.41" style="fill:#d9dadb"></polygon><path d="M490,338.59v-.09l-.19.09L483.4,340,479,341.56l-1.38,4.64,3.3,3.6,4.87-.59,1.73-2.88,4.41.11,2.7-2.33h.47l-1.41-3.56-2.7,0Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M525.23,328.67l3.66-1.41.26-2.24-4,.19-4.64-2.66-6.12,1.89L510.57,328l-6.19-1.52-1.56,1.72-8.18-1,.57-3.1-2.84-1.34-2.27,4,1.08,2.83,3.47,2.17-1.56,3.2L489.9,334l.1,4.49v.09l1,2,2.7,0,1.41,3.56,5.54.05,4.28-2,2.65,1.61,5.3-.41.44-2.9,6.43-1.34,2.55,2.67,4.88-2.27L523,334.38l2.23-2.21Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M502.82,328.19l1.56-1.72,6.19,1.52,3.83-3.55,6.12-1.89,4.64,2.66,4-.19.05-.47.83-8.05-6.09-4.31,1-7.34-1.41-4.42-3.1-2.27-3.53-6.39-3.76.14-1.59,2-3.48.11-2.05,2-3.44-2.81-7-.8-1.44,1.86-1.59,2.12-3.27.68-3.2,6.42L484,304.84l-1.11,2.2-8.42.14,7.05,4.67-.88,2,4.66,2.27-1.14,2.94,4,1.62,2.5-1.1,2.59,1.6-.87,1.54,2.84,1.34-.57,3.1Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M537.29,307.51l-4-8.93-3.34-1.33.77-3.19-1.11-1.93-4.59-.71-3.26-2.49-4.12.28-2.26,2.62,1.58-.06,3.53,6.39,3.1,2.27,1.41,4.42-1,7.34L530,316.5h0l4.44-.24.58-3.25-1.49-1,1.06-3.21Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M574.12,298.63l3.66-3.77,3.79-.56,2.23-5.49q2.9-.33,5.76-.69l.42-2.27-2.55-3-.39-3.13,1.61-1.66-.72-2.83-5.39,1.05-5.31-2.66-1.38,2.06-4.14-3.88-3.19,2-5.52,0-1.32-1.29.13-2.4-1.43-2.31-6.13-.24L553,264.8l1.18-2-3.38-3.68-7.4,1.26-.62,2.34-6.07-.88-1.48,3.57,1.14,2.6-2.4,1.86-2.43-2.75-4-.8-1.25,2.5-3.2-2.27-2.44,2.54-3.18-3.4-6.64-.84-9.2,0-.72,3-3.55.65-.08.72,3.71,4.37-.76,3.18-2.52.05-4.29,5.26.19,4.2-1.92-.71-2.21,6.06,4.68,2.53,1.44-1.86,7,.8,3.44,2.81,2.05-2,3.48-.11,1.59-2,2.18-.08,2.26-2.62,4.12-.28,3.26,2.49,4.59.71,1.11,1.93-.77,3.19,3.34,1.33,4,8.93,2.7-5.4,3.64-2.18,4.11.26-1.62,3.59,3.3,1.47,5.06-1.58,3.4,1.94L551,310.34l1.64,1.5,5.19.56,1,5,3.39.37,2-3.11,3.48-.19,1.53-2.11c1.67-.15,3.34-.32,5-.48l-.15-4.4-6.83,2.43-5.18-5.55,6.71-5Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="480.23 235.22 480.23 235.22 480.23 235.22 480.23 235.22" style="fill:#d9dadb"></polygon><polygon points="480.23 235.22 480.23 235.22 480.23 235.22 480.23 235.22" style="fill:#d9dadb"></polygon><rect x="480.23" y="235.22" style="fill:#d9dadb"></rect><path d="M489.94,241.88l-4.2-1.92.2,1.95c-2.13,0-4.26,0-6.39,0l-2.06,3.5,7.16,2.26,7.47-.45h0l2.45-5.38Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M513.48,241.05l-2-1h0l.62-1.81-3.64-4-3.43-.45-1.67-2.06-1.93,2.15-4.48-.91L495,234.44l-4.85-2-4.89,2.69.42,4.41,0,.38,4.2,1.93,4.63,0-2.45,5.38h0L495,247l2.54,2.53v.88h5.33l2.58-2.95,1.37,2.23,2.44-.07-.22-6.44,3.2-.11Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M544.19,252.52l-1-3.11-6.95-3.25-3.05-4,0-5.4-3.64-2.21-4.09,2.53h0l-1.66-3.51-4.11,0-1.7,0-1.6,3.22-2.85-1.46-1.39,3-.62,1.81h0l2,1-1.29,2-3.2.11.22,6.44-2.44.07-1.37-2.23-2.58,2.95h-5.33c0,1,0,1.95,0,2.93l1.8,2.8,0,3.23-3.58,1.19-.89,2.81,3,.85-.48,4.3,3.55-.65.72-3,9.2,0,6.64.84,3.18,3.4,2.44-2.54,3.2,2.27,1.25-2.5,4,.8,2.43,2.75,2.4-1.86-1.14-2.6,1.48-3.57,3.91.57v0l-3.81-8.67,4.91.9Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M512.14,224.16l-2.49.82-4.43-3.11-3.77,1.79-.17,1.79c-1.86,0-3.72.08-5.59.1L493,222.3l-4.11,1.19L485,231.7l.31,3.46,4.89-2.69,4.85,2,1.89-1.48,4.48.91,1.93-2.15h0l1.66,2.07,3.43.45,3.64,4,1.39-3,2.85,1.46,1.6-3.22,1.7,0h0l0-.24-1.29-3.76-2-.42.12-2.2Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M517.46,212.34,516,210.8l-4.35.18-4.92-1L497,213l5,5.54-.48,5.09,3.77-1.79,4.43,3.11,2.49-.82,1.82,1.13,1.67-2.84-2.78-3.73,0-3.47,2.54.09Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M914.92,385.74c.69-.59,1.37-1.17,2-1.76l.72-4.62L924,391.69l1.83-1.69-5.59-15.35,3.52.61-3-10.68-1.65-1.25.46-4.37-3.38-6.89,1.59-9.28-1.7-6.73-4-1.11-1-3.6-3.42-2.69v7.14l-2.68-.15-.51,5.62-1.73,2.09,1.07,5.21-1.43,4.87,4.06,6L903.43,363l-2.81-1.22-1.56,4.77-5.16-1.9-1-3.3-1-3.23-2.59,4.08L891,369l2,1,.82,4.51-3.72,1.83-9.15.84-1.2-2.61-3.46,0-2.42,3.25-6.5-2.41-1.22,2.3-11.22-3.5-.36-5.39-1.13-1.95.78-4.81-8.77-2.45-2.1-2.69-3,.77L834.82,350l3-1.56.9-2.23-2.35-3.39-5.17-3-1.78-2.58.52-3.08-5.05-.93-4.2-5.78-2.27,1.14-5.39-.67-3.45,2.67-.89,4.24q-2.43,1.11-4.91,2.19l-.81,5.06,5.91,10.79,5.8,3.35,3-1.34,3.78,2,.52,4.67-2.06,3.37,2.9,4.14-1.74,7.1,1.75,13.21L819,392.1l.26,7-4.62,5.25-3.42-3.2-2,8.9.87,3.73,4.73-1.72,2.89,8.74,3.39-1.33,5.51,8.47-13.31,4.7-.63,6.05,6.4,4.25,6.35-4.8.56,6.33-6.33,3.78,8.81,6.69,4,1.52,6.31-6.85-.16-10.6,5.63,12.17.6,8,3.49,3.81.13,4.67,4.14,7.5,2.68,8,6,9.62,3.75,3.46,3.16,5.7,1.53,5.14,4.14,9,3.83,3.88,4,8.69,1.87,1.3.09,3.58,1.64,4.26,4.08,5.56,4.45-5.12,1.48-6.78,2-1.9-.12-3.25,1.08-5.26,1.69-.73-1.27-9.06-1.1-.62L898,499.7l-1.12-9.22-3.1-5.86-1.64-6.81-.16-5.3,3.35-7.74,4-4-1-3.71,4.81-14.12.46-8,1.12-3.62-1.35-5.3,2.94,1.46,2-4.17.26-6.22-2.28-5,1.7-6.4-.74-7,4.32,4.08,1.1-.79v0l-5.17-7.44q-1.44-3.45-2.91-6.87l-3-.47c-.52-1.2-1-2.4-1.58-3.6l2.33-4.16-3.71-2-1.57-5,5.66-.74q1.19,2.55,2.36,5.11l2.31-.9,1.63-2.34,1.9.36,1.47-3.82,3.25,3.53-2.24,7.61Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M924,391.69l-6.28-12.33L917,384c-.67.59-1.35,1.17-2,1.76l-1.57-4.65,2.24-7.61L912.34,370l-1.47,3.82-1.9-.36-1.63,2.34-2.31.9q-1.17-2.56-2.36-5.11l-5.66.74,1.57,5,3.71,2L900,383.47c.53,1.2,1.06,2.4,1.58,3.6l3,.47q1.47,3.42,2.91,6.87l5.17,7.44v0l3.87-2.86-.27-4.31.16-4,1.36-1.22,2.5,3.15,4.23,7.22v-.15c.68-.6,1.35-1.2,2-1.81Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M870.85,361.91,868.91,364l-3.11-2.63-5-.9c-.47-1-.94-1.92-1.42-2.87L856,358.73l-.15,3.73-1.66-.45-.78,4.81,1.13,1.95.36,5.39,11.22,3.5,1.22-2.3,6.5,2.41,2.42-3.25,3.46,0,1.2,2.61,9.15-.84,3.72-1.83-.82-4.51-2-1-1.73-6.72-2,2.2L883.16,363l.11,2.81-6.09-.68Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M892.87,361.38l1,3.3,5.16,1.9,1.56-4.77,2.81,1.22,3.05-3.55-4.06-6-3.1-2.72L897.6,355l-1.42-2.78c-.72.6-1.44,1.18-2.18,1.77a22,22,0,0,1,.28,4.2C894.1,359.4,893.24,360.28,892.87,361.38Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="874.04 188.12 877.92 192.09 881.08 196.09 881.9 196.93 884.52 200.41 885.97 201.91 882.27 196.82 882.29 196.61 880.42 194.27 880.16 193.75 877.61 190.66 877.61 190.48 872.36 184.21 872.45 184.41 866.96 178.22 861.9 173.32 864.45 176.31 864.79 177.39 867.99 181.24 871.29 184.51 872.3 185.65 872.19 185.77 874.04 188.12" style="fill:#d9dadb"></polygon><path d="M860.86,174.09l4.52,4.75,5.93,7.61h0l1.35.16,3.38,3.73.57.3.92.83.7,1.26,2.09,2.53,1.85,1.57-.6-1.1-1.7-1.75,0-.22.83.59-.78-1.14-3.2-3.85-.34-1.08-2.55-3-.41-.39-1.41-.83-2.76-2.83-2.84-3.19-1.27-1.76-2.37-2.63-1.39-1.43-1.67-1.92L855.12,166l-4.64-4.8-2.27-1.88-.31.19,5,4.71,3.43,4.14,3.12,2.59,2.16,3-2.85-2.4Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M606.17,404.49l3.85,9,8.55-.44,13,6.66,21,14.59q6.11-1,12.14-2l2.4-8.05c2.8-.48,5.58-1,8.36-1.49l.09-.21.82-1.87,1.32-.43h0l-8.12-7.9-.18-5.38-3.92-5-2.94.47-4-2.93-3.9.66-1.16-5.94-4.54-1.53-.59-6.5,3.93-4.76-2-3,.58-3.16-6,0-4-7.18-5.2,2.47-2.31-4.1h-6.71l-4.9,8.08-3.78.51-.12,4.53,2.8,4.87h0l-.35,7.94Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M667.08,424.3l-2.4,8.05,5.18-.9,2.88,4.05,6.73-1.22-1.33-2.09-3.46-7.68.76-1.7C672.66,423.32,669.88,423.82,667.08,424.3Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M623.51,371.57l-1.84-4.31-8.48,2.58-5.8,4.92-6.18.74-4.35-1.3-4.4,2.84-5-.52.93,4.65-2.18,4-3.15,0,1.49,7.77-.44,1.48h0l4.74-.76,2,3.91-3.65,8.74-.32.09-1.53.44.4,4.29h0l0-.07,6.5,3.34,13.89-9.93,14-12,.35-7.94h0l-2.8-4.87.12-4.53,3.78-.51h0Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M596.86,374.2l4.35,1.3,6.18-.74,5.8-4.92,8.48-2.58h0l1.84,4.31,3-5h6.71l2.31,4.1,5.2-2.47-2.63-4.72-5.36-2.78.5-2.7-3.64-6.48,3.55-4.16L626,345.51l-.14-4.92-2.65-1.91L618.47,335l-4.66,3.33L609.45,336,603,341.08l-4.8-1-6.13,2.35-10.57-2.24-2.21.9-2.56-3.27L572,338l-2.53-2.86-2.66,1.36-7.23.16-11.52,7.72-13.77,1.17,2.11,2.66-2.48,3.5-8,.11L524.12,353l-5.64-.58-3.38,3.44L519,364.3l-2.2,3.42,5.71.53-1.16,4.94,6.16,1.22-.35,5,7.49.41,2.38,2.81,3.49,1.27,5.26-1.24,1-3.83,4.81-.73,9,5.58,8.83-2.67,4-5.26,5.93,1.75,3-2.87,1.57,2.37-1.42.79-.16,2,1.61,2.48-.83,2.93,3.15,0,2.18-4-.93-4.65h0l5,.53Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="631.53 342.75 627.96 336.74 621.27 335.36 624.78 341.95 624.78 341.95 631.53 342.75" style="fill:#d9dadb"></polygon><polygon points="620.49 323.8 619.82 324.46 611.34 326.7 613.99 328.61 614.13 333.52 621.27 335.36 627.96 336.74 631.53 342.75 634.16 338.71 632.62 334.19 628.81 332.67 628.8 330.85 624.89 329.13 625.2 327.34 620.49 323.8" style="fill:#d9dadb"></polygon><path d="M657,333.51l-5.62-5.33-1.8,4.76-3.06.55-2.36-3.71-5-2.53-1.07,1.29-.9,1.06,4.19,3.07L640.3,336l-5.78-2.33-2.14,2.13,4.71,3.54-.3,1.79,3.9,1.72,0,1.83,3.81,1.51,1.54,4.52,5.5-6.61,2.8,2.17,1.86,5.92h5.23l-2.24-4.44h0l4.91-11.36Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="597.55 324.04 601.91 326.29 606.58 322.97 611.34 326.7 619.82 324.46 622.62 321.67 628.4 324 629.5 320.69 625.3 317.63 625.3 317.62 626.2 316.55 626.2 316.55 621.37 314.82 621.16 312.26 616.59 311.14 611.31 314.84 608.71 311.5 602.78 309.78 597.13 310.28 587.58 306.52 586.87 309.06 595.88 313.96 599.35 320.53 598.38 323.39 597.55 324.04" style="fill:#d9dadb"></polygon><polygon points="657.06 37.03 653.02 35.68 651.48 35.19 654.22 36.11 657.41 37.15 657.06 37.03" style="fill:#d9dadb"></polygon><path d="M810.39,126.45l1.14.69,2.23,1.74,2.08,1.84,15.35,12.46.21.85,3.82,3.71,4.67,3.74h0l5.64,5.19,2.68,2.65,2.27,1.88-.59-.59-3.21-3.22-4.85-4.57,1.43.74-2.77-2.73-6.15-5.65L828,139.67l-12.44-10.31L800,117.49l-5.87-4.26-8-5.48-1.88-1.28-3.31-2.09-8.11-5.18-5.38-3.1-3.31-1.94-.38,0-2.91-1.47,1.75,1.48,6,3.44.68.91-2.84-1.47,3.4,2.33L764,96.16l3.07,2.38-1.76-.61-10.23-6.66L749.25,88l-1.51-1.08L743.86,85l-8.69-5-3.49-1.69-11.35-6-5.49-3.34,0-.25-5.7-2.94-.57-.44-3.44-1.55-5.08-2.53,1.62.6,3.51,1.59.92.33-3.31-1.58L698.6,60.3,694,58.36l-1.81-.71,2.09.9-6.17-2.41-4.87-1.88-5.14-1.88-2-.68-3.48-1.26-5.3-1.92-.34-.15-.83-.27L655,44.47l-1.89-.58-6-1.79h0l-19.28-5.17c-22.26-5-25.68-5.79-36.64-7.51h0c-7.63-1.13-17.82-2.6-25.48-3.52l4.08.53,1.8.23h-.39l2.11.24.1.09,4.87.94,4.73.91.89.26,5.49,1.1,2.63.38,2.14.63,4,1,1.11.12L598.6,32l.88-.1,2.91.42,2.5.61-.77,0,1.74.54-2-.16-1.57-.4-2.27-.35,2.67.76,6.16,1,4.48,1.44.38.27,6.82,1.79,3.2.62-1.85.05,1.24.54-3.95-.59-1.67.3.51.73,3.4,1.41,2.08.42c.78.32,1.55.64,2.31,1l4.21,1.42-2.23.4,3.37,1.23L628,44.79l-.1.23,1.11.56-3.71-.69-.88.21,2.53,1.38,6,1.35L635,48.94l-7.48-1.83,1,1.62,2,1.7v.8l6.16,1.09,3,1,3,.27.1.63,2,.74,3.5.87-1.87.15-.52.77,4.21,1.63L646,59.1l11.73,3.63-1.93.7-5.37-1-2.13.1-6.43-1.34-1,1,7.94,1.7-.46,1.21-10.39-2.85.84,1.17-3.77,0,4.63,1.3.79.85,4.54.7-.74,1.87-1.93.27,1.63.86-2.07.45-3.06-.9-1.52,2.08,1.41,1.68,7.27,2.48-8-1.38,1.58,1.23-3.29-.25,6.8,4.87,1.14,3.83-4.44-2.52-2.2-1.79.13-.88-3.34-2-.32-.81-5.34-2.74.84-.19L625.4,70l-7.2-1.06-2.44.32-3.53-.21,1.43,1.13-1.69.15,1.47,1.52L613.18,73,610,71.34l-1.14.26,1,1.31-1.42.73-2.28-2.29-1.79-.1-1.5,1.83,3.79,2.53,7.22,1-2.75.71-.79,1,3.58.7,7.49,2.1L617.7,81l-5.88-1.61,1.64,1.48,0,1.94L611,82l-1.72,2.07,3.16.8-.27,2-1.74,1.83,2.82,3.18,1.45,1.44-2,.44,5,2.39,7.7,1.65-1.91,1.54-3.31-1L617,99l-2.09,3.44,6.46,3.22,3.8.17,2.65,1.3,6,.54,5.74,5,4.93,2.57L639,113.94l-5.74-4.61-3.49-.12-5.15-1.38-4.61.94,3,2.65-3.14.21,2.19,2.68,4.13.28.33-.71,4.32.67,3,3.72-4.78-1.85-5,1.16L619.6,114l-6.84-3.25,3.36,3-.34,1.62,1.74,2.32,7.25,2.53,2.92,3.84,5.38,3.53,2.76-2.12,6.46-.65,5,3.71,5.22.29-2.79,2.49-2.37-.33-4.23-3.11-3.34-.82-3.4,2.26,6.34,3.48,1.83,3.83-1.09,3,1.28,2.47-7.59,1.19-3.24-1.94,5.18-.85-1.11-6.6-2.54-1.45v-1.68l-4.16-1.43-7.39-5.48-3.12-3.31L615,118.37l-3.42-4.74-2.85-1.92-7.47,1.05.9,1.81,5,5.36.15,4.66,2.81.34,6,6.61,2.94-.95,3.58,2.15,1.82-.48,1.84,3.22-.86.42-5.19-1.5-12.27-.76-7.88,1-7.28-2.85,1.29,3.17,6.72,1.79,4.61,2.13-1,3.54-4.5-2.58-2.39,2.14-.08,1.05c-1.71.44-3.43.86-5.18,1.28l.56,2.89L588,147l1.12-1.77-.47-2.63c-4,2.47-9.31,5.77-13.4,8.07l2.68,1.71-3.57.93,1.2,3.73-4.79.92-4.52-2,.43-2.15,3.75-1.08-3.82-2.87-8.19.14,3.5,2.19,1.08,5,3.22,1.32-.46,2,1.79,3.41-4.1-2.4-3.71-.11-1,2.15-4.49,4.56,4.52,6.11-3.37.22-10.56-2.62,1.69,4,4,.82-.92,4.32-6.06-3.88-5.09-.77-1.46-8.23-9.52-5.94,6.51-.14,1.2,2.09,8.68.78,3,.58,4.18-.66,5-4.52-.29-1.95-2.2-2.48-9.13-2.15-6.57-2.87-8.37-.86-4.63.42,1.6-2.3-3.67-.83-.12,1.44-2.7-.48.62,3.18-2.3-.47-2.93,3-1-1.09-1.45,1.39.92,1-.25,2,2.63.35,2.45,2.35-.37,2L515.62,164l5.3,7.41-1.76,2.67,2.52,2.72L521,179l3.23,1.48.33,1.63-2,1.73,4.22,2.24,1.7,2.12-1.27,2.95-11.14,12.68,6.81,3.35-6,1.6-.05,2-.94.05,1.49,1.54-2.09,3,1.3,0,.39,2.94L519,222.2l-1.89,2.2-1.48-2L514,225.29l2.41,1.59-.12,2.2,2,.42,1.29,3.76,0,.24h0l4.11,0,1.66,3.51h0l4.09-2.53,3.64,2.21,0,5.4,3.05,4,6.95,3.25,1,3.11-2.47,2.09-4.91-.9,3.81,8.67v0l2.16.31.62-2.34,7.4-1.26,3.39,3.68-1.19,2,1.24,2.78,6.14.25,1.43,2.31-.13,2.4,1.32,1.29,5.52,0,3.19-2,4.14,3.88,1.38-2.06,5.31,2.66,5.39-1.05.72,2.83L587,279.74l.39,3.13,2.55,3-.42,2.27q-2.87.36-5.76.69l-2.23,5.49,6.92-2.16-.41,2.35-7.54,4,.76,1.92,3.78,1-2.61,2-.84,4.91L576.5,308l1.33,2.06,5.66,3,2.28,2.12,3.39.55,9.6,5.35.71-2.54,9.55,3.76,5.66-.5,5.93,1.73,2.6,3.33,5.28-3.69,4.57,1.12.21,2.55,4.82,1.73h0l1.07-1.29,5,2.53,2.36,3.71,3.06-.55,1.8-4.76-9.14-8.73-3-8.71-6-1.8,2.72-4.26.8-7.69,4.41-.05.67-2.56-3.38-2,1-4.7-5.61-4.55-5.88-.08c-.32-.92-.64-1.84-.95-2.76l-2.94-1.09.37-5.81L622,271.87l1.35-3.67-1.08-2.58,1.58-1.95,5.36,3.67,2-1.63-2-3,1.94-5.2,3.58-1.85.3-2.42,2.62-.53,1.12,1,2.29-.47.29-1.66,2.84-.61.6,1.31,3.78-.62,3.23,2.35,2.88,2.5,2.4-.37c-.42-.86-.84-1.72-1.25-2.58l6,2.39,1.26-4.08,2.87-1.11,2,1.81,2-1.25-.34-2,3.07-.49,2,2,5.59.63.46-2.29,5.39-1.76-1.66-4.48-8.38-.38-1.63-1.93,4.86-2.63-3.63-2.58.16-2.17,5.26-.27L680,229.76l-4.7.07-3.75-4.19,5.88-3.57,7.88-3.48-.69-2.28,9-5.38-1.89-2.64,1.78-2.64,4.44.22,3.19-1.37,3.88,3,.93,3.64,3.38,1.65,1.56-3.88,2.18,1.47,1.61-2.92,2.34,1.9.07,2.79,3.61,1.75,1.37-12,2.81-1,2.12,4.74,7.44,2,21,12.71.28-1.83L754.09,216l2.46-1.13,4.05,3.06,3.25-1.55-.72-3.36,3.57-.2,4.52,3.46,2.73-.57,3.16,2.08,2.42-.81-.93-3.31,2.87.46.82,1.17,4.73,1.33-1.2-4,3.44-1.92-2.28-2.3-.31-6,2.08-.94-1.4-3.23,3.25-1,2.6-1.79,3.94,3,2.88-1.17-.32-2.61,4.35.14.18-3.13-2.72-3.38-4.38-2.22-3.35-4-2.8-5.49,4.5.64,3.08-1.17,1.54-1.8c1.86,1.5,3.7,3,5.54,4.54l6,.26-2-6.42,5.72-2.61h0l2.63,2.1,2.48-1.17,2.15-1.75-2-2.83.9-3.27-2.9-2.71-3.66-4.86,3.13.06-1.64-2.63,2.35.43h0l1.73-.5-3-3.53-1-2.23-2.2-1.8-.62.15-9-7.63-2.3-2.67-4.21-2.56.63,1.33L796,132.36l-3.1-3.22-3.76-5.61,2.11-.47-1.16-1.42,5.06,1.45,7.09,4.11,8.66,5.12,1,.13L810,130.58l.48-.64,1.17.61L810.26,129l8.93,6.29L817,133.06l-.54-1-3.95-3-5.67-5.12,1.36.83ZM536.32,205.89l-.44,3.12-3.6-1.36-.11,2.44-2.13,0-4.27-7.19-1.71-1.07,2.53-3.89,3.22-.44,1,2.61,3.65.32L538,205Zm13.36-3.64-2.86-.54-.4-3-5-2.17.76-3.2,1.73-.26-2.3-4.1,4.58,1.55,1.12,3.25,3.07,3.79ZM790.14,149l4.78,4.91,3.15,6.2,5.35,7-3.28,3.74-2.48-7.1-7.36-8.83-2.41-5.12-11.37-9.68-1.39-2.35Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M860.94,223.75l3.18,1.95-2.23-11.41,1.92-4.56-5.09-8.53-.15-2.55-3.28-4.52-3.46-1.06-4.51-5.55,2.77.84-.18-3.44-4.53-5.34,1.56-.87-3-4.24-4.5-4.31-3.26-5.91,2.16-.52L835.61,161l-7.6-3.88.47,2.15,2.82,3-.06,1.91,1.58,2.14-3.66-1.91-10.43-10.89h0l-2.35-.43,1.64,2.63-3.13-.06,3.66,4.86,2.9,2.71-.9,3.27,2,2.83-2.15,1.75L818,172.22l-2.62-2.1-5.73,2.6,2,6.42-6-.26c-1.84-1.52-3.68-3-5.54-4.54l-1.54,1.8-3.08,1.17-4.5-.64,2.8,5.49,3.35,4,4.38,2.22,2.72,3.38-.18,3.13-4.35-.14.32,2.61-2.88,1.17-3.94-3-2.6,1.79-3.25,1,1.4,3.23-2.08.94.31,6,2.28,2.3-3.44,1.92,1.2,4,3.31,2.84,6.31,1.67c.94-.73,1.87-1.46,2.78-2.19l9.36,6.06h0l4.65,7.22,4,3,6.87-5.68,11,3.1,7.81,5.54.32-3.15,7.26-2.74-.64-3.8,6.86-3.14Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M988.56,509.1,987,493.3l-3.6-8-.28-.41.26,8.15-1.61,3.7c-.21-1.65-.43-3.29-.67-4.93l-2.48-.68,2,9.72,1.09,2.56.12,3.26,2.93,5.67-.22,3.3,5.24,7.32,1.22-4.09-1.45-8.07Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M980.75,482.73l-.36,2.88-2.25-2.11-2.21-9.37-2.16-5.65-1.35,2.34-2.83-17.44-.68-8.28-3-10.41.24-2.6.9,1.3,2.74,5.34,2.59-3.13,1.25,2.29,2.44,2.77c-.7-2.8-1.42-5.6-2.17-8.38l-3.3-6.9-.07-6q1.62-2.9,3-5.78l-.12-4.09L971,402.1l-3.19-3.54L966,392.74,962.64,388l-1.37,1.14.41,6.05-2.12-1.63.19,8.78-1.87-.48-2-11.17q-.93-2.42-1.87-4.83l-2.43,3.3-1.35-6.49-2.75,1.69,1.55,8c-.58.76-1.16,1.51-1.76,2.26l-2-1.11q2.07,5.28,4,10.59c-.44.54-.89,1.08-1.34,1.61l9,10.57,3.31,14.8,2.67,4.09,5,14.66-.17,9.68.83,5.79.5,8L971.81,484l.86-3,3.35,3.57,2.36,5.82,0,.08.16.72,2.48.68c.24,1.64.46,3.28.67,4.93l1.61-3.7-.26-8.15Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M984.72,431.58l-.88-10.53,0-1.38L981,407.84l-2.25-6.74L976,394.76l-.71-2.49-2.74-4.61-.87.49-4.63-5.34-1.66-3.47-3.18-3.17-1.81-5.44-2.07-10.89-1.23-2c.27-.71.53-1.43.78-2.14l-1-2.45-.11-2-2.75.65-2.33-6.06c-.29.75-.59,1.51-.91,2.27l-2.95-2.34,1.35,6.31.1,4.21-1.78-1,.6,3.22h0l-2.21-.84,1,4.89,2.83,2.91.65-1.15,1.64,6.25,2.6-.53-.42-4,3.81,5,.74,3.67-.87,1.46,1.11,4.67,3.79.14,7.37,11.07,2.32,1.35.73,3.39,1.45,1,1.35,4.35,2.48,9.4,2.73,9.18-.39,10c.43,1.68.84,3.37,1.25,5.06l-.72,1.71-.16,8.65.95.79,2.18,9.74,1.09-11.32-1.36-8.78Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M981.24,420.75l-2.73-9.18-2.48-9.4-.18,4.1-1-1.28,0,3.33,1.57,5.53-2.87-.21q-1.35,2.88-3,5.78l.06,6,3.3,6.9c.75,2.78,1.47,5.58,2.17,8.38l1.44,1.71.65-3.66,1.47,6.21,1.59,1.27.16-8.65.72-1.71c-.41-1.69-.82-3.38-1.25-5.06Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M966,392.74l1.85,5.82L971,402.1l2.36,7.44.13,4.1,2.87.21-1.57-5.53,0-3.33,1,1.28.18-4.1-1.35-4.35-1.45-1-.73-3.39-2.32-1.35L962.81,381l-3.79-.14-1.11-4.67.87-1.46-.74-3.67-3.81-5,.42,4-2.6.53-1.64-6.25-.65,1.15-2.83-2.91-1.3.21.7,2.82,2.35,3.1h0l1.94,5.15c-.38.62-.77,1.23-1.17,1.85L948,373.2l.63,10.44,1.58-1,1.35,6.49,2.43-3.3q.94,2.41,1.87,4.83l2,11.17,1.87.48-.19-8.78,2.12,1.63-.41-6.05,1.37-1.14Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M954,421.46l6.71,17.65.42-2.42,4.52,15.91,1.18.42,1,6.49.17-9.68-5-14.66-2.67-4.09L957,416.28l-9-10.57c.45-.53.9-1.07,1.34-1.61q-1.93-5.31-4-10.59l2,1.11c.6-.75,1.18-1.5,1.76-2.26l-1.55-8,1.17-.71L948,373.2l-2.53-4.36.25,6.58-2.35-3.15-2.22.82-1.46-4.49.13-2.17L937.2,366l-2-2.93L934,359.85l-1.62,1.76.11,4.16L929.32,360l-.13-2.64L927.75,354l-.52-6.33L925,341.86l-3.35-5.61-2.07-.31-2.2-3-2.23-.4.89,3.5,1.7,6.73-1.59,9.28,3.38,6.89-.46,4.37,1.65,1.25,3,10.68-3.52-.61L925.79,390,924,391.69l2.55,6.18c-.66.61-1.33,1.21-2,1.81v.15h0l6.62,5.12,2.33-.54,2.45,2.94,1.3,4.05,5.09,7.87,1.48,8.55,1.3,4.25,4.12-4.07,1.18-9-1.58-5.69,4.39,3.95Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M768.9,433.17l.5,5.79,11.28-3.29,3-3.25,3.89,1.2,6.18-4.23,2.42-2.57,2.54,3.91,2.26-.62,5.87,8.13,4.31-.52,1.56,1h0l.63-6.05,13.31-4.7-5.51-8.47-3.39,1.33-2.89-8.74-4.73,1.72-.87-3.73,2-8.9,3.42,3.2,4.62-5.25-.26-7,3.83-2.74-1.75-13.21,1.74-7.1-2.9-4.14,2.06-3.37-.52-4.67-3.78-2-3,1.34-5.8-3.35L803,342.08l.81-5.06q2.48-1.08,4.91-2.19l.89-4.24h0l3.45-2.67-5.4-3-3.21-1.12-3.34,1.52-1.8,3.39-7.7,3-1.91,6.56,4.16,4.66-.8,6.08c.76,1.62,1.53,3.23,2.28,4.86l-6.17-.08,1.34,5,3.42,1.27,0,3.62-3.32,1.27,3.27,8.26-.56,3.71-5.24.13-.44,4.43-5.4,3.57,1.47,9.63-7.41,6.13-.81,2.69-5.69-.62-4.62,3.21L754,404.22l7.13,7.93,8.33,3.07c.83,2.55,1.66,5.12,2.48,7.68,1.07-.32,2.14-.65,3.2-1h0l1.05,5.54-5,1.53Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M799.3,328.69l1.8-3.39-1.33-4h0l-2.64-1.46-5.68,2L791,325.2l-4.34,4.5c-1.21-2.34-2.42-4.67-3.66-7l-1.84-.6-2-4-2.22,1.38-2.11,3.7c.79,1.52,1.57,3,2.34,4.55l-2.19,4.83-2.48-2-2.58,5.52-3-2.81-10.38,1.9L757,338c-1.34.45-2.68.9-4,1.34l1.65,9-5.31,4.15,1.21,4.2-3.1,4.52-3.57-4.66-3.21.65-2.15.44L741,367.74l-1.2,3.39,1.32,3.56,2.93,1.18-1.13,3.74,6.81,12.07,4.56-.51,2.19,4.25-2.48,8.8,11.19,1.86,4.62-3.21,5.69.62.81-2.69,7.41-6.13L782.26,385l5.4-3.57.44-4.43,5.24-.13.56-3.71-3.27-8.26,3.32-1.27,0-3.62-3.42-1.27h0l-1.34-5,6.17.08c-.75-1.63-1.52-3.24-2.28-4.86l.8-6.08-4.16-4.66,1.91-6.56Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M776.2,427.46l-1.05-5.54h0c-1.06.34-2.13.67-3.2,1-.82-2.56-1.65-5.13-2.48-7.68l-8.33-3.07L754,404.22l2.48-8.8-2.19-4.25-4.56.51-6.81-12.07,1.13-3.74-2.93-1.18-1.32-3.56,1.19-3.4-2.5-10.06h.07l-4-8.35-4.18.46-9.47-5.43-4,3.27-6.85-2.3-1.64-3.09-10,3.61L697,352.44l-4.31.93,2.36,6.22-6.35-.62-7.11,3.9L664,357.94l-2.53-5.78h-5.23l-1.86-5.92-2.8-2.17-5.5,6.61-2.63,4-6.75-.8-3.51-6.58-3.55,4.16,3.64,6.48-.5,2.7,5.36,2.78,2.63,4.72,4,7.18,6,0-.58,3.16,2,3-3.93,4.76.59,6.5,4.54,1.53,1.16,5.94,3.9-.66,4,2.93,2.94-.47,3.92,5,.18,5.38,8.12,7.9h0l8.59-3,7.54,7.52,4.45,7.46,8.61,2,7.37,3.85,2.37,1.72,6.33.25,3.38-3.21,1.53-.21,4.56-4.79,3.09-.19,2.69,3.28,3.37,6.66,11.68.19L762.4,439l7,0-.5-5.79,2.3-4.18Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M760.52,334.28q-1.57-3.33-3.18-6.63l-4.72,1.13-7.72-2.07-3,2-11.43-5.46-4.77-7.44-3.61-1.34-3.38,2.94-4.82-1.31.69-3.15-3.47-4.24-3.78.93-4.48-2.32-2.37,1.87,1,3.67-3.54,3.35,3.63,5.83-7,.63-2.85,1.45-5.85-5.44-9.16-5.19-6.6,7.15L673.3,325l1-4.93,5.87-.47,7.57,7.13-10.45,3.39,1.09,5.62,5,.87.23,4.11,5,2.61,4,10.08,4.31-.93,1.46-6.61,10-3.61,1.64,3.09,6.85,2.3,4-3.27,9.47,5.43,4.18-.46,4,8.35,2.08-.42,3.21-.65,3.57,4.66,3.1-4.52-1.21-4.2,5.31-4.15-1.65-9c1.36-.44,2.7-.89,4-1.34l-.5-2.78,4.11-.73Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M779.59,280.82l5.48-3.56,7.65-4h0l1.58,1.36,5.58.33L796.62,271l1.34-2.92L790.3,260l-5.81-1.79,4.11-7.74,5.24,2.31-2.24-5.12L789,246.22,783.7,236l6.84-1.21.2-3.4q-2.88-3.32-5.81-6.58c.74-.49,1.48-1,2.2-1.49l-1.64-3.81,1.53-2.83-4.73-1.33-.82-1.17-2.87-.46.93,3.31-2.42.81L774,215.71l-2.73.57-4.52-3.46-3.57.2.72,3.36-3.25,1.55-4.05-3.06L754.09,216l1.61,2.36-.28,1.83-21-12.71-7.44-2-2.12-4.74-2.81,1-1.37,12-3.61-1.75-.07-2.79-2.34-1.9-1.61,2.92-2.18-1.47-1.56,3.89L706,211.1l-.93-3.64-3.88-3L698,205.87l-4.44-.22-1.78,2.64,1.89,2.64-9,5.38.69,2.28-7.88,3.48-5.88,3.57,3.75,4.19,4.7-.07,1.14,3.13-5.26.27-.16,2.17,3.63,2.58-4.86,2.63,1.63,1.93,8.38.38,1.66,4.48-5.39,1.76-.46,2.29-5.59-.63-2-2-3.07.49.34,2-2,1.25-2-1.81-2.87,1.11-1.26,4.08-6-2.39c.41.86.83,1.72,1.25,2.58l-2.4.37L651.9,254l-3.24-2.36-3.77.62h0l-.6-1.31-2.84.61-.29,1.66-2.29.47-1.12-1-2.62.53-.3,2.42-3.58,1.85-1.94,5.2,2,3-2,1.63-5.36-3.67-1.58,1.95,1.08,2.58L622,271.87l2.49,1.54-.37,5.81,2.94,1.09c.31.92.63,1.84.95,2.76l5.88.08,5.61,4.55-1,4.7,3.38,2,.71-2.85,9-6.49,8.93.31,2.29,9.34-7.41,5.37,1.56,3.32-2.68,2,6.51,7.78,9.69,2.17-.36,5.27,6.6-7.15,9.16,5.19,5.85,5.44,2.85-1.45q-5.67-14.11-11.71-27.8l9.61-7.07,1-8,7.49.93-1.84,4.45,6.05,6.17,11.86,7.25,9.9-3.07,3.23-4.24,8.24,5q1.75,3.25,3.48,6.54l2.36-.81,4,6,5.5-1.95,4.3,2.89-.33-5.48,4.52-11.71-.55-4.34h10.74l-1.72-3.76,1.44-2.91Zm-14.35-10.48-8.07-3.76v-12l14.2-4.15-.2-3.07,3.15-.91,2.84,6.67h0l-14.65,6.07-.73,4.58Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M799.89,274.94l-5.58-.33-1.58-1.36h0l-7.66,4-5.48,3.56h0l-7.46-.1-1.44,2.91,1.72,3.76H761.67l.55,4.34,3.76,2.09-1.88,4.61,4.32,1.06,1.53-3,9.42,2.43-3.81,7.93h0l-3.35-1-1.52,3.49-3.67.92,1.07,4.76,6.95-1.18,3.46-1.94,4,1.64,4.3-4.52.92-1-1.78-3.95.69-4.94,3-2.54,2.56,2.76,2.55-1.79-1.71-5.84q2.87-1.38,5.63-2.79l-1.25-4.79,4.11-7.35Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M770.68,309.33l1.52-3.49,3.35,1h0l3.82-7.93L770,296.5l-1.53,3-4.32-1.06,1.88-4.61-3.76-2.09-4.52,11.71.33,5.48-4.3-2.89-5.5,1.95-4-6-2.36.81q-1.73-3.29-3.48-6.54l-8.24-5L727,295.51l-9.9,3.07-11.86-7.25-.83,5.71-2.46-.12-4.1-6.55-.3,5.69-2.93.58-2.53-6.08.41-2.79-9.61,7.07q6,13.68,11.71,27.8l7-.63-3.63-5.83,3.54-3.35-1-3.67,2.37-1.87,4.48,2.32,3.78-.93,3.47,4.24-.69,3.15,4.82,1.31,3.38-2.94,3.61,1.34,4.77,7.44,11.43,5.46,3-2h0l7.72,2.07,4.72-1.13q1.6,3.3,3.18,6.63l.11.21,6.27-1.17-.12-7.49-3.46-3.63-4.87-1,.25-3.39,4-1.06-.59-4.23,1.62-1.54-1.35-3.27,1.84-.37,2.41-3.93,2.11,1.17-.19,2.62Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M779.12,318.13l2,4,1.84.6c1.24,2.33,2.45,4.66,3.66,7l4.34-4.5.51-3.28,5.68-2,2.64,1.46,1.21-2.61-6.24-7-2.79.46-1,1.24L786.75,309h0l-4.3,4.52-4-1.64L775,313.83,768.08,315,767,310.25l3.67-.92-2.13-2.16.19-2.62-2.11-1.17-2.41,3.93-1.84.37,1.35,3.27-1.62,1.54.59,4.23-4,1.06-.25,3.39,4.87,1,3.46,3.63.12,7.49,3,2.81,2.58-5.52,2.48,2,2.19-4.83c-.77-1.52-1.55-3-2.34-4.55l2.11-3.7Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M958.54,344.63l1.41,4.24,2.26,4.88-.39-3.84-2.79-7,.29-3.48-.93-6.46-1.76-4.3,1,.4-2.31-5.45,1.11.87-1.32-6,.58.18-.85-3.36-2.23-5.36-3.12-8.37-.77-.57-.72-1.95.09-1.15-1.4-2.75-.7-2-1.48-2.66-.34-1.34-2.54-4.74-.64-.87-.92-2.05-.73-.79-.9-1.75-.36-1.25-5.21-9.36-2.78-5.1,1.6,2.47-1.4-2.64-1-1.39-1-1.77-.72-.79-.85-1.46.22-.15L924.55,254l-2.18-2.61,1.07,2.47-1.53-2.09-1.75-3.29-1-2.25-1.4-1.67-.4.28-1.74-1.76.05-1.59L914,239.08l-2.09-1.42-3-4.08-4.32-4.28-1.37.12L901.26,227l-6.38-10.13L893,214.72,889.71,209l-.08-.71-3.49-4.18L887.3,207,886,207l4.64,6.54.52,1.44-1.87-1.36-1.63-2.41-1.65-1.1,1,2.21-2.61-1.42-3.62-4.79-.81-3-4.36-5.49-1.9-3.29-4.14-5.27-.82-1.86,1.93,1.17,3.64,4.36,1.46,2.29,1.56,1.61h.32l.26,0,1.94,2.89,1.59,1.71-1.54-2.62-6.52-8.78-.39-1.43-1.63-1.93-5.93-7.61-4.52-4.75-2.12-2.52,2.85,2.4-2.16-3-3.12-2.59h0l-3.43-4.13-5-4.71.31-.19-2.68-2.65-5.64-5.19h0l-4.67-3.74L831.4,144l-.21-.85-15.35-12.46-2.08-1.84-2.23-1.74-1.14-.69-2.24-1.74-1.36-.83,5.67,5.12,3.95,3,.54,1,2.24,2.22L810.26,129l1.36,1.56-1.17-.61-.48.64,1.89,1.87-1-.13-8.66-5.12-7.09-4.11-5.06-1.45,1.16,1.42-2.11.47,3.76,5.61,3.1,3.22,2.84,1.69-.63-1.33,4.21,2.56,2.3,2.67,9,7.63.62-.15,2.2,1.8,1,2.23,3,3.53-1.73.5,10.42,10.89,3.66,1.91-1.58-2.14.06-1.91-2.82-3-.47-2.15,7.6,3.88,2.71,2.77-2.16.52,3.26,5.91,4.5,4.31,3,4.24-1.56.87,4.53,5.34.18,3.44-2.77-.84,4.51,5.55,3.46,1.06,3.28,4.52.15,2.56,5.09,8.52-1.92,4.56,2.23,11.41-3.18-1.95-4,1.63L850,228.52l.64,3.8-7.26,2.74-.32,3.15-7.81-5.54-11-3.1-6.87,5.68-4-3L808.78,225h0L799.42,219c-.91.73-1.84,1.46-2.78,2.19l-6.31-1.67L787,216.63l-1.53,2.83,1.64,3.81c-.72.5-1.46,1-2.2,1.49q2.93,3.27,5.81,6.58l-.2,3.4L783.7,236,789,246.22l2.61,1.39,2.24,5.12-5.24-2.31-4.11,7.74L790.3,260l7.66,8.14L796.62,271l4.81,5.79-4.11,7.35,1.25,4.79q-2.76,1.41-5.63,2.79l1.71,5.84-2.55,1.79-2.56-2.76-3,2.54-.69,4.94,1.78,3.95-.92,1h0l4.19,4.37,1-1.23,2.79-.47,6.24,7.05-1.21,2.61h0l1.33,4,3.34-1.52,3.21,1.12,5.4,3,5.39.67,2.27-1.14,4.2,5.78,5.05.93-.52,3.08,1.78,2.58,5.17,3,2.35,3.39-.9,2.23-3,1.56,5.48,7.61,3-.77,2.1,2.69,8.77,2.45,1.66.45.15-3.73,3.32-1.14c.48,1,.95,1.91,1.42,2.87l5,.9,3.11,2.63,1.94-2.08,6.33,3.19,6.09.68-.12-2.81h0l4.13,1.46,2-2.2,2.59-4.08c.32.91.76,2.12,1.08,3l1.34-3L894,354c.74-.59,1.46-1.17,2.18-1.77L897.6,355l1.72-4.3,3.1,2.72,1.43-4.87-1.07-5.21,1.73-2.09.51-5.62,2.68.15v-7.14l3.42,2.69,1,3.6,4,1.11-.89-3.5,2.23.4,2.2,3,2.07.31,3.35,5.61,2.21,5.77.52,6.33,1.44,3.36.13,2.64,3.16,5.81-.11-4.16,1.62-1.76,1.21,3.21,2,2.93,2.63.44-.13,2.17,1.46,4.49,2.22-.82,2.34,3.14-.24-6.57,4,6.89c.4-.62.79-1.23,1.17-1.85l-1.94-5.15h0l-2.35-3.1-.7-2.82,1.3-.21-1-4.89,2.21.83h0l-.6-3.22,1.78,1-.1-4.21-1.35-6.31,2.95,2.34c.32-.76.62-1.52.91-2.27l2.33,6.06,2.75-.65-.2-2.86,1.63-.75Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="749.53 82.54 751.66 83.39 747.14 80.6 746.99 80.92 749.53 82.54" style="fill:#d9dadb"></polygon><path d="M903.51,221.28c-.27-.48-.55-.95-.83-1.42l-1.51-2.11-1-1.2,1.54,2.09-.1,0Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="911.93 240.69 911.92 240.69 911.93 240.69 911.93 240.69" style="fill:#d9dadb"></polygon><polygon points="909.34 236.82 910.54 238.93 911.92 240.69 910.82 238.76 909.34 236.82" style="fill:#d9dadb"></polygon><path d="M995.56,550.26c.3-.88.58-1.76.85-2.64l.41-6-.79.86Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="44.64 321.5 44.65 321.48 44.64 321.5 44.64 321.5" style="fill:#d9dadb"></polygon><polygon points="44.65 321.48 45.65 319.08 46.72 316.28 45.78 318.58 45.64 318.93 44.65 321.48" style="fill:#d9dadb"></polygon><polygon points="27.57 401.45 28.61 396.85 28.48 394.69 27.37 399.25 27.57 401.45" style="fill:#d9dadb"></polygon><path d="M36.21,424.7c.11.51.22,1,.34,1.53l1.15-3.81.64-4.27v-2l-1.28,6.06Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="22.56 421.79 23.27 417.74 22.41 419.52 21.85 422.97 22.56 421.79" style="fill:#d9dadb"></polygon><path d="M41.4,404l.83-3.44c-.11-.58-.21-1.16-.31-1.74l-.82,3.57C41.19,402.91,41.29,403.45,41.4,404Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M43.2,393l.91-3.41c-.08-.58-.16-1.16-.22-1.74l-.9,3.54C43.05,392,43.12,392.49,43.2,393Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M33.87,408.88l-.6,2.84c-.19.89-.37,1.79-.55,2.68Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M32.7,414.5l0-.1v.1Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="583.91 980.16 583.66 980.2 580.69 980.71 580.39 980.76 583.75 980.19 583.75 980.19 583.91 980.16" style="fill:#d9dadb"></polygon><polygon points="587.99 979.42 591.82 978.7 591.08 978.84 587.61 979.49 587.99 979.42" style="fill:#d9dadb"></polygon><path d="M618.9,987.48l6-1.36C623,986.52,621,987,618.9,987.48Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M613,988.79l-3.34.68-2.28.49.12,0c3.42-.61,7.52-1.56,11.41-2.46l-1,.23Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M553.83,997.66l.27,0-3.31.28-1.11.1Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="142.62 503.05 142.62 503.05 142.62 503.05 142.62 503.05" style="fill:#ff7b00"></polygon><polygon points="142.91 496.21 141.44 498.26 142.62 503.05 145.06 500.25 142.91 496.21" style="fill:#ff7b00"></polygon><polygon points="150.31 494.94 150.82 490.44 148.03 489.74 147.55 494.08 150.31 494.94" style="fill:#ff7b00"></polygon><polygon points="139.9 478.19 135.89 479.92 139.66 483.76 139.9 478.19" style="fill:#ff7b00"></polygon><polygon points="349.97 342.76 354.73 338.99 351.23 335.76 345.35 338.32 349.97 342.76" style="fill:#d9dadb"></polygon><polygon points="211.47 412 215.64 410.62 214.03 406.08 211.18 407.83 211.47 412" style="fill:#d9dadb"></polygon><polygon points="212.87 402.4 206.08 402.56 207.42 407.99 212.87 402.4" style="fill:#d9dadb"></polygon><path d="M235.65,421.2l2.54-5-.4-2.13-4.92,6.38Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M203.58,327.57l4.78,2.32.89-3.34-3.29-1.4-2.38,2.42Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="187.4 307.31 189.53 305.68 189.08 302.56 186.06 304.65 187.4 307.31" style="fill:#d9dadb"></polygon><path d="M744.18,934l4.3-3.08-6.16,1.73c-1.23,1-2.48,2.09-3.73,3.12Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="735.36 806.32 739.62 802.74 736.43 800.16 732.46 803.69 735.36 806.32" style="fill:#ff7b00"></polygon><polygon points="748.19 798.54 755.1 792.09 751.42 790.96 747.06 796.5 748.19 798.54" style="fill:#ff7b00"></polygon><polygon points="965.97 531.48 964 529.36 963.84 533.2 965.8 538.08 965.8 538.08 965.97 531.48" style="fill:#d9dadb"></polygon><polygon points="967.99 548.9 969.14 553.44 970 548.91 968.99 544.68 967.99 548.9" style="fill:#d9dadb"></polygon><polygon points="950.05 498.28 950.05 498.28 950.05 498.28 950.05 498.28" style="fill:#d9dadb"></polygon><polygon points="947.57 491.1 948.01 496.07 950.05 498.28 949.7 492.94 947.57 491.1" style="fill:#d9dadb"></polygon><polygon points="938.75 470.61 940.05 471.68 940.01 467.62 938.63 467.01 938.75 470.61" style="fill:#d9dadb"></polygon><polygon points="959.01 525.79 961.89 528.12 961.57 524.31 959.07 522.29 959.01 525.79" style="fill:#d9dadb"></polygon><polygon points="982.13 475.49 982.91 478.82 982.91 473.93 982.14 470.87 982.13 475.49" style="fill:#d9dadb"></polygon><polygon points="858.68 550.73 856.61 550.13 855.91 554.51 857.97 555.13 857.97 555.13 858.68 550.73" style="fill:#d9dadb"></polygon><polygon points="861.95 561.91 860.08 560.51 859.38 565.62 861.68 566.47 861.68 566.47 861.95 561.91" style="fill:#d9dadb"></polygon><polygon points="731.4 926.82 729.77 927.34 727.66 929.09 731.4 926.82" style="fill:#d9dadb"></polygon><polygon points="630.39 714.26 626.3 716.74 628.83 719.89 630.39 714.26" style="fill:#ff7b00"></polygon><polygon points="655.24 758.07 658.27 756.02 656.52 751.92 654.72 754.03 655.24 758.07" style="fill:#ff7b00"></polygon><polygon points="748.35 687.16 750.41 685.4 749.57 682.84 746.81 685.26 748.35 687.16" style="fill:#ff7b00"></polygon><polygon points="664.04 761.04 666.35 758.65 664.8 756.39 662.25 758.6 664.04 761.04" style="fill:#ff7b00"></polygon><polygon points="677.22 735.36 681.51 736.29 681.42 732.75 677.22 735.36 677.22 735.36" style="fill:#ff7b00"></polygon></g><circle cx="511.9" cy="511.98" r="488.79" transform="translate(-223.99 499.94) rotate(-45)" style="fill:none"></circle></g></g></svg></span> </span> <a class="elementor-accordion-title" tabindex="0">Latin America</a> </div> <div id="elementor-tab-content-1951" class="elementor-tab-content elementor-clearfix" data-tab="1" role="region" aria-labelledby="elementor-tab-title-1951"><p> <div data-elementor-type="page" data-elementor-id="20497" class="elementor elementor-20497" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-2d751615 local-chapter_section elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="2d751615" data-element_type="section"> <div class="elementor-container elementor-column-gap-extended"> <div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-738b74af" data-id="738b74af" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-2bb0e558 elementor-widget elementor-widget-text-editor" data-id="2bb0e558" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong><span data-sheets-value="{"1":2,"2":"Angolan Geophysical Association (ASGA)"}" data-sheets-userformat="{"2":14461,"3":{"1":0,"3":1},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"9":0,"14":{"1":3,"3":1},"15":"Arial","16":10}">Instituto Argentino del Petroleo y del Gas (IAPG)</span><br /></strong>Argentina</p> </div> </div> <div class="elementor-element elementor-element-4ba8f79f e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="4ba8f79f" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://www.iapg.org.ar/web_iapg/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-662050e6 elementor-widget elementor-widget-text-editor" data-id="662050e6" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong><span data-sheets-value="{"1":2,"2":"Moroccan Association of Geosciences (MAG)"}" data-sheets-userformat="{"2":14461,"3":{"1":0,"3":1},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"9":0,"14":{"1":3,"3":1},"15":"Arial","16":10}">Argentinian Association of Geophysicists and Geodesists (AAGG)</span></strong><br />Argentina</p> </div> </div> <div class="elementor-element elementor-element-30e58ae6 e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="30e58ae6" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-3204af6" href="https://www.facebook.com/aaggArgentina/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Facebook</span> <i class="fab fa-facebook"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-b65b7f8 elementor-widget elementor-widget-text-editor" data-id="b65b7f8" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong><span data-sheets-value="{"1":2,"2":"Moroccan Association of Geosciences (MAG)"}" data-sheets-userformat="{"2":14461,"3":{"1":0,"3":1},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"9":0,"14":{"1":3,"3":1},"15":"Arial","16":10}">Association of Mining Engineers Metalurgists and Geologists of Mexico (AIMMGM)</span></strong><br />Mexico</p> </div> </div> <div class="elementor-element elementor-element-b3d94ce e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="b3d94ce" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="http://www.geomin.com.mx/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-cf267a4 elementor-widget elementor-widget-text-editor" data-id="cf267a4" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong><span data-sheets-value="{"1":2,"2":"Moroccan Association of Geosciences (MAG)"}" data-sheets-userformat="{"2":14461,"3":{"1":0,"3":1},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"9":0,"14":{"1":3,"3":1},"15":"Arial","16":10}">Brazilian Geological Society (BGS)</span></strong><br />Brasil</p> </div> </div> <div class="elementor-element elementor-element-8042339 e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="8042339" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="http://www.sbgeo.org.br/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-fd479a8" data-id="fd479a8" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-680fd3f elementor-widget elementor-widget-text-editor" data-id="680fd3f" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong><span data-sheets-value="{"1":2,"2":"Angolan Geophysical Association (ASGA)"}" data-sheets-userformat="{"2":14461,"3":{"1":0,"3":1},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"9":0,"14":{"1":3,"3":1},"15":"Arial","16":10}">Brazilian Geophysical Society (SBGf)</span><br /></strong>Brasil</p> </div> </div> <div class="elementor-element elementor-element-fa0eecd e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="fa0eecd" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://sbgf.org.br/homepage/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-4b2d93b elementor-widget elementor-widget-text-editor" data-id="4b2d93b" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong><span data-sheets-value="{"1":2,"2":"Moroccan Association of Geosciences (MAG)"}" data-sheets-userformat="{"2":14461,"3":{"1":0,"3":1},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"9":0,"14":{"1":3,"3":1},"15":"Arial","16":10}">Colombian Association of Petroleum Engineers (ACIPET)</span></strong><br />Colombia</p> </div> </div> <div class="elementor-element elementor-element-d155e4c e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="d155e4c" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://acipet.com/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-f4e03ed elementor-widget elementor-widget-text-editor" data-id="f4e03ed" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong><span data-sheets-value="{"1":2,"2":"Moroccan Association of Geosciences (MAG)"}" data-sheets-userformat="{"2":14461,"3":{"1":0,"3":1},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"9":0,"14":{"1":3,"3":1},"15":"Arial","16":10}">Colombian Association of Petroleum Geologists and Geophysicists (ACGGP)</span></strong><br />Colombia</p> </div> </div> <div class="elementor-element elementor-element-310f362 e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="310f362" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://www.acggp.org/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-6c9a755 elementor-widget elementor-widget-text-editor" data-id="6c9a755" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong><span data-sheets-value="{"1":2,"2":"Moroccan Association of Geosciences (MAG)"}" data-sheets-userformat="{"2":14461,"3":{"1":0,"3":1},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"9":0,"14":{"1":3,"3":1},"15":"Arial","16":10}">Colombian Geological Society (SGC)</span></strong><br />Colombia</p> </div> </div> <div class="elementor-element elementor-element-5b5be80 e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="5b5be80" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://sociedadcolombianadegeologia.org/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-3148491" data-id="3148491" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-00aa1d1 elementor-widget elementor-widget-text-editor" data-id="00aa1d1" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong><span data-sheets-value="{"1":2,"2":"Angolan Geophysical Association (ASGA)"}" data-sheets-userformat="{"2":14461,"3":{"1":0,"3":1},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"9":0,"14":{"1":3,"3":1},"15":"Arial","16":10}">Colombian Geothermal Association (AGEOCOL)</span><br /></strong>Colombia</p> </div> </div> <div class="elementor-element elementor-element-4c38f95 e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="4c38f95" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://www.ageocol.org/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-de3d8f4 elementor-widget elementor-widget-text-editor" data-id="de3d8f4" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong><span data-sheets-value="{"1":2,"2":"Moroccan Association of Geosciences (MAG)"}" data-sheets-userformat="{"2":14461,"3":{"1":0,"3":1},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"9":0,"14":{"1":3,"3":1},"15":"Arial","16":10}">Cuban Geological Society (SCG)</span></strong><br />Cuba</p> </div> </div> <div class="elementor-element elementor-element-5ea8a59 e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="5ea8a59" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-3204af6" href="https://www.facebook.com/sociedadcubanadegeologia/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Facebook</span> <i class="fab fa-facebook"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-aba7745 elementor-widget elementor-widget-text-editor" data-id="aba7745" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong><span data-sheets-value="{"1":2,"2":"Moroccan Association of Geosciences (MAG)"}" data-sheets-userformat="{"2":14461,"3":{"1":0,"3":1},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"9":0,"14":{"1":3,"3":1},"15":"Arial","16":10}">Mexican Association of Exploration Geophysicists (AMGE)</span></strong><br />Mexico</p> </div> </div> <div class="elementor-element elementor-element-7243190 e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="7243190" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://amgemx.org/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-00d063b elementor-widget elementor-widget-text-editor" data-id="00d063b" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong><span data-sheets-value="{"1":2,"2":"Moroccan Association of Geosciences (MAG)"}" data-sheets-userformat="{"2":14461,"3":{"1":0,"3":1},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"9":0,"14":{"1":3,"3":1},"15":"Arial","16":10}">Mexican Association of Petroleum Geologists (AMGP)</span></strong><br />Mexico</p> </div> </div> <div class="elementor-element elementor-element-2bc062b e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="2bc062b" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://www.amgp.com.mx/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-bc3ad06" data-id="bc3ad06" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-0ac054e elementor-widget elementor-widget-text-editor" data-id="0ac054e" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong><span data-sheets-value="{"1":2,"2":"Angolan Geophysical Association (ASGA)"}" data-sheets-userformat="{"2":14461,"3":{"1":0,"3":1},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"9":0,"14":{"1":3,"3":1},"15":"Arial","16":10}">Mexican Geophysical Union (UGM)</span><br /></strong>Mexico</p> </div> </div> <div class="elementor-element elementor-element-77d07d8 e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="77d07d8" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://uniongeofisicamexicana.org.mx/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-b8487f8 elementor-widget elementor-widget-text-editor" data-id="b8487f8" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong><span data-sheets-value="{"1":2,"2":"Moroccan Association of Geosciences (MAG)"}" data-sheets-userformat="{"2":14461,"3":{"1":0,"3":1},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"9":0,"14":{"1":3,"3":1},"15":"Arial","16":10}">National Water Center (CNA-Andi)</span></strong><br />Colombia</p> </div> </div> <div class="elementor-element elementor-element-9c855aa e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="9c855aa" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://www.andi.com.co/Home/Pagina/21-centro-nacional-del-agua-y-la-biodiversida" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-0532504 elementor-widget elementor-widget-text-editor" data-id="0532504" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong><span data-sheets-value="{"1":2,"2":"Moroccan Association of Geosciences (MAG)"}" data-sheets-userformat="{"2":14461,"3":{"1":0,"3":1},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"9":0,"14":{"1":3,"3":1},"15":"Arial","16":10}">The Geological Society of Trinidad and Tobago (GSTT)</span></strong><br /><span data-sheets-value="{"1":2,"2":"Trinidad and Tobago"}" data-sheets-userformat="{"2":14399,"3":{"1":0,"3":1},"4":{"1":3,"3":2},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"14":{"1":2,"2":0},"15":"Calibri","16":11}">Trinidad and Tobago</span></p> </div> </div> <div class="elementor-element elementor-element-56629b9 e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="56629b9" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://thegstt.org/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-278e65a elementor-widget elementor-widget-text-editor" data-id="278e65a" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <b>Association of Oil, Gas and Renewable Energy Companies of Latin America and the Caribbean (ARPEL)</b><br> Uruguay </div> </div> <div class="elementor-element elementor-element-d6ec518 e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="d6ec518" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://arpel.org/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> </div> </div> </div> </section> </div> </p></div> </div> </div> </div> </div> <div class="elementor-element elementor-element-2b6ec9c student_map_accordion elementor-widget elementor-widget-accordion" data-id="2b6ec9c" data-element_type="widget" data-widget_type="accordion.default"> <div class="elementor-widget-container"> <div class="elementor-accordion"> <div class="elementor-accordion-item"> <div id="elementor-tab-title-4551" class="elementor-tab-title" data-tab="1" role="button" aria-controls="elementor-tab-content-4551" aria-expanded="false"> <span class="elementor-accordion-icon elementor-accordion-icon-left" aria-hidden="true"> <span class="elementor-accordion-icon-closed"><i class="fas fa-plus"></i></span> <span class="elementor-accordion-icon-opened"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 1000 1000"><defs><radialGradient id="Sfumatura_senza_nome_2" cx="608.8" cy="391.07" r="647.11" gradientUnits="userSpaceOnUse"><stop offset="0.41" stop-color="#fff"></stop><stop offset="0.51" stop-color="#f9f9f9"></stop><stop offset="0.64" stop-color="#e9e9e9"></stop><stop offset="0.79" stop-color="#cecece"></stop><stop offset="0.86" stop-color="#bfbfbf"></stop><stop offset="0.99" stop-color="#e6e6e6"></stop></radialGradient></defs><g style="isolation:isolate"><g id="Layer_1" data-name="Layer 1"><path d="M511.9,23.19c270,0,488.79,218.84,488.79,488.79S781.85,1000.77,511.9,1000.77,23.11,781.93,23.11,512,242,23.19,511.9,23.19m0-11.21A500.13,500.13,0,0,0,317.28,972.69,500.13,500.13,0,0,0,706.53,51.28,496.84,496.84,0,0,0,511.9,12Z" transform="translate(-11.9 -11.98)" style="fill:#fff"></path><path d="M511.89,1002.54c-131,0-254.21-51-346.86-143.68S21.35,643,21.35,512,72.37,257.76,165,165.11,380.87,21.43,511.89,21.43s254.23,51,346.88,143.68S1002.45,381,1002.45,512s-51,254.22-143.68,346.88S642.93,1002.54,511.89,1002.54Z" transform="translate(-11.9 -11.98)" style="fill:url(#Sfumatura_senza_nome_2)"></path><path d="M511.9,23.19c270,0,488.78,218.84,488.78,488.79S781.85,1000.77,511.9,1000.77,23.11,781.93,23.11,512,242,23.19,511.9,23.19m0-3.53a492.45,492.45,0,0,0-191.63,946A492.45,492.45,0,0,0,703.53,58.35,489.29,489.29,0,0,0,511.9,19.66Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><g style="mix-blend-mode:multiply"><path d="M445.09,116.49a219.41,219.41,0,0,1-27.65-5.87c-.45.38-.9.76-1.34,1.15a223.8,223.8,0,0,0,28.11,6Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M394.92,102.1a62,62,0,0,1-15-10.1l-1.95.85a63.17,63.17,0,0,0,15.23,10.26Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M477.81,120.87c.11-.44.23-.87.34-1.3-2.76-.12-5.53-.26-8.29-.44-8.51-.56-16.61-1.43-24.25-2.56l-.87,1.25c7.76,1.15,16,2,24.64,2.6Q473.6,120.69,477.81,120.87Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M521.59,25.86c-11.45-.46-22.85-.33-34,.3l.19.23c10.93-.63,22.14-.75,33.4-.3Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M487.06,26.2c-11.1.65-21.91,1.82-32.19,3.45l.71.17c10.12-1.6,20.75-2.75,31.67-3.4Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M400.68,44.74l1.59-.07a168.3,168.3,0,0,1,23.85-8.51l-1.2-.07A171.67,171.67,0,0,0,400.68,44.74Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M512.35,120.57l-.21-1.29c-10.93.63-22.14.75-33.41.31l-.33,1.3C489.85,121.34,501.24,121.22,512.35,120.57Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M382.25,55.61l1.89-.25A86.23,86.23,0,0,1,401.9,44.83l-1.59.08A87.62,87.62,0,0,0,382.25,55.61Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M455.06,29.9l-.72-.17A264.61,264.61,0,0,0,425.39,36l1.18.06A262,262,0,0,1,455.06,29.9Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M379.74,91.82c-3.75-3.62-6.24-7.46-7.33-11.43q-1,.31-2.07.66c1.11,4,3.64,7.93,7.44,11.61Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M370.28,80.84l2.08-.66a17.94,17.94,0,0,1,1.22-12.26l-2.05.45A18.19,18.19,0,0,0,370.28,80.84Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M373.37,65.05a23.62,23.62,0,0,0-1.74,3.11l2.05-.46a25.47,25.47,0,0,1,1.72-3,39.55,39.55,0,0,1,8.49-9.09l-1.88.25A40.25,40.25,0,0,0,373.37,65.05Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M417,110.49a129.72,129.72,0,0,1-21.77-8.24l-1.7,1a132.88,132.88,0,0,0,22.12,8.38Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M599.27,102l-1.61-1a167.36,167.36,0,0,1-23.84,8.51l1.22,1.14A171.07,171.07,0,0,0,599.27,102Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M617.68,91.1l-1.91-.82A86.14,86.14,0,0,1,598,100.81l1.62,1A86.74,86.74,0,0,0,617.68,91.1Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M545.11,117.08l-.75-1.24c-10.11,1.6-20.74,2.76-31.66,3.41.08.43.15.86.23,1.29C524,119.88,534.83,118.71,545.11,117.08Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M629.6,65.87l-2.1-.41a17.93,17.93,0,0,1-1.2,12.26l2.08.62A18.18,18.18,0,0,0,629.6,65.87Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M530,26.55c8.47.56,16.55,1.42,24.16,2.54l.9-.18c-7.74-1.14-15.94-2-24.56-2.59Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M626.52,81.7a24.88,24.88,0,0,0,1.76-3.15l-2.08-.61A26,26,0,0,1,624.47,81a39.47,39.47,0,0,1-8.46,9l1.92.82A40.27,40.27,0,0,0,626.52,81.7Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M574.58,110.76l-1.22-1.14a259.18,259.18,0,0,1-28.47,6.14l.75,1.24A266.77,266.77,0,0,0,574.58,110.76Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M522.18,25.88l-.37.23,8.2.44.5-.23Q526.34,26.05,522.18,25.88Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M629.54,65.67c-1.11-4-3.65-7.94-7.46-11.62l-2-.22c3.75,3.62,6.24,7.45,7.34,11.43Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M604.89,43.55a62.4,62.4,0,0,1,15,10.09l2,.22a63.31,63.31,0,0,0-15.25-10.25Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M582.79,35.16a131.06,131.06,0,0,1,21.78,8.24l1.73.05a132.29,132.29,0,0,0-22.14-8.37Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M554.69,29.17A220.14,220.14,0,0,1,582.36,35l1.37-.09a224.6,224.6,0,0,0-28.13-6Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M724.31,152.92l-1.68-1.25c-9.11,7.27-20.57,14-33.94,20.14l1.43,1.4C703.6,167.05,715.14,160.24,724.31,152.92Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M679.08,52.6A218,218,0,0,1,701.22,62l1.53.58a217.13,217.13,0,0,0-20.93-9Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M746.92,105.1l-1.86-.9a34.2,34.2,0,0,1-2.3,23.45c.62.35,1.23.71,1.84,1.07A34.46,34.46,0,0,0,746.92,105.1Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M741.08,135.09a48.88,48.88,0,0,0,3.33-6l-1.84-1.07a48.63,48.63,0,0,1-3.3,5.91,76,76,0,0,1-16.17,17.32l1.69,1.25A76.62,76.62,0,0,0,741.08,135.09Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M525.75,208.72c21-1.25,41.52-3.47,61-6.56l-.66-1.61c-19.34,3.06-39.67,5.27-60.55,6.5Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M689.43,173.53,688,172.12a321.39,321.39,0,0,1-45.59,16.29l1.09,1.52A323.63,323.63,0,0,0,689.43,173.53Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M587.09,200.39c.22.53.44,1.07.67,1.61a498.48,498.48,0,0,0,54.86-11.82l-1.08-1.53A499.46,499.46,0,0,1,587.09,200.39Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M701.83,62.31c11.79,5.91,21.44,12.39,28.7,19.29l1.75.73c-7.31-7-17-13.49-28.91-19.44Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M746.81,104.7c-2.12-7.65-6.92-15-14.15-22L730.91,82c7.17,6.92,12,14.25,14,21.85Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M271.28,154.6c-7.16-6.92-11.92-14.25-14-21.85l-1.8,1.1c2.1,7.66,6.89,15.05,14.11,22Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M255.36,133.46l1.81-1.11a34.27,34.27,0,0,1,2.34-23.45l-1.79.93A34.56,34.56,0,0,0,255.36,133.46Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M342.55,190.32a249.92,249.92,0,0,1-41.63-15.76L299.45,176a251.62,251.62,0,0,0,41.93,15.88Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M460.58,207.72l-.27,1.67c21.69.85,43.3.61,64.36-.61l-.21-1.66C503.56,208.32,482.12,208.56,460.58,207.72Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M396.25,201.79a420.49,420.49,0,0,1-52.88-11.24c-.39.52-.78,1-1.16,1.55a426.14,426.14,0,0,0,53.28,11.32C395.74,202.87,396,202.33,396.25,201.79Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M300.31,174.26c-11.77-5.91-21.41-12.39-28.66-19.3l-1.7,1.28c7.3,6.95,17,13.49,28.88,19.44Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M278.06,85.64l1.63-.75c9.12-7.27,20.59-14,34-20.13l-1.37.6C298.8,71.52,287.24,78.32,278.06,85.64Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M396.49,203.57c14.72,2.18,30.33,3.84,46.72,4.92q8,.52,16,.85c.09-.56.19-1.11.28-1.67q-7.92-.33-15.86-.84c-16.27-1.07-31.76-2.73-46.36-4.89Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M319.49,62.19l-3.1,1.34L313,65l1.38-.6Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M261.21,103.53a49.07,49.07,0,0,0-3.29,5.89l1.78-.93a49.21,49.21,0,0,1,3.27-5.85,76.34,76.34,0,0,1,16.25-17.37l-1.63.75A76.48,76.48,0,0,0,261.21,103.53Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M847.12,170.61l-1.53-1.3c2.82,10.68,1.87,21.73-3.22,32.93l1.51,1.44C849,192.44,850,181.34,847.12,170.61Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M847,170.06c-3-10.72-9.69-21.07-19.82-30.83l-1.43-1.17c10.07,9.72,16.78,20,19.72,30.7Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M816.72,130.25q4.56,3.58,8.47,7.31l1.44,1.17c-2.47-2.35-5.15-4.67-8-6.95Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M624.28,306.29a701.13,701.13,0,0,0,76.82-16.55l-.9-1.82a697.43,697.43,0,0,1-76.49,16.48Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M537.46,315.7c29.45-1.75,58.13-4.86,85.41-9.18-.19-.63-.37-1.27-.56-1.9-27.15,4.31-55.71,7.41-85,9.15Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M815.48,237.57l-1.39-1.6c-12.79,10.22-28.89,19.7-47.67,28.29.4.57.79,1.15,1.18,1.72C786.47,257.35,802.63,247.82,815.48,237.57Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M701.42,287.57l.9,1.82a453,453,0,0,0,64.31-23l-1.18-1.71A452.41,452.41,0,0,1,701.42,287.57Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M839,212.61a67.91,67.91,0,0,0,4.66-8.35l-1.51-1.45a66.57,66.57,0,0,1-4.64,8.31c-5.51,8.48-13.17,16.61-22.72,24.32.47.53.93,1.06,1.39,1.6C825.73,229.29,833.42,221.12,839,212.61Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M220.93,267.7c-16.53-8.29-30.08-17.4-40.26-27.1l-1.36,1.61c10.22,9.74,23.83,18.89,40.43,27.22Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M180.15,240.1c-10.06-9.72-16.74-20-19.67-30.7L159,210.87c2.94,10.72,9.65,21.08,19.75,30.84C179.24,241.17,179.69,240.63,180.15,240.1Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M446,314.69c-.07.65-.14,1.29-.22,1.94,30.39,1.19,60.63.86,90.12-.84l-.18-1.94C506.4,315.55,476.29,315.88,446,314.69Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M185.81,147.38l-1.74,1.56a99.8,99.8,0,0,0-17,19.47,69.93,69.93,0,0,0-4.62,8.25l1.44-1.33C172.35,160.79,172.68,160.23,185.81,147.38Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M280.25,290.26c-22.21-6.41-41.83-13.86-58.46-22.13-.4.58-.8,1.15-1.19,1.73,16.71,8.31,36.41,15.79,58.72,22.23Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M158.88,210.32c.48-.49,1-1,1.45-1.48-2.79-10.68-1.83-21.74,3.29-32.93l-1.44,1.33C157,188.49,156.07,199.59,158.88,210.32Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M356.48,308.48c20.6,3.06,42.46,5.39,65.41,6.89q11.19.75,22.37,1.2l.21-1.94q-11.12-.45-22.27-1.19c-22.85-1.5-44.61-3.82-65.12-6.86Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M355.07,308.27c.21-.63.41-1.27.61-1.9a590.13,590.13,0,0,1-74.28-15.78l-.93,1.83A594.45,594.45,0,0,0,355.07,308.27Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M925.44,258.34l-1.12-1.65c3.45,13.07,2.29,26.58-3.94,40.27l1.1,1.75C927.73,285,928.89,271.44,925.44,258.34Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M748.7,403.33c28.93-8.13,55.35-17.54,78.49-28l-.87-2c-23.08,10.48-49.43,19.86-78.29,28C748.25,402,748.48,402.65,748.7,403.33Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M547.47,435.43c35.95-2.13,71-5.93,104.25-11.2l-.42-2.07c-33.21,5.26-68.12,9-104,11.17Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M653.44,424a852.52,852.52,0,0,0,93.76-20.21l-.66-2A853,853,0,0,1,653,421.88C653.15,422.57,653.3,423.26,653.44,424Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M915.47,309.6a85.37,85.37,0,0,0,5.69-10.18l-1.11-1.75a84.83,84.83,0,0,1-5.67,10.15c-6.74,10.37-16.11,20.31-27.78,29.75l1,1.85C899.32,330,908.72,320,915.47,309.6Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M435.75,434.47c0,.7-.09,1.4-.13,2.1,37.08,1.45,74,1.05,110-1-.05-.7-.09-1.4-.14-2.1C509.57,435.51,472.74,435.92,435.75,434.47Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M827.51,372.8l.87,1.95c23-10.54,42.76-22.16,58.43-34.68l-1-1.86C870.16,350.7,850.48,362.29,827.51,372.8Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M925.26,257.67a72,72,0,0,0-10.75-22.13l-1.34-1.93a71.87,71.87,0,0,1,11,22.41Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M94,257.76l-.83,1.55c.65-1.18,1.32-2.35,2.05-3.53Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M92.48,260.66l-2.74,5.07,1-1.67C91.29,262.93,91.88,261.79,92.48,260.66Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M92.48,260.66l.73-1.35C93,259.76,92.72,260.21,92.48,260.66Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M110.64,343.25c-12.3-11.88-20.48-24.48-24.06-37.54l-1,1.78c3.58,13.08,11.78,25.72,24.11,37.63Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M160.5,377c-20.22-10.14-36.78-21.28-49.23-33.14l-1,1.87c12.48,11.89,29.08,23.05,49.35,33.22Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M326.57,426.63c25.14,3.72,51.82,6.57,79.83,8.41q13.67.9,27.31,1.45c0-.7.09-1.4.13-2.1q-13.6-.56-27.23-1.45c-27.94-1.84-54.55-4.67-79.63-8.39C326.84,425.24,326.71,425.93,326.57,426.63Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M324.85,426.37l.42-2.08A724.16,724.16,0,0,1,234.44,405c-.22.67-.43,1.35-.65,2A723.81,723.81,0,0,0,324.85,426.37Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M232.38,406.62l.66-2c-27.16-7.84-51.15-16.95-71.49-27.06l-.84,2C181.11,389.62,205.15,398.76,232.38,406.62Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M85.38,306.81l1-1.77c-3.42-13.07-2.23-26.58,4-40.27l-1,1.67C83.13,280.16,82,293.71,85.38,306.81Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M868.77,494.15c25.7-11.76,47.73-24.73,65.22-38.71l-.57-2.05c-17.48,14-39.48,26.92-65.15,38.67C868.44,492.75,868.6,493.45,868.77,494.15Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M779.82,526.05c32.29-9.07,61.79-19.57,87.62-31.29-.17-.7-.33-1.4-.5-2.1-25.8,11.71-55.25,22.2-87.51,31.26C779.57,524.63,779.69,525.34,779.82,526.05Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M555.2,561.89c40.13-2.38,79.21-6.62,116.37-12.5-.08-.73-.17-1.45-.25-2.17-37.12,5.88-76.15,10.11-116.23,12.49C555.13,560.44,555.17,561.17,555.2,561.89Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M673.49,549.08a956.27,956.27,0,0,0,104.66-22.56c-.12-.71-.25-1.42-.38-2.14a950,950,0,0,1-104.54,22.53C673.32,547.64,673.4,548.36,673.49,549.08Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M977.11,364.21l-.63-1.93c3.85,14.6,2.55,29.71-4.41,45l.63,2C979.67,394,981,378.84,977.11,364.21Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M965.36,419.43c-7.52,11.58-18,22.7-31.05,33.24.2.68.39,1.37.58,2.05C948,444.16,958.45,433,966,421.44a94.08,94.08,0,0,0,6.35-11.37l-.63-2A92.52,92.52,0,0,1,965.36,419.43Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M975.89,360.12l-.74-2.25c.41,1.21.79,2.43,1.12,3.66.22.64.43,1.28.64,1.93C976.6,362.34,976.26,361.23,975.89,360.12Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M67.22,461.77c13.93,13.27,32.47,25.74,55.09,37.09.14-.7.28-1.4.43-2.1-22.6-11.34-41.11-23.79-55-37.05C67.55,460.4,67.39,461.08,67.22,461.77Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M203.49,529.73c.1-.72.21-1.43.32-2.14-30.36-8.77-57.17-19-79.9-30.25-.15.7-.29,1.4-.43,2.1C146.25,510.76,173.09,521,203.49,529.73Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M39.56,385.2a63.72,63.72,0,0,0-.17,33.12c.17-.67.35-1.34.53-2a63.68,63.68,0,0,1,.25-33.41Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M430.39,561c0,.73,0,1.46,0,2.18,41.39,1.63,82.61,1.17,122.78-1.15,0-.72-.07-1.45-.11-2.18C512.9,562.15,471.74,562.6,430.39,561Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M67,459c-13.75-13.29-22.88-27.37-26.88-42-.18.67-.36,1.34-.53,2,4,14.61,13.15,28.71,26.92,42C66.67,460.4,66.84,459.71,67,459Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M308.62,552.06c28.07,4.16,57.85,7.34,89.12,9.39q15.24,1,30.47,1.63c0-.73,0-1.46.05-2.18q-15.21-.63-30.44-1.63c-31.23-2-61-5.22-89-9.38C308.75,550.62,308.68,551.34,308.62,552.06Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M306.7,551.78c.07-.73.13-1.45.2-2.17A809.44,809.44,0,0,1,205.38,528c-.11.71-.21,1.43-.32,2.14A810.94,810.94,0,0,0,306.7,551.78Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M682.62,673.62l0,1.08,0,1a989.91,989.91,0,0,0,108.48-23.39l0-1c0-.36,0-.72,0-1.08A989.65,989.65,0,0,1,682.62,673.62Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M792.84,649.76l0,1.08c0,.35,0,.69,0,1,33.47-9.4,64-20.29,90.81-32.44,0-.34,0-.69,0-1l0-1.08C856.87,629.47,826.31,640.35,792.84,649.76Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M999.51,497a71,71,0,0,1-6.76,31.68l0,1.08c0,.35,0,.7,0,1a71,71,0,0,0,6.77-31.34l0-1.21Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M992.37,529.54a97.38,97.38,0,0,1-6.58,11.78c-7.82,12-18.68,23.56-32.23,34.5l0,1.08,0,1C967.16,567,978,555.47,985.84,543.45a96.89,96.89,0,0,0,6.58-11.79c0-.34,0-.69,0-1Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M885,616.69l0,1.08c0,.35,0,.7,0,1.05,26.64-12.19,49.47-25.64,67.61-40.13l0-1,0-1.08C934.5,591.06,911.66,604.5,885,616.69Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M560,686.9l0,1.08,0,1c41.59-2.47,82.09-6.86,120.61-13l0-1,0-1.08C642.12,680,601.62,684.44,560,686.9Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M112.55,622.18l0,1.08,0,1C136.2,636,164,646.59,195.53,655.69l0-1c0-.36,0-.72,0-1.08C164,644.47,136.15,633.9,112.55,622.18Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M25.6,538.88l0,1.07,0,1c4.15,15.14,13.63,29.76,27.9,43.54l0-1,0-1.08C39.23,568.63,29.75,554,25.6,538.88Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M23.23,522.86l0,1.24,0,1.21a66.51,66.51,0,0,0,2.16,14.91l0-1.05,0-1.08A66.3,66.3,0,0,1,23.23,522.86Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M430.61,688.22l0,1.08,0,1c42.9,1.69,85.62,1.22,127.26-1.19l0-1,0-1.08C516.24,689.43,473.52,689.9,430.61,688.22Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M54.24,583.13l0,1.08,0,1C68.73,599,88,611.93,111.4,623.69l0-1,0-1.08C87.89,609.81,68.68,596.89,54.24,583.13Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M396.81,686.45c-32.41-2.13-63.28-5.42-92.37-9.74l0,1.08,0,1.05c29.09,4.31,60,7.6,92.37,9.73q15.79,1,31.59,1.69l0-1,0-1.08Q412.62,687.49,396.81,686.45Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M197.11,654c0,.36,0,.72,0,1.08l0,1a838.22,838.22,0,0,0,105.35,22.38c0-.35,0-.69,0-1l0-1.08A837.39,837.39,0,0,1,197.11,654Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M784.15,768c.09-.59.18-1.19.28-1.78a954.69,954.69,0,0,1-104.67,22.55l-.15,1.76A952.28,952.28,0,0,0,784.15,768Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M785.81,767.56c32.26-9.07,61.71-19.56,87.51-31.26l.39-1.83c-25.83,11.72-55.32,22.23-87.61,31.3C786,766.37,785.91,767,785.81,767.56Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M941.17,694.43l-.48,1.88c13.06-10.55,23.53-21.66,31.06-33.25a94.36,94.36,0,0,0,6.34-11.35l.51-1.93a94,94,0,0,1-6.34,11.37C964.72,672.75,954.23,683.87,941.17,694.43Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M978.45,650.92a77.12,77.12,0,0,0,4.19-11.49l.61-2.29A75.85,75.85,0,0,1,979,649C978.8,649.63,978.63,650.28,978.45,650.92Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M561.47,803.35c40.08-2.38,79.11-6.61,116.22-12.49l.15-1.76c-37.16,5.89-76.24,10.13-116.37,12.51Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M939.8,697c.15-.62.31-1.25.47-1.87-17.5,14-39.53,27-65.23,38.71l-.39,1.82C900.32,724,922.32,711,939.8,697Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M436.77,804.62c41.34,1.62,82.5,1.17,122.63-1.15v-1.74c-40.17,2.32-81.39,2.77-122.78,1.15Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M314.89,791.78l.3,1.75c28,4.16,57.77,7.33,89,9.38q15.22,1,30.44,1.62c-.05-.57-.1-1.16-.15-1.74q-15.23-.62-30.47-1.62C372.74,799.11,343,795.94,314.89,791.78Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M74.08,703.35c13.91,13.26,32.43,25.71,55,37-.17-.6-.35-1.21-.52-1.82C106,727.22,87.42,714.76,73.49,701.48,73.69,702.11,73.88,702.73,74.08,703.35Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M47.64,664.48c4.46,13.25,13.17,26,25.73,38.19-.2-.63-.4-1.25-.59-1.87-12.68-12.25-21.44-25.17-25.87-38.55Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M130.27,741c22.74,11.3,49.55,21.48,79.91,30.25l-.42-1.79c-30.4-8.77-57.24-19-80-30.28C129.92,739.77,130.1,740.37,130.27,741Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M211.75,771.68a809.44,809.44,0,0,0,101.52,21.57l-.3-1.76a807.39,807.39,0,0,1-101.64-21.6Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M447.8,895c37,1.45,73.82,1,109.71-1l.06-1.32c-36,2.07-72.91,2.48-110,1C447.65,894.11,447.73,894.55,447.8,895Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M758.59,862.25l.58-1.41a857.37,857.37,0,0,1-93.77,20.21c-.11.45-.23.9-.34,1.36A855.31,855.31,0,0,0,758.59,862.25Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M559.37,893.86c35.86-2.13,70.77-5.92,104-11.18l.33-1.36c-33.29,5.28-68.3,9.07-104.25,11.21Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M839.56,833.32c23-10.5,42.65-22.1,58.29-34.59l.93-1.57c-15.67,12.52-35.41,24.14-58.43,34.68C840.09,832.34,839.82,832.83,839.56,833.32Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M838.37,833.87l.78-1.49c-23.14,10.5-49.56,19.91-78.49,28-.19.47-.38.94-.58,1.41C788.94,853.72,815.29,844.34,838.37,833.87Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M926.43,768.35c.39-.61.78-1.22,1.15-1.82l1.23-2c-.44.73-.9,1.46-1.37,2.18-6.75,10.4-16.15,20.36-27.85,29.82l-.94,1.58C910.32,788.65,919.69,778.71,926.43,768.35Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M108.28,786.81l1.35,2a108,108,0,0,0,13.05,15c-.36-.52-.71-1-1.06-1.57A107.34,107.34,0,0,1,108.28,786.81Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M172.55,837.53c-.32-.49-.63-1-.94-1.47-20.27-10.17-36.88-21.34-49.35-33.23l1.06,1.56C135.76,816.25,152.33,827.39,172.55,837.53Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M173.59,838.05c20.34,10.11,44.33,19.22,71.49,27.06l-.75-1.4c-27.23-7.86-51.27-17-71.67-27.13Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M338.52,883.72l.51,1.35c25.08,3.72,51.69,6.56,79.63,8.39q13.62.9,27.23,1.46c-.08-.45-.15-.89-.23-1.33q-13.64-.55-27.3-1.46C390.34,890.29,363.66,887.45,338.52,883.72Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M246.49,865.52a723.53,723.53,0,0,0,90.82,19.3l-.51-1.36a723.81,723.81,0,0,1-91.06-19.35Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M717.06,932l.82-1a702.91,702.91,0,0,1-76.82,16.56l-.49.89A697.38,697.38,0,0,0,717.06,932Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M554.13,957.88c29.32-1.74,57.88-4.84,85-9.14l.48-.89c-27.28,4.32-56,7.44-85.41,9.18C554.2,957.32,554.17,957.6,554.13,957.88Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M718.28,931.69a452.38,452.38,0,0,0,64-22.87l1.11-1.06a454.19,454.19,0,0,1-64.31,23Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M832.27,878.9c-12.85,10.26-29,19.78-47.88,28.41l-1.11,1.07c18.78-8.6,34.88-18.08,47.67-28.29Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M838.74,873.41q-2.78,2.51-5.81,5l-1.32,1.19q2.8-2.26,5.39-4.59Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M204.16,890.57l1.9,1.54a187.24,187.24,0,0,0,31.71,19.71l-1.26-1.05A185.5,185.5,0,0,1,204.16,890.57Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M297.09,934.37l-1-1c-22.31-6.44-42-13.92-58.72-22.22.42.35.83.7,1.26,1C255.26,920.51,274.88,928,297.09,934.37Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M462.88,958.81c30.26,1.18,60.37.85,89.73-.84,0-.28.07-.56.11-.85-29.49,1.7-59.74,2-90.12.85C462.7,958.25,462.79,958.53,462.88,958.81Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M298.24,934.7a591.84,591.84,0,0,0,74.28,15.79l-.67-.88a594.24,594.24,0,0,1-74.61-15.85Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M373.25,949.82c.23.29.45.58.67.88,20.51,3,42.28,5.36,65.13,6.86q11.15.74,22.27,1.19c-.09-.28-.19-.56-.29-.85q-11.17-.45-22.37-1.19C415.71,955.2,393.85,952.87,373.25,949.82Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M606.65,986.29l.61-.39c-19.48,3.09-40,5.31-61,6.56l-.16.33C567,991.56,587.31,989.35,606.65,986.29Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M607.65,986.13a500.17,500.17,0,0,0,54.46-11.74l1-.47a499,499,0,0,1-54.86,11.82Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M706.42,958.83A331.55,331.55,0,0,1,664,973.67l-1,.48a335.64,335.64,0,0,0,40.35-14Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M341,968.74l2.74,1q9.15,3.35,19.38,6.3l-1.21-.46Q350.81,972.41,341,968.74Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M416.8,987.53l-.81-.37a426.31,426.31,0,0,1-53.29-11.32l1.21.45A421,421,0,0,0,416.8,987.53Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M481.14,993.46c21.54.84,43,.6,63.88-.6l.15-.34c-21.06,1.22-42.66,1.46-64.36.61Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M417,987.31l.81.37c14.6,2.16,30.1,3.82,46.37,4.89q7.92.51,15.85.84l-.33-.33q-8-.33-16-.85C447.32,991.15,431.71,989.49,417,987.31Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M521.22,26.09c-7.05,4.59-14.33,14.76-21.7,30.94,7.57-16.17,15.05-26.34,22.29-30.92l.37-.23a16.06,16.06,0,0,1,9.2-2.6l-.84,0a15.47,15.47,0,0,0-8.95,2.62Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M483.39,23.65l-.8.05c1.43-.09,2.92.73,4.47,2.5l.19.22C491,30.91,495.13,41,499.52,57c-4.19-16.08-8.11-26.15-11.7-30.64l-.19-.23C486.16,24.4,484.75,23.57,483.39,23.65Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M435.19,28.85l-.84.13a52.14,52.14,0,0,1,20,.75l.72.17c14,3.38,28.93,12.27,44.46,27.13-15.35-14.89-30.07-23.81-43.94-27.21l-.71-.17A50.78,50.78,0,0,0,435.19,28.85Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M380.12,40.86l-1,.3a140.06,140.06,0,0,1,45.84-5.07l1.2.07C449.37,37.54,474,44.34,499.52,57c-25.39-12.74-49.84-19.58-72.95-21L425.39,36A138.53,138.53,0,0,0,380.12,40.86Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M400.68,44.74a248.69,248.69,0,0,0-86.32,19.7L313,65c-1.13.49-2.25,1-3.37,1.5l-1.56.72c1.4-.65,2.82-1.28,4.24-1.9l1.37-.6a250.64,250.64,0,0,1,86.65-19.85l1.59-.08C421.55,44,455,44.31,499.52,57c-44.38-12.8-77.72-13.2-97.25-12.36Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M212,125.6c-.83.63-1.64,1.29-2.46,1.93C210.33,126.88,211.14,126.23,212,125.6Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M203,132.69c2.14-1.75,4.32-3.46,6.51-5.16-1.51,1.18-3,2.35-4.54,3.56Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M382.25,55.61A364.57,364.57,0,0,0,279.69,84.89l-1.63.75a345.53,345.53,0,0,0-66.09,40A347.2,347.2,0,0,1,277.59,86l1.63-.75A366.25,366.25,0,0,1,382,55.81l1.88-.25c47.27-5.88,78.95-2.48,115.63,1.47a415.09,415.09,0,0,0-115.38-1.67Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M71.81,298.64c-.51,1-1,2.07-1.49,3.11C70.81,300.71,71.3,299.67,71.81,298.64Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M371.63,68.16A461.74,461.74,0,0,0,259.7,108.49l-1.78.93a437.57,437.57,0,0,0-94,65.91l-1.44,1.33a417.58,417.58,0,0,0-71.7,87.4l-1,1.67q-9.7,16-17.93,32.91,8.1-16.53,17.6-32.2l1-1.67a418.19,418.19,0,0,1,71.75-87.53l1.44-1.33a439.07,439.07,0,0,1,94.1-66.08l1.79-.93a463.51,463.51,0,0,1,112-40.53l2.05-.45A498.67,498.67,0,0,1,499.52,57,497.5,497.5,0,0,0,373.68,67.7Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M66,310.94c1.39-3.09,2.84-6.14,4.31-9.19-.75,1.56-1.52,3.11-2.25,4.68Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M36.5,625.07c.17.72.35,1.44.52,2.16C36.84,626.51,36.67,625.79,36.5,625.07Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M39.6,637.53c-.91-3.41-1.76-6.85-2.58-10.3.39,1.62.75,3.25,1.16,4.86Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M40.12,417.07A452.3,452.3,0,0,1,85.56,307.49l1-1.78A484.64,484.64,0,0,1,159,210.87l1.45-1.47a509.12,509.12,0,0,1,95-75.55l1.8-1.1a519.83,519.83,0,0,1,113.07-51.7q1-.35,2.07-.66A526,526,0,0,1,499.52,57,526.32,526.32,0,0,0,372.36,80.18l-2.08.66a519.57,519.57,0,0,0-113.11,51.51l-1.81,1.11a508.88,508.88,0,0,0-95,75.38c-.48.5-1,1-1.45,1.48A483.45,483.45,0,0,0,86.4,305l-1,1.77A451.14,451.14,0,0,0,39.92,416.32c-.18.66-.36,1.33-.53,2a432.18,432.18,0,0,0-14,119.77l0,1.08,0,1.05A423,423,0,0,0,36.5,625.07,422.77,422.77,0,0,1,25.66,541l0-1,0-1.07a432.88,432.88,0,0,1,14-119.81C39.76,418.41,39.94,417.74,40.12,417.07Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M172,862.1c-4.1-4-8.07-8.05-12-12.21,3.22,3.41,6.44,6.8,9.78,10.08Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M158.64,848.51c.44.47.91.91,1.35,1.38C159.55,849.43,159.08,849,158.64,848.51Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M67.72,459.71a516.87,516.87,0,0,1,42.59-114l1-1.87a553.06,553.06,0,0,1,68-101.66l1.36-1.61A559,559,0,0,1,270,156.24l1.7-1.28A535.76,535.76,0,0,1,378,92.85l1.95-.85A500.26,500.26,0,0,1,499.52,57,500.34,500.34,0,0,0,379.74,91.82l-2,.84a536,536,0,0,0-106.5,61.94l-1.7,1.28a557.88,557.88,0,0,0-89.43,84.22c-.46.53-.91,1.07-1.37,1.61a551,551,0,0,0-68.14,101.54l-1,1.87A515.76,515.76,0,0,0,67,459c-.16.68-.33,1.37-.49,2.05a473.65,473.65,0,0,0-13,121.34l0,1.08,0,1A426.18,426.18,0,0,0,72.78,700.8c.19.62.39,1.24.59,1.87a388.43,388.43,0,0,0,48.25,99.54c.35.53.7,1,1.06,1.57a378.47,378.47,0,0,0,36,44.73,377.38,377.38,0,0,1-35.32-44.12l-1.06-1.56a388,388,0,0,1-48.18-99.48c-.2-.62-.39-1.24-.59-1.87A426.91,426.91,0,0,1,54.3,585.25l0-1,0-1.08a474.82,474.82,0,0,1,13-121.36C67.39,461.08,67.55,460.4,67.72,459.71Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M274,937.32c1.8,1.08,3.59,2.16,5.41,3.2C277.6,939.48,275.81,938.4,274,937.32Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M269.56,934.58c1.48.92,3,1.84,4.45,2.74C272.52,936.42,271,935.5,269.56,934.58Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M279.42,940.52c3.66,2.1,7.37,4.09,11.12,6Q284.92,943.66,279.42,940.52Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M394.92,102.1l-1.71,1a523.37,523.37,0,0,0-92.9,71.15l-1.48,1.42a602.36,602.36,0,0,0-77.9,92l-1.19,1.73A636.81,636.81,0,0,0,160.5,377l-.84,1.95a614.85,614.85,0,0,0-36.92,117.8c-.15.7-.29,1.4-.43,2.1a555.87,555.87,0,0,0-11,122.71l0,1.08,0,1c1.15,41.09,7.09,79.56,17.18,114.88.17.61.35,1.22.52,1.82a375.75,375.75,0,0,0,42.51,95.67c.31.49.62,1,.94,1.47a316.84,316.84,0,0,0,64,73.24l1.26,1.05a296.11,296.11,0,0,0,31.79,22.76,293.33,293.33,0,0,1-30.93-22.34c-.43-.34-.84-.69-1.26-1a316.17,316.17,0,0,1-63.78-73.15l-.93-1.47A375.93,375.93,0,0,1,130.27,741c-.17-.61-.35-1.21-.52-1.82-10.06-35.31-16-73.77-17.14-114.86l0-1,0-1.08a558,558,0,0,1,10.93-122.74c.14-.7.28-1.4.43-2.1a616.6,616.6,0,0,1,36.8-117.85l.84-2a638.54,638.54,0,0,1,59-107.67c.39-.58.79-1.15,1.19-1.73A603,603,0,0,1,299.45,176l1.47-1.42a523.16,523.16,0,0,1,92.62-71.29l1.7-1h0c42.61-25,71.19-34.39,104.28-45.22A434.9,434.9,0,0,0,394.92,102.1Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M293.74,948.21c-1.07-.54-2.13-1.11-3.2-1.66.45.23.89.5,1.34.72Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M457.56,80.33q5.07-3.33,10.21-6.43C464.23,76,460.84,78.17,457.56,80.33Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M457.48,80.38l.08,0Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M449.15,86c2.77-1.93,5.54-3.83,8.33-5.66Q453.23,83.17,449.15,86Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M467.77,73.9l.17-.11Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M430.91,99.59C437,94.84,443,90.36,449.15,86Q439.93,92.46,430.91,99.59Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M467.94,73.79c2.79-1.68,5.59-3.29,8.4-4.88C473.44,70.54,470.65,72.16,467.94,73.79Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M205.38,528a794.87,794.87,0,0,1,28.41-121c.22-.67.43-1.35.65-2a781.93,781.93,0,0,1,46-112.58l.93-1.83a674,674,0,0,1,60.81-98.49c.38-.52.77-1,1.16-1.55,22.44-29.79,46.84-56.36,72.73-78.78.44-.39.89-.77,1.34-1.15,4.44-3.82,8.94-7.47,13.47-11-4.49,3.47-9.07,7.09-13.9,10.9l-1.35,1.16c-26,22.38-50.55,48.91-73.11,78.67l-1.17,1.54a672.64,672.64,0,0,0-61.13,98.4l-.93,1.83A778.41,778.41,0,0,0,233,404.59l-.66,2a790.83,790.83,0,0,0-28.57,121c-.11.71-.22,1.42-.32,2.14a714.7,714.7,0,0,0-8,123.84c0,.36,0,.72,0,1.08l0,1c1.14,41.08,6.05,79.16,14.23,113.75l.42,1.79c8.29,34.47,19.84,65.45,34.15,92.48l.75,1.4c14.41,26.89,31.58,49.82,51,68.31l1,1c19.51,18.35,41.27,32.24,64.79,41.23l1.21.46q6.15,2.3,12.43,4.14l1.21.35q-6.5-1.89-12.82-4.26l-1.21-.45c-23.4-9-45.05-22.82-64.46-41.14l-1-.94c-19.33-18.47-36.41-41.37-50.75-68.24l-.75-1.41c-14.24-27-25.74-58-34-92.43l-.42-1.79c-8.14-34.58-13-72.65-14.17-113.73l0-1c0-.36,0-.72,0-1.08a718.79,718.79,0,0,1,7.95-123.85C205.17,529.47,205.27,528.75,205.38,528Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M492.66,60.33c2.29-1.11,4.56-2.25,6.86-3.3C497.16,58.14,494.88,59.24,492.66,60.33Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M476.34,68.91c5.07-2.84,10.46-5.68,16.32-8.58C487.18,63,481.74,65.86,476.34,68.91Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M308.82,549.89a1200.56,1200.56,0,0,1,17.75-123.26c.14-.7.27-1.39.41-2.08a1123.24,1123.24,0,0,1,29.5-116.07l.6-1.9a876.47,876.47,0,0,1,39.41-103l.76-1.63c14.6-31.45,30.53-59.81,47.49-84.12l.87-1.25c17-24.24,35.11-44.41,53.91-59.54-19,15.1-37.22,35.24-54.43,59.46l-.88,1.25c-17.12,24.29-33.21,52.62-48,84.05-.25.54-.51,1.08-.76,1.63a870.05,870.05,0,0,0-39.81,103c-.2.63-.4,1.27-.61,1.9a1114.58,1114.58,0,0,0-29.8,116l-.42,2.08a1189.07,1189.07,0,0,0-18,123.24c-.07.72-.13,1.44-.2,2.17a1087.54,1087.54,0,0,0-4.24,124.64l0,1.08c0,.35,0,.69,0,1,1.12,41.08,4.72,78.87,10.46,113l.3,1.76c5.82,33.94,13.77,64.16,23.53,90.21l.51,1.36c9.83,25.91,21.45,47.65,34.54,64.79l.67.88c13.14,17,27.74,29.35,43.47,36.67l.81.37A82.54,82.54,0,0,0,438.41,994l.92.14a80.85,80.85,0,0,1-21.53-6.47l-.81-.37c-15.58-7.3-30-19.65-43.07-36.61-.22-.3-.44-.59-.67-.88-13-17.12-24.49-38.85-34.22-64.75l-.51-1.35c-9.68-26-17.56-56.25-23.33-90.19l-.3-1.75c-5.7-34.07-9.27-71.86-10.39-112.94l0-1.05,0-1.08a1097,1097,0,0,1,4.18-124.65C308.68,551.34,308.75,550.62,308.82,549.89Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M430.39,561c.88-41.9,2.66-83.69,5.23-124.41,0-.7.09-1.4.13-2.1,2.6-40.69,6-80.29,10.07-117.84.08-.65.15-1.29.22-1.94,4.1-37.48,8.89-72.9,14.27-105.3l.27-1.67c5.4-32.3,11.37-61.56,17.82-86.83l.33-1.3c6.49-25.21,13.45-46.38,20.79-62.56-7.54,16.17-14.7,37.34-21.37,62.54-.11.43-.23.86-.34,1.3-6.64,25.26-12.78,54.51-18.34,86.8-.09.56-.19,1.11-.28,1.67-5.54,32.4-10.48,67.81-14.72,105.29l-.21,1.94c-4.21,37.55-7.72,77.14-10.42,117.82,0,.7-.09,1.4-.13,2.1-2.67,40.72-4.52,82.5-5.45,124.41,0,.72,0,1.45-.05,2.18-.89,41.9-.87,83.91.19,125l0,1.08,0,1c1.09,41.07,3.15,78.72,6,112.53,0,.58.1,1.17.15,1.74,2.91,33.68,6.63,63.5,11,89.06.08.44.15.88.23,1.33,4.42,25.4,9.52,46.54,15.14,63,.1.29.2.57.29.85,5.65,16.28,11.81,27.87,18.37,34.33l.33.33c3.73,3.57,7.58,5.49,11.53,5.68l.85,0c-3.86-.18-7.62-2.09-11.26-5.66l-.33-.33c-6.39-6.46-12.41-18-17.93-34.32-.09-.28-.18-.56-.28-.84-5.49-16.44-10.47-37.57-14.8-63-.07-.44-.15-.88-.22-1.33-4.31-25.55-8-55.37-10.81-89l-.15-1.74c-2.83-33.81-4.86-71.46-5.95-112.54l0-1,0-1.08c-1.05-41.14-1.11-83.15-.26-125.06C430.36,562.44,430.38,561.71,430.39,561Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M557.57,892.64l-.06,1.32c-1.13,25.46-2.74,46.65-4.79,63.16,0,.29-.07.57-.11.85-2.06,16.35-4.56,28-7.44,34.55l-.15.34c-1.7,3.74-3.53,5.72-5.48,5.84l.79-.05c2-.13,4-2.11,5.77-5.86l.16-.33c3-6.55,5.67-18.22,7.87-34.58,0-.28.07-.56.11-.85,2.18-16.51,3.9-37.71,5.13-63.17l.06-1.33c1.2-25.61,1.9-55.48,2-89.18v-1.74c.12-33.84-.33-71.51-1.39-112.58l0-1,0-1.08c-1.08-41.14-2.72-83.13-4.82-125,0-.72-.07-1.45-.11-2.18-2.11-41.87-4.68-83.62-7.62-124.28l-.15-2.1c-3-40.63-6.27-80.16-9.86-117.63l-.18-1.93c-3.6-37.41-7.48-72.74-11.53-105l-.21-1.67c-4-32.19-8.29-61.35-12.61-86.51-.08-.43-.15-.86-.23-1.29-4.34-25.1-8.76-46.16-13.18-62.22,4.22,16.07,8.46,37.14,12.62,62.25l.21,1.29c4.15,25.17,8.21,54.34,12.11,86.55l.21,1.66c3.89,32.32,7.62,67.66,11.09,105.07l.18,1.94c3.46,37.48,6.67,77,9.53,117.65,0,.7.09,1.4.14,2.1C548.46,476.21,551,518,553,559.83c0,.73.07,1.46.11,2.18,2,41.88,3.66,83.87,4.74,125l0,1.08,0,1c1.06,41.08,1.54,78.75,1.47,112.58v1.74C559.31,837.17,558.68,867,557.57,892.64Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M677.69,790.86c-2.92,34-7.67,64.3-14,90.46l-.33,1.36c-6.39,26-14.37,47.89-23.7,65.17l-.48.89c-9.37,17.13-20.09,29.66-31.91,37.16l-.61.39a51.47,51.47,0,0,1-18.9,7.2l.84-.13a52.56,52.56,0,0,0,19.06-7.23l.62-.39c12-7.52,22.81-20.07,32.3-37.22l.49-.89c9.44-17.31,17.52-39.19,24-65.22.11-.46.23-.91.34-1.36,6.42-26.18,11.24-56.49,14.21-90.5l.15-1.76a1031.19,1031.19,0,0,0,2.92-113l0-1,0-1.08c-1.11-41.14-4.25-83-9.13-124.54-.09-.72-.17-1.44-.26-2.17-5-41.56-11.64-82.86-19.79-123-.14-.69-.29-1.38-.43-2.07-8.21-40.06-17.88-78.9-28.73-115.59l-.57-1.89a1055.82,1055.82,0,0,0-36-102.4c-.23-.54-.45-1.08-.67-1.61-13-31.23-26.92-59.34-41.45-83.39l-.75-1.24c-14.6-24-29.81-43.88-45.37-58.73,15.37,14.88,30.42,34.8,44.84,58.81l.75,1.24c14.36,24.08,28.11,52.22,41,83.47l.66,1.61a1067.88,1067.88,0,0,1,35.56,102.46c.19.63.37,1.27.56,1.9,10.74,36.7,20.31,75.56,28.43,115.64l.42,2.07c8.07,40.11,14.7,81.42,19.6,123,.08.72.17,1.44.25,2.17,4.84,41.58,7.95,83.41,9.06,124.55l0,1.08,0,1a1044.79,1044.79,0,0,1-2.85,113Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M784.15,768c-5.48,34.55-13.94,65.65-25,92.82l-.58,1.41c-11.13,27-24.84,50.13-40.71,68.82l-.82,1c-15.95,18.54-34.06,32.66-53.93,41.89l-1,.47a135.88,135.88,0,0,1-19.26,7.06l1-.29a137.76,137.76,0,0,0,19.09-7l1-.48c20-9.26,38.22-23.41,54.27-42l.83-1c16-18.72,29.77-41.84,41-68.9.2-.47.39-.94.58-1.41,11.12-27.19,19.64-58.31,25.15-92.86.1-.6.19-1.19.29-1.79,5.41-34.68,7.81-72.81,6.79-113.89,0-.35,0-.69,0-1l0-1.08a828.27,828.27,0,0,0-13-123.71c-.13-.71-.25-1.42-.39-2.13A911,911,0,0,0,748.7,403.33c-.22-.68-.45-1.35-.67-2a878.65,878.65,0,0,0-45.71-111.92l-.9-1.82a728.34,728.34,0,0,0-57.92-97.64l-1.09-1.52c-21.06-29.49-43.66-55.71-67.37-77.78l-1.22-1.14C550,87.5,525.09,69.71,499.52,57c25.41,12.73,50.17,30.56,73.84,52.59l1.22,1.14c23.56,22.11,46,48.37,67,77.89l1.08,1.53a728.77,728.77,0,0,1,57.58,97.74l.9,1.82a884.66,884.66,0,0,1,45.44,112l.66,2a918.29,918.29,0,0,1,30.57,120.64c.13.72.26,1.43.38,2.14a833.58,833.58,0,0,1,13,123.72c0,.36,0,.72,0,1.08l0,1c1,41.09-1.36,79.2-6.73,113.88C784.33,766.83,784.24,767.43,784.15,768Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M873.32,736.3c-7.61,35.31-19.18,67.51-34.17,96.08l-.78,1.49c-15.1,28.44-33.6,53.25-55,73.89l-1.11,1.06a249.53,249.53,0,0,1-68.86,46.88L715,955a251.12,251.12,0,0,0,68.27-46.61l1.11-1.07c21.44-20.68,40-45.51,55.17-74,.26-.49.53-1,.79-1.48,15-28.6,26.65-60.82,34.3-96.15l.39-1.82c7.51-35.44,11-74,10-115,0-.35,0-.7,0-1.05l0-1.08a610.15,610.15,0,0,0-16.26-122.54c-.17-.7-.33-1.4-.5-2.09a675.64,675.64,0,0,0-39.89-117.31l-.87-1.95A684.84,684.84,0,0,0,767.6,266c-.39-.57-.78-1.15-1.18-1.72a625.49,625.49,0,0,0-76.3-91l-1.43-1.4a515.53,515.53,0,0,0-89.05-70l-1.62-1c-31.67-19.3-64.73-34.15-98.5-43.78,33.64,9.69,66.59,24.59,98.14,44l1.61,1A515.23,515.23,0,0,1,688,172.12l1.43,1.41a626.88,626.88,0,0,1,76,91.18l1.18,1.71a688.14,688.14,0,0,1,59.69,106.92l.87,2a678,678,0,0,1,39.75,117.37c.17.7.33,1.4.5,2.1a612.53,612.53,0,0,1,16.21,122.56l0,1.08c0,.35,0,.7,0,1,1,41.09-2.51,79.61-10,115Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M939.8,697a380.34,380.34,0,0,1-41,100.13l-.93,1.57a351.36,351.36,0,0,1-65.58,80.17L831,880.09q-6.27,5.61-12.8,10.92l2-1.6q5.85-4.8,11.49-9.85l1.32-1.19a352.43,352.43,0,0,0,65.72-80.28l.94-1.58a380.77,380.77,0,0,0,41.1-100.2l.48-1.88a437.17,437.17,0,0,0,12.45-116.49l0-1,0-1.08a500.14,500.14,0,0,0-18.67-121.1c-.19-.68-.38-1.37-.58-2.05a549.67,549.67,0,0,0-46.69-113.25l-1-1.85A581.49,581.49,0,0,0,816.13,237c-.46-.54-.92-1.07-1.39-1.6a575.29,575.29,0,0,0-90-82.9l-1.69-1.25A533.67,533.67,0,0,0,617.93,90.9L616,90.08A478.69,478.69,0,0,0,499.52,57,477.11,477.11,0,0,1,615.77,90.28l1.91.82a533.33,533.33,0,0,1,105,60.57l1.68,1.25A576.53,576.53,0,0,1,814.09,236l1.39,1.6a582.41,582.41,0,0,1,70.31,100.64l1,1.86a551.54,551.54,0,0,1,46.61,113.32l.57,2.05a502,502,0,0,1,18.64,121.13l0,1.08,0,1a438.22,438.22,0,0,1-12.42,116.47C940.11,695.78,940,696.41,939.8,697Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M961.51,700.39c-.51,1.22-1,2.42-1.56,3.62C960.46,702.8,961,701.61,961.51,700.39Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M956.28,712.56c1.28-2.82,2.45-5.69,3.67-8.55-1.84,4.34-3.7,8.67-5.69,12.93Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M992.78,529.8l0-1.08a443.33,443.33,0,0,0-20-119.44l-.63-2a471.54,471.54,0,0,0-50.59-108.57l-1.1-1.75a505.9,505.9,0,0,0-76.5-93.28l-1.51-1.44a527.12,527.12,0,0,0-97.77-73.52c-.61-.36-1.22-.72-1.84-1.07A528.81,528.81,0,0,0,628.38,78.34l-2.08-.62A523.41,523.41,0,0,0,499.52,57,522.36,522.36,0,0,1,626.2,77.94l2.08.61a529.41,529.41,0,0,1,114.29,49.51l1.84,1.07a529,529,0,0,1,97.69,73.68l1.51,1.45a507.06,507.06,0,0,1,76.44,93.41l1.11,1.75A472.13,472.13,0,0,1,971.7,408.07l.63,2a444,444,0,0,1,20,119.47l0,1.08c0,.35,0,.7,0,1A419.43,419.43,0,0,1,978.6,649.78l-.51,1.93a408.82,408.82,0,0,1-16.58,48.68,407.12,407.12,0,0,0,16.94-49.47c.18-.64.35-1.29.52-1.93A419.73,419.73,0,0,0,992.8,530.84C992.79,530.5,992.78,530.15,992.78,529.8Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M981.4,378.42c-.22-.77-.43-1.55-.65-2.33C981,376.87,981.18,377.65,981.4,378.42Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M984.4,389.41,983,384c-.5-1.86-1-3.7-1.57-5.55C982.44,382.07,983.45,385.72,984.4,389.41Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M976.27,361.53a420,420,0,0,0-51-103.86L924.14,256a439.43,439.43,0,0,0-77.17-86l-1.53-1.3a463.11,463.11,0,0,0-98.63-64.06l-1.86-.89A485.7,485.7,0,0,0,629.54,65.67l-2.1-.41A513.06,513.06,0,0,0,499.52,57a514.44,514.44,0,0,1,128,8.43l2.1.41A488,488,0,0,1,745.06,104.2l1.86.9a464.61,464.61,0,0,1,98.67,64.21l1.53,1.3a440.83,440.83,0,0,1,77.2,86.08l1.12,1.65a421,421,0,0,1,51,103.94l.63,1.93q1.9,5.91,3.64,11.88c-1.23-4.23-2.49-8.45-3.84-12.63C976.7,362.81,976.49,362.17,976.27,361.53Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M841.86,151.93c-.64-.58-1.25-1.18-1.89-1.75C840.61,150.75,841.23,151.35,841.86,151.93Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M852.67,162l-2.2-2.12c-2.81-2.73-5.71-5.36-8.61-8C845.52,155.24,849.14,158.59,852.67,162Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M825.19,137.56a381.61,381.61,0,0,0-92.91-55.23l-1.75-.73A405.19,405.19,0,0,0,621.88,53.86l-2-.22h0a420.57,420.57,0,0,0-64.21-1.93c22.51-.73,41.63.56,64.41,2.12l2,.22A406.76,406.76,0,0,1,730.91,82l1.75.72a383.68,383.68,0,0,1,93.06,55.38l1.43,1.17q6.54,5.33,12.82,11c-4.36-3.91-8.8-7.75-13.34-11.45Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M555.69,51.71A490.07,490.07,0,0,0,499.52,57C518.62,54.74,536.42,52.61,555.69,51.71Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M701.22,62A297.39,297.39,0,0,0,606.3,43.45l-1.73-.05C571,42.47,535.73,46.84,499.52,57c46.53-12.36,71.21-12.83,105.37-13.48l1.74.06a299.41,299.41,0,0,1,95.2,18.7l1.54.58a286.83,286.83,0,0,1,27.24,12L728.76,74q-12.69-6.33-26-11.41Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M583.73,35l-1.37.09C555.82,36.78,528,44,499.52,57c28.67-13,56.59-20.17,83.27-21.87l1.37-.08a185.21,185.21,0,0,1,62.92,7l-1.21-.35A183.49,183.49,0,0,0,583.73,35Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M584.25,28.32l-.92-.13-.72,0C583.16,28.22,583.7,28.24,584.25,28.32Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M554.17,29.09c-17.56,3.63-35.88,12.8-54.65,27.94,19-15.11,37.45-24.25,55.17-27.86l.91-.18c.72-.14,1.45-.21,2.16-.33-.92.08-1.83.16-2.69.25Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M557.76,28.66a176.35,176.35,0,0,1,24.85-.51A82.61,82.61,0,0,0,557.76,28.66Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M717.91,511.11h0l.46-4.69-21.9,10.34L687.07,529l-1,5.75c-1.5.27-3,.52-4.52.78L677.12,530l-11.55-3.1-2.66,3-5.49-1.81,1.81,7.87-4.75,2.46L663.19,568l11.56-2.35,3.8-7.56,16.9-8.74,5.19-.82,4.25-5.7,19.38-11.95-.23-5.27,3.74-2.77Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="735.3 540.6 723.64 544.83 728.11 549.39 735.12 546.44 735.12 546.44 735.3 540.6" style="fill:#d9dadb"></polygon><path d="M718.37,506.41l-.46,4.69h0l9.87,11.68,1.34-1,6.51-4.94,6.66-1.54,1.31-7,6.06-2.29,1.86-7.2,6.17-3.36.3-11.91L764.63,466l-9.21-8.78-11-.55-5.7-5-4.35,2.65,2.24,5.3-3,1.78,0,9.42,5.16,5.91-1,16.72Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M737.12,450.24l-1-7.24-.61-4.22-2.11-.6-3.34,11.23-3.34,4.19-2.57,6.24q-5.24,1.2-10.54,2.34l-2.71,2.13-6.26-1.58,6.78,10.78,23-1.45.17-.1-1-1.17,0-9.42,3-1.78-2.24-5.3,4.35-2.65Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="691.5 448.75 691.5 448.75 691.5 448.75 691.5 448.75" style="fill:#d9dadb"></polygon><polygon points="692.08 437.33 689.51 435.76 687.67 440.25 687.29 445.12 691.5 448.75 693.85 443.29 692.08 437.33" style="fill:#d9dadb"></polygon><path d="M665.57,526.94l11.55,3.1,4.41,5.45c1.51-.26,3-.51,4.52-.78l1-5.75,9.4-12.21,21.9-10.34,19.37-13,1-16.72L734.63,472l-.17.1-23,1.45-6.78-10.78-1.26-2-4.21-3.64L694,450.64l-.73-5.45-7.72-5.91-2.95-.13-3.11-4.87-6.73,1.22-2.88-4.05q-8.58,1.5-17.32,2.88l-21-14.59-13-6.66-8.55.44-13.48,7.13,6.89,7.19L601,433.17l-5.65,1.26L592.06,441l-9.53-.81.62,8.73h3.06l17.11,21.68,2.82,6.76,8,4,6.61,10.76,1.52,10.68,5.15,5.76,8,3.71,9.65,14.35,4.29,2.51,4.66,8,.46,1.46,4.75-2.46-1.81-7.87,5.49,1.81Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="561.64 373.78 556.97 376.44 551.83 376.73 546.95 380.48 550.13 383.09 554.6 382.63 557.29 380.25 560.19 379.4 559.3 377.99 561.49 375.58 561.64 373.78" style="fill:#d9dadb"></polygon><polygon points="572.22 382.46 568.46 394.66 568.21 396.42 573.45 394.88 574.99 394.44 575.29 394.34 578.95 385.61 576.96 381.7 572.22 382.46 572.22 382.46" style="fill:#d9dadb"></polygon><path d="M717.69,782.07l-1-11.61-4.49-5.89L708,774.45l-3.66,3.61-2.55-.17-2.61,5.39,2,2-11.9,7.55-2.22,1.21-4.47,3.07-2.53-.36-6.17,2.64-4.94,10,1.35,8.94,1.57,2.06-.26,3-6.18,8.72-4.2,4.51-.44,5.68,2.47,4-1.44,4.6,2,3.17,7.25,2.4,14.34-5.74,6.4-10.39,2-5.5L709,806.16c.28-1.94.55-3.9.81-5.86l3.23-3.34-.47-8.51,6.47-2.83Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><polygon points="573.85 399.17 573.45 394.88 568.21 396.42 566.97 404.7 564.05 410.29 563.08 410.54 569.42 426.66 570.37 424.62 575.01 411.7 573.86 399.18 573.85 399.17 573.85 399.17" style="fill:#d9dadb"></polygon><polygon points="594.27 392.51 580.38 402.44 573.89 399.1 573.86 399.18 575.01 411.7 570.37 424.62 570.63 428.19 580.16 429 583.41 422.44 589.06 421.19 591.53 415.86 584.64 408.67 598.12 401.54 594.27 392.51" style="fill:#d9dadb"></polygon><path d="M568.36,877.52l3.87-.6c.13-2.34.26-4.72.38-7.12L567.84,868l-4.25,5.43Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M486.78,917.66l3.38-1.68,9.25-.42,5.46-1.93,16.11.7,1.4-1.18,10.67-1.41,9.79-4,15.56-9.89L568.81,887l7.76-4.83,3.86-7.89a1.15,1.15,0,0,0,0-.19c-2.69.21-5.38.41-8.09.6l-.12,2.25-3.87.6-4.77-4.1,4.25-5.43,4.77,1.81,1.95-3c.09-1.87.19-3.76.28-5.66l-3.91-5.3,1.66-2.38-3.21-3.81-1.07-1.25-6.54,1.39-3.71-1.53-4.43,1.22-2.25.62-1,1.76-5,.87-2.3,3.34-5.75.65-3.46,7.62-6.55.68-3.56,6.11q-3.53.11-7.06.18l-7.62-3.22L504,869.54l-1.34,4.14-5.17,3.82c-2.85,0-5.71,0-8.58,0l-1.72-2.45,3.07-2.3-3.65-5.59-4.93-1.57q.84,10.35,1.72,20l-4.61,1-.48,2.13-8.05-.12-6.75-1.76,1.24-2.3-3.94-1.3-4.21,1.8.29.27,2.61,2.43,4.44,6.7,8.56,8.4.52,4.65-3-.41,4.8,5-.51,2.29Zm54.34-29.86,7.21-2.55,5.51,2.38-2.92,4.62h0l-5.28.26-3.71,3.87L537.28,892Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M553.84,887.63l-5.51-2.38-7.21,2.55L537.28,892l4.65,4.43,3.71-3.87,5.28-.26h0Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M582.8,818.17l2.34-4.58-5.49-2.9L575.16,813,571,809.74l-7.32.23c0-.76,0-1.52,0-2.28h-5.35l-7.26,2.75-.93,4-8.45,3.18L538,823.45l-3.83,1.84-5.12-2.4L522.9,824l5.2,6.18c0,1.24,0,2.48.07,3.71l9.06,2.45.72,3,4.11.21,2.18,5.68,8.74.29.66,3.81a1.48,1.48,0,0,1,0,.21l4.43-1.22,3.71,1.53,6.54-1.39,1.07,1.25,9-7,0-5.58,3.47-.14,3.43-4.1-3.05-2,1.28-2.22-2.87-1.49,5.07-6.31Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M488.89,877.52c2.87,0,5.73,0,8.58,0l5.17-3.82,1.34-4.14,5.09-1.42,7.62,3.22q3.54-.08,7.06-.18l3.56-6.11,6.55-.68,3.46-7.62,5.75-.65,2.3-3.34,5-.87,1-1.76,2.25-.62a1.48,1.48,0,0,0,0-.21l-.66-3.81-8.74-.29-2.18-5.68-4.11-.21-.72-3-9.06-2.45c0-1.23,0-2.47-.07-3.71L522.89,824l-8.23,1.36-5.1,3.56-2.93-2.51-19,2.71q.6,10.54,1.22,20.51l-8.38,0q.6,8.22,1.22,16l4.93,1.57,3.65,5.59-3.07,2.3Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><polygon points="493.35 808.93 493.34 808.93 493.35 808.93 493.35 808.93" style="fill:#ff7b00"></polygon><path d="M509.56,828.89l5.1-3.56,8.23-1.36-3.45-4.12-6.91-.43-7.29,1.5-16,3.1q-10,0-20.13-.13l-3.68-2.75q-17.56-.3-35.2-1.1l-4.86-3.69-6-.31-4.1,3-4.79-.29.53,3.37,13,13.55,2.28,4.2,9.08,9.06,1.5,2.44-.32,2.63.92,5.84,3.74,5.38.42,3.94,4.89,8.78,4,4,6.06,3.11,4.21-1.8,3.94,1.3-1.24,2.3,6.75,1.76,8.05.12.48-2.13,4.61-1q-.88-9.62-1.72-20-.63-7.82-1.22-16l8.38,0q-.63-10-1.22-20.51l19-2.71Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><polygon points="362.2 649.75 364.92 643.41 359.08 640.86 355.25 645.59 362.2 649.75" style="fill:#ff7b00"></polygon><path d="M599.26,814.76l4.71.06,5.83-17.5-6.07-3.66L603,798l-6.67-.88-2.92-5.5c0-1.81.07-3.63.1-5.47l-2.8-2.8L592.9,779l-1.16-9.55-1.52-2.69,1.3-5.24h0l-8.44-1L586.74,771l-2.7,2.19,1.7,9.45-4.46,8,3.17,4.71,3.38,5,4.57-.38,2.47,3.55-2,3.42Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M646.31,778.25l-1.94-9.65,2.54-5.15-16.48,8.88-4.32-1-4.64,3.94-3.62-1.52-5.1,3.91-4.85-3.9-6.28,2.82-2.3,4.66.73,9.53,2.35,1.86,1.33,1.06,6.07,3.66L604,814.82l-4.71-.05L592.91,807l2-3.42L592.4,800l-4.57.38-3.38-5h0l-22.31,7.56,1.57,4.75c0,.76,0,1.52,0,2.28l7.32-.23,4.15,3.29,4.49-2.34,5.49,2.9-2.34,4.58,3,2.61-5.07,6.31,2.87,1.49-1.28,2.22,3.05,2-3.43,4.1h0l-3.47.14,0,5.58-9,7,3.22,3.81h0l-1.66,2.38,3.91,5.3c-.09,1.9-.19,3.79-.28,5.66l-1.95,3c-.08,1.63-.17,3.26-.26,4.87,2.71-.19,5.4-.39,8.09-.6l.07-1.26.34-7L584,863.9l14.1-5,3.65-3.4-.44-9.9-1.18-8.77-3.35-2.16-.49-5.62L610.84,823l3.73-6.3,10-5.66,7.85-2.12,6.19-4.5h0l8.52-12.79Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><polygon points="897.15 519.48 895.15 513.86 891.17 511.1 890.81 515.1 891.75 526.32 890.9 527.23 894.46 540.61 896.9 542.31 902.05 534.87 902.05 534.87 902.12 527.26 897.15 519.48" style="fill:#d9dadb"></polygon><path d="M992.64,551.39l-.89-10.59-1.39.42.14-8.44-1.53-1-4.42-7.44-.41,3.73-2.14-3L981,521l-3.74-3.3-.79-2.52-2.79-4.61-3,3.77L967,515l1.3,5.77,4,5.57,1.17-.55,2.51,4.68.77,4.63,2.78,2.94,1.52,9.72,1.24,0,2.93,15.2c2.09,4.93,3.87,11.88,5.42,17l1.69-4.41,1.08-15.14.53-4.64-.4-5.52Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="935.4 443.67 935.05 445.86 937.45 460.57 939.9 463.51 938.61 452.71 935.4 443.67" style="fill:#d9dadb"></polygon><polygon points="939.9 463.51 939.9 463.51 939.9 463.51 939.9 463.51" style="fill:#d9dadb"></polygon><path d="M994.57,536.84l-1.19,3.54-.12,5.54c.22-.49.43-1,.63-1.45l.78,6,.93-7.09-.9-1.61Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="951.87 346.36 953.09 353.81 955.41 359.5 957.04 359.09 955.94 351.9 952.77 342.32 951.87 346.36" style="fill:#d9dadb"></polygon><path d="M950,297.65l-2.75-5.26L945,287.78l-.59-1-1-2-.59-.67,1.41,3.13,6,12.16,2,4.07,3.25,5.82c0-.17-.1-.33-.16-.5l-2-4.22Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="962.28 342.97 961.93 341.94 959.22 334.16 959.01 333.58 955.89 325.17 955.22 323.43 951.7 314.63 953.59 319.54 953.64 320.05 957.06 329 960.5 338.19 960.76 339.36 964.25 349.21 963.58 346.97 963.64 347.16 962.28 342.97" style="fill:#d9dadb"></polygon><polygon points="966.07 354.71 965.52 352.92 965.11 351.65 965.18 351.88 966.07 354.71" style="fill:#d9dadb"></polygon><polygon points="964.05 348.32 963.64 347.16 965.11 351.65 964.05 348.32" style="fill:#d9dadb"></polygon><polygon points="967.43 359.16 968.44 362.6 967.64 359.89 967.43 359.16" style="fill:#d9dadb"></polygon><polygon points="972.99 379.35 974.5 385.59 973.98 383.36 972.99 379.35" style="fill:#d9dadb"></polygon><polygon points="974.5 385.59 975.08 388.1 974.92 387.33 974.5 385.59" style="fill:#d9dadb"></polygon><polygon points="977.51 399.05 976.03 392.16 975.08 388.1 977.63 400.07 979.81 411.27 978.41 403.46 977.51 399.05" style="fill:#d9dadb"></polygon><polygon points="983.9 559.48 982.79 563.39 982.89 560.12 981.02 563.65 978.75 574.14 980.09 573.46 979.63 576.87 981.09 573.64 982.66 567.81 982.86 568.45 983.13 566.96 985.1 550.88 984.75 552.91 983.9 559.48" style="fill:#d9dadb"></polygon><path d="M508.63,777.11l-14.84,3.21.44-10.79L491.32,766l1-5.73-2.41-5.35,2-5.64q-6,0-12,0c-.05-1.21-.1-2.43-.14-3.65l-9.86,1.23-.75,8.54q-7.69-.09-15.42-.27l-7.91-9.87.6-4.75-2.92-3.25q-15.44-.47-30.9-1.31l-3.31,3.55,9.08,15.16c.05.9.11,1.8.17,2.7l-3.28,2.52,7.56,12.39.86,7.87-10,11-2,11.78-3,4.31,1.43,9.51.31,2.06,4.79.29,4.1-3,6,.31,4.86,3.69q17.63.81,35.2,1.1l3.68,2.75q10.08.15,20.13.13l16-3.1h0l-10.6-7.41-1.14-21.91q7.8,0,15.58-.19Q508.86,784.37,508.63,777.11Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M552.85,699.66l-4.17,6.82,1.78,4.36,6.51-1.38.25-2.64,6.27-.06,3.18-.19-4.62-10.74-6.43,2.69Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M557.22,706.82l-.25,2.64-6.51,1.38,2,6,2.45-.34,2.75,9.52,9.78-10.26c0-1.25,0-2.51-.08-3.76l-4.49.18.57-5.39Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M583.09,760.53l-5.5-.69-2-3.51-5.27-1.49.56,1.43L569.63,760l-6.87-2.56-.78-2.82-11.18,3.08-4.88,5.28,3.19,5.57-1.93,11.17,6.64,5.88,5.78-1.85c0,3.11,0,6.2,0,9.25l-6.77.37-5.94-5.91-7-2.62-3.38-3.88-4.07,2.84-9.81-1.89-1.34-3.31L515.71,780l-2.44-4.4-4.64,1.47q.22,7.25.45,14.29-7.77.14-15.58.19l1.14,21.91,10.6,7.41h0l7.29-1.5,6.91.43,3.45,4.12h0l6.16-1.08h0l5.11,2.4,3.83-1.84,3.71-5.78,8.45-3.18.93-4,7.26-2.75h5.35l-1.57-4.75,22.31-7.56h0l-3.17-4.71,4.46-8-1.7-9.45,2.7-2.19Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M601.62,776.55l6.28-2.82,4.85,3.9,5.1-3.91,3.62,1.52,4.64-3.94,4.32,1,16.48-8.88-1.72-.9-5.81-2.85-2.91-12.9-.21-3.86,2.48-6.71-6.15-6.8,2.88-9.85-12.63-7,2-4.41-31.71-15.93-6,9.75,4.27,1.59L587,707.85l-8.2-1-3.85,4.5L572.47,705,575,698l-1.9-2.84q-5.49.38-11,.71l4.62,10.74-3.18.19-.57,5.39,4.49-.18c0,1.25.05,2.51.08,3.76L557.71,726,562,740.68l4.31,4.05,4.05,10.11,5.27,1.49,2,3.51,5.5.69,8.44,1,7.06,4.17c0,2.75-.06,5.48-.09,8.19Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M722.08,564.81l-3.82-.64-4.65,5.06-19.67,6.53-6.76,5.45-5.77-2-5.74,6.21-4.9.48-7.89-7L658,589.09l10.78,11.66,22.42,3.87c2.85-.49,5.68-1,8.51-1.5l-20,30.92h0l-7.78-1.35L665,637.61l-.64,4.88q-3.58.53-7.2,1l-8.28,13.25q.46,11.4.76,22.75c.06,2.29.11,4.56.16,6.83l4.15,4.81.73-1.41,3-6,18.48-21.33,12.66-11,18.61-29.68,13.63-36.1-.29-7.48,3.66-1.87Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><polygon points="595.58 551.25 601.08 547.97 603.05 550.39 607.47 545.22 609.62 547.63 614.34 544.48 616.59 547.19 627.68 547.47 640.24 560.93 647.75 557.19 648.07 556.29 631.24 540.76 619.62 538.59 613.06 523.74 609.28 517.26 605.52 523.92 601.49 522.37 595.02 529.53 598.34 534.56 593.62 542.99 595.58 551.25" style="fill:#ff7b00"></polygon><polygon points="640.24 560.93 636.69 567.5 638.13 575.34 646.11 577.11 650.99 566.95 650.18 566.23 644.34 566.79 647.75 557.19 640.24 560.93" style="fill:#ff7b00"></polygon><path d="M592.24,685.39l2.65-7.76,5.91-7.4-2.37-8.94-4.29-3.6,1.45-3.59-5.5-3-4,4.46-3.59-1.87-7.26,2.7L568.11,654,565.06,659h0L563.89,661l2.27,3-1.31,3.55,4.42,3-8.5,7.83-4.66,9-.49,11.2,6.43-2.69q5.52-.33,11-.71l-.84-1.27L576,687Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><polygon points="636.96 644.77 636.96 644.77 636.96 644.77 636.96 644.77" style="fill:#ff7b00"></polygon><path d="M649.89,645.88l-3.7-2.23L640,647.42l-2.61,4.81-12.51-.6-10.41-6.17-6.47.93-1.81-1.68q-6,.57-12,1.1l-3.94,5.07-.18.21,5.5,3-1.45,3.59,4.29,3.6,2.37,8.94-5.91,7.4-2.65,7.76,7,3-6.09,3.86,31.71,15.93-2,4.41,12.63,7,.5-1.7,5.07-7.57-1-4,3.72-5.67,9-7.16,1.15-2.28-4.15-4.81c0-2.27-.1-4.54-.16-6.83q-.3-11.34-.76-22.75h0l7-11.25Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M582.21,620.05l6,.73,9,7.7,1.28,8.54,3.45,2.24,4-2,.33,7.34,0,.09,1.79,1.66,6.47-.93,10.41,6.17,12.51.6,2.61-4.81,6.16-3.77,3.7,2.23,6-.37,1.23-2q3.61-.5,7.2-1l.64-4.88,6.91-4.91,7.79,1.34h0l20-30.92c-2.83.51-5.66,1-8.51,1.5l-22.42-3.87L658,589.09l-8-1.77-1.44-7.83,3.55-6.58-12.56-13.45-11.09-.28-2.25-2.72-4.72,3.15-2.15-2.41L615,562.37,613,560l-5.5,3.27-2,5.55q.3,4.08.59,8.16l-5,.49-4.39,7.92q.25,4,.49,7.95l-4.61-.6-1.53,11.9c0,.51.06,1,.08,1.52.12,2.16.23,4.33.35,6.49l-8.66.94Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M996.77,459.09h0l-.18-1.1v0l.29,5.27.64,4.52-.27-4.47C997.1,461.92,996.94,460.5,996.77,459.09Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="987.48 517.33 987.45 517.23 987.42 517.66 987.41 519.31 987.48 517.33" style="fill:#d9dadb"></polygon><path d="M998.93,484.71l.13,2.41.08,4.92-.26-.67-.12,4.42.12,4.51-.31,3.28-.3,5.16-.84-2.72q-.18-3.74-.43-7.46l-.08,13.18.2,4.06.36.06-.05,5.15.77,4.13-.12,4.72.16,4.7-.13,4,.67-3.38.2-3.42-.2,6.52.54-8.61.22-31.35C999.5,494.13,999.26,489.49,998.93,484.71Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M998.46,476.41c-.09-1.26-.19-2.51-.3-3.77l-.38-4.9c-.23-2.45-.47-4.89-.74-7.32-.07-1-.16-2.07-.28-3.1.57,8.14,1.54,18,2.17,27.39l-.2-3.71Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M998.73,481l-.27-4.59c-.09-1.26-.19-2.51-.3-3.77l-.38-4.9c-.23-2.45-.47-4.89-.74-7.32-.07-1-.16-2.07-.28-3.1h0l-1.94-15.44-1.26-8.15q.09.64.15,1.29l2,14.53.25,2.58.35,2.52.45,4.44h0c.17,1.41.33,2.83.48,4.24l.27,4.47-.64-4.52,1,15.26-.22,7,0,2.09.69,11.52-1,1.8-.4-2.32v0q.25,3.72.43,7.46l.84,2.72.3-5.16.31-3.28-.12-4.51.12-4.42.26.67-.08-4.92Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="982.91 429.79 982.92 429.89 982.94 430.06 982.91 429.79" style="fill:#d9dadb"></polygon><polygon points="398.49 718.06 398.49 718.06 398.49 718.06 398.49 718.06" style="fill:#ff7b00"></polygon><path d="M410.79,722.1l-7.34,3.6,1.56,1.65,0,0,1.61,4.4,3.83,1.46c0-.1,0-.19.07-.29l-.15-2.92h0L415,727.2Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M555.62,698.52l.49-11.2,4.66-9,8.5-7.83-4.42-3h0l1.31-3.55-2.27-3,1.16-1.94H565l-7.57-9.54-4-1.31-2.71,3.49-3.56-1.33-2.88,2.51-5.93-2.74-.09-2.72-6.34-1.92-4.18.81-9.27-1.93-.75,3.78-5.23.89-2.57-2.56-8.69,3.87-4.41-.25-3.34,5.87-9.87-1.58L481,651.49l-4.67,2-5.24-7.5-6.52,1.78L462,652.6l-3.09.89,2.09,10L456,672.91l-.75,13.91-2.19,2.77c0,.13,0,.26,0,.4,0,1.31.07,2.62.1,3.93l-3.33,4.61-4.4.81-5.35,8.17,1.29,9.64L439,722.34l-3.54.89L430,729.68l-5-.22-.58-5.12-4.27,2.74-3.13,2h0l-2-1.88-4.62,2.85.15,2.92-.07.29,3.37,1.27-1.27,1.39q15.46.84,30.9,1.31l2.92,3.25-.59,4.75,7.9,9.87q7.73.18,15.42.27l.75-8.54,9.86-1.23c0,1.22.09,2.44.14,3.65q6,0,12,0l-2,5.64,2.41,5.35-1,5.73,2.91,3.57h0l-.44,10.79,14.84-3.21,4.64-1.47,2.44,4.39,5.62-1.48,1.34,3.31,9.81,1.89,4.07-2.84,3.38,3.88,7,2.62,5.94,5.91,6.77-.37c0-3.05,0-6.14,0-9.25l-5.78,1.85-6.64-5.88,1.93-11.17-3.19-5.57,4.87-5.28L562,754.57l-2-7-4.3-2.51L552,738.13l1.25-4.43-2.4-4,.41-12.75,1.25-.18-2-6-1.78-4.36,4.17-6.82Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M396.65,679.73l.87,0q-.11-4.78-.18-9.59l-.87-.06c-3-.19-5.88-.4-8.8-.61L383,666.29,384,676.8h0l-.81,2Q389.89,679.28,396.65,679.73Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M426.32,685.13l-4.63-8.49-8.31,2.09q-.09-4.31-.17-8.62l-6.33-2.88-9.59-.32c0,1.09,0,2.19,0,3.28q.07,4.8.18,9.59l-.87,0q-6.75-.45-13.42-1l-4.16,9.75-4,1.25,7.54,14.17,4.93.48.57,4.56,9.15,10.07,7.93-2.38-4.34-5.12c-.06-1.49-.12-3-.17-4.49l5.73.2,3.41-4.8h0l3.15,6.45,3.85.2,2.76-2.59,5.21,3-.2-16.51-5.9-3.45,2-4.8Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M456,672.91l4.93-9.44-.42-2,0,0-10.36-3.63-7.23,2.41,1.68,5.24-4.47,5.11,1.34,3.59-3.81,2.63-3.32-4.88-3.07,2.15-4.13-3.14-13.9-.82c0,2.88.1,5.75.16,8.62l8.31-2.09,4.63,8.49-5.58-.4-2,4.8,5.9,3.45.2,16.51-5.21-3-2.76,2.59-3.85-.2-3.15-6.45h0l-3.42,4.79-5.73-.19c.05,1.5.11,3,.17,4.48l4.34,5.12-7.93,2.38,6.17,6.65,7.34-3.6,4.22,5.1,2,1.88h0l3.13-2,4.27-2.75.58,5.13,5,.22,5.45-6.45,3.54-.89,2.42-5.19-1.29-9.64,5.35-8.17,4.4-.81,3.33-4.61c0-1.31-.07-2.62-.1-3.93,0-.14,0-.27,0-.4l2.19-2.77Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M464.59,647.76l6.52-1.78,5.24,7.5,4.67-2,2.56,2.86,9.87,1.58,3.34-5.87,4.41.25,8.69-3.87,2.57,2.56,5.23-.89.75-3.78,9.27,1.93,4.18-.81,4.78,1.45-1.07-5.67-4.55-4-4.38-.11-.15-5-9.32-5.28c0-1.16-.06-2.32-.1-3.48l-4.59-3.06-6.23.56h0l1.48-3.78-7.8-.39,3.07-9.19-6.65-7.66-3-3.54L485.71,600l.09,6-4.25.55-6.47,7.1q-5.71,0-11.43-.1l-4,8.25-7.08.62-7.07,3.76-3-3.4-10.74,4.49-1.64,3.92-2.6-.11-.27,4.47-5,1.26,3.9,8.26-.37,5.16,6.06,3.25-3.62,3.65,9.36,6.54,2.59,7,4.47-5.11-1.68-5.24,7.23-2.41,10.36,3.63,0,0-1.67-8,3.09-.89Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M528.89,610.42l-4.45-1.48-2.77-7.59-6.91,1.11-.82,4.11-4,3.51-2.2,7-1.47,3.78h0l6.23-.56,4.59,3.06c0,1.16.07,2.32.1,3.48l9.32,5.28.15,5,4.38.11,4.55,4,1.07,5.67,1.56.47.09,2.72,5.93,2.74,2.88-2.51,3.56,1.33,2.71-3.49,4,1.31L565,659h.08l3.05-5.07,7.16,2.43,7.26-2.7,3.59,1.87,4-4.46.18-.21,3.94-5.07q6-.52,12-1.1l0,0,0-.09-.33-7.34-4,2L598.45,637l-1.28-8.54-9-7.7-6-.73.64-6.5,8.66-.94c-.12-2.16-.23-4.33-.35-6.49l-6-2.35,1.18-5.44-4.6-4.4V581.6l-9.21,3.22,2.27,8.07-7.63,11.44-4.2.61-7-4.34-4.28,1.85c0,1.09.09,2.18.14,3.28l-19.16,2.06Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M509.35,445.74h0c.51,19.68,1,39.6,1.54,59.64,32.08-.82,63.68-2.89,94.33-6.09l-.86-1.83-.23-.5-12.07-9.6-.36-7.54-4.86-3.69L574.4,451.56,565.54,446l-2.25-14.28,7.36,11.74,6.67,3.6,4-8.41L575,422.52l-8,2.07-14-2.89-5.14,3.48h-2.3l-5.91,4.08L530.23,426,516,423.35l-4.34,1.14-4.55,3.82,3.76,5.26-4.4,5.25Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M613.39,534.35l4,1.56,3.76-6.66-.64-1.09-9.69-5.63-.7-4.11-2.39-13.76-2.54-5.36c-30.65,3.2-62.25,5.27-94.33,6.09q.21,8.08.42,16.2c-2.53.07-5.07.12-7.61.17,0,1.32.06,2.64.08,4q.3,14.91.62,29.87-4.86.1-9.72.16l2,5.11-6.45,4.83,2.91,4.71-7.9,7.55,2.38,6.63,5.73-1.46.44,5.56,4.52,3.43-1.89,7.73h0l6.65,7.66L500,616.68l7.8.39,2.2-7,4-3.51.82-4.11,6.91-1.11,2.77,7.59,4.45,1.48,3.72-2.63,19.16-2.06c0-1.1-.09-2.19-.14-3.28l4.28-1.85,7,4.34,4.2-.61,7.63-11.44-2.27-8.07,9.21-3.22v12.33l4.6,4.4-1.18,5.44,6,2.35c0-.51,0-1-.08-1.52l1.53-11.9,4.61.6q-.24-4-.49-7.95l4.39-7.92,5-.49q-.29-4.08-.59-8.16l2-5.55-2-8.26,4.73-8.43-3.32-5,6.47-7.15Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M503.78,525.71h0c-19.38-9.8-45-23.25-64.14-33.61l-8.31,4.33.4,12,6.87,10-3.46,3.72-1.41,24.11-17.91,17.95,4,11.1,5.83.26h0l5.07,14.87-1.08,7.68,5,7.61-12.14-1.1-3,4.49,10.05,7.29,4.8,4.76-2.54,6.09,10.75-4.49,3,3.4,7.07-3.76,7.08-.62,4-8.25q5.72.07,11.43.1l6.47-7.1,4.25-.55-.09-6,7.63-3.67,3,3.54h0l1.89-7.73-4.52-3.43-.44-5.56-5.73,1.46-2.38-6.63,7.9-7.55-2.91-4.71,6.45-4.83-2-5.11q4.86-.06,9.72-.16Q504.09,540.63,503.78,525.71Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><polygon points="386.65 350.69 392.37 347.99 395.19 338.58 392.33 332.51 388.56 335.29 385.75 334.31 386.17 343.3 383.63 349.29 386.65 350.69" style="fill:#d9dadb"></polygon><polygon points="502.31 350.88 499.56 347.85 495.65 352.36 500.3 354.41 500.3 354.41 502.31 350.88" style="fill:#d9dadb"></polygon><polygon points="396.09 316.94 394.67 317.27 392.92 319.04 390.9 319.44 390.05 321.68 390.84 324.07 390.01 326.58 390.52 329.05 392.57 330.5 394.64 327.44 394.5 324.66 396.75 318.84 396.09 316.94" style="fill:#d9dadb"></polygon><path d="M497.7,390.28l-2.34,4.39,8.74,4.87,12.25-2.24-1.65-4.8q-5.51.18-11,.3Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="420.24 358.16 415.9 356.56 411.56 357.13 410.7 359.37 421.76 365.12 424.18 368.17 427.62 369.46 429.5 365.57 427.87 362.56 431.5 356.22 420.24 358.16" style="fill:#d9dadb"></polygon><path d="M310.74,407.76l8.93,2.91,4.22-5-4.1-6q1.29-5.42,2.62-10.78l-2.73-8.1-14.88-4.22-1.25-5.24-2.82,1.06L289.67,386l-9.47,2.83-14.06,14.45L264.44,414l-15.35,12.06-8.93.67L238,428.56l-1.12,1.7h0q13.42,3.6,27.76,6.81,1-3.94,2-7.88l10-4.05,4.32.9,3.14-3.22q3.36.68,6.78,1.33l3.63-5.21,8.94-2.84-.71-5.44,4.95.89Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M227,438.37l-5.56,11.16-6.72,5.07-7.2,11-1.48.14-3,7.09-.74,1.8q11.53,3.57,23.81,6.83L228,469.56l3.79-3.22,4.35-.77q2.33-10.24,4.88-20.4h0q10,2.56,20.52,4.91,1.5-6.51,3.09-13-14.34-3.21-27.76-6.81l-3.28,5.06Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M410.65,414.76c.22-2.14.45-4.27.69-6.41l-.19-.11-8-4.92-1.89-4.13,5.77-3.86,3.54-4.58-4-7.78,5.24-7.81-8-2.68L395,375.15l-4.17,5.14L389.15,394l-7.53,5.09,1.64,6.14,3.9,2.44-.66,4.64,5.05,4.19-1,18.12,9.84-4.3-.2-6.21L412,417.62Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M343.39,521.13l13.35-1.28,14-11.57c10.24-6.54,25.51-12.39,36.43-17.71l-2.26-6.49-6.35-2.6-4.42.76.08-4.34L388,467.49l6.2-3.14-2.11-6.94,3.74-2.47-2.44-4.18c.29-2.74.57-5.47.87-8.2l-3.71-7.93,1-18.13-5.05-4.19.66-4.64-3.9-2.44-1.64-6.14,7.53-5.09,1.63-13.7h0l4.17-5.14-14.23-2.58-8.21,3-3.19-2.61-12.19-.61-2.76,1.49-10.57-.29-7.26,4.25-5.27-.23L323.85,382l-4.17-1.11,2.73,8.1q-1.34,5.37-2.62,10.78l4.1,6-4.22,5-8.93-2.91-3.07,3.8-4.95-.89.71,5.44L294.49,419l-3.63,5.21q-3.42-.66-6.78-1.33l-3.14,3.22-4.32-.9-10,4.05q-1.37,5.31-2.65,10.66l20.26,24.06c10.87,11.67,26,26.64,37.42,37.79-.17,1.33-.33,2.66-.5,4l6.06,4.79,3.08-.56,6,4.7L333.75,522Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M509.13,420.54,500,419l-3,.18-1.5-4.12-10.15-2.62-8.39,3.29-3.72,3.43.29,10.18-6.11,6-14.45-7.17-10.68-2.32-4.82-9.5-13.7-5.07-6.89.35-5.51-3.31c-.24,2.14-.47,4.27-.69,6.41l1.33,2.86-11.75,6.49.2,6.21-9.84,4.3h0l3.71,7.93c-.3,2.73-.58,5.46-.87,8.2l2.44,4.18-3.74,2.47,2.11,6.94-6.2,3.14,6.17,10.41-.08,4.34,4.42-.76,6.35,2.6,2.26,6.49L419.72,494l5.46,5.54,6.11-3.1,8.31-4.33c19.1,10.37,44.76,23.8,64.14,33.61h0c0-1.31,0-2.63-.08-4,2.54,0,5.08-.1,7.61-.17q-.21-8.12-.42-16.2c-.52-20-1-40-1.54-59.64l-2.86-6.93,4.4-5.25-3.76-5.26,4.55-3.82Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M413.21,670.11l13.91.82,4.13,3.14,3.07-2.15,3.32,4.88,3.81-2.63-3.93-10.56-9.36-6.54,3.62-3.65-6.06-3.25.37-5.16-3.9-8.26,5-1.26.27-4.47,2.6.11,1.63-3.92,2.54-6.09-4.8-4.76-10.05-7.29,3-4.49,12.14,1.1-5-7.6h0l1.08-7.68-5.08-14.87-5.83-.26.27,8.66,2.3,3-.88,5.17-2.28,1.45-3.52,9.64-4.34,1.51-1.21,9.63-4,.66-5.14,10.94-2.09,6.87-2.59-.17-2-.13-2.11-5.85-4.41,2.53-2.21-1.89-9.32,7.49,0,4.82-2.63,4.07,9.79,6.16,1.92,9.2-2.26,7.3v0l4.71,3.23c2.92.21,5.85.42,8.8.61l.87.06c0-1.09,0-2.19,0-3.28l9.59.32Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M284.21,463.92,264,439.86q-1.23,5.1-2.41,10.22Q251,447.74,241,445.17q-2.57,10.15-4.88,20.4l-4.36.77L228,469.56l-1.83,11.95q-12.27-3.27-23.81-6.83l-1.06,2.59,4,6L202.32,503l-5.06,10.61,12.63,1.51,3,5.67,3.8,1.08.13,5.07,4.81,8.6,3-1.07c.24-1.74.49-3.49.74-5.23l3.51-.79,2.45,5.93,3.76-2.16,4.86,1.15,4.57-2.33-.42,3.13q11.74,2.67,24,5.06l2.09-6.28-2.26-2.2c1-20.75,3.05-48.38,4.89-69.07Q278.45,462.83,284.21,463.92Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M201.22,534.55q-3.19-.93-6.33-1.88l-2,3.52-.47,2q2.56.8,5.18,1.56l5.7-1,1.89,2.42,5.76.72-.39-4.26-6.63-5.73Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M224.15,577.79l-4.31-1.08-1.9,1-2.38-2.1-3.92,7.22-1.24-.33.78,7.45,2.8,5,6.54,5.57.8,1,7.51-8.44-2.27-2.39c.16-2.39.33-4.79.52-7.18Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><polygon points="225.22 589.85 223.56 580.84 216.93 581.14 209.42 589.58 224.24 608.7 235.25 616.9 237.47 606.36 229.98 598.79 231.9 591.01 225.22 589.85" style="fill:#ff7b00"></polygon><polygon points="274.58 591.48 271.4 586.33 265.92 577.16 259.21 580.42 254.77 573.51 245.61 565.57 241.84 570.38 235.38 569.27 232.09 574.77 236.07 580.65 231.46 584.34 231.9 591.01 229.98 598.79 237.47 606.36 237.47 606.36 235.25 616.9 247.15 613.57 267.78 616.71 267.75 616.82 268.74 617.39 268.73 617.34 266.19 603.4 269.63 600.3 269.63 600.3 274.58 591.48" style="fill:#ff7b00"></polygon><path d="M203.27,538.77l-5.7,1q-2.61-.76-5.18-1.56l-.86,4.57.78,6,.74,1.16,7.29-1.13q5.07,1.47,10.27,2.89l2.87.77,2.22,2.47,2.69-1.49,1.66,3,3.85,1,1.32-5-.78-5.9-2.09.42-.9-2.87,1.34-3-1.17-5.36-4.81-8.6-.13-5.07-3.8-1.08-3-5.67-12.63-1.51-.6,1.26-3.32,7.6L190.62,524l4.27,8.65q3.13.95,6.33,1.88l2.68-2.63,6.63,5.73.39,4.26-5.76-.72Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M200.34,548.72l-7.29,1.13,2,3.09,4.86-.13L198.53,558l1.88,2.86.67,1,3.14-3.58c1.87.53,3.74,1,5.64,1.56l-1.62-5.15h0l2.37-3.11Q205.42,550.18,200.34,548.72Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M244,586.76l3.29-5.5-4.09-8.73,1.33-3.6-2.69-2.49L241.4,561l-3-2.41-2.8,4.88L231,560.58l-4.18,1.62-3.44-2.83.54-2.07-3.85-1-1.66-3-2.69,1.49-2.22-2.47-2.87-.77-2.37,3.12h0l1.62,5.15c-1.9-.51-3.77-1-5.64-1.56l-3.14,3.58,6.81,10,2,5.58.47,5,1.24.33,3.92-7.22,2.38,2.1,1.9-1,4.31,1.08,2.93,5.76c-.19,2.39-.36,4.79-.52,7.18l2.27,2.39,6.63-.3,1.66,9L243.8,603l-.44-6.67,4.61-3.69Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M247.28,581.26l6.46,1.1,3.77-4.81,6.4,5.58.29-5.16,3.34-1.8.32-5.55h0l2.81-.38,2.8-2c.26-3,.53-6,.82-9l2.35-1.46,4.51,2.7,4.64-3.25.85-2.9,5.31,1.54,1.27-4.56,8.9-4,3.32,2.66,2.63.39,7.05,1,2.77-2.25,13.11.57,3.9,1.65,6.54-8.18q.88-11,1.95-22l-9.64.85,2.52-7.34-6-4.7-3.08.56-6.06-4.79c.17-1.34.33-2.67.5-4-11.55-11-26.39-26.26-37.42-37.79q-5.76-1.1-11.39-2.25c-1.93,20.68-3.79,48.33-4.89,69.07l2.26,2.2-2.09,6.28q-12.28-2.4-24-5.06l.42-3.13-4.57,2.33-4.86-1.15-3.76,2.16-2.45-5.93-3.51.79c-.25,1.74-.5,3.49-.74,5.23l-3,1.07,1.18,5.36-1.35,3,.9,2.86,2.09-.41.78,5.9h0l-1.32,5-.54,2.07,3.44,2.83,4.18-1.63,4.63,2.88,2.8-4.88,3,2.41.44,5.46,2.68,2.49-1.33,3.6Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M278.09,615.39l2.54,13.94v0l6.65,3.77,22.68-7-3.55-8.9,1.6-13.55L303.53,596l2.91-12-4.78-2-3.44,2.86q-8-1.26-15.87-2.62L283.9,588c-.21,3.43-.41,6.87-.6,10.3l3.17,5.15-5,8.82Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M310,626.16l3-.95,4.78-.43-.91-3.93q.22-8.64.58-17.3L315,600.07l.81-4.93L311,591.47l.3-5.51-4.89-2-2.91,12,4.49,7.73-1.6,13.55Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M317.76,624.78l7.31-.36q.21-9.12.54-18.24l7.37-6.42c.06-1.56.13-3.13.2-4.69l4-3.47-4-7.28-4.49-8.21-4.7,1.32-3.33,7.85-5.11-4.15L311.33,586l-.3,5.51,4.76,3.67-.81,4.93,2.45,3.48q-.36,8.66-.58,17.3Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M301.66,582l9.67,4,4.22-4.83,5.11,4.15,3.33-7.85-2.36-4.25-5.22,1.12-3.64-7.74.57-3.8-5.27-12.44-2.63-.39-3.32-2.66-8.9,4L292,555.82l-5.31-1.54-.85,2.9-4.64,3.25-4.51-2.7-2.35,1.46c-.29,3-.56,6-.82,9l-2.8,2-2.81.38h0l-.32,5.55L264.2,578l-.29,5.16,2.75,2.37,4.45,6.9,6.7-3.26,5.49,9.17c.19-3.43.39-6.87.6-10.3l-1.55-5.78q7.84,1.37,15.87,2.62Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M435.1,522.1l3.46-3.72-6.87-10-.4-12-6.11,3.1L419.72,494l-12.57-3.41C396.27,496,379.88,499,369,504.32l-12.21,15.53-13.35,1.28q-1.06,11-1.95,22l-6.54,8.18-3.9-1.65-13.11-.57-2.77,2.25-7.05-1,5.27,12.44-.57,3.8,3.64,7.74,5.22-1.12,2.36,4.25,4.7-1.32,4.49,8.21,3.9-4.51q.35-6.18.73-12.34l4.9-4,6.13,3.68,6.69-2.87,3.66,4,1.73,7.24,7.27-4.22,7.77,6.23,7.45,1.39,3.61-6.07,11.15-.48,9.22,3.57,5.52-5.64,5-.22-2.09-5.91,17.91-17.95Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M352.45,645.87l13.1-.76,4.38-3.78,3.58,2.28,2.63-4.07,0-4.82,9.32-7.49,2.21,1.89,4.41-2.53h0l2.1,5.86,2,.13,2.59.17,2.09-6.87,5.14-10.94,4-.66,1.21-9.63,4.34-1.51,3.52-9.64,2.28-1.45.88-5.17-2.3-3-.27-8.66-1.86-5.19-5,.22-5.52,5.64-9.22-3.57-11.15.48-3.61,6.07L376,577.52l-7.77-6.23-7.27,4.22-1.73-7.24-3.66-4-6.69,2.87-6.13-3.68-4.9,4q-.39,6.16-.73,12.34l-3.9,4.51,4,7.28-4,3.47c-.07,1.56-.14,3.13-.2,4.69l-7.37,6.42q-.33,9.12-.54,18.24,6.74.86,13.58,1.65l5.22,6,5.63-1.49-2.27,9.64Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M497.26,98.49l.31,1,1.87.71,4.33-3.16-3.07-.42-1.37-1.78-1.42.52-.75-.75-1.36.73L492.69,94l-.42,1.78c-.91,0-1.83,0-2.74,0L492,97.13l2.17-.36-.23,1.74Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="469.59 97.55 471.17 96.91 471.29 98.43 472.83 99.94 476.89 92.99 478.21 92.61 478.65 90.88 480.55 90.46 481.46 91.43 483.65 90.91 482.75 89.36 480.22 87.74 478.71 87.64 478.17 85.5 475.23 84.12 474.41 88.17 473.22 85.52 472.38 84.57 470.76 86.95 470.3 85.47 470.79 84.6 468.81 84.04 467.55 85.14 465.69 85.42 466.07 89.66 467.67 90.12 467.77 91.49 472.4 88.95 471.9 91.39 468.08 93.05 468.14 93.85 469.15 94.37 468.59 95.76 469.59 97.55" style="fill:#d9dadb"></polygon><polygon points="484.77 97.56 489.24 94.6 485.42 93.66 485.22 92.34 481.91 93.04 482.42 94.23 481.52 95.82 484.93 95.54 484.77 97.56 484.77 97.56" style="fill:#d9dadb"></polygon><polygon points="329.55 148.01 327.74 149.76 331.64 150.53 336.18 155.51 343.69 154.08 348.07 154.65 351.82 151.77 352.75 153.37 355.15 151.17 357.84 151.19 358.35 148.97 360.3 148.14 360.6 143.8 361.67 141.74 359.13 140 355.22 140.76 352.85 141.89 350.15 139.16 346.37 142.06 346.98 139.01 343.82 141.75 341.2 141.85 344.08 138.28 342.06 134.8 333.36 138.99 335.09 140.37 337.6 139.74 339.65 140.61 337.67 142.3 330.62 142.58 331.77 145.09 335.58 146.08 333.9 147.84 329.55 148.01" style="fill:#d9dadb"></polygon><path d="M384.6,253.52l-2-2.67-3.73-.29-2.85.22q.92-2.37,1.84-4.71l1.05-1.12-.41-6.3-2.93-1.05,1-7.27-1.89-3.64-5.49-.88,6.67-3,6.22-6.39-5.55-1.64-4.43.76,8.22-6.25-6.34.07-1.41-1.49-6.34,6.3-.43,2.81-4.61,2,.34,2,4.31-1-6.72,5.81,1.29,2.14,3.94-.57-5.28,5.4,2.85,1.11,1.2-1.65,5.09-.64L365,236.42l.54,1.69,2.6.2-3.52,4.22,0,3-5.13-.9-1.61-1.78-3.8,4.55,2.84.43-1,3.32-6,2.4,5.68,3.25,7-.45-5.7,4.35-5.79-.77-9.56,6.44,7-2.09,2.85,2.07,2.15-1.76,4.31,1.66,5.51-2.1,7.66,2.17,7.83-3-4.93-1.67,5.5-2.32Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="356.48 194.59 356.84 192.25 353 193.35 351.63 197.34 356.48 194.59" style="fill:#d9dadb"></polygon><polygon points="353.07 198.76 347.3 201.5 350.35 203.85 353.07 198.76" style="fill:#d9dadb"></polygon><path d="M378.4,188l4.75-5.44c-1.9,0-3.8-.17-5.7,0l.52,2.31-1.18,1.72Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="384.93 185.18 385.14 182.98 378.88 186.46 379.67 190.37 384.93 185.18" style="fill:#d9dadb"></polygon><path d="M383,207.72l3.64-3.72-4.66-.17-2.38,3.3Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="333.96 222.71 334.55 224.62 338.56 222.66 339.6 225.67 345.18 222.66 344.25 216.47 341 217.49 341.01 216.06 333.96 222.71" style="fill:#d9dadb"></polygon><polygon points="332.55 238.72 332.55 238.72 332.55 238.72 332.55 238.72" style="fill:#d9dadb"></polygon><polygon points="338.39 217.22 338.62 215.16 332.17 218.13 333.89 219.91 330.6 222.44 325.19 220.21 325.25 223.31 321.56 225.53 325.47 228.45 314.7 234.77 316.33 237.65 314.91 240.74 320.86 240.89 326.78 238.19 332.55 238.72 336.89 233.43 339.6 225.67 338.56 222.66 334.55 224.62 333.96 222.71 341.01 216.06 338.39 217.22" style="fill:#d9dadb"></polygon><polygon points="11.22 504.47 11.22 504.41 11.22 504.28 11.22 504.47" style="fill:#d9dadb"></polygon><path d="M68.78,717.71l9.37,18.95,0,0L80,740.13l1.83,3.45,4.1,7.41h0l0,0,.2.36c6.2,10.54,14.58,23.45,22.07,34.82l-1.16-2.34L102.32,776l-5-8.24-1.44-3.58L95.77,761l1.9,1.81-.27-1,1.19.36-.5-1.73,6.18,4.57-1-3,1.38-.41q-1.16-2.48-2.27-5l-.43-6.15-3.4-10.35.35-2.54-2.66-9.92-6.46-20.25,1.91-1.28.62-10-.07-2.38,1.78-1.34,1.12-4.27-1.27-3.23,2.45.17-.13-14.24-4.78-16.16-1.79-2.89-4.07-2.48-5.77-10.54-2.16-6.17-6.22-11.15-4.19-1.93-2-3.63-2.36-1.64-3-6-1.17-1.39-1,3.5-2,.38,1-6.89-1-4.25L52.7,594l-1-2.95-.76-.29-.73-2.65-.91-.76L48.88,585l-2.36-3-2,7.32-.94-6.08.94-3v-4L42,570.94l-1.34-6,.4-8.63-1.81-5.56-.34-10,.11-6.69-.71-5.56-1.85,7.81-1.08,7.45-.69-.75-.2-3.2-.81-1.61-.53,2.2-1-2.27L31.49,532l-1.41.75.21,5.18-1.18-2.37h0l-1.21-2.69-.32,1.52-.47-2.88-.3,2.27-.58-.22-.58-7.39c0-2.26.05-4.51.1-6.77l-.21-5,.94-6,.05-12.63-.67-1.9-.54,4.79c-.09-.41-.17-.81-.24-1.21l-.49,2.68-.16-3.74-.37,2.88,0-9.14-.13-2.15-.47,15.8.09,6-.4,3.28v3.36l.14,7.71C26.27,616.64,50.84,675.06,68.78,717.71Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M114.19,795.23l-6-9,0,0Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="21.22 528.47 21.75 526.27 22.56 527.88 22.76 531.08 23.45 531.83 24.53 524.38 26.38 516.57 25.61 514.56 24.27 503.58 22.63 497.17 21.22 501.43 20.79 510.13 21.44 515.99 20.25 526.2 21.22 528.47" style="fill:#d9dadb"></polygon><path d="M34.52,509.16l-.22-1L32,502.55l-1,1.39-1.14-5.6-.58,7.4-.63-1.6-.93,7.42.77,8.7,0,5.31.49,4.11.13,5.88,1.18,2.38-.21-5.18,1.41-.75.66,6.17L33.34,528l-.65-5.87.43-8.7Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M29.32,505.74l.58-7.4-.64-10.4.43-4.84-.23-12.3-1.2,2.78-.52,6.13-.78-.9-.73,5.28-.37,9.74.67,1.9-.05,12.63-.94,6,.21,5c-.05,2.26-.09,4.51-.1,6.77l.58,7.39.58.22.3-2.27.47,2.88.32-1.52,1.21,2.69h0L29,529.68l-.49-4.11,0-5.31-.77-8.7.93-7.42Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M23.12,516.19c0-1.34.08-2.76.11-4.18l-.12,1Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M23.12,516.45v0Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M23.51,509.75l-.08-5.21c-.07,2.57-.13,5-.2,7.47Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M30.09,429.29,28.41,439l-2.86,22.94V462L25,467.83l0,.18c-.49,6.14-.81,13.16-1.07,20.31l.11,1.77,0,9.14.37-2.88.16,3.74.48-2.68c.08.4.16.8.25,1.21l.54-4.79.37-9.74.73-5.28.78.9.52-6.13h0l1.2-2.78v-1.52L29,467.22l.87-7.59-.06-3.39L29.35,452l.47-5.59.47,1.44.91-3.94-1-4.51-.21,0-.59,2.3-.35-1.1.75-6.81Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M23.42,503.74v.8c.14-5.27.29-10.78.48-16.22l0-.38Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="19.58 409.12 18.23 416.68 18.19 417.31 20.39 404.6 19.58 409.12" style="fill:#d9dadb"></polygon><polygon points="18.48 439.83 19.2 440.55 20 435.48 19.58 434.4 18.67 438.24 18.48 439.83" style="fill:#d9dadb"></polygon><polygon points="13.08 456.03 13.65 449.94 13.65 450 13.1 455.85 13.08 456.03" style="fill:#d9dadb"></polygon><polygon points="69.93 731.6 69.87 731.48 69.93 731.6 69.93 731.6" style="fill:#d9dadb"></polygon><polygon points="66.27 724.71 66.25 724.68 69.87 731.48 68.1 728.14 66.27 724.71" style="fill:#d9dadb"></polygon><polygon points="74.26 739.4 74.05 739.03 74.04 739.01 74.26 739.4" style="fill:#d9dadb"></polygon><polygon points="74.04 739.01 74.04 739.01 74.03 739.01 74.04 739.01" style="fill:#d9dadb"></polygon><polygon points="33.63 363.04 34.43 356.19 32.34 362.12 31.97 366.25 33.63 363.04" style="fill:#d9dadb"></polygon><path d="M51.54,346.81l-1.11,3.12-2.64,7.74-.11.32-.14.43-.77,2.38q1.21-3.71,2.49-7.36l.39-1q1.41-4,2.9-7.94c.43-1.48.92-3,1.46-4.44l-.43,1.13-1.27,3.44Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M46.68,364.64l4-13.57,1.79-6.16.12-.4q-1.48,3.94-2.9,7.94l-.39,1Q48,357.1,46.77,360.8L46,363.28l.77-1.75-1.25,5.7Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M201,182.18l-5,1.39-9.86,5.73L182,190.57l-.93,2.67-3.94,1.81-2.2,2.79,1.9,2.86.95,4.16-4.4,2.07.49,2.41,5-2.09.11,1.44L175.32,212l-.67,2.71,1.12.67,7.14-6,1.13-2.37-1.57-.21.94-2.51,4.11-1,2.44-2.16L188.5,200l2.9-2.95.25-2.27-2.72.81.09-1.86,2.62-1.93-.09-2.94,10.35-4.9C201.6,183.35,201.32,182.76,201,182.18Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M183.32,183.54l1.16-1.17,2.54-6.56c-1.15,1-2.28,1.93-3.42,2.9l-2.41,4.93Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="153.66 193.09 158.9 186.62 159.99 184.38 153.2 189.08 151.39 192.51 153.66 193.09" style="fill:#d9dadb"></polygon><polygon points="225.69 104.44 230.11 101 226.82 102.08 221.33 106.38 225.69 104.44" style="fill:#d9dadb"></polygon><polygon points="221.33 106.38 221.33 106.38 221.33 106.38 221.33 106.38" style="fill:#d9dadb"></polygon><path d="M365.16,60.41l5-.22q.87-.86,1.83-1.68L370,57.74l-2.9.32-2.87.08-7,1.45-4.69,2.74-2.14.7-.14-.7,3.15-1.58-4.62,1.4-3.94,1.93c-1.62,2.45-4.6,3.51-6.17,6L334.48,73c-.34.46-.66.91-1,1.37l2.55-.88,1.58-1,1.33.21-2.83,2-3.48,1-4.1,3-2.82.29c-.29.5-.56,1-.81,1.51l-3.75,1.48-3,3.13-7.55,3.6-.66-.34-5.7.55-5.63,3-1.08-1.19L300,88.32l.7-1.54c-3,.45-3,.45-7.25,2.2l-2.06,2.45,1.07.95-3,3.32-3.16,2.38-2.57,1-6.38,5.54-.53,1.41-3.05,2.34-4.81,7.25,2.48-1.36,3.71-3.49,6.73-6L283,105l-4.62,5.25-3.44,3.21L274.2,115c12.47-6.72,12.47-6.72,14.56-8.24l4.65-4.71,6.44-3.5,4-2.14-.12,1-3.47,3.32-7.19,4.11-1.89,2.81,5.1-2.07,1.11.82,5-2.44.84.59,4.46-2,9.37-8.55-1.78-.49,3-1.2L319.68,90l3.82-1.71,1.51.84,6.21-3,3.3-2.09L336.85,82l-.77-.8,3.56-1,6-4.16c.1-.27.21-.53.33-.8l3.95-1.26,4-2.16c.4-.77.84-1.55,1.33-2.33L352.65,69l2.1-1.23-2.42-.41,6.59-1.26,6.95-2.2L367.5,63l-1.14-1.6-3.94.44-5.15,1.65-2-.35,4-1.57Q362.2,61,365.16,60.41Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="301.29 71.36 302.3 72.23 307.58 70.19 309.23 68.25 305.95 68.6 303.14 69.82 301.29 71.36" style="fill:#d9dadb"></polygon><polygon points="277.59 76.17 279.38 75.87 285.75 72.27 288.84 69.94 292.11 68.37 294.32 66.97 294.55 66.16 301.35 63.21 299.47 63.51 292.25 65.73 288.49 67.31 286.08 67.81 285.54 68.82 281.58 70.68 282.71 71.15 282.8 71.69 283.54 71.88 280.8 73.55 277.59 76.17" style="fill:#d9dadb"></polygon><path d="M287,88.41c.66-.81,1.35-1.62,2.07-2.42l-4,1-2.41,2.25Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M274,96.17l6.71-2.44c.39-.56.79-1.13,1.2-1.69l-4.42,1.74L274,96.17Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="345.76 55.89 346.84 57 345.07 58.42 352.56 55.59 351.36 54.6 354.69 52.91 345.76 55.89" style="fill:#d9dadb"></polygon><polygon points="341.44 42.44 333.93 45.91 333.55 46.63 344.53 42.74 343.16 42.84 343.84 41.91 341.44 42.44" style="fill:#d9dadb"></polygon><polygon points="396.15 27.05 398.88 25.43 396.76 25.09 396.02 24.61 392.92 25.51 386.93 26.87 390.69 25.61 390.97 25.31 387.02 26.06 380.17 28.37 375.82 29.42 380.01 27.93 383.52 26.51 379.66 27.39 372.93 29.48 366.48 30.96 360.34 33.57 358.59 34.67 358.89 35.05 352.14 37.22 346.94 39.47 348.77 39.37 352.11 38.67 347.79 40.33 351.39 39.75 357.28 37.77 358.02 37.21 360.26 36.38 366.37 35.29 376.74 33.28 382.45 31.63 381.49 31.49 373.31 32.91 373.27 32.34 381.33 31.03 384.66 30.12 384.19 29.58 386.42 29.32 391.18 28.11 390 27.83 391.74 27.21 396.15 27.05" style="fill:#d9dadb"></polygon><polygon points="400.02 26.16 406.67 25.14 408.5 24.02 415.71 23.02 420.37 21.58 416.41 21.73 414.51 21.32 415.19 21.01 413.58 20.95 413.42 20.53 408.35 21.44 403.17 22.05 398.93 23.51 403.13 23.49 402.53 23.82 403.46 24.04 403.46 24.04 400.02 26.16" style="fill:#d9dadb"></polygon><polygon points="355.82 41.58 365.39 39.69 367.32 38.67 371.19 39.08 373.12 38.44 373.27 37.56 376.34 36.75 370.31 37.18 368.73 36.94 373.44 35.66 371.56 35.6 367.16 36.7 364.56 37.73 354.97 40.38 355.71 40.64 359.66 39.87 355.65 41.04 355.82 41.58" style="fill:#d9dadb"></polygon><path d="M448.94,86.36l6.51-2.11-1.06-1.72L451.62,82l-3.05,1.25-.17-1.32-3.12.59-3.11.78,4-1.92,2.66-1.52-1.91-.16-2,.83-4.5.14.69-.71,3-.6-1.8-1.41,3.42-.75,1.5,1.49,5.52-.25V77l-2.28-.46,2.48-.75-.65-.71-.66-.68,1.82-1.1-1-1.06c-.8-.39-1.84-1-2.62-1.39l-1.92.38,0-.49-2-1.11-1.36.32V68.89l-2.74.41-1.09.59c.41.41.85.8,1.32,1.2l-.38,1-2.26,1,.27-.9-1.94.47,1.56-1-.9-1-5.93,2.16,2.09-2.17,1.78-1.16-.38-.9-4,1.86-.73-.82.63-.88-4.2.66,6.54-1.93c-1.16-.36-2.69-.92-3.84-1.32l-2.64.85-2.8,1.61-.6-1.2,4.09-1.46-5.78.77.92-1.08-.94-.28-7.35-.64-2.75.73.57.88.49.74-7.58.36.45-2.07-2.79.72-2.14-2-2.79.22L395.15,67l-2.31.47-.63.6,2,1.27-1.8.82-4.19.74,1.45-3-1.51-.34-2.34,1.28L385,70.41l-2.14-.61-3.58,1.67,1.37.78-1.88.91,1.84.13-1.85.95,3.27-.3-.36,2.85-3,2.91-3,.7-5.63,4.14-7.65,2.85-2.06,1.8L355,90.58l-1.81,1.8-2.85.27L348.76,94l-2.39.51-1-.33L343,95.85l.94.82,5.42-1.11-4.49,2.71,1.3,1.06-4.1,2.36-3.43,2.25-1.61-.16,2.45-3.43L339,99l-1.83.2L333.31,104l1.3,2.27-8.31,3.5.21-2.3L317,110.26l-.52,1.88-4.49-.07-6.87,4.38-3.9,3.37,2.23.48-5.57,2-5.56,3.83,1.79,1.18-6.87,3.4-8.18,8.16.63,2-7.67,5.83.9,3.1,4-.3-6.37,5.69,3.3,2.66L287.13,150l5.4-6,7.24-.7,2.75-2.51.36,1.95,2.71-2,2.13-3.2,1.17,1.43,2.62-3.53,6.91-.91,0,2.09,5.93-3.26-2.48,3.44,8.86-.58,10.12-4.12,2.8.3,3.58-1.83-.32,1.59,3.64,1.29,10.75.36,4.77-1.72,2.7.33,6.43-1.6L371,127l-7.13.67-1.19-1.57,5-.81,7.21-2.42,1-2.82,1.89,1,.52,1.65-1.66,2.57,1.68,4.24,7.4-6.86c-.67-.24-1.32-.49-2-.74l2.54-1.07-.79-3.45-1.71-.59,3.53-3.69,6.25-1.16,1.07,2.75,4.46.18-.9-1.78,1.66-2.42,5.55.81,2.57-.73.73-3.42-2.37-.11.26-1.29,3.78-2.35,1.16,2.52,1.56.12,3.19-2.89L414,101.87l2.55-2.82,2.85.11,2,2.21,1.69-.74,3.11-3.84-.55-1.69-3.43.79,7.83-4,3.65,0,2.11-2,2.06.21,1.95-.46-1.6-.93-1.54-.12,1-.87,2.07-.43,2.42,1.09,2.7-.77-2.24-1,2.31-.88Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="423.68 59.18 427.26 57.85 426.44 57.33 424.62 58.23 423.68 59.18" style="fill:#d9dadb"></polygon><polygon points="423.04 56.54 424.94 55.35 422.19 55.95 421.37 56.87 423.04 56.54" style="fill:#d9dadb"></polygon><polygon points="380.79 54.84 382.72 53.55 380.09 53.61 378.21 54.7 380.79 54.84" style="fill:#d9dadb"></polygon><polygon points="317.45 93.89 321.17 88.84 314.46 91.25 313.6 93.32 317.45 93.89" style="fill:#d9dadb"></polygon><path d="M437.66,61.3l.13-.7,1-.41c.07-.3.15-.6.24-.89l1.75-.62.25-1.52-2.35-.28.52,0,.09-.15a14.72,14.72,0,0,1,.89-1.23l-2.8-.43-2.29.26c.17-.21.36-.42.55-.62l2.08-.5.41-.74L437,53.31l-2.39.3-.15-.38,2-.23.6-.61-1.37-.18,1.4-.3-1.35-.77-2.05.39-.94.73-1.6.28L430.5,52l-2.78.46-2.93,1.09L426,54l-1.71,0c-.44.43-.87.86-1.27,1.3l1.23.11-1.67.38-.39,1.49-1.65-.21L419.9,56l-2.87.66,3.05-1.23,1.54-1.11-2.56.16-1.59.49-5.36.9L410.54,57l-1.86-.21c.32-.37.66-.73,1-1.09l1.86-.34-.81-.68-3.21-.2-1.3.24-2.33,1.16-3.62.8-1.79,1-1-.71,1.25-.66,3.47-.6c.4-.39.82-.77,1.25-1.15l-4.27.77-1.79.1.79-.69-1.45-.87-3.31,1c-.57.48-1.12,1-1.65,1.45L389,57.5l-.28.87,2.8-.77-1.86,1.28-1.23.43-.6.58,1.7.14-1,.66-2.72.43.67,1,2.13.62,3.05-.9L390,61.59l1-.6,2.05-.16,2.35-.6-.39.87,1.64.13,3.29-.67c-.34.52-.64,1-.92,1.55l6.1,0L407,61c1.77.36,1.77.36,4.06-.32l.16.91,2.37-.48L412,62.23l.33.84,1.31-.42,3.09.43,2.16,0,6.3,1-.72-1.44,2.66-.07,1,1.43,4.21.57,1-.17,1.15-1,2.22-.59c0-.14,0-.29,0-.43l.83-.31-3-.47.74-.52Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M426.64,51.53l6.25-.68,1.23-.54-1.48-.14-.12-.43-3.39-.61-2.88.65.8-.68H425l-4,.72-1,1.08-2.65.74,1-1.05-1.07-.21L414,50.8l-1.11.78-.61-.31-2.42.57c-.44.33-.87.65-1.28,1l2.63-.06-3.32.61c-.23.18-.45.37-.67.56l4.75-.29L413.51,55l2.87-.37c.35-.34.73-.69,1.11-1l1.58.1,3.27-.58-.32-.46,2.57-.2Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M396.37,53.22q.86-.64,1.77-1.29l2.34-.54,3.57-1.31.24-.77c-5.71,1-5.71,1-7.94,2.13l-.42.6-5.44,1h-1.1l-2.69.18L382,54.48l1.19.25-2.34.61-.4.76.36.72-2,.17a47.76,47.76,0,0,0-3.9,3.69l2-.11-2.79,1c-.72.81-1.38,1.62-2,2.45l2.08,0,2.06-1,2.45.32,2.59-1.75,1.8-.3-.63-1.1,2.6-1.18-1.36-1.38,2.37-1.05-.23-.84,4.27-1.31,3.11-.64-.29.56Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="424.64 23.16 420.86 23.85 421.47 24.19 418.75 24.25 420.02 24.89 419.52 25.89 416 25.86 416.92 26.38 416.92 26.38 416.95 27.11 421.17 26.88 420.63 26.63 423.51 25.79 423.5 24.7 424.98 23.6 424.64 23.16" style="fill:#d9dadb"></polygon><path d="M420.25,40.12l1.85-.64,2.06,0,2.43-.87-2.22.17,1.13-.62L425,37.8l-2.43.25,1.54-.67L423,37.21l-4,.82-1.91.51.4.5-3.68.81.54-1-2.4.46c-1.06.36-2.12.73-3.15,1.11l.22.74-1.61,1c-1.34.53-2.65,1.07-3.92,1.63l4.33.3,3.2-.77-1.76-.19,3.66-.6,4.43-.15,2-.31-.81-.74-3.38.32-.62-.22-2.88.36,4-1.26Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M376.4,56.37l1.31-1.62,3.81-1.29.81-1.26-7.41.64-6.12,1.45-1.5,1,5.37-1-4.16,2Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M410.69,45.08l.91-.42-5.66.48-4.41.86-1.83.88-.46.95-2.18-.16-2.74.35-2.4,1.69,2.95-.38,2.36.08,5.58-.42,2.26-.76-1.53-.14,1.95-.42,1-.53-2.93.14,3-.64.72-.41-3.51.35-.83-.12,4-.67Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M385.3,52.61l4.16-.17,2.29-.73,1.24-.8-1.92-.36-4.23,1.14Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M422.33,44.61l-1.16.77-2.13.86-3.48.32L414,47.4l1.56.09,3.61-.31,3-.29.54-.28,2.33-.28,1.2-.59,2.58-.25c.79-.38,1.6-.74,2.42-1.11l-2.82-.07L426.8,45l-3,.18,1.19-.83Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="383.77 32.84 384.83 31.89 377.78 33.46 381.16 33.65 383.77 32.84" style="fill:#d9dadb"></polygon><path d="M423.91,41.72c.54,0,1.07,0,1.61,0l1.61.46,2.95-1.48-1.29-.44a15.58,15.58,0,0,0-2.47.3A19.45,19.45,0,0,0,423.91,41.72Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="403.09 38.03 408.32 36.5 408.86 35.82 400.85 36.65 400.34 37.97 403.09 38.03" style="fill:#d9dadb"></polygon><path d="M425.49,48.07h2.93l2-.65-3.11-.2-.87.48Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="395.54 39.12 398.34 37.59 397.24 37 392.87 39 395.54 39.12" style="fill:#d9dadb"></polygon><polygon points="388.24 41.84 390.75 41.78 392.48 41.16 392.9 40.43 389.58 40.79 389.12 41.43 388.24 41.84" style="fill:#d9dadb"></polygon><path d="M420.33,44.27l1.18-.52-5.54.34-2.84,1Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="420.92 30.16 422.65 28.82 421.29 28.8 416.5 30.54 420.92 30.16" style="fill:#d9dadb"></polygon><polygon points="420 28.29 422.17 28.11 422.35 27.82 419.02 27.71 419.02 27.71 420 28.29" style="fill:#d9dadb"></polygon><polygon points="388.13 33.19 388.19 33.68 390.12 33.43 391.62 33.03 390.23 32.74 388.13 33.19 388.13 33.19" style="fill:#d9dadb"></polygon><path d="M535.09,23.45l-6.94-.29-3.38-.09-.89,0h-.23c4.51.12,9.11.26,13,.43Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M499.54,23.34l1.44-.11.44.08,2.41,0,3.23-.19h4.7l5.79-.09,2.48,0h3.62l-10-.23c-9.51,0-9.51,0-28.38.69-9.47.51-9.47.51-28.38,2.36l-2.62.31a21.52,21.52,0,0,1,2.41-.17l4-.44,3.25-.28,5.81-.58,2.89-.21c1.29-.1,2.58-.21,3.87-.3l6.36-.36,2.52-.17,1.6-.06.56-.06,3.34-.11.83.05,3.13-.05,1.13-.12-2.18,0,.32-.1,3.83-.06-.3.09Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M391.34,37.9,391,38l-5.78,1.5h0l-3.68,1,.55-.07-.19,0,10.52-2.81Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M394.71,37l-2.25.6,6.1-1.51c-3.1.86-7.27,1.94-10.35,2.89l-2,.52.18-.14-5.72,1.66-2.12.38,3.42-1c-11.47,3.09-14.32,4-24.3,7.29l-14.26,5.1-4.76,1.82,1.36-.59c-10.84,3.95-15.29,5.82-26.74,10.85-29.07,13.86-33.53,16-55.6,29.13-14.44,9.44-33.41,22.49-47.27,32.76l.07-.06-5.79,4.63,2-1.27-3.56,3.22L196.27,139l-2,2-8.75,7.63L176,159l-8.34,8.38-2.68,2,7.36-7.72-9.78,9,0-.64-4.28,4.11.83.05-1.7,2.74,3.54-2.75-1.76,3.72-.6.81,3.74-1.82a56.5,56.5,0,0,0-3,7.83l2.62,0,2.89-3,4.62-2.46,1,1-1.42,2.35-7.22,6.32-3.58,4.93,3,2.24-2.13,2.36-5.52,2.11-5.4,6.34,4.6-1.1,3-2.21-.07,3.82,4-.26,3.26-5.7-1.88-.25,4.74-9.19,2.71-2.65,1-2.23,4.31-3.28,1.43-4.94,3.21.1-1.33,2.44,1.23.27,3.87-3.17.88-3.55-.88-1.65-6.24.29-4.22,1.63,8.29-6,5,.35,3.5-1.26,1.73,5-1.77,8.49,5.18-1.29,3.5-2.11,3,1.43,4.4-1.29,1.3.26,5.25-4.75,1.69-3.23-.74-1.13,3-2.2-.19-1.9-4.7-.27,5.19-3.81,4.71,1.39,2.43-2.88-.66-2.75,2-1,.14-2.29,3.92-3.34,2.07-4.09,2.26-.83,1.14-1.83,3-1.36,6.6-5.79.94-2.19,3.53-1.81.57-1.57,2.59-1.19,6-4.8.9-1.24-9.34,4.67-.11-.85-4.8.3,2-2.31,5.33-4.66c.05-.27.1-.54.16-.82l11.51-5.75,2.17-2.19.62-2.29,3.56-1.78,7.39-6.26-1.74-.38c.28-.62.57-1.24.88-1.85l3.57-1.61.92-2.22L278.54,96l-6.22,3.57-1.79.32-3.6,2.21-3.39,1.38-3,2.19-7.89,2.53-10.88,8.33-10.51,5.55-3.71-.69-6.71,5.22-4.28,2.61L209.23,135l-.12-.51L204.2,138l2.55-2.5-1.36.38,9-7.94,14.09-9.74,3.17-1.53,2.83-2,4.47-4.68-1.11.19,3.47-2.11,7.82-6,7.77-5,7.14-5,1.68-1.73,3.2-1.52,8.35-4.45L279,83.17l-.89.29,4.8-2.57,8.42-3.72,4.85-1.63.64.15,2.27-1.06.23.38,2.65-.86-2.2,1.55.61.24,5.73-3.19,3.27-1.33-5.72,3.39,2.83-.68-2.76,1.46-.16,1.09,4.82-1.17,4.6-3,5.2-2.89-1.12,2-5.19,2.79,3.47-.59,3.7-1.32L317.32,74l-2.32,1-1.8,1.59,2.55-.85-2.2,1.55,2.31.27-.27.53,2.82-.7,5.61-3,2.13.5,2.4-1.14,1.32,0L334.08,71l3.67-3.37L333.19,69l-2.46.31-3.93,1-2.6-.21,6.32-2.64,3.68-.79,5.27-2.34-5,1,2-1c2-.54,4.06-1.05,6.1-1.56l4.64-2.38,3.4-.59,4.57-1.67,8.18-2,3.3-1.5-2.18-.72L359.57,55,355,56l-6.66,2.76-3.31.73-.67.68-3.35.68v-1l-2.17.26,3.41-1.33L346.35,57l-4.44,1.38c2.76-1.47,6.39-3.5,9.19-4.88l5-1.75,1.48-.88,7.65-2.46,3.35-1.65-2.15.4-2.68,1.11-2,.22,2-.79-.74-.09,5-1.24,3.35-1.66,9.7-3.16,1.51-.28-1.9.78,2.94-.7,5.45-1.7,7.87-2,3.91-1,3.64-.7,3.63-1-.47-.09,2.88-.72,3.14-.27,2.2-.54-1.86,0,4.28-.83,2.2-.24,4.66-.72-1.88.11.31-.28,2.82-.62,2.2-.37-2.1.6,1.09-.1,2.94-.63,1.44-.44-1.25,0,1.42-.32,2.56-.4-1.68.39.88,0,2.19-.47,2.74-.4,2.5-.44.75-.17-2,.27h0c-4.52.66-9,1.35-12.9,2C406.57,34.16,405.76,34.31,394.71,37Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M345.09,52.18l2.08-.84-5.53,2h0l-1.66.71,3.4-1.23Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M448.85,27l-8,1.09-1.95.28,1.12-.11c3-.44,6-.87,8.84-1.26Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M456.63,26.05a21.52,21.52,0,0,0-2.41.17l-5.33.73,2.67-.3Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="198.55 114.75 197.65 115.47 198.47 114.82 198.55 114.75" style="fill:#d9dadb"></polygon><polygon points="192.59 119.51 192.75 119.39 192.76 119.39 197.65 115.47 191.91 120.05 192.59 119.51" style="fill:#d9dadb"></polygon><polygon points="168.61 140.22 172.05 137.09 172.05 137.09 168.61 140.22" style="fill:#d9dadb"></polygon><polygon points="176 133.97 179.39 130.66 183.77 126.9 184.53 126.18 183.99 126.62 174.59 134.79 172.05 137.09 171.46 138.18 176 133.97" style="fill:#d9dadb"></polygon><path d="M110.68,232.47l1.1-1.1.1.52,2.2-2.94.61-.46,1.86-2.47.89-.91,4.55-6.05,7-9.34,3.85-4.16-1.32,1.86-3.69,4.78-3.54,4.38,1-.53,2.71-3.15,3.45-4.58,1.43-1.08-3.32,4.25,2.83-2.5,3.16-3.75-.54,2.88,2.43-1.81.75-2.36,2.51-2.11-.32,4,3.06-4.15,4.07-3.75,4.63-1.72,3.18-2.52.06.77-1.66,2.27,1.64.15,3.06-3,3.57-4.92,7.22-6.32,1.42-2.35-1-1-4.62,2.46-2.89,3-2.62,0a56.5,56.5,0,0,1,3-7.83l-3.74,1.82L156.9,181,154.09,183v-2l-1.68,1.23-.26-1.34,4.94-5.35C138.93,194.54,133.9,201.16,110.68,232.47Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M167.18,165.64l2.37-2.71,2.79-2.28,3.71-3.46,3.19-3.41L177.65,155,174,158.35l-6.16,6-.58.59c-3.1,3.2-5.85,6.07-8.37,8.7l3.75-3.6Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M108.72,235.08l-.21.31,2.17-2.92-.14.14Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M158.33,174.13l-1.25,1.36,1.78-1.87Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="423.16 223.71 426.34 229.11 430.1 223.64 428.72 220.72 426.5 223.42 423.16 223.71" style="fill:#d9dadb"></polygon><polygon points="417.77 172.55 412.46 173.87 415.13 176.03 417.77 172.55" style="fill:#d9dadb"></polygon><polygon points="485.11 129.07 481.03 130.9 484.11 132.64 485.11 129.07" style="fill:#d9dadb"></polygon><path d="M473.39,222,471.72,230l4.45-4.18.18-2.16h0l2.38-3.26Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="563.16 135.53 564.82 132.67 559.85 132.68 559.52 135.05 563.16 135.53" style="fill:#d9dadb"></polygon><polygon points="568.42 87.79 568.42 87.79 568.42 87.79 568.42 87.79" style="fill:#d9dadb"></polygon><path d="M583.16,134.81l1.18-.94,5.39-1.23-5.51-1.74-8.31-6.19.57-3-3.66-1.39.22-1.26,2.66-.13-.44-1.95-2.13-.8,1.81-1.21-2.77-2.69.9-1.29,1.94.42.17-1.2-1.81-.73.76-2.14,4-4,0-.8,2.23-2.84-1.22-1.6-2.32-1.11-2.12.76.84,2.16-3.57,3.18-2.73.33.14,1.56-2.51,2.45,1.14,1.66-1.28,3.21,2.78.54.36,2.73-3.1,2.61,2.06.78,2.52,7.36-1.81,2.09.74,1.76,6.32,1,1-.42,2.27,1.7-.56,2.11Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="565.37 62.16 569.05 61.97 566.66 60.6 567.39 59.05 564.39 57.99 558.38 57.9 559.44 58.69 559.6 59.78 562.64 60.68 562.51 61.2 565.37 62.16" style="fill:#d9dadb"></polygon><polygon points="567.86 64.09 570.59 64.18 570.13 62.86 568.73 63.13 567.86 64.09" style="fill:#d9dadb"></polygon><polygon points="569.75 60.99 570.36 61.56 572.85 63.43 573.63 63.03 576.82 63.62 578.43 62.62 580.25 62.63 580.94 61.04 577.75 60.41 573.16 58.62 571.59 59.28 572.28 60.31 570.28 59.78 569.75 60.99" style="fill:#d9dadb"></polygon><path d="M599.67,75.15l.35-.48-1.5-1.32,1-1.2-2-2.13-5.07-.23,1.44,1-3.63-.92-1.38.12L594,72.24l-.34.51Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="588.49 58.18 591.7 58.07 589.42 57.2 586.77 56.91 588.49 58.18" style="fill:#d9dadb"></polygon><polygon points="598.8 39.36 604.4 40.16 607.12 39.62 606.58 38.72 601.86 36.83 602.67 36.56 600.51 35.64 594.52 34.3 593.81 35.15 595 36 593.69 36.66 598.5 37.35 595.7 38.34 598.8 39.36" style="fill:#d9dadb"></polygon><polygon points="611.85 38.83 615 38.64 614.34 37.04 612.44 36.66 609.41 36.99 610.48 37.96 609.48 38.62 611.85 38.83" style="fill:#d9dadb"></polygon><polygon points="594.68 31.74 592.76 31.15 590.65 30.89 591.64 31.87 593 32.35 591.87 32.43 594.07 33.34 592.85 33.58 595.89 33.95 596.21 33.33 595.88 32.98 596.37 32.67 594.68 31.74" style="fill:#d9dadb"></polygon><polygon points="553.67 14.85 549.98 14.49 550.84 14.91 555.49 15.48 560.41 15.94 561 15.79 557.76 15.4 553.67 14.85 553.67 14.85" style="fill:#d9dadb"></polygon><polygon points="749.45 79.98 745.84 78.05 740.1 74.9 743.57 76.98 748.6 79.71 749.29 80.24 759.55 86.26 762.75 88.12 765.23 89.73 775.42 96.45 761.88 87.5 755.07 83.34 749.45 79.98" style="fill:#d9dadb"></polygon><polygon points="878.82 191.73 878.34 191.13 878.79 191.69 878.82 191.73" style="fill:#d9dadb"></polygon><polygon points="888.09 203.48 887.4 202.6 887.58 202.82 888.09 203.48" style="fill:#d9dadb"></polygon><polygon points="880.33 193.59 885.48 200.11 887.4 202.6 886.62 201.59 885.11 199.63 885.26 199.83 880.51 193.81 880.33 193.59" style="fill:#d9dadb"></polygon><polygon points="477.22 141.09 477.22 141.08 477.22 141.08 477.22 141.09" style="fill:#d9dadb"></polygon><path d="M515.23,154l2.93-3,2.3.47-.62-3.18h0l-4.08-.77,4-2-6.13-3.3-2.62-.75-1.71-.51-1.14,1.59-1.58-.77-3.89,5.92-.57-2.71.77-2.88-4.63,2.35-1.33,4.12-1-1.62L493,145.78l-2.59,1.08,2.36,1.1-.85,2.6-4.37-2.87-3.28,1.69.69,2.37-2,.59-2-2.22-1.51,1.56-2.69-.12,2.65,3-4,2.24-.28-3.45-1.73.28-.78-1.17-8.09,7.07,6.44-2.27,1.73,1.51-4.5,2,1.55,1.8-3.57-.09-4.61,2.36.71,1.73L457.92,168l-3.48,5.55-.12,2.26-8.16,3.75,3.72,2.67-4,1.68-2.08-1.4-1.72,1.19L440,180.92l-2.14,2.49.43,4.23-2.2,1.14-1.23-3.18-3.36.41-4,5.17-4.61-1.35,1,2.71-2.36.69-.29,1.76,7,.28,1.93,3-10.64-.18,2,2.16L419.08,202l3,1.82,4.64-1.43-4.07,4.51-5.5-.69-1.05,6.16,4.92,2.94-1.32,1.81,6.27-.84,1,1.2,6.16-4.27,1.75-.17.32-2.81,3.07,1.2,2.12-4.07,2.48,5.82,0,.57,2.5-1.29.34-4.09,4-1.2-.24-6.32,2.26.13,1.5-2.9-2.32-3.37,1.05-3,.3-5.94,4.83-4.8,4.24,1.28,1.12-3L461,177.18l4-3.25c.33-1.64.67-3.27,1-4.89l3.37-.7.08-1.29,3.42-2.11.51-2.87,4-2.95,2.7.74,1-3.18,4.51,1.51,1.53-.66-.31-3.78,2.21-.68,2.75-.88,1,1.28,1,1.27,3,.48,1.71-.91,4.06,2.26,2.7-2.44-1.28-2.39,1.69-2.81,4.73-1.34,3.5,2.33-.79,1.89Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="423.25 219.66 423.25 219.66 423.25 219.66 423.25 219.66" style="fill:#d9dadb"></polygon><polygon points="421.86 214.28 424.25 212.01 425.11 208.76 415.89 211.37 416.56 213.82 411.29 215.45 409.34 223.05 411.42 225.38 410.92 230.03 417.41 231.01 415.31 228.04 419.19 222.52 421.67 218.71 423.25 219.66 425.68 216.45 421.86 214.28" style="fill:#d9dadb"></polygon><path d="M499.17,170l-1.22-2.5h0l1.2-1.69-1.68-2.05.87-1.44-1.72-.6.94-2.1-3.07-2-2.42,0-1.82-1.68-1.13-2.81h0l-2.21.68.31,3.78-1.53.66-4.51-1.51-1,3.18-2.7-.74-4,2.95-.51,2.87-3.42,2.11-.08,1.29-3.37.7c-.33,1.62-.67,3.25-1,4.89l-4,3.25,1.41,2.12-1.12,3L457.07,181l-4.83,4.8-.3,5.94-1.05,3,2.32,3.37-1.49,2.9h0l-2.26-.13.24,6.32-4,1.2-.34,4.09-2.5,1.29-.56,7.54L445,226l2.14,2.14-.66,2.17-1.89.09,2.13,4.69-1.52,2,6,.95,3.36-5.52,5.49.8,3.36-6.92,2-2.52L464,221.44l2-.22.38-1.91-1.58-1.2-.18-2.54,5.75.39,4-2.41-6.74-1.71,4.12-3.16,1.69,2.4,4.24-1.23-4.25-6-3.27-.8.27-6.28,1.92-.31V191.2l4-2,5.13-4.59,4.88-1.42,3.7-4-2-2.33,1.88-1.6-.85-1.43,2.75-1.05-.46-2.26,1.83-.71Zm-48.54,47.18-4.27.26,2.9-4.12,2.1-1,3.62-.47-.42,2.91Zm8.07,1.1-4.58,4.94.41-5,4.37-3.92Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M526.86,186.09l-4.22-2.24,2-1.73-.33-1.63L521,179l.64-2.18-2.52-2.72,1.76-2.67-5.3-7.41,2.52-2.11.37-2-2.45-2.35-2.63-.35.25-2-.92-1,1.45-1.39-1-1.08.79-1.89-3.5-2.33-4.73,1.34-1.69,2.81,1.28,2.39-2.7,2.44-4.06-2.26-1.71.91-3-.47-1-1.28-1-1.28-2.75.88h0l1.13,2.81,1.82,1.68,2.42,0,3.07,2-.94,2.1,1.72.6-.87,1.44,1.68,2.05-1.2,1.69,1.22,2.5h.47l4.15,2.52.6,3.41-3.28,1-3.45,4.85-1.37,1.35-1.81-.79-1.54,3-4.06-.18,1.38,3-2.59,1.5,2.13,7.8L488.26,204l4.09,2.42,2.12-1.29L496,206.7l-1.53,2.74,7.22-2.28,2.23-.06,2.5-1.8,1.11.92,2.62-2.72.64,1.3,4.77-1.28h0l.64.32,11.14-12.68h0l1.27-2.95Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M307.08,332.41l5.75-3.17-1-4.64-7.51-.24.9-4.76-4.53,2.21L298,331.47l-7.18,9.31-1.3.09-2.2,4.6,2.38,2.38-3,9c2.78.63,5.59,1.24,8.43,1.85l4.63-6.76L298.62,350l3-1-1.7-4.82,3.88-1.9Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M352.79,339l7-1,8.17-4,1-2.63-4.87-1.9-3.12.87-5.08-5.74-3.13,1.72-4.94-1.48L342.48,318l-7.1-.65-2.56-2.1-5.24.15-6.49-3.58-6.84.13-3.53-3.11-8.82,3.6-.5.3-.67,9.11,4.53-2.21-.9,4.76,7.51.24,1,4.64-5.75,3.18-3.3,9.87-3.88,1.9,1.7,4.82-3,1,1.21,1.93-4.63,6.76,3-1,2.36,4.89,0,5.94,3.84,1,.1,0,7-3.6,11.38.28,2.4,2,6.19-6.49,4.42.62,1.48-4.33,6.2-3.12-2-3.57,1.93-3.9Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M399.34,274.22l-2.68,2.66,0,.15,1.55,4.06c4.59-3,4.88-3.1,5-3.18h0a20.85,20.85,0,0,0-2.29-2.18C400.46,275.22,399.91,274.71,399.34,274.22Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M410.23,292.27,408,294.08l-4.71-.21-3.08-.16-.07.2-.51,2.18-5.08,2.73-3.85,6.26,6.82-2.66.6,3.4,4.72,1.26,1.79-3.25,2.56-.53,2.4,4.9,3.16-4.45,3.25,1.77,4.5-4.47-6.23-2,1.2-4.55Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M399.61,296.09l.51-2.18.07-.2,3.08.16,2.84-6.27,4.81-3,.79-2.22q-3.54-.3-7-.63l-3.49-2.33a18.27,18.27,0,0,1-2.91,1.7l-.92-2-8.13-3.93-1.74-5q-2.28-.27-4.53-.57v-4.93l-3.37,1.16-2.15,4.92-9,1.3,1.44,2.53-2.91.62-5.42-3.42-3.31-.76.26,7.52-7.11-.12-1.6-3.18L341,276.38l-.12,5.71,6.06,1.48-.81,2.11,4,.43,1.78,1.88-2.42,3.34,1.64,6.41-1.44,11.08L342.48,318l5.33,6.89,4.94,1.48,3.13-1.72,5.08,5.74,3.12-.87,4.87,1.9.63-1.64v0l-1-2.5,2.23-4,5.51-2.49L388,326.81l9.36-4.83,1.34-.7-4.73-4h0l2.73-2.48-2.3-1.64,3.38-3.25-1.5-2.93,1.82-1.19-.6-3.4-6.82,2.66,3.85-6.26Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M401,275.72l.07-.17L402.9,271l-3.18-1.21,1.42-2.12-3.92-2.77-7,1.38-1.06-3.81L383,264.63v4.93q2.25.3,4.53.57l1.74,5,8.13,3.93-.63-2.07,0-.15,2.68-2.66C399.9,274.71,400.46,275.22,401,275.72Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M413,248.68l-2.45,0-7.08,3.19-.57,4.18-3.07,1.06-.19-5.27L394.27,258l-1,4-3.53.25-.57.21,1.06,3.81,7-1.38,3.92,2.77,2.73-2.72-.45-3,4.1-.29,1.71-2.24-.79-2.53,3.05-2.77C412,252.3,412.48,250.49,413,248.68Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="449.18 281.24 447.32 279.39 448.64 277.19 447.72 275.63 447.73 275.63 447.35 274.98 443.17 276.35 437.61 272.83 435.8 275.97 424.61 279.08 423.81 283.8 418.96 281.73 413.38 283.71 403.55 282.54 402.36 287.09 408.58 289.07 411.76 290.13 413.2 288.42 418.5 287.7 419.25 290.6 428.88 291.81 431.19 293.59 433.88 291.11 436.86 292.23 438.44 289.61 443.06 289.64 445.44 284.69 448.32 285.05 448.32 285.05 449.18 281.24" style="fill:#d9dadb"></polygon><path d="M457.89,353.47l2.89.6.7,2.49,2.5,0,.7-2.28L461.62,350l-6.09-3.74-6.84-2.36.09-1.66,2-1.14L450.1,340l-9-1.67-4.09-5-1.72-7-7.05-5.68.35-4.89,1.22-1.45-.86-3.37,6.56-2.39.75.52,1.95-5.61-7-.9-.76-2.9-5.3.73-1.43,1.71-3.18-1.07-4.5,4.47-3.25-1.77-3.16,4.45-2.4-4.9-2.56.53-1.79,3.25-4.72-1.26L396.28,307l1.5,2.93-3.38,3.25,2.3,1.64L394,317.31h0l4.73,4,7.41-3.89,7.59,3.91,1.07,8.76,3.75,3.13,10.78,11.6,3.61.57,2.59,3.12,4.58.8,1.57,3.27,4,2.59,2.73,8.46-4.13,5.54,1.74,2.58,3.16-1.49,2.7-6.14,3.79-.44-.3-3.47L452,358.09l0-3.24,3.09-3.8Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="441.8 261.81 440.84 260.75 437.36 261.96 434.87 259.7 430.36 260.78 428.24 264.19 425.24 263.72 421.29 265.62 423.92 271.17 426.99 271.02 426.99 271.02 426.99 271.02 431.73 277.11 435.8 275.97 437.61 272.83 443.17 276.35 447.35 274.98 447.73 275.62 452.88 276 454.15 272.91 459.12 271 457.79 267.62 452.94 267.99 452.86 264.97 449.07 264.49 447.41 267.62 444.59 264.64 446.12 262.1 441.8 261.81" style="fill:#d9dadb"></polygon><path d="M446.82,257.06l4-6.31-2.59-2.08L447,246.41l1.21-2.1L446,242.66l-1.74,2-2.47-.5-2.66,2.67-6.46.69L429.31,243l-6.5-1-.22,2.29,1.83,4.27-4.25-1.06-3.47,4.11-2.61-3-1.1,0c-.51,1.81-1,3.62-1.5,5.44l-3.05,2.77.79,2.53-1.71,2.24-4.1.29.45,3h0l-2.73,2.72-1.42,2.12L402.9,271l-1.81,4.56-.07.17a13.9,13.9,0,0,1,2.28,2.19c-.21.11-.67.43-2.13,1.48l3.49,2.33q3.51.33,7,.63l-.79,2.22-4.81,3-2.84,6.27,4.71.21,2.25-1.81,5.22,2.25,9.83,1.17,5.58-2h0l4.85,2.08.79-4.73,7.13-2-4.74-6.1h0l-3.07.15-2.63-5.54,3.94-1.91h0l3,.47,2.12-3.41,4.5-1.08,2.5,2.27,1.62-5.41-1.47-2.23,1.49-6.19Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M500.21,276.81l.76-3.18-3.72-4.37.57-5-3-.85.89-2.81,3.58-1.19,0-3.23-1.8-2.8c0-1.27,0-2.54,0-3.81L495,247l-10.3.64-7-2.2-.16-.06-5,.26-.69-3.54-9.62,2.38-2.19,2L452.48,248l-1.63,2.8-4,6.31,4.08,3.06-1.49,6.19,1.47,2.23L449.26,274l3.48-1.22.95,1.06,4.32.29-1.53,2.54,2.83,3,1.66-3.13,3.79.48.08,3,4.85-.37L471,283l1.3,1.3,2.69-.93,2.32,1.15,2.92-1.16,2.64,1.39,2-1.34,3.62.69.53.56,2.64,1,1.92.71-.19-4.2,4.29-5.26Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M489,284.64l-.53-.56-3.62-.69-2,1.34-2.64-1.39-2.92,1.16L475,283.35l-2.69.93L471,283l-5,1.92L464.78,288l-5.16-.38h0l.92,1.56-1.32,2.2,1.86,1.85-.11.5,4.78,2.37,4.4-.67,1.19-2.11,4.48-1.05,2.8.57,1.34-3.05h4l1.47,3,4-1.13h0l2.21-6.06Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="515.31 327.55 510.43 329.82 507.88 327.15 505.38 327.68 504.78 337.3 507.73 338.1 512.81 334.04 521.48 334.14 520.36 332.01 516.48 330.07 515.31 327.55" style="fill:#d9dadb"></polygon><polygon points="504.78 337.3 505.38 327.68 501.46 328.49 501.01 331.38 495.72 331.8 493.06 330.19 488.78 332.19 482.77 332.13 480.07 334.45 475.66 334.35 473.93 337.23 469.06 337.81 468.52 341.79 463.19 347.85 468.47 354.58 476.12 354.76 477.86 356.32 468.97 357.86 475.46 364.81 475.71 372.65 480 368.47 485.57 370.91 482.32 361.61 485.78 361.77 483.78 356.6 489.13 356.16 481.63 353.21 482.29 350.07 486.5 350.2 479.57 344.02 479.7 340.2 482.32 338.06 488.16 342.53 487.58 336.93 496.27 335.44 504.78 337.3" style="fill:#d9dadb"></polygon><path d="M448.76,304.21h0l-3-1.12-2.69,2.48-2.31-1.78-2.61-.31-1.95,5.61,1.28.87q6,.3,11.9.51l6.23-5-.67-3.82-4.62,0Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="454.85 323.9 447.44 317.06 443.21 320 451.58 324.87 454.69 323.9 454.69 323.9 454.85 323.9" style="fill:#d9dadb"></polygon><path d="M455.66,317l2.09-1.86,7.44,1.15,2.12,2.3,3.83-.08-2.07-8.86-3.57,2-4.89-2.16-5-4.06-6.23,5q-6-.21-11.9-.51l-.54,2.8,2.36,4.57,2.29-3.89,1.57,1.07,2.28,7.26,4.5,5.6,9.38,1.68L450,316l2.75-1Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="454.85 323.9 458.98 329 458.99 329.04 461.68 326.39 463.63 324.46 459.55 316.38 455.95 319.18 454.85 323.9" style="fill:#d9dadb"></polygon><polygon points="459.24 306.55 459.24 306.55 455.41 306.63 453.3 304.33 445.85 303.18 443.76 305.04 440.8 303.03 438.05 304.05 447.44 317.06 454.85 323.9 455.95 319.18 459.55 316.38 461 312.97 457.76 310.61 461.1 306.61 459.24 306.55" style="fill:#d9dadb"></polygon><path d="M494.14,294.2l-4.68-2.53-4,1.13-1.47-3h-4l-1.34,3.05-2.8-.57-4.48,1.05-1.19,2.11-4.4.67L461,293.72l-.75,3.31-2.88-.36-2.38,5,.67,3.82,5,4.06,4.89,2.16,3.57-2,5.42-2.49,8.42-.14,1.11-2.2,2.06-1.42,3.2-6.42,3.27-.68h0Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="482.75 319.72 479.28 317.55 478.2 314.71 481.34 309.22 478.75 307.62 476.25 308.72 472.28 307.1 473.43 304.15 468.76 301.88 469.64 299.87 462.6 295.2 457.18 297.69 459.24 306.55 459.24 306.55 461.1 306.61 457.76 310.61 461 312.97 459.55 316.38 463.63 324.46 461.68 326.39 461.73 326.41 467.14 329.58 471.5 327.99 477.91 326.61 478.1 326.52 478.01 322.03 481.19 322.92 482.75 319.72" style="fill:#d9dadb"></polygon><polygon points="461.73 326.41 461.68 326.39 458.99 329.04 457.94 340.6 461.21 345.3 463.18 347.85 468.52 341.79 469.06 337.81 465.76 334.22 467.14 329.58 461.73 326.41" style="fill:#d9dadb"></polygon><path d="M490,338.59v-.09l-.19.09L483.4,340,479,341.56l-1.38,4.64,3.3,3.6,4.87-.59,1.73-2.88,4.41.11,2.7-2.33h.47l-1.41-3.56-2.7,0Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M525.23,328.67l3.66-1.41.26-2.24-4,.19-4.64-2.66-6.12,1.89L510.57,328l-6.19-1.52-1.56,1.72-8.18-1,.57-3.1-2.84-1.34-2.27,4,1.08,2.83,3.47,2.17-1.56,3.2L489.9,334l.1,4.49v.09l1,2,2.7,0,1.41,3.56,5.54.05,4.28-2,2.65,1.61,5.3-.41.44-2.9,6.43-1.34,2.55,2.67,4.88-2.27L523,334.38l2.23-2.21Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M502.82,328.19l1.56-1.72,6.19,1.52,3.83-3.55,6.12-1.89,4.64,2.66,4-.19.05-.47.83-8.05-6.09-4.31,1-7.34-1.41-4.42-3.1-2.27-3.53-6.39-3.76.14-1.59,2-3.48.11-2.05,2-3.44-2.81-7-.8-1.44,1.86-1.59,2.12-3.27.68-3.2,6.42L484,304.84l-1.11,2.2-8.42.14,7.05,4.67-.88,2,4.66,2.27-1.14,2.94,4,1.62,2.5-1.1,2.59,1.6-.87,1.54,2.84,1.34-.57,3.1Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M537.29,307.51l-4-8.93-3.34-1.33.77-3.19-1.11-1.93-4.59-.71-3.26-2.49-4.12.28-2.26,2.62,1.58-.06,3.53,6.39,3.1,2.27,1.41,4.42-1,7.34L530,316.5h0l4.44-.24.58-3.25-1.49-1,1.06-3.21Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M574.12,298.63l3.66-3.77,3.79-.56,2.23-5.49q2.9-.33,5.76-.69l.42-2.27-2.55-3-.39-3.13,1.61-1.66-.72-2.83-5.39,1.05-5.31-2.66-1.38,2.06-4.14-3.88-3.19,2-5.52,0-1.32-1.29.13-2.4-1.43-2.31-6.13-.24L553,264.8l1.18-2-3.38-3.68-7.4,1.26-.62,2.34-6.07-.88-1.48,3.57,1.14,2.6-2.4,1.86-2.43-2.75-4-.8-1.25,2.5-3.2-2.27-2.44,2.54-3.18-3.4-6.64-.84-9.2,0-.72,3-3.55.65-.08.72,3.71,4.37-.76,3.18-2.52.05-4.29,5.26.19,4.2-1.92-.71-2.21,6.06,4.68,2.53,1.44-1.86,7,.8,3.44,2.81,2.05-2,3.48-.11,1.59-2,2.18-.08,2.26-2.62,4.12-.28,3.26,2.49,4.59.71,1.11,1.93-.77,3.19,3.34,1.33,4,8.93,2.7-5.4,3.64-2.18,4.11.26-1.62,3.59,3.3,1.47,5.06-1.58,3.4,1.94L551,310.34l1.64,1.5,5.19.56,1,5,3.39.37,2-3.11,3.48-.19,1.53-2.11c1.67-.15,3.34-.32,5-.48l-.15-4.4-6.83,2.43-5.18-5.55,6.71-5Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="480.23 235.22 480.23 235.22 480.23 235.22 480.23 235.22" style="fill:#d9dadb"></polygon><polygon points="480.23 235.22 480.23 235.22 480.23 235.22 480.23 235.22" style="fill:#d9dadb"></polygon><rect x="480.23" y="235.22" style="fill:#d9dadb"></rect><path d="M489.94,241.88l-4.2-1.92.2,1.95c-2.13,0-4.26,0-6.39,0l-2.06,3.5,7.16,2.26,7.47-.45h0l2.45-5.38Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M513.48,241.05l-2-1h0l.62-1.81-3.64-4-3.43-.45-1.67-2.06-1.93,2.15-4.48-.91L495,234.44l-4.85-2-4.89,2.69.42,4.41,0,.38,4.2,1.93,4.63,0-2.45,5.38h0L495,247l2.54,2.53v.88h5.33l2.58-2.95,1.37,2.23,2.44-.07-.22-6.44,3.2-.11Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M544.19,252.52l-1-3.11-6.95-3.25-3.05-4,0-5.4-3.64-2.21-4.09,2.53h0l-1.66-3.51-4.11,0-1.7,0-1.6,3.22-2.85-1.46-1.39,3-.62,1.81h0l2,1-1.29,2-3.2.11.22,6.44-2.44.07-1.37-2.23-2.58,2.95h-5.33c0,1,0,1.95,0,2.93l1.8,2.8,0,3.23-3.58,1.19-.89,2.81,3,.85-.48,4.3,3.55-.65.72-3,9.2,0,6.64.84,3.18,3.4,2.44-2.54,3.2,2.27,1.25-2.5,4,.8,2.43,2.75,2.4-1.86-1.14-2.6,1.48-3.57,3.91.57v0l-3.81-8.67,4.91.9Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M512.14,224.16l-2.49.82-4.43-3.11-3.77,1.79-.17,1.79c-1.86,0-3.72.08-5.59.1L493,222.3l-4.11,1.19L485,231.7l.31,3.46,4.89-2.69,4.85,2,1.89-1.48,4.48.91,1.93-2.15h0l1.66,2.07,3.43.45,3.64,4,1.39-3,2.85,1.46,1.6-3.22,1.7,0h0l0-.24-1.29-3.76-2-.42.12-2.2Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M517.46,212.34,516,210.8l-4.35.18-4.92-1L497,213l5,5.54-.48,5.09,3.77-1.79,4.43,3.11,2.49-.82,1.82,1.13,1.67-2.84-2.78-3.73,0-3.47,2.54.09Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M914.92,385.74c.69-.59,1.37-1.17,2-1.76l.72-4.62L924,391.69l1.83-1.69-5.59-15.35,3.52.61-3-10.68-1.65-1.25.46-4.37-3.38-6.89,1.59-9.28-1.7-6.73-4-1.11-1-3.6-3.42-2.69v7.14l-2.68-.15-.51,5.62-1.73,2.09,1.07,5.21-1.43,4.87,4.06,6L903.43,363l-2.81-1.22-1.56,4.77-5.16-1.9-1-3.3-1-3.23-2.59,4.08L891,369l2,1,.82,4.51-3.72,1.83-9.15.84-1.2-2.61-3.46,0-2.42,3.25-6.5-2.41-1.22,2.3-11.22-3.5-.36-5.39-1.13-1.95.78-4.81-8.77-2.45-2.1-2.69-3,.77L834.82,350l3-1.56.9-2.23-2.35-3.39-5.17-3-1.78-2.58.52-3.08-5.05-.93-4.2-5.78-2.27,1.14-5.39-.67-3.45,2.67-.89,4.24q-2.43,1.11-4.91,2.19l-.81,5.06,5.91,10.79,5.8,3.35,3-1.34,3.78,2,.52,4.67-2.06,3.37,2.9,4.14-1.74,7.1,1.75,13.21L819,392.1l.26,7-4.62,5.25-3.42-3.2-2,8.9.87,3.73,4.73-1.72,2.89,8.74,3.39-1.33,5.51,8.47-13.31,4.7-.63,6.05,6.4,4.25,6.35-4.8.56,6.33-6.33,3.78,8.81,6.69,4,1.52,6.31-6.85-.16-10.6,5.63,12.17.6,8,3.49,3.81.13,4.67,4.14,7.5,2.68,8,6,9.62,3.75,3.46,3.16,5.7,1.53,5.14,4.14,9,3.83,3.88,4,8.69,1.87,1.3.09,3.58,1.64,4.26,4.08,5.56,4.45-5.12,1.48-6.78,2-1.9-.12-3.25,1.08-5.26,1.69-.73-1.27-9.06-1.1-.62L898,499.7l-1.12-9.22-3.1-5.86-1.64-6.81-.16-5.3,3.35-7.74,4-4-1-3.71,4.81-14.12.46-8,1.12-3.62-1.35-5.3,2.94,1.46,2-4.17.26-6.22-2.28-5,1.7-6.4-.74-7,4.32,4.08,1.1-.79v0l-5.17-7.44q-1.44-3.45-2.91-6.87l-3-.47c-.52-1.2-1-2.4-1.58-3.6l2.33-4.16-3.71-2-1.57-5,5.66-.74q1.19,2.55,2.36,5.11l2.31-.9,1.63-2.34,1.9.36,1.47-3.82,3.25,3.53-2.24,7.61Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M924,391.69l-6.28-12.33L917,384c-.67.59-1.35,1.17-2,1.76l-1.57-4.65,2.24-7.61L912.34,370l-1.47,3.82-1.9-.36-1.63,2.34-2.31.9q-1.17-2.56-2.36-5.11l-5.66.74,1.57,5,3.71,2L900,383.47c.53,1.2,1.06,2.4,1.58,3.6l3,.47q1.47,3.42,2.91,6.87l5.17,7.44v0l3.87-2.86-.27-4.31.16-4,1.36-1.22,2.5,3.15,4.23,7.22v-.15c.68-.6,1.35-1.2,2-1.81Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M870.85,361.91,868.91,364l-3.11-2.63-5-.9c-.47-1-.94-1.92-1.42-2.87L856,358.73l-.15,3.73-1.66-.45-.78,4.81,1.13,1.95.36,5.39,11.22,3.5,1.22-2.3,6.5,2.41,2.42-3.25,3.46,0,1.2,2.61,9.15-.84,3.72-1.83-.82-4.51-2-1-1.73-6.72-2,2.2L883.16,363l.11,2.81-6.09-.68Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M892.87,361.38l1,3.3,5.16,1.9,1.56-4.77,2.81,1.22,3.05-3.55-4.06-6-3.1-2.72L897.6,355l-1.42-2.78c-.72.6-1.44,1.18-2.18,1.77a22,22,0,0,1,.28,4.2C894.1,359.4,893.24,360.28,892.87,361.38Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="874.04 188.12 877.92 192.09 881.08 196.09 881.9 196.93 884.52 200.41 885.97 201.91 882.27 196.82 882.29 196.61 880.42 194.27 880.16 193.75 877.61 190.66 877.61 190.48 872.36 184.21 872.45 184.41 866.96 178.22 861.9 173.32 864.45 176.31 864.79 177.39 867.99 181.24 871.29 184.51 872.3 185.65 872.19 185.77 874.04 188.12" style="fill:#d9dadb"></polygon><path d="M860.86,174.09l4.52,4.75,5.93,7.61h0l1.35.16,3.38,3.73.57.3.92.83.7,1.26,2.09,2.53,1.85,1.57-.6-1.1-1.7-1.75,0-.22.83.59-.78-1.14-3.2-3.85-.34-1.08-2.55-3-.41-.39-1.41-.83-2.76-2.83-2.84-3.19-1.27-1.76-2.37-2.63-1.39-1.43-1.67-1.92L855.12,166l-4.64-4.8-2.27-1.88-.31.19,5,4.71,3.43,4.14,3.12,2.59,2.16,3-2.85-2.4Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M606.17,404.49l3.85,9,8.55-.44,13,6.66,21,14.59q6.11-1,12.14-2l2.4-8.05c2.8-.48,5.58-1,8.36-1.49l.09-.21.82-1.87,1.32-.43h0l-8.12-7.9-.18-5.38-3.92-5-2.94.47-4-2.93-3.9.66-1.16-5.94-4.54-1.53-.59-6.5,3.93-4.76-2-3,.58-3.16-6,0-4-7.18-5.2,2.47-2.31-4.1h-6.71l-4.9,8.08-3.78.51-.12,4.53,2.8,4.87h0l-.35,7.94Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M667.08,424.3l-2.4,8.05,5.18-.9,2.88,4.05,6.73-1.22-1.33-2.09-3.46-7.68.76-1.7C672.66,423.32,669.88,423.82,667.08,424.3Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M623.51,371.57l-1.84-4.31-8.48,2.58-5.8,4.92-6.18.74-4.35-1.3-4.4,2.84-5-.52.93,4.65-2.18,4-3.15,0,1.49,7.77-.44,1.48h0l4.74-.76,2,3.91-3.65,8.74-.32.09-1.53.44.4,4.29h0l0-.07,6.5,3.34,13.89-9.93,14-12,.35-7.94h0l-2.8-4.87.12-4.53,3.78-.51h0Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M596.86,374.2l4.35,1.3,6.18-.74,5.8-4.92,8.48-2.58h0l1.84,4.31,3-5h6.71l2.31,4.1,5.2-2.47-2.63-4.72-5.36-2.78.5-2.7-3.64-6.48,3.55-4.16L626,345.51l-.14-4.92-2.65-1.91L618.47,335l-4.66,3.33L609.45,336,603,341.08l-4.8-1-6.13,2.35-10.57-2.24-2.21.9-2.56-3.27L572,338l-2.53-2.86-2.66,1.36-7.23.16-11.52,7.72-13.77,1.17,2.11,2.66-2.48,3.5-8,.11L524.12,353l-5.64-.58-3.38,3.44L519,364.3l-2.2,3.42,5.71.53-1.16,4.94,6.16,1.22-.35,5,7.49.41,2.38,2.81,3.49,1.27,5.26-1.24,1-3.83,4.81-.73,9,5.58,8.83-2.67,4-5.26,5.93,1.75,3-2.87,1.57,2.37-1.42.79-.16,2,1.61,2.48-.83,2.93,3.15,0,2.18-4-.93-4.65h0l5,.53Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="631.53 342.75 627.96 336.74 621.27 335.36 624.78 341.95 624.78 341.95 631.53 342.75" style="fill:#d9dadb"></polygon><polygon points="620.49 323.8 619.82 324.46 611.34 326.7 613.99 328.61 614.13 333.52 621.27 335.36 627.96 336.74 631.53 342.75 634.16 338.71 632.62 334.19 628.81 332.67 628.8 330.85 624.89 329.13 625.2 327.34 620.49 323.8" style="fill:#d9dadb"></polygon><path d="M657,333.51l-5.62-5.33-1.8,4.76-3.06.55-2.36-3.71-5-2.53-1.07,1.29-.9,1.06,4.19,3.07L640.3,336l-5.78-2.33-2.14,2.13,4.71,3.54-.3,1.79,3.9,1.72,0,1.83,3.81,1.51,1.54,4.52,5.5-6.61,2.8,2.17,1.86,5.92h5.23l-2.24-4.44h0l4.91-11.36Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="597.55 324.04 601.91 326.29 606.58 322.97 611.34 326.7 619.82 324.46 622.62 321.67 628.4 324 629.5 320.69 625.3 317.63 625.3 317.62 626.2 316.55 626.2 316.55 621.37 314.82 621.16 312.26 616.59 311.14 611.31 314.84 608.71 311.5 602.78 309.78 597.13 310.28 587.58 306.52 586.87 309.06 595.88 313.96 599.35 320.53 598.38 323.39 597.55 324.04" style="fill:#d9dadb"></polygon><polygon points="657.06 37.03 653.02 35.68 651.48 35.19 654.22 36.11 657.41 37.15 657.06 37.03" style="fill:#d9dadb"></polygon><path d="M810.39,126.45l1.14.69,2.23,1.74,2.08,1.84,15.35,12.46.21.85,3.82,3.71,4.67,3.74h0l5.64,5.19,2.68,2.65,2.27,1.88-.59-.59-3.21-3.22-4.85-4.57,1.43.74-2.77-2.73-6.15-5.65L828,139.67l-12.44-10.31L800,117.49l-5.87-4.26-8-5.48-1.88-1.28-3.31-2.09-8.11-5.18-5.38-3.1-3.31-1.94-.38,0-2.91-1.47,1.75,1.48,6,3.44.68.91-2.84-1.47,3.4,2.33L764,96.16l3.07,2.38-1.76-.61-10.23-6.66L749.25,88l-1.51-1.08L743.86,85l-8.69-5-3.49-1.69-11.35-6-5.49-3.34,0-.25-5.7-2.94-.57-.44-3.44-1.55-5.08-2.53,1.62.6,3.51,1.59.92.33-3.31-1.58L698.6,60.3,694,58.36l-1.81-.71,2.09.9-6.17-2.41-4.87-1.88-5.14-1.88-2-.68-3.48-1.26-5.3-1.92-.34-.15-.83-.27L655,44.47l-1.89-.58-6-1.79h0l-19.28-5.17c-22.26-5-25.68-5.79-36.64-7.51h0c-7.63-1.13-17.82-2.6-25.48-3.52l4.08.53,1.8.23h-.39l2.11.24.1.09,4.87.94,4.73.91.89.26,5.49,1.1,2.63.38,2.14.63,4,1,1.11.12L598.6,32l.88-.1,2.91.42,2.5.61-.77,0,1.74.54-2-.16-1.57-.4-2.27-.35,2.67.76,6.16,1,4.48,1.44.38.27,6.82,1.79,3.2.62-1.85.05,1.24.54-3.95-.59-1.67.3.51.73,3.4,1.41,2.08.42c.78.32,1.55.64,2.31,1l4.21,1.42-2.23.4,3.37,1.23L628,44.79l-.1.23,1.11.56-3.71-.69-.88.21,2.53,1.38,6,1.35L635,48.94l-7.48-1.83,1,1.62,2,1.7v.8l6.16,1.09,3,1,3,.27.1.63,2,.74,3.5.87-1.87.15-.52.77,4.21,1.63L646,59.1l11.73,3.63-1.93.7-5.37-1-2.13.1-6.43-1.34-1,1,7.94,1.7-.46,1.21-10.39-2.85.84,1.17-3.77,0,4.63,1.3.79.85,4.54.7-.74,1.87-1.93.27,1.63.86-2.07.45-3.06-.9-1.52,2.08,1.41,1.68,7.27,2.48-8-1.38,1.58,1.23-3.29-.25,6.8,4.87,1.14,3.83-4.44-2.52-2.2-1.79.13-.88-3.34-2-.32-.81-5.34-2.74.84-.19L625.4,70l-7.2-1.06-2.44.32-3.53-.21,1.43,1.13-1.69.15,1.47,1.52L613.18,73,610,71.34l-1.14.26,1,1.31-1.42.73-2.28-2.29-1.79-.1-1.5,1.83,3.79,2.53,7.22,1-2.75.71-.79,1,3.58.7,7.49,2.1L617.7,81l-5.88-1.61,1.64,1.48,0,1.94L611,82l-1.72,2.07,3.16.8-.27,2-1.74,1.83,2.82,3.18,1.45,1.44-2,.44,5,2.39,7.7,1.65-1.91,1.54-3.31-1L617,99l-2.09,3.44,6.46,3.22,3.8.17,2.65,1.3,6,.54,5.74,5,4.93,2.57L639,113.94l-5.74-4.61-3.49-.12-5.15-1.38-4.61.94,3,2.65-3.14.21,2.19,2.68,4.13.28.33-.71,4.32.67,3,3.72-4.78-1.85-5,1.16L619.6,114l-6.84-3.25,3.36,3-.34,1.62,1.74,2.32,7.25,2.53,2.92,3.84,5.38,3.53,2.76-2.12,6.46-.65,5,3.71,5.22.29-2.79,2.49-2.37-.33-4.23-3.11-3.34-.82-3.4,2.26,6.34,3.48,1.83,3.83-1.09,3,1.28,2.47-7.59,1.19-3.24-1.94,5.18-.85-1.11-6.6-2.54-1.45v-1.68l-4.16-1.43-7.39-5.48-3.12-3.31L615,118.37l-3.42-4.74-2.85-1.92-7.47,1.05.9,1.81,5,5.36.15,4.66,2.81.34,6,6.61,2.94-.95,3.58,2.15,1.82-.48,1.84,3.22-.86.42-5.19-1.5-12.27-.76-7.88,1-7.28-2.85,1.29,3.17,6.72,1.79,4.61,2.13-1,3.54-4.5-2.58-2.39,2.14-.08,1.05c-1.71.44-3.43.86-5.18,1.28l.56,2.89L588,147l1.12-1.77-.47-2.63c-4,2.47-9.31,5.77-13.4,8.07l2.68,1.71-3.57.93,1.2,3.73-4.79.92-4.52-2,.43-2.15,3.75-1.08-3.82-2.87-8.19.14,3.5,2.19,1.08,5,3.22,1.32-.46,2,1.79,3.41-4.1-2.4-3.71-.11-1,2.15-4.49,4.56,4.52,6.11-3.37.22-10.56-2.62,1.69,4,4,.82-.92,4.32-6.06-3.88-5.09-.77-1.46-8.23-9.52-5.94,6.51-.14,1.2,2.09,8.68.78,3,.58,4.18-.66,5-4.52-.29-1.95-2.2-2.48-9.13-2.15-6.57-2.87-8.37-.86-4.63.42,1.6-2.3-3.67-.83-.12,1.44-2.7-.48.62,3.18-2.3-.47-2.93,3-1-1.09-1.45,1.39.92,1-.25,2,2.63.35,2.45,2.35-.37,2L515.62,164l5.3,7.41-1.76,2.67,2.52,2.72L521,179l3.23,1.48.33,1.63-2,1.73,4.22,2.24,1.7,2.12-1.27,2.95-11.14,12.68,6.81,3.35-6,1.6-.05,2-.94.05,1.49,1.54-2.09,3,1.3,0,.39,2.94L519,222.2l-1.89,2.2-1.48-2L514,225.29l2.41,1.59-.12,2.2,2,.42,1.29,3.76,0,.24h0l4.11,0,1.66,3.51h0l4.09-2.53,3.64,2.21,0,5.4,3.05,4,6.95,3.25,1,3.11-2.47,2.09-4.91-.9,3.81,8.67v0l2.16.31.62-2.34,7.4-1.26,3.39,3.68-1.19,2,1.24,2.78,6.14.25,1.43,2.31-.13,2.4,1.32,1.29,5.52,0,3.19-2,4.14,3.88,1.38-2.06,5.31,2.66,5.39-1.05.72,2.83L587,279.74l.39,3.13,2.55,3-.42,2.27q-2.87.36-5.76.69l-2.23,5.49,6.92-2.16-.41,2.35-7.54,4,.76,1.92,3.78,1-2.61,2-.84,4.91L576.5,308l1.33,2.06,5.66,3,2.28,2.12,3.39.55,9.6,5.35.71-2.54,9.55,3.76,5.66-.5,5.93,1.73,2.6,3.33,5.28-3.69,4.57,1.12.21,2.55,4.82,1.73h0l1.07-1.29,5,2.53,2.36,3.71,3.06-.55,1.8-4.76-9.14-8.73-3-8.71-6-1.8,2.72-4.26.8-7.69,4.41-.05.67-2.56-3.38-2,1-4.7-5.61-4.55-5.88-.08c-.32-.92-.64-1.84-.95-2.76l-2.94-1.09.37-5.81L622,271.87l1.35-3.67-1.08-2.58,1.58-1.95,5.36,3.67,2-1.63-2-3,1.94-5.2,3.58-1.85.3-2.42,2.62-.53,1.12,1,2.29-.47.29-1.66,2.84-.61.6,1.31,3.78-.62,3.23,2.35,2.88,2.5,2.4-.37c-.42-.86-.84-1.72-1.25-2.58l6,2.39,1.26-4.08,2.87-1.11,2,1.81,2-1.25-.34-2,3.07-.49,2,2,5.59.63.46-2.29,5.39-1.76-1.66-4.48-8.38-.38-1.63-1.93,4.86-2.63-3.63-2.58.16-2.17,5.26-.27L680,229.76l-4.7.07-3.75-4.19,5.88-3.57,7.88-3.48-.69-2.28,9-5.38-1.89-2.64,1.78-2.64,4.44.22,3.19-1.37,3.88,3,.93,3.64,3.38,1.65,1.56-3.88,2.18,1.47,1.61-2.92,2.34,1.9.07,2.79,3.61,1.75,1.37-12,2.81-1,2.12,4.74,7.44,2,21,12.71.28-1.83L754.09,216l2.46-1.13,4.05,3.06,3.25-1.55-.72-3.36,3.57-.2,4.52,3.46,2.73-.57,3.16,2.08,2.42-.81-.93-3.31,2.87.46.82,1.17,4.73,1.33-1.2-4,3.44-1.92-2.28-2.3-.31-6,2.08-.94-1.4-3.23,3.25-1,2.6-1.79,3.94,3,2.88-1.17-.32-2.61,4.35.14.18-3.13-2.72-3.38-4.38-2.22-3.35-4-2.8-5.49,4.5.64,3.08-1.17,1.54-1.8c1.86,1.5,3.7,3,5.54,4.54l6,.26-2-6.42,5.72-2.61h0l2.63,2.1,2.48-1.17,2.15-1.75-2-2.83.9-3.27-2.9-2.71-3.66-4.86,3.13.06-1.64-2.63,2.35.43h0l1.73-.5-3-3.53-1-2.23-2.2-1.8-.62.15-9-7.63-2.3-2.67-4.21-2.56.63,1.33L796,132.36l-3.1-3.22-3.76-5.61,2.11-.47-1.16-1.42,5.06,1.45,7.09,4.11,8.66,5.12,1,.13L810,130.58l.48-.64,1.17.61L810.26,129l8.93,6.29L817,133.06l-.54-1-3.95-3-5.67-5.12,1.36.83ZM536.32,205.89l-.44,3.12-3.6-1.36-.11,2.44-2.13,0-4.27-7.19-1.71-1.07,2.53-3.89,3.22-.44,1,2.61,3.65.32L538,205Zm13.36-3.64-2.86-.54-.4-3-5-2.17.76-3.2,1.73-.26-2.3-4.1,4.58,1.55,1.12,3.25,3.07,3.79ZM790.14,149l4.78,4.91,3.15,6.2,5.35,7-3.28,3.74-2.48-7.1-7.36-8.83-2.41-5.12-11.37-9.68-1.39-2.35Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M860.94,223.75l3.18,1.95-2.23-11.41,1.92-4.56-5.09-8.53-.15-2.55-3.28-4.52-3.46-1.06-4.51-5.55,2.77.84-.18-3.44-4.53-5.34,1.56-.87-3-4.24-4.5-4.31-3.26-5.91,2.16-.52L835.61,161l-7.6-3.88.47,2.15,2.82,3-.06,1.91,1.58,2.14-3.66-1.91-10.43-10.89h0l-2.35-.43,1.64,2.63-3.13-.06,3.66,4.86,2.9,2.71-.9,3.27,2,2.83-2.15,1.75L818,172.22l-2.62-2.1-5.73,2.6,2,6.42-6-.26c-1.84-1.52-3.68-3-5.54-4.54l-1.54,1.8-3.08,1.17-4.5-.64,2.8,5.49,3.35,4,4.38,2.22,2.72,3.38-.18,3.13-4.35-.14.32,2.61-2.88,1.17-3.94-3-2.6,1.79-3.25,1,1.4,3.23-2.08.94.31,6,2.28,2.3-3.44,1.92,1.2,4,3.31,2.84,6.31,1.67c.94-.73,1.87-1.46,2.78-2.19l9.36,6.06h0l4.65,7.22,4,3,6.87-5.68,11,3.1,7.81,5.54.32-3.15,7.26-2.74-.64-3.8,6.86-3.14Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M988.56,509.1,987,493.3l-3.6-8-.28-.41.26,8.15-1.61,3.7c-.21-1.65-.43-3.29-.67-4.93l-2.48-.68,2,9.72,1.09,2.56.12,3.26,2.93,5.67-.22,3.3,5.24,7.32,1.22-4.09-1.45-8.07Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M980.75,482.73l-.36,2.88-2.25-2.11-2.21-9.37-2.16-5.65-1.35,2.34-2.83-17.44-.68-8.28-3-10.41.24-2.6.9,1.3,2.74,5.34,2.59-3.13,1.25,2.29,2.44,2.77c-.7-2.8-1.42-5.6-2.17-8.38l-3.3-6.9-.07-6q1.62-2.9,3-5.78l-.12-4.09L971,402.1l-3.19-3.54L966,392.74,962.64,388l-1.37,1.14.41,6.05-2.12-1.63.19,8.78-1.87-.48-2-11.17q-.93-2.42-1.87-4.83l-2.43,3.3-1.35-6.49-2.75,1.69,1.55,8c-.58.76-1.16,1.51-1.76,2.26l-2-1.11q2.07,5.28,4,10.59c-.44.54-.89,1.08-1.34,1.61l9,10.57,3.31,14.8,2.67,4.09,5,14.66-.17,9.68.83,5.79.5,8L971.81,484l.86-3,3.35,3.57,2.36,5.82,0,.08.16.72,2.48.68c.24,1.64.46,3.28.67,4.93l1.61-3.7-.26-8.15Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M984.72,431.58l-.88-10.53,0-1.38L981,407.84l-2.25-6.74L976,394.76l-.71-2.49-2.74-4.61-.87.49-4.63-5.34-1.66-3.47-3.18-3.17-1.81-5.44-2.07-10.89-1.23-2c.27-.71.53-1.43.78-2.14l-1-2.45-.11-2-2.75.65-2.33-6.06c-.29.75-.59,1.51-.91,2.27l-2.95-2.34,1.35,6.31.1,4.21-1.78-1,.6,3.22h0l-2.21-.84,1,4.89,2.83,2.91.65-1.15,1.64,6.25,2.6-.53-.42-4,3.81,5,.74,3.67-.87,1.46,1.11,4.67,3.79.14,7.37,11.07,2.32,1.35.73,3.39,1.45,1,1.35,4.35,2.48,9.4,2.73,9.18-.39,10c.43,1.68.84,3.37,1.25,5.06l-.72,1.71-.16,8.65.95.79,2.18,9.74,1.09-11.32-1.36-8.78Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M981.24,420.75l-2.73-9.18-2.48-9.4-.18,4.1-1-1.28,0,3.33,1.57,5.53-2.87-.21q-1.35,2.88-3,5.78l.06,6,3.3,6.9c.75,2.78,1.47,5.58,2.17,8.38l1.44,1.71.65-3.66,1.47,6.21,1.59,1.27.16-8.65.72-1.71c-.41-1.69-.82-3.38-1.25-5.06Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M966,392.74l1.85,5.82L971,402.1l2.36,7.44.13,4.1,2.87.21-1.57-5.53,0-3.33,1,1.28.18-4.1-1.35-4.35-1.45-1-.73-3.39-2.32-1.35L962.81,381l-3.79-.14-1.11-4.67.87-1.46-.74-3.67-3.81-5,.42,4-2.6.53-1.64-6.25-.65,1.15-2.83-2.91-1.3.21.7,2.82,2.35,3.1h0l1.94,5.15c-.38.62-.77,1.23-1.17,1.85L948,373.2l.63,10.44,1.58-1,1.35,6.49,2.43-3.3q.94,2.41,1.87,4.83l2,11.17,1.87.48-.19-8.78,2.12,1.63-.41-6.05,1.37-1.14Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M954,421.46l6.71,17.65.42-2.42,4.52,15.91,1.18.42,1,6.49.17-9.68-5-14.66-2.67-4.09L957,416.28l-9-10.57c.45-.53.9-1.07,1.34-1.61q-1.93-5.31-4-10.59l2,1.11c.6-.75,1.18-1.5,1.76-2.26l-1.55-8,1.17-.71L948,373.2l-2.53-4.36.25,6.58-2.35-3.15-2.22.82-1.46-4.49.13-2.17L937.2,366l-2-2.93L934,359.85l-1.62,1.76.11,4.16L929.32,360l-.13-2.64L927.75,354l-.52-6.33L925,341.86l-3.35-5.61-2.07-.31-2.2-3-2.23-.4.89,3.5,1.7,6.73-1.59,9.28,3.38,6.89-.46,4.37,1.65,1.25,3,10.68-3.52-.61L925.79,390,924,391.69l2.55,6.18c-.66.61-1.33,1.21-2,1.81v.15h0l6.62,5.12,2.33-.54,2.45,2.94,1.3,4.05,5.09,7.87,1.48,8.55,1.3,4.25,4.12-4.07,1.18-9-1.58-5.69,4.39,3.95Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M768.9,433.17l.5,5.79,11.28-3.29,3-3.25,3.89,1.2,6.18-4.23,2.42-2.57,2.54,3.91,2.26-.62,5.87,8.13,4.31-.52,1.56,1h0l.63-6.05,13.31-4.7-5.51-8.47-3.39,1.33-2.89-8.74-4.73,1.72-.87-3.73,2-8.9,3.42,3.2,4.62-5.25-.26-7,3.83-2.74-1.75-13.21,1.74-7.1-2.9-4.14,2.06-3.37-.52-4.67-3.78-2-3,1.34-5.8-3.35L803,342.08l.81-5.06q2.48-1.08,4.91-2.19l.89-4.24h0l3.45-2.67-5.4-3-3.21-1.12-3.34,1.52-1.8,3.39-7.7,3-1.91,6.56,4.16,4.66-.8,6.08c.76,1.62,1.53,3.23,2.28,4.86l-6.17-.08,1.34,5,3.42,1.27,0,3.62-3.32,1.27,3.27,8.26-.56,3.71-5.24.13-.44,4.43-5.4,3.57,1.47,9.63-7.41,6.13-.81,2.69-5.69-.62-4.62,3.21L754,404.22l7.13,7.93,8.33,3.07c.83,2.55,1.66,5.12,2.48,7.68,1.07-.32,2.14-.65,3.2-1h0l1.05,5.54-5,1.53Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M799.3,328.69l1.8-3.39-1.33-4h0l-2.64-1.46-5.68,2L791,325.2l-4.34,4.5c-1.21-2.34-2.42-4.67-3.66-7l-1.84-.6-2-4-2.22,1.38-2.11,3.7c.79,1.52,1.57,3,2.34,4.55l-2.19,4.83-2.48-2-2.58,5.52-3-2.81-10.38,1.9L757,338c-1.34.45-2.68.9-4,1.34l1.65,9-5.31,4.15,1.21,4.2-3.1,4.52-3.57-4.66-3.21.65-2.15.44L741,367.74l-1.2,3.39,1.32,3.56,2.93,1.18-1.13,3.74,6.81,12.07,4.56-.51,2.19,4.25-2.48,8.8,11.19,1.86,4.62-3.21,5.69.62.81-2.69,7.41-6.13L782.26,385l5.4-3.57.44-4.43,5.24-.13.56-3.71-3.27-8.26,3.32-1.27,0-3.62-3.42-1.27h0l-1.34-5,6.17.08c-.75-1.63-1.52-3.24-2.28-4.86l.8-6.08-4.16-4.66,1.91-6.56Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M776.2,427.46l-1.05-5.54h0c-1.06.34-2.13.67-3.2,1-.82-2.56-1.65-5.13-2.48-7.68l-8.33-3.07L754,404.22l2.48-8.8-2.19-4.25-4.56.51-6.81-12.07,1.13-3.74-2.93-1.18-1.32-3.56,1.19-3.4-2.5-10.06h.07l-4-8.35-4.18.46-9.47-5.43-4,3.27-6.85-2.3-1.64-3.09-10,3.61L697,352.44l-4.31.93,2.36,6.22-6.35-.62-7.11,3.9L664,357.94l-2.53-5.78h-5.23l-1.86-5.92-2.8-2.17-5.5,6.61-2.63,4-6.75-.8-3.51-6.58-3.55,4.16,3.64,6.48-.5,2.7,5.36,2.78,2.63,4.72,4,7.18,6,0-.58,3.16,2,3-3.93,4.76.59,6.5,4.54,1.53,1.16,5.94,3.9-.66,4,2.93,2.94-.47,3.92,5,.18,5.38,8.12,7.9h0l8.59-3,7.54,7.52,4.45,7.46,8.61,2,7.37,3.85,2.37,1.72,6.33.25,3.38-3.21,1.53-.21,4.56-4.79,3.09-.19,2.69,3.28,3.37,6.66,11.68.19L762.4,439l7,0-.5-5.79,2.3-4.18Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M760.52,334.28q-1.57-3.33-3.18-6.63l-4.72,1.13-7.72-2.07-3,2-11.43-5.46-4.77-7.44-3.61-1.34-3.38,2.94-4.82-1.31.69-3.15-3.47-4.24-3.78.93-4.48-2.32-2.37,1.87,1,3.67-3.54,3.35,3.63,5.83-7,.63-2.85,1.45-5.85-5.44-9.16-5.19-6.6,7.15L673.3,325l1-4.93,5.87-.47,7.57,7.13-10.45,3.39,1.09,5.62,5,.87.23,4.11,5,2.61,4,10.08,4.31-.93,1.46-6.61,10-3.61,1.64,3.09,6.85,2.3,4-3.27,9.47,5.43,4.18-.46,4,8.35,2.08-.42,3.21-.65,3.57,4.66,3.1-4.52-1.21-4.2,5.31-4.15-1.65-9c1.36-.44,2.7-.89,4-1.34l-.5-2.78,4.11-.73Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M779.59,280.82l5.48-3.56,7.65-4h0l1.58,1.36,5.58.33L796.62,271l1.34-2.92L790.3,260l-5.81-1.79,4.11-7.74,5.24,2.31-2.24-5.12L789,246.22,783.7,236l6.84-1.21.2-3.4q-2.88-3.32-5.81-6.58c.74-.49,1.48-1,2.2-1.49l-1.64-3.81,1.53-2.83-4.73-1.33-.82-1.17-2.87-.46.93,3.31-2.42.81L774,215.71l-2.73.57-4.52-3.46-3.57.2.72,3.36-3.25,1.55-4.05-3.06L754.09,216l1.61,2.36-.28,1.83-21-12.71-7.44-2-2.12-4.74-2.81,1-1.37,12-3.61-1.75-.07-2.79-2.34-1.9-1.61,2.92-2.18-1.47-1.56,3.89L706,211.1l-.93-3.64-3.88-3L698,205.87l-4.44-.22-1.78,2.64,1.89,2.64-9,5.38.69,2.28-7.88,3.48-5.88,3.57,3.75,4.19,4.7-.07,1.14,3.13-5.26.27-.16,2.17,3.63,2.58-4.86,2.63,1.63,1.93,8.38.38,1.66,4.48-5.39,1.76-.46,2.29-5.59-.63-2-2-3.07.49.34,2-2,1.25-2-1.81-2.87,1.11-1.26,4.08-6-2.39c.41.86.83,1.72,1.25,2.58l-2.4.37L651.9,254l-3.24-2.36-3.77.62h0l-.6-1.31-2.84.61-.29,1.66-2.29.47-1.12-1-2.62.53-.3,2.42-3.58,1.85-1.94,5.2,2,3-2,1.63-5.36-3.67-1.58,1.95,1.08,2.58L622,271.87l2.49,1.54-.37,5.81,2.94,1.09c.31.92.63,1.84.95,2.76l5.88.08,5.61,4.55-1,4.7,3.38,2,.71-2.85,9-6.49,8.93.31,2.29,9.34-7.41,5.37,1.56,3.32-2.68,2,6.51,7.78,9.69,2.17-.36,5.27,6.6-7.15,9.16,5.19,5.85,5.44,2.85-1.45q-5.67-14.11-11.71-27.8l9.61-7.07,1-8,7.49.93-1.84,4.45,6.05,6.17,11.86,7.25,9.9-3.07,3.23-4.24,8.24,5q1.75,3.25,3.48,6.54l2.36-.81,4,6,5.5-1.95,4.3,2.89-.33-5.48,4.52-11.71-.55-4.34h10.74l-1.72-3.76,1.44-2.91Zm-14.35-10.48-8.07-3.76v-12l14.2-4.15-.2-3.07,3.15-.91,2.84,6.67h0l-14.65,6.07-.73,4.58Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M799.89,274.94l-5.58-.33-1.58-1.36h0l-7.66,4-5.48,3.56h0l-7.46-.1-1.44,2.91,1.72,3.76H761.67l.55,4.34,3.76,2.09-1.88,4.61,4.32,1.06,1.53-3,9.42,2.43-3.81,7.93h0l-3.35-1-1.52,3.49-3.67.92,1.07,4.76,6.95-1.18,3.46-1.94,4,1.64,4.3-4.52.92-1-1.78-3.95.69-4.94,3-2.54,2.56,2.76,2.55-1.79-1.71-5.84q2.87-1.38,5.63-2.79l-1.25-4.79,4.11-7.35Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M770.68,309.33l1.52-3.49,3.35,1h0l3.82-7.93L770,296.5l-1.53,3-4.32-1.06,1.88-4.61-3.76-2.09-4.52,11.71.33,5.48-4.3-2.89-5.5,1.95-4-6-2.36.81q-1.73-3.29-3.48-6.54l-8.24-5L727,295.51l-9.9,3.07-11.86-7.25-.83,5.71-2.46-.12-4.1-6.55-.3,5.69-2.93.58-2.53-6.08.41-2.79-9.61,7.07q6,13.68,11.71,27.8l7-.63-3.63-5.83,3.54-3.35-1-3.67,2.37-1.87,4.48,2.32,3.78-.93,3.47,4.24-.69,3.15,4.82,1.31,3.38-2.94,3.61,1.34,4.77,7.44,11.43,5.46,3-2h0l7.72,2.07,4.72-1.13q1.6,3.3,3.18,6.63l.11.21,6.27-1.17-.12-7.49-3.46-3.63-4.87-1,.25-3.39,4-1.06-.59-4.23,1.62-1.54-1.35-3.27,1.84-.37,2.41-3.93,2.11,1.17-.19,2.62Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M779.12,318.13l2,4,1.84.6c1.24,2.33,2.45,4.66,3.66,7l4.34-4.5.51-3.28,5.68-2,2.64,1.46,1.21-2.61-6.24-7-2.79.46-1,1.24L786.75,309h0l-4.3,4.52-4-1.64L775,313.83,768.08,315,767,310.25l3.67-.92-2.13-2.16.19-2.62-2.11-1.17-2.41,3.93-1.84.37,1.35,3.27-1.62,1.54.59,4.23-4,1.06-.25,3.39,4.87,1,3.46,3.63.12,7.49,3,2.81,2.58-5.52,2.48,2,2.19-4.83c-.77-1.52-1.55-3-2.34-4.55l2.11-3.7Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M958.54,344.63l1.41,4.24,2.26,4.88-.39-3.84-2.79-7,.29-3.48-.93-6.46-1.76-4.3,1,.4-2.31-5.45,1.11.87-1.32-6,.58.18-.85-3.36-2.23-5.36-3.12-8.37-.77-.57-.72-1.95.09-1.15-1.4-2.75-.7-2-1.48-2.66-.34-1.34-2.54-4.74-.64-.87-.92-2.05-.73-.79-.9-1.75-.36-1.25-5.21-9.36-2.78-5.1,1.6,2.47-1.4-2.64-1-1.39-1-1.77-.72-.79-.85-1.46.22-.15L924.55,254l-2.18-2.61,1.07,2.47-1.53-2.09-1.75-3.29-1-2.25-1.4-1.67-.4.28-1.74-1.76.05-1.59L914,239.08l-2.09-1.42-3-4.08-4.32-4.28-1.37.12L901.26,227l-6.38-10.13L893,214.72,889.71,209l-.08-.71-3.49-4.18L887.3,207,886,207l4.64,6.54.52,1.44-1.87-1.36-1.63-2.41-1.65-1.1,1,2.21-2.61-1.42-3.62-4.79-.81-3-4.36-5.49-1.9-3.29-4.14-5.27-.82-1.86,1.93,1.17,3.64,4.36,1.46,2.29,1.56,1.61h.32l.26,0,1.94,2.89,1.59,1.71-1.54-2.62-6.52-8.78-.39-1.43-1.63-1.93-5.93-7.61-4.52-4.75-2.12-2.52,2.85,2.4-2.16-3-3.12-2.59h0l-3.43-4.13-5-4.71.31-.19-2.68-2.65-5.64-5.19h0l-4.67-3.74L831.4,144l-.21-.85-15.35-12.46-2.08-1.84-2.23-1.74-1.14-.69-2.24-1.74-1.36-.83,5.67,5.12,3.95,3,.54,1,2.24,2.22L810.26,129l1.36,1.56-1.17-.61-.48.64,1.89,1.87-1-.13-8.66-5.12-7.09-4.11-5.06-1.45,1.16,1.42-2.11.47,3.76,5.61,3.1,3.22,2.84,1.69-.63-1.33,4.21,2.56,2.3,2.67,9,7.63.62-.15,2.2,1.8,1,2.23,3,3.53-1.73.5,10.42,10.89,3.66,1.91-1.58-2.14.06-1.91-2.82-3-.47-2.15,7.6,3.88,2.71,2.77-2.16.52,3.26,5.91,4.5,4.31,3,4.24-1.56.87,4.53,5.34.18,3.44-2.77-.84,4.51,5.55,3.46,1.06,3.28,4.52.15,2.56,5.09,8.52-1.92,4.56,2.23,11.41-3.18-1.95-4,1.63L850,228.52l.64,3.8-7.26,2.74-.32,3.15-7.81-5.54-11-3.1-6.87,5.68-4-3L808.78,225h0L799.42,219c-.91.73-1.84,1.46-2.78,2.19l-6.31-1.67L787,216.63l-1.53,2.83,1.64,3.81c-.72.5-1.46,1-2.2,1.49q2.93,3.27,5.81,6.58l-.2,3.4L783.7,236,789,246.22l2.61,1.39,2.24,5.12-5.24-2.31-4.11,7.74L790.3,260l7.66,8.14L796.62,271l4.81,5.79-4.11,7.35,1.25,4.79q-2.76,1.41-5.63,2.79l1.71,5.84-2.55,1.79-2.56-2.76-3,2.54-.69,4.94,1.78,3.95-.92,1h0l4.19,4.37,1-1.23,2.79-.47,6.24,7.05-1.21,2.61h0l1.33,4,3.34-1.52,3.21,1.12,5.4,3,5.39.67,2.27-1.14,4.2,5.78,5.05.93-.52,3.08,1.78,2.58,5.17,3,2.35,3.39-.9,2.23-3,1.56,5.48,7.61,3-.77,2.1,2.69,8.77,2.45,1.66.45.15-3.73,3.32-1.14c.48,1,.95,1.91,1.42,2.87l5,.9,3.11,2.63,1.94-2.08,6.33,3.19,6.09.68-.12-2.81h0l4.13,1.46,2-2.2,2.59-4.08c.32.91.76,2.12,1.08,3l1.34-3L894,354c.74-.59,1.46-1.17,2.18-1.77L897.6,355l1.72-4.3,3.1,2.72,1.43-4.87-1.07-5.21,1.73-2.09.51-5.62,2.68.15v-7.14l3.42,2.69,1,3.6,4,1.11-.89-3.5,2.23.4,2.2,3,2.07.31,3.35,5.61,2.21,5.77.52,6.33,1.44,3.36.13,2.64,3.16,5.81-.11-4.16,1.62-1.76,1.21,3.21,2,2.93,2.63.44-.13,2.17,1.46,4.49,2.22-.82,2.34,3.14-.24-6.57,4,6.89c.4-.62.79-1.23,1.17-1.85l-1.94-5.15h0l-2.35-3.1-.7-2.82,1.3-.21-1-4.89,2.21.83h0l-.6-3.22,1.78,1-.1-4.21-1.35-6.31,2.95,2.34c.32-.76.62-1.52.91-2.27l2.33,6.06,2.75-.65-.2-2.86,1.63-.75Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="749.53 82.54 751.66 83.39 747.14 80.6 746.99 80.92 749.53 82.54" style="fill:#d9dadb"></polygon><path d="M903.51,221.28c-.27-.48-.55-.95-.83-1.42l-1.51-2.11-1-1.2,1.54,2.09-.1,0Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="911.93 240.69 911.92 240.69 911.93 240.69 911.93 240.69" style="fill:#d9dadb"></polygon><polygon points="909.34 236.82 910.54 238.93 911.92 240.69 910.82 238.76 909.34 236.82" style="fill:#d9dadb"></polygon><path d="M995.56,550.26c.3-.88.58-1.76.85-2.64l.41-6-.79.86Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="44.64 321.5 44.65 321.48 44.64 321.5 44.64 321.5" style="fill:#d9dadb"></polygon><polygon points="44.65 321.48 45.65 319.08 46.72 316.28 45.78 318.58 45.64 318.93 44.65 321.48" style="fill:#d9dadb"></polygon><polygon points="27.57 401.45 28.61 396.85 28.48 394.69 27.37 399.25 27.57 401.45" style="fill:#d9dadb"></polygon><path d="M36.21,424.7c.11.51.22,1,.34,1.53l1.15-3.81.64-4.27v-2l-1.28,6.06Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="22.56 421.79 23.27 417.74 22.41 419.52 21.85 422.97 22.56 421.79" style="fill:#d9dadb"></polygon><path d="M41.4,404l.83-3.44c-.11-.58-.21-1.16-.31-1.74l-.82,3.57C41.19,402.91,41.29,403.45,41.4,404Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M43.2,393l.91-3.41c-.08-.58-.16-1.16-.22-1.74l-.9,3.54C43.05,392,43.12,392.49,43.2,393Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M33.87,408.88l-.6,2.84c-.19.89-.37,1.79-.55,2.68Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M32.7,414.5l0-.1v.1Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="583.91 980.16 583.66 980.2 580.69 980.71 580.39 980.76 583.75 980.19 583.75 980.19 583.91 980.16" style="fill:#d9dadb"></polygon><polygon points="587.99 979.42 591.82 978.7 591.08 978.84 587.61 979.49 587.99 979.42" style="fill:#d9dadb"></polygon><path d="M618.9,987.48l6-1.36C623,986.52,621,987,618.9,987.48Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M613,988.79l-3.34.68-2.28.49.12,0c3.42-.61,7.52-1.56,11.41-2.46l-1,.23Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M553.83,997.66l.27,0-3.31.28-1.11.1Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="142.62 503.05 142.62 503.05 142.62 503.05 142.62 503.05" style="fill:#ff7b00"></polygon><polygon points="142.91 496.21 141.44 498.26 142.62 503.05 145.06 500.25 142.91 496.21" style="fill:#ff7b00"></polygon><polygon points="150.31 494.94 150.82 490.44 148.03 489.74 147.55 494.08 150.31 494.94" style="fill:#ff7b00"></polygon><polygon points="139.9 478.19 135.89 479.92 139.66 483.76 139.9 478.19" style="fill:#ff7b00"></polygon><polygon points="349.97 342.76 354.73 338.99 351.23 335.76 345.35 338.32 349.97 342.76" style="fill:#d9dadb"></polygon><polygon points="211.47 412 215.64 410.62 214.03 406.08 211.18 407.83 211.47 412" style="fill:#d9dadb"></polygon><polygon points="212.87 402.4 206.08 402.56 207.42 407.99 212.87 402.4" style="fill:#d9dadb"></polygon><path d="M235.65,421.2l2.54-5-.4-2.13-4.92,6.38Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M203.58,327.57l4.78,2.32.89-3.34-3.29-1.4-2.38,2.42Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="187.4 307.31 189.53 305.68 189.08 302.56 186.06 304.65 187.4 307.31" style="fill:#d9dadb"></polygon><path d="M744.18,934l4.3-3.08-6.16,1.73c-1.23,1-2.48,2.09-3.73,3.12Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="735.36 806.32 739.62 802.74 736.43 800.16 732.46 803.69 735.36 806.32" style="fill:#ff7b00"></polygon><polygon points="748.19 798.54 755.1 792.09 751.42 790.96 747.06 796.5 748.19 798.54" style="fill:#ff7b00"></polygon><polygon points="965.97 531.48 964 529.36 963.84 533.2 965.8 538.08 965.8 538.08 965.97 531.48" style="fill:#d9dadb"></polygon><polygon points="967.99 548.9 969.14 553.44 970 548.91 968.99 544.68 967.99 548.9" style="fill:#d9dadb"></polygon><polygon points="950.05 498.28 950.05 498.28 950.05 498.28 950.05 498.28" style="fill:#d9dadb"></polygon><polygon points="947.57 491.1 948.01 496.07 950.05 498.28 949.7 492.94 947.57 491.1" style="fill:#d9dadb"></polygon><polygon points="938.75 470.61 940.05 471.68 940.01 467.62 938.63 467.01 938.75 470.61" style="fill:#d9dadb"></polygon><polygon points="959.01 525.79 961.89 528.12 961.57 524.31 959.07 522.29 959.01 525.79" style="fill:#d9dadb"></polygon><polygon points="982.13 475.49 982.91 478.82 982.91 473.93 982.14 470.87 982.13 475.49" style="fill:#d9dadb"></polygon><polygon points="858.68 550.73 856.61 550.13 855.91 554.51 857.97 555.13 857.97 555.13 858.68 550.73" style="fill:#d9dadb"></polygon><polygon points="861.95 561.91 860.08 560.51 859.38 565.62 861.68 566.47 861.68 566.47 861.95 561.91" style="fill:#d9dadb"></polygon><polygon points="731.4 926.82 729.77 927.34 727.66 929.09 731.4 926.82" style="fill:#d9dadb"></polygon><polygon points="630.39 714.26 626.3 716.74 628.83 719.89 630.39 714.26" style="fill:#ff7b00"></polygon><polygon points="655.24 758.07 658.27 756.02 656.52 751.92 654.72 754.03 655.24 758.07" style="fill:#ff7b00"></polygon><polygon points="748.35 687.16 750.41 685.4 749.57 682.84 746.81 685.26 748.35 687.16" style="fill:#ff7b00"></polygon><polygon points="664.04 761.04 666.35 758.65 664.8 756.39 662.25 758.6 664.04 761.04" style="fill:#ff7b00"></polygon><polygon points="677.22 735.36 681.51 736.29 681.42 732.75 677.22 735.36 677.22 735.36" style="fill:#ff7b00"></polygon></g><circle cx="511.9" cy="511.98" r="488.79" transform="translate(-223.99 499.94) rotate(-45)" style="fill:none"></circle></g></g></svg></span> </span> <a class="elementor-accordion-title" tabindex="0">Middle East</a> </div> <div id="elementor-tab-content-4551" class="elementor-tab-content elementor-clearfix" data-tab="1" role="region" aria-labelledby="elementor-tab-title-4551"><p> <div data-elementor-type="page" data-elementor-id="20490" class="elementor elementor-20490" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-5a0cdc4b local-chapter_section elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="5a0cdc4b" data-element_type="section"> <div class="elementor-container elementor-column-gap-extended"> <div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-6d80a7b6" data-id="6d80a7b6" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-3a6f1f5e elementor-widget elementor-widget-text-editor" data-id="3a6f1f5e" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong><span data-sheets-value="{"1":2,"2":"Angolan Geophysical Association (ASGA)"}" data-sheets-userformat="{"2":14461,"3":{"1":0,"3":1},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"9":0,"14":{"1":3,"3":1},"15":"Arial","16":10}">Emirates Society of Geoscience (ESG)</span><br /></strong>United Arab Emirates</p> </div> </div> <div class="elementor-element elementor-element-5a5ef5a e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="5a5ef5a" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://www.esguae.org/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-4aedafa9 elementor-widget elementor-widget-text-editor" data-id="4aedafa9" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong><span data-sheets-value="{"1":2,"2":"Moroccan Association of Geosciences (MAG)"}" data-sheets-userformat="{"2":14461,"3":{"1":0,"3":1},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"9":0,"14":{"1":3,"3":1},"15":"Arial","16":10}">Iranian Geophysical Society (IGS)</span></strong><br />Iran</p> </div> </div> <div class="elementor-element elementor-element-1eb3f3a e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="1eb3f3a" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://nigs.ir/en/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-15a45215" data-id="15a45215" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-296bac1d elementor-widget elementor-widget-text-editor" data-id="296bac1d" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong><span data-sheets-value="{"1":2,"2":"Iranian Petroleum Geomechnics Association (IRPGA)"}" data-sheets-userformat="{"2":14429,"3":{"1":0,"3":1},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"9":0,"14":{"1":3,"3":1},"15":"Arial","16":10}">Iranian Petroleum Geomechnics Association (IRPGA)</span></strong><br />Iran</p> </div> </div> <div class="elementor-element elementor-element-592d8529 e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="592d8529" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://irpga.com/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-377a6a04 elementor-widget elementor-widget-text-editor" data-id="377a6a04" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong><span data-sheets-value="{"1":2,"2":"Nigerian Mining and Geoscience Society (NMGS)"}" data-sheets-userformat="{"2":14461,"3":{"1":0,"3":1},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"9":0,"14":{"1":3,"3":1},"15":"Arial","16":10}">Jordanian Geologists Association (JGA)</span></strong><br />Jordan</p> </div> </div> <div class="elementor-element elementor-element-11c098fc e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="11c098fc" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="http://jga.org.jo/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-5286c575" data-id="5286c575" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-f5f2b6c elementor-widget elementor-widget-text-editor" data-id="f5f2b6c" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong><span data-sheets-value="{"1":2,"2":"Qatar Geological Society (QGS)"}" data-sheets-userformat="{"2":14429,"3":{"1":0,"3":1},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"9":0,"14":{"1":3,"3":1},"15":"Arial","16":10}">Qatar Geological Society (QGS)</span></strong></p><p>Qatar</p> </div> </div> <div class="elementor-element elementor-element-13076da elementor-widget elementor-widget-text-editor" data-id="13076da" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><b><span data-sheets-value="{"1":2,"2":"Dhahran Geoscience Society (DGS)"}" data-sheets-userformat="{"2":14421,"3":{"1":0,"3":1},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"9":0,"14":{"1":3,"3":1},"15":"Arial","16":10}">Dhahran Geoscience Society (DGS)</span></b><br /><span data-sheets-value="{"1":2,"2":"Saudi Arabia"}" data-sheets-userformat="{"2":14399,"3":{"1":0,"3":1},"4":{"1":2,"2":16777215},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"14":{"1":2,"2":0},"15":"Calibri","16":11}">Saudi Arabia</span></p> </div> </div> <div class="elementor-element elementor-element-f6f6efe e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="f6f6efe" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://dgsonline.org/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-3c4d19da" data-id="3c4d19da" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-c77ae8e elementor-widget elementor-widget-text-editor" data-id="c77ae8e" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong><span data-sheets-value="{"1":2,"2":"Geological Society Oman"}" data-sheets-userformat="{"2":14397,"3":{"1":0,"3":1},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":3},{"1":1,"2":0,"4":1}]},"14":{"1":2,"2":0},"15":"Calibri","16":11}">Geological Society Oman</span></strong><br />Oman</p> </div> </div> <div class="elementor-element elementor-element-ac62d88 e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="ac62d88" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://gso-oman.org/en/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-5d25067 elementor-widget elementor-widget-text-editor" data-id="5d25067" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><b>Kuwait Geosciences Society (KGS)<br /></b>Kuwait</p> </div> </div> <div class="elementor-element elementor-element-79d4a58 e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="79d4a58" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://www.linkedin.com/in/kuwait-geosciences-society-1b6b981b3/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> </div> </div> </div> </section> </div> </p></div> </div> </div> </div> </div> <div class="elementor-element elementor-element-f8d290c student_map_accordion elementor-widget elementor-widget-accordion" data-id="f8d290c" data-element_type="widget" data-widget_type="accordion.default"> <div class="elementor-widget-container"> <div class="elementor-accordion"> <div class="elementor-accordion-item"> <div id="elementor-tab-title-2601" class="elementor-tab-title" data-tab="1" role="button" aria-controls="elementor-tab-content-2601" aria-expanded="false"> <span class="elementor-accordion-icon elementor-accordion-icon-left" aria-hidden="true"> <span class="elementor-accordion-icon-closed"><i class="fas fa-plus"></i></span> <span class="elementor-accordion-icon-opened"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 1000 1000"><defs><radialGradient id="Sfumatura_senza_nome_2" cx="608.8" cy="391.07" r="647.11" gradientUnits="userSpaceOnUse"><stop offset="0.41" stop-color="#fff"></stop><stop offset="0.51" stop-color="#f9f9f9"></stop><stop offset="0.64" stop-color="#e9e9e9"></stop><stop offset="0.79" stop-color="#cecece"></stop><stop offset="0.86" stop-color="#bfbfbf"></stop><stop offset="0.99" stop-color="#e6e6e6"></stop></radialGradient></defs><g style="isolation:isolate"><g id="Layer_1" data-name="Layer 1"><path d="M511.9,23.19c270,0,488.79,218.84,488.79,488.79S781.85,1000.77,511.9,1000.77,23.11,781.93,23.11,512,242,23.19,511.9,23.19m0-11.21A500.13,500.13,0,0,0,317.28,972.69,500.13,500.13,0,0,0,706.53,51.28,496.84,496.84,0,0,0,511.9,12Z" transform="translate(-11.9 -11.98)" style="fill:#fff"></path><path d="M511.89,1002.54c-131,0-254.21-51-346.86-143.68S21.35,643,21.35,512,72.37,257.76,165,165.11,380.87,21.43,511.89,21.43s254.23,51,346.88,143.68S1002.45,381,1002.45,512s-51,254.22-143.68,346.88S642.93,1002.54,511.89,1002.54Z" transform="translate(-11.9 -11.98)" style="fill:url(#Sfumatura_senza_nome_2)"></path><path d="M511.9,23.19c270,0,488.78,218.84,488.78,488.79S781.85,1000.77,511.9,1000.77,23.11,781.93,23.11,512,242,23.19,511.9,23.19m0-3.53a492.45,492.45,0,0,0-191.63,946A492.45,492.45,0,0,0,703.53,58.35,489.29,489.29,0,0,0,511.9,19.66Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><g style="mix-blend-mode:multiply"><path d="M445.09,116.49a219.41,219.41,0,0,1-27.65-5.87c-.45.38-.9.76-1.34,1.15a223.8,223.8,0,0,0,28.11,6Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M394.92,102.1a62,62,0,0,1-15-10.1l-1.95.85a63.17,63.17,0,0,0,15.23,10.26Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M477.81,120.87c.11-.44.23-.87.34-1.3-2.76-.12-5.53-.26-8.29-.44-8.51-.56-16.61-1.43-24.25-2.56l-.87,1.25c7.76,1.15,16,2,24.64,2.6Q473.6,120.69,477.81,120.87Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M521.59,25.86c-11.45-.46-22.85-.33-34,.3l.19.23c10.93-.63,22.14-.75,33.4-.3Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M487.06,26.2c-11.1.65-21.91,1.82-32.19,3.45l.71.17c10.12-1.6,20.75-2.75,31.67-3.4Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M400.68,44.74l1.59-.07a168.3,168.3,0,0,1,23.85-8.51l-1.2-.07A171.67,171.67,0,0,0,400.68,44.74Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M512.35,120.57l-.21-1.29c-10.93.63-22.14.75-33.41.31l-.33,1.3C489.85,121.34,501.24,121.22,512.35,120.57Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M382.25,55.61l1.89-.25A86.23,86.23,0,0,1,401.9,44.83l-1.59.08A87.62,87.62,0,0,0,382.25,55.61Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M455.06,29.9l-.72-.17A264.61,264.61,0,0,0,425.39,36l1.18.06A262,262,0,0,1,455.06,29.9Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M379.74,91.82c-3.75-3.62-6.24-7.46-7.33-11.43q-1,.31-2.07.66c1.11,4,3.64,7.93,7.44,11.61Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M370.28,80.84l2.08-.66a17.94,17.94,0,0,1,1.22-12.26l-2.05.45A18.19,18.19,0,0,0,370.28,80.84Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M373.37,65.05a23.62,23.62,0,0,0-1.74,3.11l2.05-.46a25.47,25.47,0,0,1,1.72-3,39.55,39.55,0,0,1,8.49-9.09l-1.88.25A40.25,40.25,0,0,0,373.37,65.05Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M417,110.49a129.72,129.72,0,0,1-21.77-8.24l-1.7,1a132.88,132.88,0,0,0,22.12,8.38Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M599.27,102l-1.61-1a167.36,167.36,0,0,1-23.84,8.51l1.22,1.14A171.07,171.07,0,0,0,599.27,102Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M617.68,91.1l-1.91-.82A86.14,86.14,0,0,1,598,100.81l1.62,1A86.74,86.74,0,0,0,617.68,91.1Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M545.11,117.08l-.75-1.24c-10.11,1.6-20.74,2.76-31.66,3.41.08.43.15.86.23,1.29C524,119.88,534.83,118.71,545.11,117.08Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M629.6,65.87l-2.1-.41a17.93,17.93,0,0,1-1.2,12.26l2.08.62A18.18,18.18,0,0,0,629.6,65.87Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M530,26.55c8.47.56,16.55,1.42,24.16,2.54l.9-.18c-7.74-1.14-15.94-2-24.56-2.59Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M626.52,81.7a24.88,24.88,0,0,0,1.76-3.15l-2.08-.61A26,26,0,0,1,624.47,81a39.47,39.47,0,0,1-8.46,9l1.92.82A40.27,40.27,0,0,0,626.52,81.7Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M574.58,110.76l-1.22-1.14a259.18,259.18,0,0,1-28.47,6.14l.75,1.24A266.77,266.77,0,0,0,574.58,110.76Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M522.18,25.88l-.37.23,8.2.44.5-.23Q526.34,26.05,522.18,25.88Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M629.54,65.67c-1.11-4-3.65-7.94-7.46-11.62l-2-.22c3.75,3.62,6.24,7.45,7.34,11.43Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M604.89,43.55a62.4,62.4,0,0,1,15,10.09l2,.22a63.31,63.31,0,0,0-15.25-10.25Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M582.79,35.16a131.06,131.06,0,0,1,21.78,8.24l1.73.05a132.29,132.29,0,0,0-22.14-8.37Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M554.69,29.17A220.14,220.14,0,0,1,582.36,35l1.37-.09a224.6,224.6,0,0,0-28.13-6Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M724.31,152.92l-1.68-1.25c-9.11,7.27-20.57,14-33.94,20.14l1.43,1.4C703.6,167.05,715.14,160.24,724.31,152.92Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M679.08,52.6A218,218,0,0,1,701.22,62l1.53.58a217.13,217.13,0,0,0-20.93-9Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M746.92,105.1l-1.86-.9a34.2,34.2,0,0,1-2.3,23.45c.62.35,1.23.71,1.84,1.07A34.46,34.46,0,0,0,746.92,105.1Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M741.08,135.09a48.88,48.88,0,0,0,3.33-6l-1.84-1.07a48.63,48.63,0,0,1-3.3,5.91,76,76,0,0,1-16.17,17.32l1.69,1.25A76.62,76.62,0,0,0,741.08,135.09Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M525.75,208.72c21-1.25,41.52-3.47,61-6.56l-.66-1.61c-19.34,3.06-39.67,5.27-60.55,6.5Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M689.43,173.53,688,172.12a321.39,321.39,0,0,1-45.59,16.29l1.09,1.52A323.63,323.63,0,0,0,689.43,173.53Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M587.09,200.39c.22.53.44,1.07.67,1.61a498.48,498.48,0,0,0,54.86-11.82l-1.08-1.53A499.46,499.46,0,0,1,587.09,200.39Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M701.83,62.31c11.79,5.91,21.44,12.39,28.7,19.29l1.75.73c-7.31-7-17-13.49-28.91-19.44Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M746.81,104.7c-2.12-7.65-6.92-15-14.15-22L730.91,82c7.17,6.92,12,14.25,14,21.85Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M271.28,154.6c-7.16-6.92-11.92-14.25-14-21.85l-1.8,1.1c2.1,7.66,6.89,15.05,14.11,22Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M255.36,133.46l1.81-1.11a34.27,34.27,0,0,1,2.34-23.45l-1.79.93A34.56,34.56,0,0,0,255.36,133.46Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M342.55,190.32a249.92,249.92,0,0,1-41.63-15.76L299.45,176a251.62,251.62,0,0,0,41.93,15.88Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M460.58,207.72l-.27,1.67c21.69.85,43.3.61,64.36-.61l-.21-1.66C503.56,208.32,482.12,208.56,460.58,207.72Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M396.25,201.79a420.49,420.49,0,0,1-52.88-11.24c-.39.52-.78,1-1.16,1.55a426.14,426.14,0,0,0,53.28,11.32C395.74,202.87,396,202.33,396.25,201.79Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M300.31,174.26c-11.77-5.91-21.41-12.39-28.66-19.3l-1.7,1.28c7.3,6.95,17,13.49,28.88,19.44Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M278.06,85.64l1.63-.75c9.12-7.27,20.59-14,34-20.13l-1.37.6C298.8,71.52,287.24,78.32,278.06,85.64Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M396.49,203.57c14.72,2.18,30.33,3.84,46.72,4.92q8,.52,16,.85c.09-.56.19-1.11.28-1.67q-7.92-.33-15.86-.84c-16.27-1.07-31.76-2.73-46.36-4.89Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M319.49,62.19l-3.1,1.34L313,65l1.38-.6Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M261.21,103.53a49.07,49.07,0,0,0-3.29,5.89l1.78-.93a49.21,49.21,0,0,1,3.27-5.85,76.34,76.34,0,0,1,16.25-17.37l-1.63.75A76.48,76.48,0,0,0,261.21,103.53Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M847.12,170.61l-1.53-1.3c2.82,10.68,1.87,21.73-3.22,32.93l1.51,1.44C849,192.44,850,181.34,847.12,170.61Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M847,170.06c-3-10.72-9.69-21.07-19.82-30.83l-1.43-1.17c10.07,9.72,16.78,20,19.72,30.7Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M816.72,130.25q4.56,3.58,8.47,7.31l1.44,1.17c-2.47-2.35-5.15-4.67-8-6.95Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M624.28,306.29a701.13,701.13,0,0,0,76.82-16.55l-.9-1.82a697.43,697.43,0,0,1-76.49,16.48Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M537.46,315.7c29.45-1.75,58.13-4.86,85.41-9.18-.19-.63-.37-1.27-.56-1.9-27.15,4.31-55.71,7.41-85,9.15Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M815.48,237.57l-1.39-1.6c-12.79,10.22-28.89,19.7-47.67,28.29.4.57.79,1.15,1.18,1.72C786.47,257.35,802.63,247.82,815.48,237.57Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M701.42,287.57l.9,1.82a453,453,0,0,0,64.31-23l-1.18-1.71A452.41,452.41,0,0,1,701.42,287.57Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M839,212.61a67.91,67.91,0,0,0,4.66-8.35l-1.51-1.45a66.57,66.57,0,0,1-4.64,8.31c-5.51,8.48-13.17,16.61-22.72,24.32.47.53.93,1.06,1.39,1.6C825.73,229.29,833.42,221.12,839,212.61Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M220.93,267.7c-16.53-8.29-30.08-17.4-40.26-27.1l-1.36,1.61c10.22,9.74,23.83,18.89,40.43,27.22Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M180.15,240.1c-10.06-9.72-16.74-20-19.67-30.7L159,210.87c2.94,10.72,9.65,21.08,19.75,30.84C179.24,241.17,179.69,240.63,180.15,240.1Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M446,314.69c-.07.65-.14,1.29-.22,1.94,30.39,1.19,60.63.86,90.12-.84l-.18-1.94C506.4,315.55,476.29,315.88,446,314.69Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M185.81,147.38l-1.74,1.56a99.8,99.8,0,0,0-17,19.47,69.93,69.93,0,0,0-4.62,8.25l1.44-1.33C172.35,160.79,172.68,160.23,185.81,147.38Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M280.25,290.26c-22.21-6.41-41.83-13.86-58.46-22.13-.4.58-.8,1.15-1.19,1.73,16.71,8.31,36.41,15.79,58.72,22.23Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M158.88,210.32c.48-.49,1-1,1.45-1.48-2.79-10.68-1.83-21.74,3.29-32.93l-1.44,1.33C157,188.49,156.07,199.59,158.88,210.32Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M356.48,308.48c20.6,3.06,42.46,5.39,65.41,6.89q11.19.75,22.37,1.2l.21-1.94q-11.12-.45-22.27-1.19c-22.85-1.5-44.61-3.82-65.12-6.86Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M355.07,308.27c.21-.63.41-1.27.61-1.9a590.13,590.13,0,0,1-74.28-15.78l-.93,1.83A594.45,594.45,0,0,0,355.07,308.27Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M925.44,258.34l-1.12-1.65c3.45,13.07,2.29,26.58-3.94,40.27l1.1,1.75C927.73,285,928.89,271.44,925.44,258.34Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M748.7,403.33c28.93-8.13,55.35-17.54,78.49-28l-.87-2c-23.08,10.48-49.43,19.86-78.29,28C748.25,402,748.48,402.65,748.7,403.33Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M547.47,435.43c35.95-2.13,71-5.93,104.25-11.2l-.42-2.07c-33.21,5.26-68.12,9-104,11.17Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M653.44,424a852.52,852.52,0,0,0,93.76-20.21l-.66-2A853,853,0,0,1,653,421.88C653.15,422.57,653.3,423.26,653.44,424Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M915.47,309.6a85.37,85.37,0,0,0,5.69-10.18l-1.11-1.75a84.83,84.83,0,0,1-5.67,10.15c-6.74,10.37-16.11,20.31-27.78,29.75l1,1.85C899.32,330,908.72,320,915.47,309.6Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M435.75,434.47c0,.7-.09,1.4-.13,2.1,37.08,1.45,74,1.05,110-1-.05-.7-.09-1.4-.14-2.1C509.57,435.51,472.74,435.92,435.75,434.47Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M827.51,372.8l.87,1.95c23-10.54,42.76-22.16,58.43-34.68l-1-1.86C870.16,350.7,850.48,362.29,827.51,372.8Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M925.26,257.67a72,72,0,0,0-10.75-22.13l-1.34-1.93a71.87,71.87,0,0,1,11,22.41Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M94,257.76l-.83,1.55c.65-1.18,1.32-2.35,2.05-3.53Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M92.48,260.66l-2.74,5.07,1-1.67C91.29,262.93,91.88,261.79,92.48,260.66Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M92.48,260.66l.73-1.35C93,259.76,92.72,260.21,92.48,260.66Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M110.64,343.25c-12.3-11.88-20.48-24.48-24.06-37.54l-1,1.78c3.58,13.08,11.78,25.72,24.11,37.63Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M160.5,377c-20.22-10.14-36.78-21.28-49.23-33.14l-1,1.87c12.48,11.89,29.08,23.05,49.35,33.22Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M326.57,426.63c25.14,3.72,51.82,6.57,79.83,8.41q13.67.9,27.31,1.45c0-.7.09-1.4.13-2.1q-13.6-.56-27.23-1.45c-27.94-1.84-54.55-4.67-79.63-8.39C326.84,425.24,326.71,425.93,326.57,426.63Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M324.85,426.37l.42-2.08A724.16,724.16,0,0,1,234.44,405c-.22.67-.43,1.35-.65,2A723.81,723.81,0,0,0,324.85,426.37Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M232.38,406.62l.66-2c-27.16-7.84-51.15-16.95-71.49-27.06l-.84,2C181.11,389.62,205.15,398.76,232.38,406.62Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M85.38,306.81l1-1.77c-3.42-13.07-2.23-26.58,4-40.27l-1,1.67C83.13,280.16,82,293.71,85.38,306.81Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M868.77,494.15c25.7-11.76,47.73-24.73,65.22-38.71l-.57-2.05c-17.48,14-39.48,26.92-65.15,38.67C868.44,492.75,868.6,493.45,868.77,494.15Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M779.82,526.05c32.29-9.07,61.79-19.57,87.62-31.29-.17-.7-.33-1.4-.5-2.1-25.8,11.71-55.25,22.2-87.51,31.26C779.57,524.63,779.69,525.34,779.82,526.05Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M555.2,561.89c40.13-2.38,79.21-6.62,116.37-12.5-.08-.73-.17-1.45-.25-2.17-37.12,5.88-76.15,10.11-116.23,12.49C555.13,560.44,555.17,561.17,555.2,561.89Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M673.49,549.08a956.27,956.27,0,0,0,104.66-22.56c-.12-.71-.25-1.42-.38-2.14a950,950,0,0,1-104.54,22.53C673.32,547.64,673.4,548.36,673.49,549.08Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M977.11,364.21l-.63-1.93c3.85,14.6,2.55,29.71-4.41,45l.63,2C979.67,394,981,378.84,977.11,364.21Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M965.36,419.43c-7.52,11.58-18,22.7-31.05,33.24.2.68.39,1.37.58,2.05C948,444.16,958.45,433,966,421.44a94.08,94.08,0,0,0,6.35-11.37l-.63-2A92.52,92.52,0,0,1,965.36,419.43Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M975.89,360.12l-.74-2.25c.41,1.21.79,2.43,1.12,3.66.22.64.43,1.28.64,1.93C976.6,362.34,976.26,361.23,975.89,360.12Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M67.22,461.77c13.93,13.27,32.47,25.74,55.09,37.09.14-.7.28-1.4.43-2.1-22.6-11.34-41.11-23.79-55-37.05C67.55,460.4,67.39,461.08,67.22,461.77Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M203.49,529.73c.1-.72.21-1.43.32-2.14-30.36-8.77-57.17-19-79.9-30.25-.15.7-.29,1.4-.43,2.1C146.25,510.76,173.09,521,203.49,529.73Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M39.56,385.2a63.72,63.72,0,0,0-.17,33.12c.17-.67.35-1.34.53-2a63.68,63.68,0,0,1,.25-33.41Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M430.39,561c0,.73,0,1.46,0,2.18,41.39,1.63,82.61,1.17,122.78-1.15,0-.72-.07-1.45-.11-2.18C512.9,562.15,471.74,562.6,430.39,561Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M67,459c-13.75-13.29-22.88-27.37-26.88-42-.18.67-.36,1.34-.53,2,4,14.61,13.15,28.71,26.92,42C66.67,460.4,66.84,459.71,67,459Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M308.62,552.06c28.07,4.16,57.85,7.34,89.12,9.39q15.24,1,30.47,1.63c0-.73,0-1.46.05-2.18q-15.21-.63-30.44-1.63c-31.23-2-61-5.22-89-9.38C308.75,550.62,308.68,551.34,308.62,552.06Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M306.7,551.78c.07-.73.13-1.45.2-2.17A809.44,809.44,0,0,1,205.38,528c-.11.71-.21,1.43-.32,2.14A810.94,810.94,0,0,0,306.7,551.78Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M682.62,673.62l0,1.08,0,1a989.91,989.91,0,0,0,108.48-23.39l0-1c0-.36,0-.72,0-1.08A989.65,989.65,0,0,1,682.62,673.62Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M792.84,649.76l0,1.08c0,.35,0,.69,0,1,33.47-9.4,64-20.29,90.81-32.44,0-.34,0-.69,0-1l0-1.08C856.87,629.47,826.31,640.35,792.84,649.76Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M999.51,497a71,71,0,0,1-6.76,31.68l0,1.08c0,.35,0,.7,0,1a71,71,0,0,0,6.77-31.34l0-1.21Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M992.37,529.54a97.38,97.38,0,0,1-6.58,11.78c-7.82,12-18.68,23.56-32.23,34.5l0,1.08,0,1C967.16,567,978,555.47,985.84,543.45a96.89,96.89,0,0,0,6.58-11.79c0-.34,0-.69,0-1Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M885,616.69l0,1.08c0,.35,0,.7,0,1.05,26.64-12.19,49.47-25.64,67.61-40.13l0-1,0-1.08C934.5,591.06,911.66,604.5,885,616.69Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M560,686.9l0,1.08,0,1c41.59-2.47,82.09-6.86,120.61-13l0-1,0-1.08C642.12,680,601.62,684.44,560,686.9Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M112.55,622.18l0,1.08,0,1C136.2,636,164,646.59,195.53,655.69l0-1c0-.36,0-.72,0-1.08C164,644.47,136.15,633.9,112.55,622.18Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M25.6,538.88l0,1.07,0,1c4.15,15.14,13.63,29.76,27.9,43.54l0-1,0-1.08C39.23,568.63,29.75,554,25.6,538.88Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M23.23,522.86l0,1.24,0,1.21a66.51,66.51,0,0,0,2.16,14.91l0-1.05,0-1.08A66.3,66.3,0,0,1,23.23,522.86Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M430.61,688.22l0,1.08,0,1c42.9,1.69,85.62,1.22,127.26-1.19l0-1,0-1.08C516.24,689.43,473.52,689.9,430.61,688.22Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M54.24,583.13l0,1.08,0,1C68.73,599,88,611.93,111.4,623.69l0-1,0-1.08C87.89,609.81,68.68,596.89,54.24,583.13Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M396.81,686.45c-32.41-2.13-63.28-5.42-92.37-9.74l0,1.08,0,1.05c29.09,4.31,60,7.6,92.37,9.73q15.79,1,31.59,1.69l0-1,0-1.08Q412.62,687.49,396.81,686.45Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M197.11,654c0,.36,0,.72,0,1.08l0,1a838.22,838.22,0,0,0,105.35,22.38c0-.35,0-.69,0-1l0-1.08A837.39,837.39,0,0,1,197.11,654Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M784.15,768c.09-.59.18-1.19.28-1.78a954.69,954.69,0,0,1-104.67,22.55l-.15,1.76A952.28,952.28,0,0,0,784.15,768Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M785.81,767.56c32.26-9.07,61.71-19.56,87.51-31.26l.39-1.83c-25.83,11.72-55.32,22.23-87.61,31.3C786,766.37,785.91,767,785.81,767.56Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M941.17,694.43l-.48,1.88c13.06-10.55,23.53-21.66,31.06-33.25a94.36,94.36,0,0,0,6.34-11.35l.51-1.93a94,94,0,0,1-6.34,11.37C964.72,672.75,954.23,683.87,941.17,694.43Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M978.45,650.92a77.12,77.12,0,0,0,4.19-11.49l.61-2.29A75.85,75.85,0,0,1,979,649C978.8,649.63,978.63,650.28,978.45,650.92Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M561.47,803.35c40.08-2.38,79.11-6.61,116.22-12.49l.15-1.76c-37.16,5.89-76.24,10.13-116.37,12.51Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M939.8,697c.15-.62.31-1.25.47-1.87-17.5,14-39.53,27-65.23,38.71l-.39,1.82C900.32,724,922.32,711,939.8,697Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M436.77,804.62c41.34,1.62,82.5,1.17,122.63-1.15v-1.74c-40.17,2.32-81.39,2.77-122.78,1.15Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M314.89,791.78l.3,1.75c28,4.16,57.77,7.33,89,9.38q15.22,1,30.44,1.62c-.05-.57-.1-1.16-.15-1.74q-15.23-.62-30.47-1.62C372.74,799.11,343,795.94,314.89,791.78Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M74.08,703.35c13.91,13.26,32.43,25.71,55,37-.17-.6-.35-1.21-.52-1.82C106,727.22,87.42,714.76,73.49,701.48,73.69,702.11,73.88,702.73,74.08,703.35Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M47.64,664.48c4.46,13.25,13.17,26,25.73,38.19-.2-.63-.4-1.25-.59-1.87-12.68-12.25-21.44-25.17-25.87-38.55Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M130.27,741c22.74,11.3,49.55,21.48,79.91,30.25l-.42-1.79c-30.4-8.77-57.24-19-80-30.28C129.92,739.77,130.1,740.37,130.27,741Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M211.75,771.68a809.44,809.44,0,0,0,101.52,21.57l-.3-1.76a807.39,807.39,0,0,1-101.64-21.6Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M447.8,895c37,1.45,73.82,1,109.71-1l.06-1.32c-36,2.07-72.91,2.48-110,1C447.65,894.11,447.73,894.55,447.8,895Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M758.59,862.25l.58-1.41a857.37,857.37,0,0,1-93.77,20.21c-.11.45-.23.9-.34,1.36A855.31,855.31,0,0,0,758.59,862.25Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M559.37,893.86c35.86-2.13,70.77-5.92,104-11.18l.33-1.36c-33.29,5.28-68.3,9.07-104.25,11.21Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M839.56,833.32c23-10.5,42.65-22.1,58.29-34.59l.93-1.57c-15.67,12.52-35.41,24.14-58.43,34.68C840.09,832.34,839.82,832.83,839.56,833.32Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M838.37,833.87l.78-1.49c-23.14,10.5-49.56,19.91-78.49,28-.19.47-.38.94-.58,1.41C788.94,853.72,815.29,844.34,838.37,833.87Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M926.43,768.35c.39-.61.78-1.22,1.15-1.82l1.23-2c-.44.73-.9,1.46-1.37,2.18-6.75,10.4-16.15,20.36-27.85,29.82l-.94,1.58C910.32,788.65,919.69,778.71,926.43,768.35Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M108.28,786.81l1.35,2a108,108,0,0,0,13.05,15c-.36-.52-.71-1-1.06-1.57A107.34,107.34,0,0,1,108.28,786.81Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M172.55,837.53c-.32-.49-.63-1-.94-1.47-20.27-10.17-36.88-21.34-49.35-33.23l1.06,1.56C135.76,816.25,152.33,827.39,172.55,837.53Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M173.59,838.05c20.34,10.11,44.33,19.22,71.49,27.06l-.75-1.4c-27.23-7.86-51.27-17-71.67-27.13Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M338.52,883.72l.51,1.35c25.08,3.72,51.69,6.56,79.63,8.39q13.62.9,27.23,1.46c-.08-.45-.15-.89-.23-1.33q-13.64-.55-27.3-1.46C390.34,890.29,363.66,887.45,338.52,883.72Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M246.49,865.52a723.53,723.53,0,0,0,90.82,19.3l-.51-1.36a723.81,723.81,0,0,1-91.06-19.35Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M717.06,932l.82-1a702.91,702.91,0,0,1-76.82,16.56l-.49.89A697.38,697.38,0,0,0,717.06,932Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M554.13,957.88c29.32-1.74,57.88-4.84,85-9.14l.48-.89c-27.28,4.32-56,7.44-85.41,9.18C554.2,957.32,554.17,957.6,554.13,957.88Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M718.28,931.69a452.38,452.38,0,0,0,64-22.87l1.11-1.06a454.19,454.19,0,0,1-64.31,23Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M832.27,878.9c-12.85,10.26-29,19.78-47.88,28.41l-1.11,1.07c18.78-8.6,34.88-18.08,47.67-28.29Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M838.74,873.41q-2.78,2.51-5.81,5l-1.32,1.19q2.8-2.26,5.39-4.59Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M204.16,890.57l1.9,1.54a187.24,187.24,0,0,0,31.71,19.71l-1.26-1.05A185.5,185.5,0,0,1,204.16,890.57Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M297.09,934.37l-1-1c-22.31-6.44-42-13.92-58.72-22.22.42.35.83.7,1.26,1C255.26,920.51,274.88,928,297.09,934.37Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M462.88,958.81c30.26,1.18,60.37.85,89.73-.84,0-.28.07-.56.11-.85-29.49,1.7-59.74,2-90.12.85C462.7,958.25,462.79,958.53,462.88,958.81Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M298.24,934.7a591.84,591.84,0,0,0,74.28,15.79l-.67-.88a594.24,594.24,0,0,1-74.61-15.85Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M373.25,949.82c.23.29.45.58.67.88,20.51,3,42.28,5.36,65.13,6.86q11.15.74,22.27,1.19c-.09-.28-.19-.56-.29-.85q-11.17-.45-22.37-1.19C415.71,955.2,393.85,952.87,373.25,949.82Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M606.65,986.29l.61-.39c-19.48,3.09-40,5.31-61,6.56l-.16.33C567,991.56,587.31,989.35,606.65,986.29Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M607.65,986.13a500.17,500.17,0,0,0,54.46-11.74l1-.47a499,499,0,0,1-54.86,11.82Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M706.42,958.83A331.55,331.55,0,0,1,664,973.67l-1,.48a335.64,335.64,0,0,0,40.35-14Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M341,968.74l2.74,1q9.15,3.35,19.38,6.3l-1.21-.46Q350.81,972.41,341,968.74Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M416.8,987.53l-.81-.37a426.31,426.31,0,0,1-53.29-11.32l1.21.45A421,421,0,0,0,416.8,987.53Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M481.14,993.46c21.54.84,43,.6,63.88-.6l.15-.34c-21.06,1.22-42.66,1.46-64.36.61Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M417,987.31l.81.37c14.6,2.16,30.1,3.82,46.37,4.89q7.92.51,15.85.84l-.33-.33q-8-.33-16-.85C447.32,991.15,431.71,989.49,417,987.31Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M521.22,26.09c-7.05,4.59-14.33,14.76-21.7,30.94,7.57-16.17,15.05-26.34,22.29-30.92l.37-.23a16.06,16.06,0,0,1,9.2-2.6l-.84,0a15.47,15.47,0,0,0-8.95,2.62Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M483.39,23.65l-.8.05c1.43-.09,2.92.73,4.47,2.5l.19.22C491,30.91,495.13,41,499.52,57c-4.19-16.08-8.11-26.15-11.7-30.64l-.19-.23C486.16,24.4,484.75,23.57,483.39,23.65Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M435.19,28.85l-.84.13a52.14,52.14,0,0,1,20,.75l.72.17c14,3.38,28.93,12.27,44.46,27.13-15.35-14.89-30.07-23.81-43.94-27.21l-.71-.17A50.78,50.78,0,0,0,435.19,28.85Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M380.12,40.86l-1,.3a140.06,140.06,0,0,1,45.84-5.07l1.2.07C449.37,37.54,474,44.34,499.52,57c-25.39-12.74-49.84-19.58-72.95-21L425.39,36A138.53,138.53,0,0,0,380.12,40.86Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M400.68,44.74a248.69,248.69,0,0,0-86.32,19.7L313,65c-1.13.49-2.25,1-3.37,1.5l-1.56.72c1.4-.65,2.82-1.28,4.24-1.9l1.37-.6a250.64,250.64,0,0,1,86.65-19.85l1.59-.08C421.55,44,455,44.31,499.52,57c-44.38-12.8-77.72-13.2-97.25-12.36Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M212,125.6c-.83.63-1.64,1.29-2.46,1.93C210.33,126.88,211.14,126.23,212,125.6Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M203,132.69c2.14-1.75,4.32-3.46,6.51-5.16-1.51,1.18-3,2.35-4.54,3.56Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M382.25,55.61A364.57,364.57,0,0,0,279.69,84.89l-1.63.75a345.53,345.53,0,0,0-66.09,40A347.2,347.2,0,0,1,277.59,86l1.63-.75A366.25,366.25,0,0,1,382,55.81l1.88-.25c47.27-5.88,78.95-2.48,115.63,1.47a415.09,415.09,0,0,0-115.38-1.67Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M71.81,298.64c-.51,1-1,2.07-1.49,3.11C70.81,300.71,71.3,299.67,71.81,298.64Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M371.63,68.16A461.74,461.74,0,0,0,259.7,108.49l-1.78.93a437.57,437.57,0,0,0-94,65.91l-1.44,1.33a417.58,417.58,0,0,0-71.7,87.4l-1,1.67q-9.7,16-17.93,32.91,8.1-16.53,17.6-32.2l1-1.67a418.19,418.19,0,0,1,71.75-87.53l1.44-1.33a439.07,439.07,0,0,1,94.1-66.08l1.79-.93a463.51,463.51,0,0,1,112-40.53l2.05-.45A498.67,498.67,0,0,1,499.52,57,497.5,497.5,0,0,0,373.68,67.7Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M66,310.94c1.39-3.09,2.84-6.14,4.31-9.19-.75,1.56-1.52,3.11-2.25,4.68Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M36.5,625.07c.17.72.35,1.44.52,2.16C36.84,626.51,36.67,625.79,36.5,625.07Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M39.6,637.53c-.91-3.41-1.76-6.85-2.58-10.3.39,1.62.75,3.25,1.16,4.86Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M40.12,417.07A452.3,452.3,0,0,1,85.56,307.49l1-1.78A484.64,484.64,0,0,1,159,210.87l1.45-1.47a509.12,509.12,0,0,1,95-75.55l1.8-1.1a519.83,519.83,0,0,1,113.07-51.7q1-.35,2.07-.66A526,526,0,0,1,499.52,57,526.32,526.32,0,0,0,372.36,80.18l-2.08.66a519.57,519.57,0,0,0-113.11,51.51l-1.81,1.11a508.88,508.88,0,0,0-95,75.38c-.48.5-1,1-1.45,1.48A483.45,483.45,0,0,0,86.4,305l-1,1.77A451.14,451.14,0,0,0,39.92,416.32c-.18.66-.36,1.33-.53,2a432.18,432.18,0,0,0-14,119.77l0,1.08,0,1.05A423,423,0,0,0,36.5,625.07,422.77,422.77,0,0,1,25.66,541l0-1,0-1.07a432.88,432.88,0,0,1,14-119.81C39.76,418.41,39.94,417.74,40.12,417.07Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M172,862.1c-4.1-4-8.07-8.05-12-12.21,3.22,3.41,6.44,6.8,9.78,10.08Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M158.64,848.51c.44.47.91.91,1.35,1.38C159.55,849.43,159.08,849,158.64,848.51Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M67.72,459.71a516.87,516.87,0,0,1,42.59-114l1-1.87a553.06,553.06,0,0,1,68-101.66l1.36-1.61A559,559,0,0,1,270,156.24l1.7-1.28A535.76,535.76,0,0,1,378,92.85l1.95-.85A500.26,500.26,0,0,1,499.52,57,500.34,500.34,0,0,0,379.74,91.82l-2,.84a536,536,0,0,0-106.5,61.94l-1.7,1.28a557.88,557.88,0,0,0-89.43,84.22c-.46.53-.91,1.07-1.37,1.61a551,551,0,0,0-68.14,101.54l-1,1.87A515.76,515.76,0,0,0,67,459c-.16.68-.33,1.37-.49,2.05a473.65,473.65,0,0,0-13,121.34l0,1.08,0,1A426.18,426.18,0,0,0,72.78,700.8c.19.62.39,1.24.59,1.87a388.43,388.43,0,0,0,48.25,99.54c.35.53.7,1,1.06,1.57a378.47,378.47,0,0,0,36,44.73,377.38,377.38,0,0,1-35.32-44.12l-1.06-1.56a388,388,0,0,1-48.18-99.48c-.2-.62-.39-1.24-.59-1.87A426.91,426.91,0,0,1,54.3,585.25l0-1,0-1.08a474.82,474.82,0,0,1,13-121.36C67.39,461.08,67.55,460.4,67.72,459.71Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M274,937.32c1.8,1.08,3.59,2.16,5.41,3.2C277.6,939.48,275.81,938.4,274,937.32Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M269.56,934.58c1.48.92,3,1.84,4.45,2.74C272.52,936.42,271,935.5,269.56,934.58Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M279.42,940.52c3.66,2.1,7.37,4.09,11.12,6Q284.92,943.66,279.42,940.52Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M394.92,102.1l-1.71,1a523.37,523.37,0,0,0-92.9,71.15l-1.48,1.42a602.36,602.36,0,0,0-77.9,92l-1.19,1.73A636.81,636.81,0,0,0,160.5,377l-.84,1.95a614.85,614.85,0,0,0-36.92,117.8c-.15.7-.29,1.4-.43,2.1a555.87,555.87,0,0,0-11,122.71l0,1.08,0,1c1.15,41.09,7.09,79.56,17.18,114.88.17.61.35,1.22.52,1.82a375.75,375.75,0,0,0,42.51,95.67c.31.49.62,1,.94,1.47a316.84,316.84,0,0,0,64,73.24l1.26,1.05a296.11,296.11,0,0,0,31.79,22.76,293.33,293.33,0,0,1-30.93-22.34c-.43-.34-.84-.69-1.26-1a316.17,316.17,0,0,1-63.78-73.15l-.93-1.47A375.93,375.93,0,0,1,130.27,741c-.17-.61-.35-1.21-.52-1.82-10.06-35.31-16-73.77-17.14-114.86l0-1,0-1.08a558,558,0,0,1,10.93-122.74c.14-.7.28-1.4.43-2.1a616.6,616.6,0,0,1,36.8-117.85l.84-2a638.54,638.54,0,0,1,59-107.67c.39-.58.79-1.15,1.19-1.73A603,603,0,0,1,299.45,176l1.47-1.42a523.16,523.16,0,0,1,92.62-71.29l1.7-1h0c42.61-25,71.19-34.39,104.28-45.22A434.9,434.9,0,0,0,394.92,102.1Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M293.74,948.21c-1.07-.54-2.13-1.11-3.2-1.66.45.23.89.5,1.34.72Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M457.56,80.33q5.07-3.33,10.21-6.43C464.23,76,460.84,78.17,457.56,80.33Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M457.48,80.38l.08,0Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M449.15,86c2.77-1.93,5.54-3.83,8.33-5.66Q453.23,83.17,449.15,86Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M467.77,73.9l.17-.11Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M430.91,99.59C437,94.84,443,90.36,449.15,86Q439.93,92.46,430.91,99.59Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M467.94,73.79c2.79-1.68,5.59-3.29,8.4-4.88C473.44,70.54,470.65,72.16,467.94,73.79Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M205.38,528a794.87,794.87,0,0,1,28.41-121c.22-.67.43-1.35.65-2a781.93,781.93,0,0,1,46-112.58l.93-1.83a674,674,0,0,1,60.81-98.49c.38-.52.77-1,1.16-1.55,22.44-29.79,46.84-56.36,72.73-78.78.44-.39.89-.77,1.34-1.15,4.44-3.82,8.94-7.47,13.47-11-4.49,3.47-9.07,7.09-13.9,10.9l-1.35,1.16c-26,22.38-50.55,48.91-73.11,78.67l-1.17,1.54a672.64,672.64,0,0,0-61.13,98.4l-.93,1.83A778.41,778.41,0,0,0,233,404.59l-.66,2a790.83,790.83,0,0,0-28.57,121c-.11.71-.22,1.42-.32,2.14a714.7,714.7,0,0,0-8,123.84c0,.36,0,.72,0,1.08l0,1c1.14,41.08,6.05,79.16,14.23,113.75l.42,1.79c8.29,34.47,19.84,65.45,34.15,92.48l.75,1.4c14.41,26.89,31.58,49.82,51,68.31l1,1c19.51,18.35,41.27,32.24,64.79,41.23l1.21.46q6.15,2.3,12.43,4.14l1.21.35q-6.5-1.89-12.82-4.26l-1.21-.45c-23.4-9-45.05-22.82-64.46-41.14l-1-.94c-19.33-18.47-36.41-41.37-50.75-68.24l-.75-1.41c-14.24-27-25.74-58-34-92.43l-.42-1.79c-8.14-34.58-13-72.65-14.17-113.73l0-1c0-.36,0-.72,0-1.08a718.79,718.79,0,0,1,7.95-123.85C205.17,529.47,205.27,528.75,205.38,528Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M492.66,60.33c2.29-1.11,4.56-2.25,6.86-3.3C497.16,58.14,494.88,59.24,492.66,60.33Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M476.34,68.91c5.07-2.84,10.46-5.68,16.32-8.58C487.18,63,481.74,65.86,476.34,68.91Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M308.82,549.89a1200.56,1200.56,0,0,1,17.75-123.26c.14-.7.27-1.39.41-2.08a1123.24,1123.24,0,0,1,29.5-116.07l.6-1.9a876.47,876.47,0,0,1,39.41-103l.76-1.63c14.6-31.45,30.53-59.81,47.49-84.12l.87-1.25c17-24.24,35.11-44.41,53.91-59.54-19,15.1-37.22,35.24-54.43,59.46l-.88,1.25c-17.12,24.29-33.21,52.62-48,84.05-.25.54-.51,1.08-.76,1.63a870.05,870.05,0,0,0-39.81,103c-.2.63-.4,1.27-.61,1.9a1114.58,1114.58,0,0,0-29.8,116l-.42,2.08a1189.07,1189.07,0,0,0-18,123.24c-.07.72-.13,1.44-.2,2.17a1087.54,1087.54,0,0,0-4.24,124.64l0,1.08c0,.35,0,.69,0,1,1.12,41.08,4.72,78.87,10.46,113l.3,1.76c5.82,33.94,13.77,64.16,23.53,90.21l.51,1.36c9.83,25.91,21.45,47.65,34.54,64.79l.67.88c13.14,17,27.74,29.35,43.47,36.67l.81.37A82.54,82.54,0,0,0,438.41,994l.92.14a80.85,80.85,0,0,1-21.53-6.47l-.81-.37c-15.58-7.3-30-19.65-43.07-36.61-.22-.3-.44-.59-.67-.88-13-17.12-24.49-38.85-34.22-64.75l-.51-1.35c-9.68-26-17.56-56.25-23.33-90.19l-.3-1.75c-5.7-34.07-9.27-71.86-10.39-112.94l0-1.05,0-1.08a1097,1097,0,0,1,4.18-124.65C308.68,551.34,308.75,550.62,308.82,549.89Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M430.39,561c.88-41.9,2.66-83.69,5.23-124.41,0-.7.09-1.4.13-2.1,2.6-40.69,6-80.29,10.07-117.84.08-.65.15-1.29.22-1.94,4.1-37.48,8.89-72.9,14.27-105.3l.27-1.67c5.4-32.3,11.37-61.56,17.82-86.83l.33-1.3c6.49-25.21,13.45-46.38,20.79-62.56-7.54,16.17-14.7,37.34-21.37,62.54-.11.43-.23.86-.34,1.3-6.64,25.26-12.78,54.51-18.34,86.8-.09.56-.19,1.11-.28,1.67-5.54,32.4-10.48,67.81-14.72,105.29l-.21,1.94c-4.21,37.55-7.72,77.14-10.42,117.82,0,.7-.09,1.4-.13,2.1-2.67,40.72-4.52,82.5-5.45,124.41,0,.72,0,1.45-.05,2.18-.89,41.9-.87,83.91.19,125l0,1.08,0,1c1.09,41.07,3.15,78.72,6,112.53,0,.58.1,1.17.15,1.74,2.91,33.68,6.63,63.5,11,89.06.08.44.15.88.23,1.33,4.42,25.4,9.52,46.54,15.14,63,.1.29.2.57.29.85,5.65,16.28,11.81,27.87,18.37,34.33l.33.33c3.73,3.57,7.58,5.49,11.53,5.68l.85,0c-3.86-.18-7.62-2.09-11.26-5.66l-.33-.33c-6.39-6.46-12.41-18-17.93-34.32-.09-.28-.18-.56-.28-.84-5.49-16.44-10.47-37.57-14.8-63-.07-.44-.15-.88-.22-1.33-4.31-25.55-8-55.37-10.81-89l-.15-1.74c-2.83-33.81-4.86-71.46-5.95-112.54l0-1,0-1.08c-1.05-41.14-1.11-83.15-.26-125.06C430.36,562.44,430.38,561.71,430.39,561Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M557.57,892.64l-.06,1.32c-1.13,25.46-2.74,46.65-4.79,63.16,0,.29-.07.57-.11.85-2.06,16.35-4.56,28-7.44,34.55l-.15.34c-1.7,3.74-3.53,5.72-5.48,5.84l.79-.05c2-.13,4-2.11,5.77-5.86l.16-.33c3-6.55,5.67-18.22,7.87-34.58,0-.28.07-.56.11-.85,2.18-16.51,3.9-37.71,5.13-63.17l.06-1.33c1.2-25.61,1.9-55.48,2-89.18v-1.74c.12-33.84-.33-71.51-1.39-112.58l0-1,0-1.08c-1.08-41.14-2.72-83.13-4.82-125,0-.72-.07-1.45-.11-2.18-2.11-41.87-4.68-83.62-7.62-124.28l-.15-2.1c-3-40.63-6.27-80.16-9.86-117.63l-.18-1.93c-3.6-37.41-7.48-72.74-11.53-105l-.21-1.67c-4-32.19-8.29-61.35-12.61-86.51-.08-.43-.15-.86-.23-1.29-4.34-25.1-8.76-46.16-13.18-62.22,4.22,16.07,8.46,37.14,12.62,62.25l.21,1.29c4.15,25.17,8.21,54.34,12.11,86.55l.21,1.66c3.89,32.32,7.62,67.66,11.09,105.07l.18,1.94c3.46,37.48,6.67,77,9.53,117.65,0,.7.09,1.4.14,2.1C548.46,476.21,551,518,553,559.83c0,.73.07,1.46.11,2.18,2,41.88,3.66,83.87,4.74,125l0,1.08,0,1c1.06,41.08,1.54,78.75,1.47,112.58v1.74C559.31,837.17,558.68,867,557.57,892.64Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M677.69,790.86c-2.92,34-7.67,64.3-14,90.46l-.33,1.36c-6.39,26-14.37,47.89-23.7,65.17l-.48.89c-9.37,17.13-20.09,29.66-31.91,37.16l-.61.39a51.47,51.47,0,0,1-18.9,7.2l.84-.13a52.56,52.56,0,0,0,19.06-7.23l.62-.39c12-7.52,22.81-20.07,32.3-37.22l.49-.89c9.44-17.31,17.52-39.19,24-65.22.11-.46.23-.91.34-1.36,6.42-26.18,11.24-56.49,14.21-90.5l.15-1.76a1031.19,1031.19,0,0,0,2.92-113l0-1,0-1.08c-1.11-41.14-4.25-83-9.13-124.54-.09-.72-.17-1.44-.26-2.17-5-41.56-11.64-82.86-19.79-123-.14-.69-.29-1.38-.43-2.07-8.21-40.06-17.88-78.9-28.73-115.59l-.57-1.89a1055.82,1055.82,0,0,0-36-102.4c-.23-.54-.45-1.08-.67-1.61-13-31.23-26.92-59.34-41.45-83.39l-.75-1.24c-14.6-24-29.81-43.88-45.37-58.73,15.37,14.88,30.42,34.8,44.84,58.81l.75,1.24c14.36,24.08,28.11,52.22,41,83.47l.66,1.61a1067.88,1067.88,0,0,1,35.56,102.46c.19.63.37,1.27.56,1.9,10.74,36.7,20.31,75.56,28.43,115.64l.42,2.07c8.07,40.11,14.7,81.42,19.6,123,.08.72.17,1.44.25,2.17,4.84,41.58,7.95,83.41,9.06,124.55l0,1.08,0,1a1044.79,1044.79,0,0,1-2.85,113Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M784.15,768c-5.48,34.55-13.94,65.65-25,92.82l-.58,1.41c-11.13,27-24.84,50.13-40.71,68.82l-.82,1c-15.95,18.54-34.06,32.66-53.93,41.89l-1,.47a135.88,135.88,0,0,1-19.26,7.06l1-.29a137.76,137.76,0,0,0,19.09-7l1-.48c20-9.26,38.22-23.41,54.27-42l.83-1c16-18.72,29.77-41.84,41-68.9.2-.47.39-.94.58-1.41,11.12-27.19,19.64-58.31,25.15-92.86.1-.6.19-1.19.29-1.79,5.41-34.68,7.81-72.81,6.79-113.89,0-.35,0-.69,0-1l0-1.08a828.27,828.27,0,0,0-13-123.71c-.13-.71-.25-1.42-.39-2.13A911,911,0,0,0,748.7,403.33c-.22-.68-.45-1.35-.67-2a878.65,878.65,0,0,0-45.71-111.92l-.9-1.82a728.34,728.34,0,0,0-57.92-97.64l-1.09-1.52c-21.06-29.49-43.66-55.71-67.37-77.78l-1.22-1.14C550,87.5,525.09,69.71,499.52,57c25.41,12.73,50.17,30.56,73.84,52.59l1.22,1.14c23.56,22.11,46,48.37,67,77.89l1.08,1.53a728.77,728.77,0,0,1,57.58,97.74l.9,1.82a884.66,884.66,0,0,1,45.44,112l.66,2a918.29,918.29,0,0,1,30.57,120.64c.13.72.26,1.43.38,2.14a833.58,833.58,0,0,1,13,123.72c0,.36,0,.72,0,1.08l0,1c1,41.09-1.36,79.2-6.73,113.88C784.33,766.83,784.24,767.43,784.15,768Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M873.32,736.3c-7.61,35.31-19.18,67.51-34.17,96.08l-.78,1.49c-15.1,28.44-33.6,53.25-55,73.89l-1.11,1.06a249.53,249.53,0,0,1-68.86,46.88L715,955a251.12,251.12,0,0,0,68.27-46.61l1.11-1.07c21.44-20.68,40-45.51,55.17-74,.26-.49.53-1,.79-1.48,15-28.6,26.65-60.82,34.3-96.15l.39-1.82c7.51-35.44,11-74,10-115,0-.35,0-.7,0-1.05l0-1.08a610.15,610.15,0,0,0-16.26-122.54c-.17-.7-.33-1.4-.5-2.09a675.64,675.64,0,0,0-39.89-117.31l-.87-1.95A684.84,684.84,0,0,0,767.6,266c-.39-.57-.78-1.15-1.18-1.72a625.49,625.49,0,0,0-76.3-91l-1.43-1.4a515.53,515.53,0,0,0-89.05-70l-1.62-1c-31.67-19.3-64.73-34.15-98.5-43.78,33.64,9.69,66.59,24.59,98.14,44l1.61,1A515.23,515.23,0,0,1,688,172.12l1.43,1.41a626.88,626.88,0,0,1,76,91.18l1.18,1.71a688.14,688.14,0,0,1,59.69,106.92l.87,2a678,678,0,0,1,39.75,117.37c.17.7.33,1.4.5,2.1a612.53,612.53,0,0,1,16.21,122.56l0,1.08c0,.35,0,.7,0,1,1,41.09-2.51,79.61-10,115Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M939.8,697a380.34,380.34,0,0,1-41,100.13l-.93,1.57a351.36,351.36,0,0,1-65.58,80.17L831,880.09q-6.27,5.61-12.8,10.92l2-1.6q5.85-4.8,11.49-9.85l1.32-1.19a352.43,352.43,0,0,0,65.72-80.28l.94-1.58a380.77,380.77,0,0,0,41.1-100.2l.48-1.88a437.17,437.17,0,0,0,12.45-116.49l0-1,0-1.08a500.14,500.14,0,0,0-18.67-121.1c-.19-.68-.38-1.37-.58-2.05a549.67,549.67,0,0,0-46.69-113.25l-1-1.85A581.49,581.49,0,0,0,816.13,237c-.46-.54-.92-1.07-1.39-1.6a575.29,575.29,0,0,0-90-82.9l-1.69-1.25A533.67,533.67,0,0,0,617.93,90.9L616,90.08A478.69,478.69,0,0,0,499.52,57,477.11,477.11,0,0,1,615.77,90.28l1.91.82a533.33,533.33,0,0,1,105,60.57l1.68,1.25A576.53,576.53,0,0,1,814.09,236l1.39,1.6a582.41,582.41,0,0,1,70.31,100.64l1,1.86a551.54,551.54,0,0,1,46.61,113.32l.57,2.05a502,502,0,0,1,18.64,121.13l0,1.08,0,1a438.22,438.22,0,0,1-12.42,116.47C940.11,695.78,940,696.41,939.8,697Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M961.51,700.39c-.51,1.22-1,2.42-1.56,3.62C960.46,702.8,961,701.61,961.51,700.39Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M956.28,712.56c1.28-2.82,2.45-5.69,3.67-8.55-1.84,4.34-3.7,8.67-5.69,12.93Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M992.78,529.8l0-1.08a443.33,443.33,0,0,0-20-119.44l-.63-2a471.54,471.54,0,0,0-50.59-108.57l-1.1-1.75a505.9,505.9,0,0,0-76.5-93.28l-1.51-1.44a527.12,527.12,0,0,0-97.77-73.52c-.61-.36-1.22-.72-1.84-1.07A528.81,528.81,0,0,0,628.38,78.34l-2.08-.62A523.41,523.41,0,0,0,499.52,57,522.36,522.36,0,0,1,626.2,77.94l2.08.61a529.41,529.41,0,0,1,114.29,49.51l1.84,1.07a529,529,0,0,1,97.69,73.68l1.51,1.45a507.06,507.06,0,0,1,76.44,93.41l1.11,1.75A472.13,472.13,0,0,1,971.7,408.07l.63,2a444,444,0,0,1,20,119.47l0,1.08c0,.35,0,.7,0,1A419.43,419.43,0,0,1,978.6,649.78l-.51,1.93a408.82,408.82,0,0,1-16.58,48.68,407.12,407.12,0,0,0,16.94-49.47c.18-.64.35-1.29.52-1.93A419.73,419.73,0,0,0,992.8,530.84C992.79,530.5,992.78,530.15,992.78,529.8Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M981.4,378.42c-.22-.77-.43-1.55-.65-2.33C981,376.87,981.18,377.65,981.4,378.42Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M984.4,389.41,983,384c-.5-1.86-1-3.7-1.57-5.55C982.44,382.07,983.45,385.72,984.4,389.41Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M976.27,361.53a420,420,0,0,0-51-103.86L924.14,256a439.43,439.43,0,0,0-77.17-86l-1.53-1.3a463.11,463.11,0,0,0-98.63-64.06l-1.86-.89A485.7,485.7,0,0,0,629.54,65.67l-2.1-.41A513.06,513.06,0,0,0,499.52,57a514.44,514.44,0,0,1,128,8.43l2.1.41A488,488,0,0,1,745.06,104.2l1.86.9a464.61,464.61,0,0,1,98.67,64.21l1.53,1.3a440.83,440.83,0,0,1,77.2,86.08l1.12,1.65a421,421,0,0,1,51,103.94l.63,1.93q1.9,5.91,3.64,11.88c-1.23-4.23-2.49-8.45-3.84-12.63C976.7,362.81,976.49,362.17,976.27,361.53Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M841.86,151.93c-.64-.58-1.25-1.18-1.89-1.75C840.61,150.75,841.23,151.35,841.86,151.93Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M852.67,162l-2.2-2.12c-2.81-2.73-5.71-5.36-8.61-8C845.52,155.24,849.14,158.59,852.67,162Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M825.19,137.56a381.61,381.61,0,0,0-92.91-55.23l-1.75-.73A405.19,405.19,0,0,0,621.88,53.86l-2-.22h0a420.57,420.57,0,0,0-64.21-1.93c22.51-.73,41.63.56,64.41,2.12l2,.22A406.76,406.76,0,0,1,730.91,82l1.75.72a383.68,383.68,0,0,1,93.06,55.38l1.43,1.17q6.54,5.33,12.82,11c-4.36-3.91-8.8-7.75-13.34-11.45Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M555.69,51.71A490.07,490.07,0,0,0,499.52,57C518.62,54.74,536.42,52.61,555.69,51.71Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M701.22,62A297.39,297.39,0,0,0,606.3,43.45l-1.73-.05C571,42.47,535.73,46.84,499.52,57c46.53-12.36,71.21-12.83,105.37-13.48l1.74.06a299.41,299.41,0,0,1,95.2,18.7l1.54.58a286.83,286.83,0,0,1,27.24,12L728.76,74q-12.69-6.33-26-11.41Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M583.73,35l-1.37.09C555.82,36.78,528,44,499.52,57c28.67-13,56.59-20.17,83.27-21.87l1.37-.08a185.21,185.21,0,0,1,62.92,7l-1.21-.35A183.49,183.49,0,0,0,583.73,35Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M584.25,28.32l-.92-.13-.72,0C583.16,28.22,583.7,28.24,584.25,28.32Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M554.17,29.09c-17.56,3.63-35.88,12.8-54.65,27.94,19-15.11,37.45-24.25,55.17-27.86l.91-.18c.72-.14,1.45-.21,2.16-.33-.92.08-1.83.16-2.69.25Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M557.76,28.66a176.35,176.35,0,0,1,24.85-.51A82.61,82.61,0,0,0,557.76,28.66Z" transform="translate(-11.9 -11.98)" style="fill:#eceded"></path><path d="M717.91,511.11h0l.46-4.69-21.9,10.34L687.07,529l-1,5.75c-1.5.27-3,.52-4.52.78L677.12,530l-11.55-3.1-2.66,3-5.49-1.81,1.81,7.87-4.75,2.46L663.19,568l11.56-2.35,3.8-7.56,16.9-8.74,5.19-.82,4.25-5.7,19.38-11.95-.23-5.27,3.74-2.77Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="735.3 540.6 723.64 544.83 728.11 549.39 735.12 546.44 735.12 546.44 735.3 540.6" style="fill:#d9dadb"></polygon><path d="M718.37,506.41l-.46,4.69h0l9.87,11.68,1.34-1,6.51-4.94,6.66-1.54,1.31-7,6.06-2.29,1.86-7.2,6.17-3.36.3-11.91L764.63,466l-9.21-8.78-11-.55-5.7-5-4.35,2.65,2.24,5.3-3,1.78,0,9.42,5.16,5.91-1,16.72Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M737.12,450.24l-1-7.24-.61-4.22-2.11-.6-3.34,11.23-3.34,4.19-2.57,6.24q-5.24,1.2-10.54,2.34l-2.71,2.13-6.26-1.58,6.78,10.78,23-1.45.17-.1-1-1.17,0-9.42,3-1.78-2.24-5.3,4.35-2.65Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="691.5 448.75 691.5 448.75 691.5 448.75 691.5 448.75" style="fill:#d9dadb"></polygon><polygon points="692.08 437.33 689.51 435.76 687.67 440.25 687.29 445.12 691.5 448.75 693.85 443.29 692.08 437.33" style="fill:#d9dadb"></polygon><path d="M665.57,526.94l11.55,3.1,4.41,5.45c1.51-.26,3-.51,4.52-.78l1-5.75,9.4-12.21,21.9-10.34,19.37-13,1-16.72L734.63,472l-.17.1-23,1.45-6.78-10.78-1.26-2-4.21-3.64L694,450.64l-.73-5.45-7.72-5.91-2.95-.13-3.11-4.87-6.73,1.22-2.88-4.05q-8.58,1.5-17.32,2.88l-21-14.59-13-6.66-8.55.44-13.48,7.13,6.89,7.19L601,433.17l-5.65,1.26L592.06,441l-9.53-.81.62,8.73h3.06l17.11,21.68,2.82,6.76,8,4,6.61,10.76,1.52,10.68,5.15,5.76,8,3.71,9.65,14.35,4.29,2.51,4.66,8,.46,1.46,4.75-2.46-1.81-7.87,5.49,1.81Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="561.64 373.78 556.97 376.44 551.83 376.73 546.95 380.48 550.13 383.09 554.6 382.63 557.29 380.25 560.19 379.4 559.3 377.99 561.49 375.58 561.64 373.78" style="fill:#d9dadb"></polygon><polygon points="572.22 382.46 568.46 394.66 568.21 396.42 573.45 394.88 574.99 394.44 575.29 394.34 578.95 385.61 576.96 381.7 572.22 382.46 572.22 382.46" style="fill:#d9dadb"></polygon><path d="M717.69,782.07l-1-11.61-4.49-5.89L708,774.45l-3.66,3.61-2.55-.17-2.61,5.39,2,2-11.9,7.55-2.22,1.21-4.47,3.07-2.53-.36-6.17,2.64-4.94,10,1.35,8.94,1.57,2.06-.26,3-6.18,8.72-4.2,4.51-.44,5.68,2.47,4-1.44,4.6,2,3.17,7.25,2.4,14.34-5.74,6.4-10.39,2-5.5L709,806.16c.28-1.94.55-3.9.81-5.86l3.23-3.34-.47-8.51,6.47-2.83Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><polygon points="573.85 399.17 573.45 394.88 568.21 396.42 566.97 404.7 564.05 410.29 563.08 410.54 569.42 426.66 570.37 424.62 575.01 411.7 573.86 399.18 573.85 399.17 573.85 399.17" style="fill:#d9dadb"></polygon><polygon points="594.27 392.51 580.38 402.44 573.89 399.1 573.86 399.18 575.01 411.7 570.37 424.62 570.63 428.19 580.16 429 583.41 422.44 589.06 421.19 591.53 415.86 584.64 408.67 598.12 401.54 594.27 392.51" style="fill:#d9dadb"></polygon><path d="M568.36,877.52l3.87-.6c.13-2.34.26-4.72.38-7.12L567.84,868l-4.25,5.43Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M486.78,917.66l3.38-1.68,9.25-.42,5.46-1.93,16.11.7,1.4-1.18,10.67-1.41,9.79-4,15.56-9.89L568.81,887l7.76-4.83,3.86-7.89a1.15,1.15,0,0,0,0-.19c-2.69.21-5.38.41-8.09.6l-.12,2.25-3.87.6-4.77-4.1,4.25-5.43,4.77,1.81,1.95-3c.09-1.87.19-3.76.28-5.66l-3.91-5.3,1.66-2.38-3.21-3.81-1.07-1.25-6.54,1.39-3.71-1.53-4.43,1.22-2.25.62-1,1.76-5,.87-2.3,3.34-5.75.65-3.46,7.62-6.55.68-3.56,6.11q-3.53.11-7.06.18l-7.62-3.22L504,869.54l-1.34,4.14-5.17,3.82c-2.85,0-5.71,0-8.58,0l-1.72-2.45,3.07-2.3-3.65-5.59-4.93-1.57q.84,10.35,1.72,20l-4.61,1-.48,2.13-8.05-.12-6.75-1.76,1.24-2.3-3.94-1.3-4.21,1.8.29.27,2.61,2.43,4.44,6.7,8.56,8.4.52,4.65-3-.41,4.8,5-.51,2.29Zm54.34-29.86,7.21-2.55,5.51,2.38-2.92,4.62h0l-5.28.26-3.71,3.87L537.28,892Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M553.84,887.63l-5.51-2.38-7.21,2.55L537.28,892l4.65,4.43,3.71-3.87,5.28-.26h0Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M582.8,818.17l2.34-4.58-5.49-2.9L575.16,813,571,809.74l-7.32.23c0-.76,0-1.52,0-2.28h-5.35l-7.26,2.75-.93,4-8.45,3.18L538,823.45l-3.83,1.84-5.12-2.4L522.9,824l5.2,6.18c0,1.24,0,2.48.07,3.71l9.06,2.45.72,3,4.11.21,2.18,5.68,8.74.29.66,3.81a1.48,1.48,0,0,1,0,.21l4.43-1.22,3.71,1.53,6.54-1.39,1.07,1.25,9-7,0-5.58,3.47-.14,3.43-4.1-3.05-2,1.28-2.22-2.87-1.49,5.07-6.31Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M488.89,877.52c2.87,0,5.73,0,8.58,0l5.17-3.82,1.34-4.14,5.09-1.42,7.62,3.22q3.54-.08,7.06-.18l3.56-6.11,6.55-.68,3.46-7.62,5.75-.65,2.3-3.34,5-.87,1-1.76,2.25-.62a1.48,1.48,0,0,0,0-.21l-.66-3.81-8.74-.29-2.18-5.68-4.11-.21-.72-3-9.06-2.45c0-1.23,0-2.47-.07-3.71L522.89,824l-8.23,1.36-5.1,3.56-2.93-2.51-19,2.71q.6,10.54,1.22,20.51l-8.38,0q.6,8.22,1.22,16l4.93,1.57,3.65,5.59-3.07,2.3Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><polygon points="493.35 808.93 493.34 808.93 493.35 808.93 493.35 808.93" style="fill:#ff7b00"></polygon><path d="M509.56,828.89l5.1-3.56,8.23-1.36-3.45-4.12-6.91-.43-7.29,1.5-16,3.1q-10,0-20.13-.13l-3.68-2.75q-17.56-.3-35.2-1.1l-4.86-3.69-6-.31-4.1,3-4.79-.29.53,3.37,13,13.55,2.28,4.2,9.08,9.06,1.5,2.44-.32,2.63.92,5.84,3.74,5.38.42,3.94,4.89,8.78,4,4,6.06,3.11,4.21-1.8,3.94,1.3-1.24,2.3,6.75,1.76,8.05.12.48-2.13,4.61-1q-.88-9.62-1.72-20-.63-7.82-1.22-16l8.38,0q-.63-10-1.22-20.51l19-2.71Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><polygon points="362.2 649.75 364.92 643.41 359.08 640.86 355.25 645.59 362.2 649.75" style="fill:#ff7b00"></polygon><path d="M599.26,814.76l4.71.06,5.83-17.5-6.07-3.66L603,798l-6.67-.88-2.92-5.5c0-1.81.07-3.63.1-5.47l-2.8-2.8L592.9,779l-1.16-9.55-1.52-2.69,1.3-5.24h0l-8.44-1L586.74,771l-2.7,2.19,1.7,9.45-4.46,8,3.17,4.71,3.38,5,4.57-.38,2.47,3.55-2,3.42Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M646.31,778.25l-1.94-9.65,2.54-5.15-16.48,8.88-4.32-1-4.64,3.94-3.62-1.52-5.1,3.91-4.85-3.9-6.28,2.82-2.3,4.66.73,9.53,2.35,1.86,1.33,1.06,6.07,3.66L604,814.82l-4.71-.05L592.91,807l2-3.42L592.4,800l-4.57.38-3.38-5h0l-22.31,7.56,1.57,4.75c0,.76,0,1.52,0,2.28l7.32-.23,4.15,3.29,4.49-2.34,5.49,2.9-2.34,4.58,3,2.61-5.07,6.31,2.87,1.49-1.28,2.22,3.05,2-3.43,4.1h0l-3.47.14,0,5.58-9,7,3.22,3.81h0l-1.66,2.38,3.91,5.3c-.09,1.9-.19,3.79-.28,5.66l-1.95,3c-.08,1.63-.17,3.26-.26,4.87,2.71-.19,5.4-.39,8.09-.6l.07-1.26.34-7L584,863.9l14.1-5,3.65-3.4-.44-9.9-1.18-8.77-3.35-2.16-.49-5.62L610.84,823l3.73-6.3,10-5.66,7.85-2.12,6.19-4.5h0l8.52-12.79Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><polygon points="897.15 519.48 895.15 513.86 891.17 511.1 890.81 515.1 891.75 526.32 890.9 527.23 894.46 540.61 896.9 542.31 902.05 534.87 902.05 534.87 902.12 527.26 897.15 519.48" style="fill:#d9dadb"></polygon><path d="M992.64,551.39l-.89-10.59-1.39.42.14-8.44-1.53-1-4.42-7.44-.41,3.73-2.14-3L981,521l-3.74-3.3-.79-2.52-2.79-4.61-3,3.77L967,515l1.3,5.77,4,5.57,1.17-.55,2.51,4.68.77,4.63,2.78,2.94,1.52,9.72,1.24,0,2.93,15.2c2.09,4.93,3.87,11.88,5.42,17l1.69-4.41,1.08-15.14.53-4.64-.4-5.52Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="935.4 443.67 935.05 445.86 937.45 460.57 939.9 463.51 938.61 452.71 935.4 443.67" style="fill:#d9dadb"></polygon><polygon points="939.9 463.51 939.9 463.51 939.9 463.51 939.9 463.51" style="fill:#d9dadb"></polygon><path d="M994.57,536.84l-1.19,3.54-.12,5.54c.22-.49.43-1,.63-1.45l.78,6,.93-7.09-.9-1.61Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="951.87 346.36 953.09 353.81 955.41 359.5 957.04 359.09 955.94 351.9 952.77 342.32 951.87 346.36" style="fill:#d9dadb"></polygon><path d="M950,297.65l-2.75-5.26L945,287.78l-.59-1-1-2-.59-.67,1.41,3.13,6,12.16,2,4.07,3.25,5.82c0-.17-.1-.33-.16-.5l-2-4.22Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="962.28 342.97 961.93 341.94 959.22 334.16 959.01 333.58 955.89 325.17 955.22 323.43 951.7 314.63 953.59 319.54 953.64 320.05 957.06 329 960.5 338.19 960.76 339.36 964.25 349.21 963.58 346.97 963.64 347.16 962.28 342.97" style="fill:#d9dadb"></polygon><polygon points="966.07 354.71 965.52 352.92 965.11 351.65 965.18 351.88 966.07 354.71" style="fill:#d9dadb"></polygon><polygon points="964.05 348.32 963.64 347.16 965.11 351.65 964.05 348.32" style="fill:#d9dadb"></polygon><polygon points="967.43 359.16 968.44 362.6 967.64 359.89 967.43 359.16" style="fill:#d9dadb"></polygon><polygon points="972.99 379.35 974.5 385.59 973.98 383.36 972.99 379.35" style="fill:#d9dadb"></polygon><polygon points="974.5 385.59 975.08 388.1 974.92 387.33 974.5 385.59" style="fill:#d9dadb"></polygon><polygon points="977.51 399.05 976.03 392.16 975.08 388.1 977.63 400.07 979.81 411.27 978.41 403.46 977.51 399.05" style="fill:#d9dadb"></polygon><polygon points="983.9 559.48 982.79 563.39 982.89 560.12 981.02 563.65 978.75 574.14 980.09 573.46 979.63 576.87 981.09 573.64 982.66 567.81 982.86 568.45 983.13 566.96 985.1 550.88 984.75 552.91 983.9 559.48" style="fill:#d9dadb"></polygon><path d="M508.63,777.11l-14.84,3.21.44-10.79L491.32,766l1-5.73-2.41-5.35,2-5.64q-6,0-12,0c-.05-1.21-.1-2.43-.14-3.65l-9.86,1.23-.75,8.54q-7.69-.09-15.42-.27l-7.91-9.87.6-4.75-2.92-3.25q-15.44-.47-30.9-1.31l-3.31,3.55,9.08,15.16c.05.9.11,1.8.17,2.7l-3.28,2.52,7.56,12.39.86,7.87-10,11-2,11.78-3,4.31,1.43,9.51.31,2.06,4.79.29,4.1-3,6,.31,4.86,3.69q17.63.81,35.2,1.1l3.68,2.75q10.08.15,20.13.13l16-3.1h0l-10.6-7.41-1.14-21.91q7.8,0,15.58-.19Q508.86,784.37,508.63,777.11Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M552.85,699.66l-4.17,6.82,1.78,4.36,6.51-1.38.25-2.64,6.27-.06,3.18-.19-4.62-10.74-6.43,2.69Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M557.22,706.82l-.25,2.64-6.51,1.38,2,6,2.45-.34,2.75,9.52,9.78-10.26c0-1.25,0-2.51-.08-3.76l-4.49.18.57-5.39Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M583.09,760.53l-5.5-.69-2-3.51-5.27-1.49.56,1.43L569.63,760l-6.87-2.56-.78-2.82-11.18,3.08-4.88,5.28,3.19,5.57-1.93,11.17,6.64,5.88,5.78-1.85c0,3.11,0,6.2,0,9.25l-6.77.37-5.94-5.91-7-2.62-3.38-3.88-4.07,2.84-9.81-1.89-1.34-3.31L515.71,780l-2.44-4.4-4.64,1.47q.22,7.25.45,14.29-7.77.14-15.58.19l1.14,21.91,10.6,7.41h0l7.29-1.5,6.91.43,3.45,4.12h0l6.16-1.08h0l5.11,2.4,3.83-1.84,3.71-5.78,8.45-3.18.93-4,7.26-2.75h5.35l-1.57-4.75,22.31-7.56h0l-3.17-4.71,4.46-8-1.7-9.45,2.7-2.19Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M601.62,776.55l6.28-2.82,4.85,3.9,5.1-3.91,3.62,1.52,4.64-3.94,4.32,1,16.48-8.88-1.72-.9-5.81-2.85-2.91-12.9-.21-3.86,2.48-6.71-6.15-6.8,2.88-9.85-12.63-7,2-4.41-31.71-15.93-6,9.75,4.27,1.59L587,707.85l-8.2-1-3.85,4.5L572.47,705,575,698l-1.9-2.84q-5.49.38-11,.71l4.62,10.74-3.18.19-.57,5.39,4.49-.18c0,1.25.05,2.51.08,3.76L557.71,726,562,740.68l4.31,4.05,4.05,10.11,5.27,1.49,2,3.51,5.5.69,8.44,1,7.06,4.17c0,2.75-.06,5.48-.09,8.19Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M722.08,564.81l-3.82-.64-4.65,5.06-19.67,6.53-6.76,5.45-5.77-2-5.74,6.21-4.9.48-7.89-7L658,589.09l10.78,11.66,22.42,3.87c2.85-.49,5.68-1,8.51-1.5l-20,30.92h0l-7.78-1.35L665,637.61l-.64,4.88q-3.58.53-7.2,1l-8.28,13.25q.46,11.4.76,22.75c.06,2.29.11,4.56.16,6.83l4.15,4.81.73-1.41,3-6,18.48-21.33,12.66-11,18.61-29.68,13.63-36.1-.29-7.48,3.66-1.87Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><polygon points="595.58 551.25 601.08 547.97 603.05 550.39 607.47 545.22 609.62 547.63 614.34 544.48 616.59 547.19 627.68 547.47 640.24 560.93 647.75 557.19 648.07 556.29 631.24 540.76 619.62 538.59 613.06 523.74 609.28 517.26 605.52 523.92 601.49 522.37 595.02 529.53 598.34 534.56 593.62 542.99 595.58 551.25" style="fill:#ff7b00"></polygon><polygon points="640.24 560.93 636.69 567.5 638.13 575.34 646.11 577.11 650.99 566.95 650.18 566.23 644.34 566.79 647.75 557.19 640.24 560.93" style="fill:#ff7b00"></polygon><path d="M592.24,685.39l2.65-7.76,5.91-7.4-2.37-8.94-4.29-3.6,1.45-3.59-5.5-3-4,4.46-3.59-1.87-7.26,2.7L568.11,654,565.06,659h0L563.89,661l2.27,3-1.31,3.55,4.42,3-8.5,7.83-4.66,9-.49,11.2,6.43-2.69q5.52-.33,11-.71l-.84-1.27L576,687Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><polygon points="636.96 644.77 636.96 644.77 636.96 644.77 636.96 644.77" style="fill:#ff7b00"></polygon><path d="M649.89,645.88l-3.7-2.23L640,647.42l-2.61,4.81-12.51-.6-10.41-6.17-6.47.93-1.81-1.68q-6,.57-12,1.1l-3.94,5.07-.18.21,5.5,3-1.45,3.59,4.29,3.6,2.37,8.94-5.91,7.4-2.65,7.76,7,3-6.09,3.86,31.71,15.93-2,4.41,12.63,7,.5-1.7,5.07-7.57-1-4,3.72-5.67,9-7.16,1.15-2.28-4.15-4.81c0-2.27-.1-4.54-.16-6.83q-.3-11.34-.76-22.75h0l7-11.25Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M582.21,620.05l6,.73,9,7.7,1.28,8.54,3.45,2.24,4-2,.33,7.34,0,.09,1.79,1.66,6.47-.93,10.41,6.17,12.51.6,2.61-4.81,6.16-3.77,3.7,2.23,6-.37,1.23-2q3.61-.5,7.2-1l.64-4.88,6.91-4.91,7.79,1.34h0l20-30.92c-2.83.51-5.66,1-8.51,1.5l-22.42-3.87L658,589.09l-8-1.77-1.44-7.83,3.55-6.58-12.56-13.45-11.09-.28-2.25-2.72-4.72,3.15-2.15-2.41L615,562.37,613,560l-5.5,3.27-2,5.55q.3,4.08.59,8.16l-5,.49-4.39,7.92q.25,4,.49,7.95l-4.61-.6-1.53,11.9c0,.51.06,1,.08,1.52.12,2.16.23,4.33.35,6.49l-8.66.94Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M996.77,459.09h0l-.18-1.1v0l.29,5.27.64,4.52-.27-4.47C997.1,461.92,996.94,460.5,996.77,459.09Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="987.48 517.33 987.45 517.23 987.42 517.66 987.41 519.31 987.48 517.33" style="fill:#d9dadb"></polygon><path d="M998.93,484.71l.13,2.41.08,4.92-.26-.67-.12,4.42.12,4.51-.31,3.28-.3,5.16-.84-2.72q-.18-3.74-.43-7.46l-.08,13.18.2,4.06.36.06-.05,5.15.77,4.13-.12,4.72.16,4.7-.13,4,.67-3.38.2-3.42-.2,6.52.54-8.61.22-31.35C999.5,494.13,999.26,489.49,998.93,484.71Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M998.46,476.41c-.09-1.26-.19-2.51-.3-3.77l-.38-4.9c-.23-2.45-.47-4.89-.74-7.32-.07-1-.16-2.07-.28-3.1.57,8.14,1.54,18,2.17,27.39l-.2-3.71Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M998.73,481l-.27-4.59c-.09-1.26-.19-2.51-.3-3.77l-.38-4.9c-.23-2.45-.47-4.89-.74-7.32-.07-1-.16-2.07-.28-3.1h0l-1.94-15.44-1.26-8.15q.09.64.15,1.29l2,14.53.25,2.58.35,2.52.45,4.44h0c.17,1.41.33,2.83.48,4.24l.27,4.47-.64-4.52,1,15.26-.22,7,0,2.09.69,11.52-1,1.8-.4-2.32v0q.25,3.72.43,7.46l.84,2.72.3-5.16.31-3.28-.12-4.51.12-4.42.26.67-.08-4.92Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="982.91 429.79 982.92 429.89 982.94 430.06 982.91 429.79" style="fill:#d9dadb"></polygon><polygon points="398.49 718.06 398.49 718.06 398.49 718.06 398.49 718.06" style="fill:#ff7b00"></polygon><path d="M410.79,722.1l-7.34,3.6,1.56,1.65,0,0,1.61,4.4,3.83,1.46c0-.1,0-.19.07-.29l-.15-2.92h0L415,727.2Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M555.62,698.52l.49-11.2,4.66-9,8.5-7.83-4.42-3h0l1.31-3.55-2.27-3,1.16-1.94H565l-7.57-9.54-4-1.31-2.71,3.49-3.56-1.33-2.88,2.51-5.93-2.74-.09-2.72-6.34-1.92-4.18.81-9.27-1.93-.75,3.78-5.23.89-2.57-2.56-8.69,3.87-4.41-.25-3.34,5.87-9.87-1.58L481,651.49l-4.67,2-5.24-7.5-6.52,1.78L462,652.6l-3.09.89,2.09,10L456,672.91l-.75,13.91-2.19,2.77c0,.13,0,.26,0,.4,0,1.31.07,2.62.1,3.93l-3.33,4.61-4.4.81-5.35,8.17,1.29,9.64L439,722.34l-3.54.89L430,729.68l-5-.22-.58-5.12-4.27,2.74-3.13,2h0l-2-1.88-4.62,2.85.15,2.92-.07.29,3.37,1.27-1.27,1.39q15.46.84,30.9,1.31l2.92,3.25-.59,4.75,7.9,9.87q7.73.18,15.42.27l.75-8.54,9.86-1.23c0,1.22.09,2.44.14,3.65q6,0,12,0l-2,5.64,2.41,5.35-1,5.73,2.91,3.57h0l-.44,10.79,14.84-3.21,4.64-1.47,2.44,4.39,5.62-1.48,1.34,3.31,9.81,1.89,4.07-2.84,3.38,3.88,7,2.62,5.94,5.91,6.77-.37c0-3.05,0-6.14,0-9.25l-5.78,1.85-6.64-5.88,1.93-11.17-3.19-5.57,4.87-5.28L562,754.57l-2-7-4.3-2.51L552,738.13l1.25-4.43-2.4-4,.41-12.75,1.25-.18-2-6-1.78-4.36,4.17-6.82Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M396.65,679.73l.87,0q-.11-4.78-.18-9.59l-.87-.06c-3-.19-5.88-.4-8.8-.61L383,666.29,384,676.8h0l-.81,2Q389.89,679.28,396.65,679.73Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M426.32,685.13l-4.63-8.49-8.31,2.09q-.09-4.31-.17-8.62l-6.33-2.88-9.59-.32c0,1.09,0,2.19,0,3.28q.07,4.8.18,9.59l-.87,0q-6.75-.45-13.42-1l-4.16,9.75-4,1.25,7.54,14.17,4.93.48.57,4.56,9.15,10.07,7.93-2.38-4.34-5.12c-.06-1.49-.12-3-.17-4.49l5.73.2,3.41-4.8h0l3.15,6.45,3.85.2,2.76-2.59,5.21,3-.2-16.51-5.9-3.45,2-4.8Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M456,672.91l4.93-9.44-.42-2,0,0-10.36-3.63-7.23,2.41,1.68,5.24-4.47,5.11,1.34,3.59-3.81,2.63-3.32-4.88-3.07,2.15-4.13-3.14-13.9-.82c0,2.88.1,5.75.16,8.62l8.31-2.09,4.63,8.49-5.58-.4-2,4.8,5.9,3.45.2,16.51-5.21-3-2.76,2.59-3.85-.2-3.15-6.45h0l-3.42,4.79-5.73-.19c.05,1.5.11,3,.17,4.48l4.34,5.12-7.93,2.38,6.17,6.65,7.34-3.6,4.22,5.1,2,1.88h0l3.13-2,4.27-2.75.58,5.13,5,.22,5.45-6.45,3.54-.89,2.42-5.19-1.29-9.64,5.35-8.17,4.4-.81,3.33-4.61c0-1.31-.07-2.62-.1-3.93,0-.14,0-.27,0-.4l2.19-2.77Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M464.59,647.76l6.52-1.78,5.24,7.5,4.67-2,2.56,2.86,9.87,1.58,3.34-5.87,4.41.25,8.69-3.87,2.57,2.56,5.23-.89.75-3.78,9.27,1.93,4.18-.81,4.78,1.45-1.07-5.67-4.55-4-4.38-.11-.15-5-9.32-5.28c0-1.16-.06-2.32-.1-3.48l-4.59-3.06-6.23.56h0l1.48-3.78-7.8-.39,3.07-9.19-6.65-7.66-3-3.54L485.71,600l.09,6-4.25.55-6.47,7.1q-5.71,0-11.43-.1l-4,8.25-7.08.62-7.07,3.76-3-3.4-10.74,4.49-1.64,3.92-2.6-.11-.27,4.47-5,1.26,3.9,8.26-.37,5.16,6.06,3.25-3.62,3.65,9.36,6.54,2.59,7,4.47-5.11-1.68-5.24,7.23-2.41,10.36,3.63,0,0-1.67-8,3.09-.89Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M528.89,610.42l-4.45-1.48-2.77-7.59-6.91,1.11-.82,4.11-4,3.51-2.2,7-1.47,3.78h0l6.23-.56,4.59,3.06c0,1.16.07,2.32.1,3.48l9.32,5.28.15,5,4.38.11,4.55,4,1.07,5.67,1.56.47.09,2.72,5.93,2.74,2.88-2.51,3.56,1.33,2.71-3.49,4,1.31L565,659h.08l3.05-5.07,7.16,2.43,7.26-2.7,3.59,1.87,4-4.46.18-.21,3.94-5.07q6-.52,12-1.1l0,0,0-.09-.33-7.34-4,2L598.45,637l-1.28-8.54-9-7.7-6-.73.64-6.5,8.66-.94c-.12-2.16-.23-4.33-.35-6.49l-6-2.35,1.18-5.44-4.6-4.4V581.6l-9.21,3.22,2.27,8.07-7.63,11.44-4.2.61-7-4.34-4.28,1.85c0,1.09.09,2.18.14,3.28l-19.16,2.06Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M509.35,445.74h0c.51,19.68,1,39.6,1.54,59.64,32.08-.82,63.68-2.89,94.33-6.09l-.86-1.83-.23-.5-12.07-9.6-.36-7.54-4.86-3.69L574.4,451.56,565.54,446l-2.25-14.28,7.36,11.74,6.67,3.6,4-8.41L575,422.52l-8,2.07-14-2.89-5.14,3.48h-2.3l-5.91,4.08L530.23,426,516,423.35l-4.34,1.14-4.55,3.82,3.76,5.26-4.4,5.25Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M613.39,534.35l4,1.56,3.76-6.66-.64-1.09-9.69-5.63-.7-4.11-2.39-13.76-2.54-5.36c-30.65,3.2-62.25,5.27-94.33,6.09q.21,8.08.42,16.2c-2.53.07-5.07.12-7.61.17,0,1.32.06,2.64.08,4q.3,14.91.62,29.87-4.86.1-9.72.16l2,5.11-6.45,4.83,2.91,4.71-7.9,7.55,2.38,6.63,5.73-1.46.44,5.56,4.52,3.43-1.89,7.73h0l6.65,7.66L500,616.68l7.8.39,2.2-7,4-3.51.82-4.11,6.91-1.11,2.77,7.59,4.45,1.48,3.72-2.63,19.16-2.06c0-1.1-.09-2.19-.14-3.28l4.28-1.85,7,4.34,4.2-.61,7.63-11.44-2.27-8.07,9.21-3.22v12.33l4.6,4.4-1.18,5.44,6,2.35c0-.51,0-1-.08-1.52l1.53-11.9,4.61.6q-.24-4-.49-7.95l4.39-7.92,5-.49q-.29-4.08-.59-8.16l2-5.55-2-8.26,4.73-8.43-3.32-5,6.47-7.15Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M503.78,525.71h0c-19.38-9.8-45-23.25-64.14-33.61l-8.31,4.33.4,12,6.87,10-3.46,3.72-1.41,24.11-17.91,17.95,4,11.1,5.83.26h0l5.07,14.87-1.08,7.68,5,7.61-12.14-1.1-3,4.49,10.05,7.29,4.8,4.76-2.54,6.09,10.75-4.49,3,3.4,7.07-3.76,7.08-.62,4-8.25q5.72.07,11.43.1l6.47-7.1,4.25-.55-.09-6,7.63-3.67,3,3.54h0l1.89-7.73-4.52-3.43-.44-5.56-5.73,1.46-2.38-6.63,7.9-7.55-2.91-4.71,6.45-4.83-2-5.11q4.86-.06,9.72-.16Q504.09,540.63,503.78,525.71Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><polygon points="386.65 350.69 392.37 347.99 395.19 338.58 392.33 332.51 388.56 335.29 385.75 334.31 386.17 343.3 383.63 349.29 386.65 350.69" style="fill:#d9dadb"></polygon><polygon points="502.31 350.88 499.56 347.85 495.65 352.36 500.3 354.41 500.3 354.41 502.31 350.88" style="fill:#d9dadb"></polygon><polygon points="396.09 316.94 394.67 317.27 392.92 319.04 390.9 319.44 390.05 321.68 390.84 324.07 390.01 326.58 390.52 329.05 392.57 330.5 394.64 327.44 394.5 324.66 396.75 318.84 396.09 316.94" style="fill:#d9dadb"></polygon><path d="M497.7,390.28l-2.34,4.39,8.74,4.87,12.25-2.24-1.65-4.8q-5.51.18-11,.3Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="420.24 358.16 415.9 356.56 411.56 357.13 410.7 359.37 421.76 365.12 424.18 368.17 427.62 369.46 429.5 365.57 427.87 362.56 431.5 356.22 420.24 358.16" style="fill:#d9dadb"></polygon><path d="M310.74,407.76l8.93,2.91,4.22-5-4.1-6q1.29-5.42,2.62-10.78l-2.73-8.1-14.88-4.22-1.25-5.24-2.82,1.06L289.67,386l-9.47,2.83-14.06,14.45L264.44,414l-15.35,12.06-8.93.67L238,428.56l-1.12,1.7h0q13.42,3.6,27.76,6.81,1-3.94,2-7.88l10-4.05,4.32.9,3.14-3.22q3.36.68,6.78,1.33l3.63-5.21,8.94-2.84-.71-5.44,4.95.89Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M227,438.37l-5.56,11.16-6.72,5.07-7.2,11-1.48.14-3,7.09-.74,1.8q11.53,3.57,23.81,6.83L228,469.56l3.79-3.22,4.35-.77q2.33-10.24,4.88-20.4h0q10,2.56,20.52,4.91,1.5-6.51,3.09-13-14.34-3.21-27.76-6.81l-3.28,5.06Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M410.65,414.76c.22-2.14.45-4.27.69-6.41l-.19-.11-8-4.92-1.89-4.13,5.77-3.86,3.54-4.58-4-7.78,5.24-7.81-8-2.68L395,375.15l-4.17,5.14L389.15,394l-7.53,5.09,1.64,6.14,3.9,2.44-.66,4.64,5.05,4.19-1,18.12,9.84-4.3-.2-6.21L412,417.62Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M343.39,521.13l13.35-1.28,14-11.57c10.24-6.54,25.51-12.39,36.43-17.71l-2.26-6.49-6.35-2.6-4.42.76.08-4.34L388,467.49l6.2-3.14-2.11-6.94,3.74-2.47-2.44-4.18c.29-2.74.57-5.47.87-8.2l-3.71-7.93,1-18.13-5.05-4.19.66-4.64-3.9-2.44-1.64-6.14,7.53-5.09,1.63-13.7h0l4.17-5.14-14.23-2.58-8.21,3-3.19-2.61-12.19-.61-2.76,1.49-10.57-.29-7.26,4.25-5.27-.23L323.85,382l-4.17-1.11,2.73,8.1q-1.34,5.37-2.62,10.78l4.1,6-4.22,5-8.93-2.91-3.07,3.8-4.95-.89.71,5.44L294.49,419l-3.63,5.21q-3.42-.66-6.78-1.33l-3.14,3.22-4.32-.9-10,4.05q-1.37,5.31-2.65,10.66l20.26,24.06c10.87,11.67,26,26.64,37.42,37.79-.17,1.33-.33,2.66-.5,4l6.06,4.79,3.08-.56,6,4.7L333.75,522Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M509.13,420.54,500,419l-3,.18-1.5-4.12-10.15-2.62-8.39,3.29-3.72,3.43.29,10.18-6.11,6-14.45-7.17-10.68-2.32-4.82-9.5-13.7-5.07-6.89.35-5.51-3.31c-.24,2.14-.47,4.27-.69,6.41l1.33,2.86-11.75,6.49.2,6.21-9.84,4.3h0l3.71,7.93c-.3,2.73-.58,5.46-.87,8.2l2.44,4.18-3.74,2.47,2.11,6.94-6.2,3.14,6.17,10.41-.08,4.34,4.42-.76,6.35,2.6,2.26,6.49L419.72,494l5.46,5.54,6.11-3.1,8.31-4.33c19.1,10.37,44.76,23.8,64.14,33.61h0c0-1.31,0-2.63-.08-4,2.54,0,5.08-.1,7.61-.17q-.21-8.12-.42-16.2c-.52-20-1-40-1.54-59.64l-2.86-6.93,4.4-5.25-3.76-5.26,4.55-3.82Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M413.21,670.11l13.91.82,4.13,3.14,3.07-2.15,3.32,4.88,3.81-2.63-3.93-10.56-9.36-6.54,3.62-3.65-6.06-3.25.37-5.16-3.9-8.26,5-1.26.27-4.47,2.6.11,1.63-3.92,2.54-6.09-4.8-4.76-10.05-7.29,3-4.49,12.14,1.1-5-7.6h0l1.08-7.68-5.08-14.87-5.83-.26.27,8.66,2.3,3-.88,5.17-2.28,1.45-3.52,9.64-4.34,1.51-1.21,9.63-4,.66-5.14,10.94-2.09,6.87-2.59-.17-2-.13-2.11-5.85-4.41,2.53-2.21-1.89-9.32,7.49,0,4.82-2.63,4.07,9.79,6.16,1.92,9.2-2.26,7.3v0l4.71,3.23c2.92.21,5.85.42,8.8.61l.87.06c0-1.09,0-2.19,0-3.28l9.59.32Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M284.21,463.92,264,439.86q-1.23,5.1-2.41,10.22Q251,447.74,241,445.17q-2.57,10.15-4.88,20.4l-4.36.77L228,469.56l-1.83,11.95q-12.27-3.27-23.81-6.83l-1.06,2.59,4,6L202.32,503l-5.06,10.61,12.63,1.51,3,5.67,3.8,1.08.13,5.07,4.81,8.6,3-1.07c.24-1.74.49-3.49.74-5.23l3.51-.79,2.45,5.93,3.76-2.16,4.86,1.15,4.57-2.33-.42,3.13q11.74,2.67,24,5.06l2.09-6.28-2.26-2.2c1-20.75,3.05-48.38,4.89-69.07Q278.45,462.83,284.21,463.92Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M201.22,534.55q-3.19-.93-6.33-1.88l-2,3.52-.47,2q2.56.8,5.18,1.56l5.7-1,1.89,2.42,5.76.72-.39-4.26-6.63-5.73Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M224.15,577.79l-4.31-1.08-1.9,1-2.38-2.1-3.92,7.22-1.24-.33.78,7.45,2.8,5,6.54,5.57.8,1,7.51-8.44-2.27-2.39c.16-2.39.33-4.79.52-7.18Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><polygon points="225.22 589.85 223.56 580.84 216.93 581.14 209.42 589.58 224.24 608.7 235.25 616.9 237.47 606.36 229.98 598.79 231.9 591.01 225.22 589.85" style="fill:#ff7b00"></polygon><polygon points="274.58 591.48 271.4 586.33 265.92 577.16 259.21 580.42 254.77 573.51 245.61 565.57 241.84 570.38 235.38 569.27 232.09 574.77 236.07 580.65 231.46 584.34 231.9 591.01 229.98 598.79 237.47 606.36 237.47 606.36 235.25 616.9 247.15 613.57 267.78 616.71 267.75 616.82 268.74 617.39 268.73 617.34 266.19 603.4 269.63 600.3 269.63 600.3 274.58 591.48" style="fill:#ff7b00"></polygon><path d="M203.27,538.77l-5.7,1q-2.61-.76-5.18-1.56l-.86,4.57.78,6,.74,1.16,7.29-1.13q5.07,1.47,10.27,2.89l2.87.77,2.22,2.47,2.69-1.49,1.66,3,3.85,1,1.32-5-.78-5.9-2.09.42-.9-2.87,1.34-3-1.17-5.36-4.81-8.6-.13-5.07-3.8-1.08-3-5.67-12.63-1.51-.6,1.26-3.32,7.6L190.62,524l4.27,8.65q3.13.95,6.33,1.88l2.68-2.63,6.63,5.73.39,4.26-5.76-.72Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M200.34,548.72l-7.29,1.13,2,3.09,4.86-.13L198.53,558l1.88,2.86.67,1,3.14-3.58c1.87.53,3.74,1,5.64,1.56l-1.62-5.15h0l2.37-3.11Q205.42,550.18,200.34,548.72Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M244,586.76l3.29-5.5-4.09-8.73,1.33-3.6-2.69-2.49L241.4,561l-3-2.41-2.8,4.88L231,560.58l-4.18,1.62-3.44-2.83.54-2.07-3.85-1-1.66-3-2.69,1.49-2.22-2.47-2.87-.77-2.37,3.12h0l1.62,5.15c-1.9-.51-3.77-1-5.64-1.56l-3.14,3.58,6.81,10,2,5.58.47,5,1.24.33,3.92-7.22,2.38,2.1,1.9-1,4.31,1.08,2.93,5.76c-.19,2.39-.36,4.79-.52,7.18l2.27,2.39,6.63-.3,1.66,9L243.8,603l-.44-6.67,4.61-3.69Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M247.28,581.26l6.46,1.1,3.77-4.81,6.4,5.58.29-5.16,3.34-1.8.32-5.55h0l2.81-.38,2.8-2c.26-3,.53-6,.82-9l2.35-1.46,4.51,2.7,4.64-3.25.85-2.9,5.31,1.54,1.27-4.56,8.9-4,3.32,2.66,2.63.39,7.05,1,2.77-2.25,13.11.57,3.9,1.65,6.54-8.18q.88-11,1.95-22l-9.64.85,2.52-7.34-6-4.7-3.08.56-6.06-4.79c.17-1.34.33-2.67.5-4-11.55-11-26.39-26.26-37.42-37.79q-5.76-1.1-11.39-2.25c-1.93,20.68-3.79,48.33-4.89,69.07l2.26,2.2-2.09,6.28q-12.28-2.4-24-5.06l.42-3.13-4.57,2.33-4.86-1.15-3.76,2.16-2.45-5.93-3.51.79c-.25,1.74-.5,3.49-.74,5.23l-3,1.07,1.18,5.36-1.35,3,.9,2.86,2.09-.41.78,5.9h0l-1.32,5-.54,2.07,3.44,2.83,4.18-1.63,4.63,2.88,2.8-4.88,3,2.41.44,5.46,2.68,2.49-1.33,3.6Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M278.09,615.39l2.54,13.94v0l6.65,3.77,22.68-7-3.55-8.9,1.6-13.55L303.53,596l2.91-12-4.78-2-3.44,2.86q-8-1.26-15.87-2.62L283.9,588c-.21,3.43-.41,6.87-.6,10.3l3.17,5.15-5,8.82Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M310,626.16l3-.95,4.78-.43-.91-3.93q.22-8.64.58-17.3L315,600.07l.81-4.93L311,591.47l.3-5.51-4.89-2-2.91,12,4.49,7.73-1.6,13.55Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M317.76,624.78l7.31-.36q.21-9.12.54-18.24l7.37-6.42c.06-1.56.13-3.13.2-4.69l4-3.47-4-7.28-4.49-8.21-4.7,1.32-3.33,7.85-5.11-4.15L311.33,586l-.3,5.51,4.76,3.67-.81,4.93,2.45,3.48q-.36,8.66-.58,17.3Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M301.66,582l9.67,4,4.22-4.83,5.11,4.15,3.33-7.85-2.36-4.25-5.22,1.12-3.64-7.74.57-3.8-5.27-12.44-2.63-.39-3.32-2.66-8.9,4L292,555.82l-5.31-1.54-.85,2.9-4.64,3.25-4.51-2.7-2.35,1.46c-.29,3-.56,6-.82,9l-2.8,2-2.81.38h0l-.32,5.55L264.2,578l-.29,5.16,2.75,2.37,4.45,6.9,6.7-3.26,5.49,9.17c.19-3.43.39-6.87.6-10.3l-1.55-5.78q7.84,1.37,15.87,2.62Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M435.1,522.1l3.46-3.72-6.87-10-.4-12-6.11,3.1L419.72,494l-12.57-3.41C396.27,496,379.88,499,369,504.32l-12.21,15.53-13.35,1.28q-1.06,11-1.95,22l-6.54,8.18-3.9-1.65-13.11-.57-2.77,2.25-7.05-1,5.27,12.44-.57,3.8,3.64,7.74,5.22-1.12,2.36,4.25,4.7-1.32,4.49,8.21,3.9-4.51q.35-6.18.73-12.34l4.9-4,6.13,3.68,6.69-2.87,3.66,4,1.73,7.24,7.27-4.22,7.77,6.23,7.45,1.39,3.61-6.07,11.15-.48,9.22,3.57,5.52-5.64,5-.22-2.09-5.91,17.91-17.95Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M352.45,645.87l13.1-.76,4.38-3.78,3.58,2.28,2.63-4.07,0-4.82,9.32-7.49,2.21,1.89,4.41-2.53h0l2.1,5.86,2,.13,2.59.17,2.09-6.87,5.14-10.94,4-.66,1.21-9.63,4.34-1.51,3.52-9.64,2.28-1.45.88-5.17-2.3-3-.27-8.66-1.86-5.19-5,.22-5.52,5.64-9.22-3.57-11.15.48-3.61,6.07L376,577.52l-7.77-6.23-7.27,4.22-1.73-7.24-3.66-4-6.69,2.87-6.13-3.68-4.9,4q-.39,6.16-.73,12.34l-3.9,4.51,4,7.28-4,3.47c-.07,1.56-.14,3.13-.2,4.69l-7.37,6.42q-.33,9.12-.54,18.24,6.74.86,13.58,1.65l5.22,6,5.63-1.49-2.27,9.64Z" transform="translate(-11.9 -11.98)" style="fill:#ff7b00"></path><path d="M497.26,98.49l.31,1,1.87.71,4.33-3.16-3.07-.42-1.37-1.78-1.42.52-.75-.75-1.36.73L492.69,94l-.42,1.78c-.91,0-1.83,0-2.74,0L492,97.13l2.17-.36-.23,1.74Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="469.59 97.55 471.17 96.91 471.29 98.43 472.83 99.94 476.89 92.99 478.21 92.61 478.65 90.88 480.55 90.46 481.46 91.43 483.65 90.91 482.75 89.36 480.22 87.74 478.71 87.64 478.17 85.5 475.23 84.12 474.41 88.17 473.22 85.52 472.38 84.57 470.76 86.95 470.3 85.47 470.79 84.6 468.81 84.04 467.55 85.14 465.69 85.42 466.07 89.66 467.67 90.12 467.77 91.49 472.4 88.95 471.9 91.39 468.08 93.05 468.14 93.85 469.15 94.37 468.59 95.76 469.59 97.55" style="fill:#d9dadb"></polygon><polygon points="484.77 97.56 489.24 94.6 485.42 93.66 485.22 92.34 481.91 93.04 482.42 94.23 481.52 95.82 484.93 95.54 484.77 97.56 484.77 97.56" style="fill:#d9dadb"></polygon><polygon points="329.55 148.01 327.74 149.76 331.64 150.53 336.18 155.51 343.69 154.08 348.07 154.65 351.82 151.77 352.75 153.37 355.15 151.17 357.84 151.19 358.35 148.97 360.3 148.14 360.6 143.8 361.67 141.74 359.13 140 355.22 140.76 352.85 141.89 350.15 139.16 346.37 142.06 346.98 139.01 343.82 141.75 341.2 141.85 344.08 138.28 342.06 134.8 333.36 138.99 335.09 140.37 337.6 139.74 339.65 140.61 337.67 142.3 330.62 142.58 331.77 145.09 335.58 146.08 333.9 147.84 329.55 148.01" style="fill:#d9dadb"></polygon><path d="M384.6,253.52l-2-2.67-3.73-.29-2.85.22q.92-2.37,1.84-4.71l1.05-1.12-.41-6.3-2.93-1.05,1-7.27-1.89-3.64-5.49-.88,6.67-3,6.22-6.39-5.55-1.64-4.43.76,8.22-6.25-6.34.07-1.41-1.49-6.34,6.3-.43,2.81-4.61,2,.34,2,4.31-1-6.72,5.81,1.29,2.14,3.94-.57-5.28,5.4,2.85,1.11,1.2-1.65,5.09-.64L365,236.42l.54,1.69,2.6.2-3.52,4.22,0,3-5.13-.9-1.61-1.78-3.8,4.55,2.84.43-1,3.32-6,2.4,5.68,3.25,7-.45-5.7,4.35-5.79-.77-9.56,6.44,7-2.09,2.85,2.07,2.15-1.76,4.31,1.66,5.51-2.1,7.66,2.17,7.83-3-4.93-1.67,5.5-2.32Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="356.48 194.59 356.84 192.25 353 193.35 351.63 197.34 356.48 194.59" style="fill:#d9dadb"></polygon><polygon points="353.07 198.76 347.3 201.5 350.35 203.85 353.07 198.76" style="fill:#d9dadb"></polygon><path d="M378.4,188l4.75-5.44c-1.9,0-3.8-.17-5.7,0l.52,2.31-1.18,1.72Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="384.93 185.18 385.14 182.98 378.88 186.46 379.67 190.37 384.93 185.18" style="fill:#d9dadb"></polygon><path d="M383,207.72l3.64-3.72-4.66-.17-2.38,3.3Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="333.96 222.71 334.55 224.62 338.56 222.66 339.6 225.67 345.18 222.66 344.25 216.47 341 217.49 341.01 216.06 333.96 222.71" style="fill:#d9dadb"></polygon><polygon points="332.55 238.72 332.55 238.72 332.55 238.72 332.55 238.72" style="fill:#d9dadb"></polygon><polygon points="338.39 217.22 338.62 215.16 332.17 218.13 333.89 219.91 330.6 222.44 325.19 220.21 325.25 223.31 321.56 225.53 325.47 228.45 314.7 234.77 316.33 237.65 314.91 240.74 320.86 240.89 326.78 238.19 332.55 238.72 336.89 233.43 339.6 225.67 338.56 222.66 334.55 224.62 333.96 222.71 341.01 216.06 338.39 217.22" style="fill:#d9dadb"></polygon><polygon points="11.22 504.47 11.22 504.41 11.22 504.28 11.22 504.47" style="fill:#d9dadb"></polygon><path d="M68.78,717.71l9.37,18.95,0,0L80,740.13l1.83,3.45,4.1,7.41h0l0,0,.2.36c6.2,10.54,14.58,23.45,22.07,34.82l-1.16-2.34L102.32,776l-5-8.24-1.44-3.58L95.77,761l1.9,1.81-.27-1,1.19.36-.5-1.73,6.18,4.57-1-3,1.38-.41q-1.16-2.48-2.27-5l-.43-6.15-3.4-10.35.35-2.54-2.66-9.92-6.46-20.25,1.91-1.28.62-10-.07-2.38,1.78-1.34,1.12-4.27-1.27-3.23,2.45.17-.13-14.24-4.78-16.16-1.79-2.89-4.07-2.48-5.77-10.54-2.16-6.17-6.22-11.15-4.19-1.93-2-3.63-2.36-1.64-3-6-1.17-1.39-1,3.5-2,.38,1-6.89-1-4.25L52.7,594l-1-2.95-.76-.29-.73-2.65-.91-.76L48.88,585l-2.36-3-2,7.32-.94-6.08.94-3v-4L42,570.94l-1.34-6,.4-8.63-1.81-5.56-.34-10,.11-6.69-.71-5.56-1.85,7.81-1.08,7.45-.69-.75-.2-3.2-.81-1.61-.53,2.2-1-2.27L31.49,532l-1.41.75.21,5.18-1.18-2.37h0l-1.21-2.69-.32,1.52-.47-2.88-.3,2.27-.58-.22-.58-7.39c0-2.26.05-4.51.1-6.77l-.21-5,.94-6,.05-12.63-.67-1.9-.54,4.79c-.09-.41-.17-.81-.24-1.21l-.49,2.68-.16-3.74-.37,2.88,0-9.14-.13-2.15-.47,15.8.09,6-.4,3.28v3.36l.14,7.71C26.27,616.64,50.84,675.06,68.78,717.71Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M114.19,795.23l-6-9,0,0Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="21.22 528.47 21.75 526.27 22.56 527.88 22.76 531.08 23.45 531.83 24.53 524.38 26.38 516.57 25.61 514.56 24.27 503.58 22.63 497.17 21.22 501.43 20.79 510.13 21.44 515.99 20.25 526.2 21.22 528.47" style="fill:#d9dadb"></polygon><path d="M34.52,509.16l-.22-1L32,502.55l-1,1.39-1.14-5.6-.58,7.4-.63-1.6-.93,7.42.77,8.7,0,5.31.49,4.11.13,5.88,1.18,2.38-.21-5.18,1.41-.75.66,6.17L33.34,528l-.65-5.87.43-8.7Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M29.32,505.74l.58-7.4-.64-10.4.43-4.84-.23-12.3-1.2,2.78-.52,6.13-.78-.9-.73,5.28-.37,9.74.67,1.9-.05,12.63-.94,6,.21,5c-.05,2.26-.09,4.51-.1,6.77l.58,7.39.58.22.3-2.27.47,2.88.32-1.52,1.21,2.69h0L29,529.68l-.49-4.11,0-5.31-.77-8.7.93-7.42Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M23.12,516.19c0-1.34.08-2.76.11-4.18l-.12,1Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M23.12,516.45v0Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M23.51,509.75l-.08-5.21c-.07,2.57-.13,5-.2,7.47Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M30.09,429.29,28.41,439l-2.86,22.94V462L25,467.83l0,.18c-.49,6.14-.81,13.16-1.07,20.31l.11,1.77,0,9.14.37-2.88.16,3.74.48-2.68c.08.4.16.8.25,1.21l.54-4.79.37-9.74.73-5.28.78.9.52-6.13h0l1.2-2.78v-1.52L29,467.22l.87-7.59-.06-3.39L29.35,452l.47-5.59.47,1.44.91-3.94-1-4.51-.21,0-.59,2.3-.35-1.1.75-6.81Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M23.42,503.74v.8c.14-5.27.29-10.78.48-16.22l0-.38Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="19.58 409.12 18.23 416.68 18.19 417.31 20.39 404.6 19.58 409.12" style="fill:#d9dadb"></polygon><polygon points="18.48 439.83 19.2 440.55 20 435.48 19.58 434.4 18.67 438.24 18.48 439.83" style="fill:#d9dadb"></polygon><polygon points="13.08 456.03 13.65 449.94 13.65 450 13.1 455.85 13.08 456.03" style="fill:#d9dadb"></polygon><polygon points="69.93 731.6 69.87 731.48 69.93 731.6 69.93 731.6" style="fill:#d9dadb"></polygon><polygon points="66.27 724.71 66.25 724.68 69.87 731.48 68.1 728.14 66.27 724.71" style="fill:#d9dadb"></polygon><polygon points="74.26 739.4 74.05 739.03 74.04 739.01 74.26 739.4" style="fill:#d9dadb"></polygon><polygon points="74.04 739.01 74.04 739.01 74.03 739.01 74.04 739.01" style="fill:#d9dadb"></polygon><polygon points="33.63 363.04 34.43 356.19 32.34 362.12 31.97 366.25 33.63 363.04" style="fill:#d9dadb"></polygon><path d="M51.54,346.81l-1.11,3.12-2.64,7.74-.11.32-.14.43-.77,2.38q1.21-3.71,2.49-7.36l.39-1q1.41-4,2.9-7.94c.43-1.48.92-3,1.46-4.44l-.43,1.13-1.27,3.44Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M46.68,364.64l4-13.57,1.79-6.16.12-.4q-1.48,3.94-2.9,7.94l-.39,1Q48,357.1,46.77,360.8L46,363.28l.77-1.75-1.25,5.7Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M201,182.18l-5,1.39-9.86,5.73L182,190.57l-.93,2.67-3.94,1.81-2.2,2.79,1.9,2.86.95,4.16-4.4,2.07.49,2.41,5-2.09.11,1.44L175.32,212l-.67,2.71,1.12.67,7.14-6,1.13-2.37-1.57-.21.94-2.51,4.11-1,2.44-2.16L188.5,200l2.9-2.95.25-2.27-2.72.81.09-1.86,2.62-1.93-.09-2.94,10.35-4.9C201.6,183.35,201.32,182.76,201,182.18Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M183.32,183.54l1.16-1.17,2.54-6.56c-1.15,1-2.28,1.93-3.42,2.9l-2.41,4.93Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="153.66 193.09 158.9 186.62 159.99 184.38 153.2 189.08 151.39 192.51 153.66 193.09" style="fill:#d9dadb"></polygon><polygon points="225.69 104.44 230.11 101 226.82 102.08 221.33 106.38 225.69 104.44" style="fill:#d9dadb"></polygon><polygon points="221.33 106.38 221.33 106.38 221.33 106.38 221.33 106.38" style="fill:#d9dadb"></polygon><path d="M365.16,60.41l5-.22q.87-.86,1.83-1.68L370,57.74l-2.9.32-2.87.08-7,1.45-4.69,2.74-2.14.7-.14-.7,3.15-1.58-4.62,1.4-3.94,1.93c-1.62,2.45-4.6,3.51-6.17,6L334.48,73c-.34.46-.66.91-1,1.37l2.55-.88,1.58-1,1.33.21-2.83,2-3.48,1-4.1,3-2.82.29c-.29.5-.56,1-.81,1.51l-3.75,1.48-3,3.13-7.55,3.6-.66-.34-5.7.55-5.63,3-1.08-1.19L300,88.32l.7-1.54c-3,.45-3,.45-7.25,2.2l-2.06,2.45,1.07.95-3,3.32-3.16,2.38-2.57,1-6.38,5.54-.53,1.41-3.05,2.34-4.81,7.25,2.48-1.36,3.71-3.49,6.73-6L283,105l-4.62,5.25-3.44,3.21L274.2,115c12.47-6.72,12.47-6.72,14.56-8.24l4.65-4.71,6.44-3.5,4-2.14-.12,1-3.47,3.32-7.19,4.11-1.89,2.81,5.1-2.07,1.11.82,5-2.44.84.59,4.46-2,9.37-8.55-1.78-.49,3-1.2L319.68,90l3.82-1.71,1.51.84,6.21-3,3.3-2.09L336.85,82l-.77-.8,3.56-1,6-4.16c.1-.27.21-.53.33-.8l3.95-1.26,4-2.16c.4-.77.84-1.55,1.33-2.33L352.65,69l2.1-1.23-2.42-.41,6.59-1.26,6.95-2.2L367.5,63l-1.14-1.6-3.94.44-5.15,1.65-2-.35,4-1.57Q362.2,61,365.16,60.41Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="301.29 71.36 302.3 72.23 307.58 70.19 309.23 68.25 305.95 68.6 303.14 69.82 301.29 71.36" style="fill:#d9dadb"></polygon><polygon points="277.59 76.17 279.38 75.87 285.75 72.27 288.84 69.94 292.11 68.37 294.32 66.97 294.55 66.16 301.35 63.21 299.47 63.51 292.25 65.73 288.49 67.31 286.08 67.81 285.54 68.82 281.58 70.68 282.71 71.15 282.8 71.69 283.54 71.88 280.8 73.55 277.59 76.17" style="fill:#d9dadb"></polygon><path d="M287,88.41c.66-.81,1.35-1.62,2.07-2.42l-4,1-2.41,2.25Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M274,96.17l6.71-2.44c.39-.56.79-1.13,1.2-1.69l-4.42,1.74L274,96.17Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="345.76 55.89 346.84 57 345.07 58.42 352.56 55.59 351.36 54.6 354.69 52.91 345.76 55.89" style="fill:#d9dadb"></polygon><polygon points="341.44 42.44 333.93 45.91 333.55 46.63 344.53 42.74 343.16 42.84 343.84 41.91 341.44 42.44" style="fill:#d9dadb"></polygon><polygon points="396.15 27.05 398.88 25.43 396.76 25.09 396.02 24.61 392.92 25.51 386.93 26.87 390.69 25.61 390.97 25.31 387.02 26.06 380.17 28.37 375.82 29.42 380.01 27.93 383.52 26.51 379.66 27.39 372.93 29.48 366.48 30.96 360.34 33.57 358.59 34.67 358.89 35.05 352.14 37.22 346.94 39.47 348.77 39.37 352.11 38.67 347.79 40.33 351.39 39.75 357.28 37.77 358.02 37.21 360.26 36.38 366.37 35.29 376.74 33.28 382.45 31.63 381.49 31.49 373.31 32.91 373.27 32.34 381.33 31.03 384.66 30.12 384.19 29.58 386.42 29.32 391.18 28.11 390 27.83 391.74 27.21 396.15 27.05" style="fill:#d9dadb"></polygon><polygon points="400.02 26.16 406.67 25.14 408.5 24.02 415.71 23.02 420.37 21.58 416.41 21.73 414.51 21.32 415.19 21.01 413.58 20.95 413.42 20.53 408.35 21.44 403.17 22.05 398.93 23.51 403.13 23.49 402.53 23.82 403.46 24.04 403.46 24.04 400.02 26.16" style="fill:#d9dadb"></polygon><polygon points="355.82 41.58 365.39 39.69 367.32 38.67 371.19 39.08 373.12 38.44 373.27 37.56 376.34 36.75 370.31 37.18 368.73 36.94 373.44 35.66 371.56 35.6 367.16 36.7 364.56 37.73 354.97 40.38 355.71 40.64 359.66 39.87 355.65 41.04 355.82 41.58" style="fill:#d9dadb"></polygon><path d="M448.94,86.36l6.51-2.11-1.06-1.72L451.62,82l-3.05,1.25-.17-1.32-3.12.59-3.11.78,4-1.92,2.66-1.52-1.91-.16-2,.83-4.5.14.69-.71,3-.6-1.8-1.41,3.42-.75,1.5,1.49,5.52-.25V77l-2.28-.46,2.48-.75-.65-.71-.66-.68,1.82-1.1-1-1.06c-.8-.39-1.84-1-2.62-1.39l-1.92.38,0-.49-2-1.11-1.36.32V68.89l-2.74.41-1.09.59c.41.41.85.8,1.32,1.2l-.38,1-2.26,1,.27-.9-1.94.47,1.56-1-.9-1-5.93,2.16,2.09-2.17,1.78-1.16-.38-.9-4,1.86-.73-.82.63-.88-4.2.66,6.54-1.93c-1.16-.36-2.69-.92-3.84-1.32l-2.64.85-2.8,1.61-.6-1.2,4.09-1.46-5.78.77.92-1.08-.94-.28-7.35-.64-2.75.73.57.88.49.74-7.58.36.45-2.07-2.79.72-2.14-2-2.79.22L395.15,67l-2.31.47-.63.6,2,1.27-1.8.82-4.19.74,1.45-3-1.51-.34-2.34,1.28L385,70.41l-2.14-.61-3.58,1.67,1.37.78-1.88.91,1.84.13-1.85.95,3.27-.3-.36,2.85-3,2.91-3,.7-5.63,4.14-7.65,2.85-2.06,1.8L355,90.58l-1.81,1.8-2.85.27L348.76,94l-2.39.51-1-.33L343,95.85l.94.82,5.42-1.11-4.49,2.71,1.3,1.06-4.1,2.36-3.43,2.25-1.61-.16,2.45-3.43L339,99l-1.83.2L333.31,104l1.3,2.27-8.31,3.5.21-2.3L317,110.26l-.52,1.88-4.49-.07-6.87,4.38-3.9,3.37,2.23.48-5.57,2-5.56,3.83,1.79,1.18-6.87,3.4-8.18,8.16.63,2-7.67,5.83.9,3.1,4-.3-6.37,5.69,3.3,2.66L287.13,150l5.4-6,7.24-.7,2.75-2.51.36,1.95,2.71-2,2.13-3.2,1.17,1.43,2.62-3.53,6.91-.91,0,2.09,5.93-3.26-2.48,3.44,8.86-.58,10.12-4.12,2.8.3,3.58-1.83-.32,1.59,3.64,1.29,10.75.36,4.77-1.72,2.7.33,6.43-1.6L371,127l-7.13.67-1.19-1.57,5-.81,7.21-2.42,1-2.82,1.89,1,.52,1.65-1.66,2.57,1.68,4.24,7.4-6.86c-.67-.24-1.32-.49-2-.74l2.54-1.07-.79-3.45-1.71-.59,3.53-3.69,6.25-1.16,1.07,2.75,4.46.18-.9-1.78,1.66-2.42,5.55.81,2.57-.73.73-3.42-2.37-.11.26-1.29,3.78-2.35,1.16,2.52,1.56.12,3.19-2.89L414,101.87l2.55-2.82,2.85.11,2,2.21,1.69-.74,3.11-3.84-.55-1.69-3.43.79,7.83-4,3.65,0,2.11-2,2.06.21,1.95-.46-1.6-.93-1.54-.12,1-.87,2.07-.43,2.42,1.09,2.7-.77-2.24-1,2.31-.88Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="423.68 59.18 427.26 57.85 426.44 57.33 424.62 58.23 423.68 59.18" style="fill:#d9dadb"></polygon><polygon points="423.04 56.54 424.94 55.35 422.19 55.95 421.37 56.87 423.04 56.54" style="fill:#d9dadb"></polygon><polygon points="380.79 54.84 382.72 53.55 380.09 53.61 378.21 54.7 380.79 54.84" style="fill:#d9dadb"></polygon><polygon points="317.45 93.89 321.17 88.84 314.46 91.25 313.6 93.32 317.45 93.89" style="fill:#d9dadb"></polygon><path d="M437.66,61.3l.13-.7,1-.41c.07-.3.15-.6.24-.89l1.75-.62.25-1.52-2.35-.28.52,0,.09-.15a14.72,14.72,0,0,1,.89-1.23l-2.8-.43-2.29.26c.17-.21.36-.42.55-.62l2.08-.5.41-.74L437,53.31l-2.39.3-.15-.38,2-.23.6-.61-1.37-.18,1.4-.3-1.35-.77-2.05.39-.94.73-1.6.28L430.5,52l-2.78.46-2.93,1.09L426,54l-1.71,0c-.44.43-.87.86-1.27,1.3l1.23.11-1.67.38-.39,1.49-1.65-.21L419.9,56l-2.87.66,3.05-1.23,1.54-1.11-2.56.16-1.59.49-5.36.9L410.54,57l-1.86-.21c.32-.37.66-.73,1-1.09l1.86-.34-.81-.68-3.21-.2-1.3.24-2.33,1.16-3.62.8-1.79,1-1-.71,1.25-.66,3.47-.6c.4-.39.82-.77,1.25-1.15l-4.27.77-1.79.1.79-.69-1.45-.87-3.31,1c-.57.48-1.12,1-1.65,1.45L389,57.5l-.28.87,2.8-.77-1.86,1.28-1.23.43-.6.58,1.7.14-1,.66-2.72.43.67,1,2.13.62,3.05-.9L390,61.59l1-.6,2.05-.16,2.35-.6-.39.87,1.64.13,3.29-.67c-.34.52-.64,1-.92,1.55l6.1,0L407,61c1.77.36,1.77.36,4.06-.32l.16.91,2.37-.48L412,62.23l.33.84,1.31-.42,3.09.43,2.16,0,6.3,1-.72-1.44,2.66-.07,1,1.43,4.21.57,1-.17,1.15-1,2.22-.59c0-.14,0-.29,0-.43l.83-.31-3-.47.74-.52Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M426.64,51.53l6.25-.68,1.23-.54-1.48-.14-.12-.43-3.39-.61-2.88.65.8-.68H425l-4,.72-1,1.08-2.65.74,1-1.05-1.07-.21L414,50.8l-1.11.78-.61-.31-2.42.57c-.44.33-.87.65-1.28,1l2.63-.06-3.32.61c-.23.18-.45.37-.67.56l4.75-.29L413.51,55l2.87-.37c.35-.34.73-.69,1.11-1l1.58.1,3.27-.58-.32-.46,2.57-.2Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M396.37,53.22q.86-.64,1.77-1.29l2.34-.54,3.57-1.31.24-.77c-5.71,1-5.71,1-7.94,2.13l-.42.6-5.44,1h-1.1l-2.69.18L382,54.48l1.19.25-2.34.61-.4.76.36.72-2,.17a47.76,47.76,0,0,0-3.9,3.69l2-.11-2.79,1c-.72.81-1.38,1.62-2,2.45l2.08,0,2.06-1,2.45.32,2.59-1.75,1.8-.3-.63-1.1,2.6-1.18-1.36-1.38,2.37-1.05-.23-.84,4.27-1.31,3.11-.64-.29.56Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="424.64 23.16 420.86 23.85 421.47 24.19 418.75 24.25 420.02 24.89 419.52 25.89 416 25.86 416.92 26.38 416.92 26.38 416.95 27.11 421.17 26.88 420.63 26.63 423.51 25.79 423.5 24.7 424.98 23.6 424.64 23.16" style="fill:#d9dadb"></polygon><path d="M420.25,40.12l1.85-.64,2.06,0,2.43-.87-2.22.17,1.13-.62L425,37.8l-2.43.25,1.54-.67L423,37.21l-4,.82-1.91.51.4.5-3.68.81.54-1-2.4.46c-1.06.36-2.12.73-3.15,1.11l.22.74-1.61,1c-1.34.53-2.65,1.07-3.92,1.63l4.33.3,3.2-.77-1.76-.19,3.66-.6,4.43-.15,2-.31-.81-.74-3.38.32-.62-.22-2.88.36,4-1.26Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M376.4,56.37l1.31-1.62,3.81-1.29.81-1.26-7.41.64-6.12,1.45-1.5,1,5.37-1-4.16,2Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M410.69,45.08l.91-.42-5.66.48-4.41.86-1.83.88-.46.95-2.18-.16-2.74.35-2.4,1.69,2.95-.38,2.36.08,5.58-.42,2.26-.76-1.53-.14,1.95-.42,1-.53-2.93.14,3-.64.72-.41-3.51.35-.83-.12,4-.67Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M385.3,52.61l4.16-.17,2.29-.73,1.24-.8-1.92-.36-4.23,1.14Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M422.33,44.61l-1.16.77-2.13.86-3.48.32L414,47.4l1.56.09,3.61-.31,3-.29.54-.28,2.33-.28,1.2-.59,2.58-.25c.79-.38,1.6-.74,2.42-1.11l-2.82-.07L426.8,45l-3,.18,1.19-.83Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="383.77 32.84 384.83 31.89 377.78 33.46 381.16 33.65 383.77 32.84" style="fill:#d9dadb"></polygon><path d="M423.91,41.72c.54,0,1.07,0,1.61,0l1.61.46,2.95-1.48-1.29-.44a15.58,15.58,0,0,0-2.47.3A19.45,19.45,0,0,0,423.91,41.72Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="403.09 38.03 408.32 36.5 408.86 35.82 400.85 36.65 400.34 37.97 403.09 38.03" style="fill:#d9dadb"></polygon><path d="M425.49,48.07h2.93l2-.65-3.11-.2-.87.48Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="395.54 39.12 398.34 37.59 397.24 37 392.87 39 395.54 39.12" style="fill:#d9dadb"></polygon><polygon points="388.24 41.84 390.75 41.78 392.48 41.16 392.9 40.43 389.58 40.79 389.12 41.43 388.24 41.84" style="fill:#d9dadb"></polygon><path d="M420.33,44.27l1.18-.52-5.54.34-2.84,1Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="420.92 30.16 422.65 28.82 421.29 28.8 416.5 30.54 420.92 30.16" style="fill:#d9dadb"></polygon><polygon points="420 28.29 422.17 28.11 422.35 27.82 419.02 27.71 419.02 27.71 420 28.29" style="fill:#d9dadb"></polygon><polygon points="388.13 33.19 388.19 33.68 390.12 33.43 391.62 33.03 390.23 32.74 388.13 33.19 388.13 33.19" style="fill:#d9dadb"></polygon><path d="M535.09,23.45l-6.94-.29-3.38-.09-.89,0h-.23c4.51.12,9.11.26,13,.43Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M499.54,23.34l1.44-.11.44.08,2.41,0,3.23-.19h4.7l5.79-.09,2.48,0h3.62l-10-.23c-9.51,0-9.51,0-28.38.69-9.47.51-9.47.51-28.38,2.36l-2.62.31a21.52,21.52,0,0,1,2.41-.17l4-.44,3.25-.28,5.81-.58,2.89-.21c1.29-.1,2.58-.21,3.87-.3l6.36-.36,2.52-.17,1.6-.06.56-.06,3.34-.11.83.05,3.13-.05,1.13-.12-2.18,0,.32-.1,3.83-.06-.3.09Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M391.34,37.9,391,38l-5.78,1.5h0l-3.68,1,.55-.07-.19,0,10.52-2.81Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M394.71,37l-2.25.6,6.1-1.51c-3.1.86-7.27,1.94-10.35,2.89l-2,.52.18-.14-5.72,1.66-2.12.38,3.42-1c-11.47,3.09-14.32,4-24.3,7.29l-14.26,5.1-4.76,1.82,1.36-.59c-10.84,3.95-15.29,5.82-26.74,10.85-29.07,13.86-33.53,16-55.6,29.13-14.44,9.44-33.41,22.49-47.27,32.76l.07-.06-5.79,4.63,2-1.27-3.56,3.22L196.27,139l-2,2-8.75,7.63L176,159l-8.34,8.38-2.68,2,7.36-7.72-9.78,9,0-.64-4.28,4.11.83.05-1.7,2.74,3.54-2.75-1.76,3.72-.6.81,3.74-1.82a56.5,56.5,0,0,0-3,7.83l2.62,0,2.89-3,4.62-2.46,1,1-1.42,2.35-7.22,6.32-3.58,4.93,3,2.24-2.13,2.36-5.52,2.11-5.4,6.34,4.6-1.1,3-2.21-.07,3.82,4-.26,3.26-5.7-1.88-.25,4.74-9.19,2.71-2.65,1-2.23,4.31-3.28,1.43-4.94,3.21.1-1.33,2.44,1.23.27,3.87-3.17.88-3.55-.88-1.65-6.24.29-4.22,1.63,8.29-6,5,.35,3.5-1.26,1.73,5-1.77,8.49,5.18-1.29,3.5-2.11,3,1.43,4.4-1.29,1.3.26,5.25-4.75,1.69-3.23-.74-1.13,3-2.2-.19-1.9-4.7-.27,5.19-3.81,4.71,1.39,2.43-2.88-.66-2.75,2-1,.14-2.29,3.92-3.34,2.07-4.09,2.26-.83,1.14-1.83,3-1.36,6.6-5.79.94-2.19,3.53-1.81.57-1.57,2.59-1.19,6-4.8.9-1.24-9.34,4.67-.11-.85-4.8.3,2-2.31,5.33-4.66c.05-.27.1-.54.16-.82l11.51-5.75,2.17-2.19.62-2.29,3.56-1.78,7.39-6.26-1.74-.38c.28-.62.57-1.24.88-1.85l3.57-1.61.92-2.22L278.54,96l-6.22,3.57-1.79.32-3.6,2.21-3.39,1.38-3,2.19-7.89,2.53-10.88,8.33-10.51,5.55-3.71-.69-6.71,5.22-4.28,2.61L209.23,135l-.12-.51L204.2,138l2.55-2.5-1.36.38,9-7.94,14.09-9.74,3.17-1.53,2.83-2,4.47-4.68-1.11.19,3.47-2.11,7.82-6,7.77-5,7.14-5,1.68-1.73,3.2-1.52,8.35-4.45L279,83.17l-.89.29,4.8-2.57,8.42-3.72,4.85-1.63.64.15,2.27-1.06.23.38,2.65-.86-2.2,1.55.61.24,5.73-3.19,3.27-1.33-5.72,3.39,2.83-.68-2.76,1.46-.16,1.09,4.82-1.17,4.6-3,5.2-2.89-1.12,2-5.19,2.79,3.47-.59,3.7-1.32L317.32,74l-2.32,1-1.8,1.59,2.55-.85-2.2,1.55,2.31.27-.27.53,2.82-.7,5.61-3,2.13.5,2.4-1.14,1.32,0L334.08,71l3.67-3.37L333.19,69l-2.46.31-3.93,1-2.6-.21,6.32-2.64,3.68-.79,5.27-2.34-5,1,2-1c2-.54,4.06-1.05,6.1-1.56l4.64-2.38,3.4-.59,4.57-1.67,8.18-2,3.3-1.5-2.18-.72L359.57,55,355,56l-6.66,2.76-3.31.73-.67.68-3.35.68v-1l-2.17.26,3.41-1.33L346.35,57l-4.44,1.38c2.76-1.47,6.39-3.5,9.19-4.88l5-1.75,1.48-.88,7.65-2.46,3.35-1.65-2.15.4-2.68,1.11-2,.22,2-.79-.74-.09,5-1.24,3.35-1.66,9.7-3.16,1.51-.28-1.9.78,2.94-.7,5.45-1.7,7.87-2,3.91-1,3.64-.7,3.63-1-.47-.09,2.88-.72,3.14-.27,2.2-.54-1.86,0,4.28-.83,2.2-.24,4.66-.72-1.88.11.31-.28,2.82-.62,2.2-.37-2.1.6,1.09-.1,2.94-.63,1.44-.44-1.25,0,1.42-.32,2.56-.4-1.68.39.88,0,2.19-.47,2.74-.4,2.5-.44.75-.17-2,.27h0c-4.52.66-9,1.35-12.9,2C406.57,34.16,405.76,34.31,394.71,37Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M345.09,52.18l2.08-.84-5.53,2h0l-1.66.71,3.4-1.23Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M448.85,27l-8,1.09-1.95.28,1.12-.11c3-.44,6-.87,8.84-1.26Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M456.63,26.05a21.52,21.52,0,0,0-2.41.17l-5.33.73,2.67-.3Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="198.55 114.75 197.65 115.47 198.47 114.82 198.55 114.75" style="fill:#d9dadb"></polygon><polygon points="192.59 119.51 192.75 119.39 192.76 119.39 197.65 115.47 191.91 120.05 192.59 119.51" style="fill:#d9dadb"></polygon><polygon points="168.61 140.22 172.05 137.09 172.05 137.09 168.61 140.22" style="fill:#d9dadb"></polygon><polygon points="176 133.97 179.39 130.66 183.77 126.9 184.53 126.18 183.99 126.62 174.59 134.79 172.05 137.09 171.46 138.18 176 133.97" style="fill:#d9dadb"></polygon><path d="M110.68,232.47l1.1-1.1.1.52,2.2-2.94.61-.46,1.86-2.47.89-.91,4.55-6.05,7-9.34,3.85-4.16-1.32,1.86-3.69,4.78-3.54,4.38,1-.53,2.71-3.15,3.45-4.58,1.43-1.08-3.32,4.25,2.83-2.5,3.16-3.75-.54,2.88,2.43-1.81.75-2.36,2.51-2.11-.32,4,3.06-4.15,4.07-3.75,4.63-1.72,3.18-2.52.06.77-1.66,2.27,1.64.15,3.06-3,3.57-4.92,7.22-6.32,1.42-2.35-1-1-4.62,2.46-2.89,3-2.62,0a56.5,56.5,0,0,1,3-7.83l-3.74,1.82L156.9,181,154.09,183v-2l-1.68,1.23-.26-1.34,4.94-5.35C138.93,194.54,133.9,201.16,110.68,232.47Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M167.18,165.64l2.37-2.71,2.79-2.28,3.71-3.46,3.19-3.41L177.65,155,174,158.35l-6.16,6-.58.59c-3.1,3.2-5.85,6.07-8.37,8.7l3.75-3.6Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M108.72,235.08l-.21.31,2.17-2.92-.14.14Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M158.33,174.13l-1.25,1.36,1.78-1.87Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="423.16 223.71 426.34 229.11 430.1 223.64 428.72 220.72 426.5 223.42 423.16 223.71" style="fill:#d9dadb"></polygon><polygon points="417.77 172.55 412.46 173.87 415.13 176.03 417.77 172.55" style="fill:#d9dadb"></polygon><polygon points="485.11 129.07 481.03 130.9 484.11 132.64 485.11 129.07" style="fill:#d9dadb"></polygon><path d="M473.39,222,471.72,230l4.45-4.18.18-2.16h0l2.38-3.26Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="563.16 135.53 564.82 132.67 559.85 132.68 559.52 135.05 563.16 135.53" style="fill:#d9dadb"></polygon><polygon points="568.42 87.79 568.42 87.79 568.42 87.79 568.42 87.79" style="fill:#d9dadb"></polygon><path d="M583.16,134.81l1.18-.94,5.39-1.23-5.51-1.74-8.31-6.19.57-3-3.66-1.39.22-1.26,2.66-.13-.44-1.95-2.13-.8,1.81-1.21-2.77-2.69.9-1.29,1.94.42.17-1.2-1.81-.73.76-2.14,4-4,0-.8,2.23-2.84-1.22-1.6-2.32-1.11-2.12.76.84,2.16-3.57,3.18-2.73.33.14,1.56-2.51,2.45,1.14,1.66-1.28,3.21,2.78.54.36,2.73-3.1,2.61,2.06.78,2.52,7.36-1.81,2.09.74,1.76,6.32,1,1-.42,2.27,1.7-.56,2.11Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="565.37 62.16 569.05 61.97 566.66 60.6 567.39 59.05 564.39 57.99 558.38 57.9 559.44 58.69 559.6 59.78 562.64 60.68 562.51 61.2 565.37 62.16" style="fill:#d9dadb"></polygon><polygon points="567.86 64.09 570.59 64.18 570.13 62.86 568.73 63.13 567.86 64.09" style="fill:#d9dadb"></polygon><polygon points="569.75 60.99 570.36 61.56 572.85 63.43 573.63 63.03 576.82 63.62 578.43 62.62 580.25 62.63 580.94 61.04 577.75 60.41 573.16 58.62 571.59 59.28 572.28 60.31 570.28 59.78 569.75 60.99" style="fill:#d9dadb"></polygon><path d="M599.67,75.15l.35-.48-1.5-1.32,1-1.2-2-2.13-5.07-.23,1.44,1-3.63-.92-1.38.12L594,72.24l-.34.51Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="588.49 58.18 591.7 58.07 589.42 57.2 586.77 56.91 588.49 58.18" style="fill:#d9dadb"></polygon><polygon points="598.8 39.36 604.4 40.16 607.12 39.62 606.58 38.72 601.86 36.83 602.67 36.56 600.51 35.64 594.52 34.3 593.81 35.15 595 36 593.69 36.66 598.5 37.35 595.7 38.34 598.8 39.36" style="fill:#d9dadb"></polygon><polygon points="611.85 38.83 615 38.64 614.34 37.04 612.44 36.66 609.41 36.99 610.48 37.96 609.48 38.62 611.85 38.83" style="fill:#d9dadb"></polygon><polygon points="594.68 31.74 592.76 31.15 590.65 30.89 591.64 31.87 593 32.35 591.87 32.43 594.07 33.34 592.85 33.58 595.89 33.95 596.21 33.33 595.88 32.98 596.37 32.67 594.68 31.74" style="fill:#d9dadb"></polygon><polygon points="553.67 14.85 549.98 14.49 550.84 14.91 555.49 15.48 560.41 15.94 561 15.79 557.76 15.4 553.67 14.85 553.67 14.85" style="fill:#d9dadb"></polygon><polygon points="749.45 79.98 745.84 78.05 740.1 74.9 743.57 76.98 748.6 79.71 749.29 80.24 759.55 86.26 762.75 88.12 765.23 89.73 775.42 96.45 761.88 87.5 755.07 83.34 749.45 79.98" style="fill:#d9dadb"></polygon><polygon points="878.82 191.73 878.34 191.13 878.79 191.69 878.82 191.73" style="fill:#d9dadb"></polygon><polygon points="888.09 203.48 887.4 202.6 887.58 202.82 888.09 203.48" style="fill:#d9dadb"></polygon><polygon points="880.33 193.59 885.48 200.11 887.4 202.6 886.62 201.59 885.11 199.63 885.26 199.83 880.51 193.81 880.33 193.59" style="fill:#d9dadb"></polygon><polygon points="477.22 141.09 477.22 141.08 477.22 141.08 477.22 141.09" style="fill:#d9dadb"></polygon><path d="M515.23,154l2.93-3,2.3.47-.62-3.18h0l-4.08-.77,4-2-6.13-3.3-2.62-.75-1.71-.51-1.14,1.59-1.58-.77-3.89,5.92-.57-2.71.77-2.88-4.63,2.35-1.33,4.12-1-1.62L493,145.78l-2.59,1.08,2.36,1.1-.85,2.6-4.37-2.87-3.28,1.69.69,2.37-2,.59-2-2.22-1.51,1.56-2.69-.12,2.65,3-4,2.24-.28-3.45-1.73.28-.78-1.17-8.09,7.07,6.44-2.27,1.73,1.51-4.5,2,1.55,1.8-3.57-.09-4.61,2.36.71,1.73L457.92,168l-3.48,5.55-.12,2.26-8.16,3.75,3.72,2.67-4,1.68-2.08-1.4-1.72,1.19L440,180.92l-2.14,2.49.43,4.23-2.2,1.14-1.23-3.18-3.36.41-4,5.17-4.61-1.35,1,2.71-2.36.69-.29,1.76,7,.28,1.93,3-10.64-.18,2,2.16L419.08,202l3,1.82,4.64-1.43-4.07,4.51-5.5-.69-1.05,6.16,4.92,2.94-1.32,1.81,6.27-.84,1,1.2,6.16-4.27,1.75-.17.32-2.81,3.07,1.2,2.12-4.07,2.48,5.82,0,.57,2.5-1.29.34-4.09,4-1.2-.24-6.32,2.26.13,1.5-2.9-2.32-3.37,1.05-3,.3-5.94,4.83-4.8,4.24,1.28,1.12-3L461,177.18l4-3.25c.33-1.64.67-3.27,1-4.89l3.37-.7.08-1.29,3.42-2.11.51-2.87,4-2.95,2.7.74,1-3.18,4.51,1.51,1.53-.66-.31-3.78,2.21-.68,2.75-.88,1,1.28,1,1.27,3,.48,1.71-.91,4.06,2.26,2.7-2.44-1.28-2.39,1.69-2.81,4.73-1.34,3.5,2.33-.79,1.89Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="423.25 219.66 423.25 219.66 423.25 219.66 423.25 219.66" style="fill:#d9dadb"></polygon><polygon points="421.86 214.28 424.25 212.01 425.11 208.76 415.89 211.37 416.56 213.82 411.29 215.45 409.34 223.05 411.42 225.38 410.92 230.03 417.41 231.01 415.31 228.04 419.19 222.52 421.67 218.71 423.25 219.66 425.68 216.45 421.86 214.28" style="fill:#d9dadb"></polygon><path d="M499.17,170l-1.22-2.5h0l1.2-1.69-1.68-2.05.87-1.44-1.72-.6.94-2.1-3.07-2-2.42,0-1.82-1.68-1.13-2.81h0l-2.21.68.31,3.78-1.53.66-4.51-1.51-1,3.18-2.7-.74-4,2.95-.51,2.87-3.42,2.11-.08,1.29-3.37.7c-.33,1.62-.67,3.25-1,4.89l-4,3.25,1.41,2.12-1.12,3L457.07,181l-4.83,4.8-.3,5.94-1.05,3,2.32,3.37-1.49,2.9h0l-2.26-.13.24,6.32-4,1.2-.34,4.09-2.5,1.29-.56,7.54L445,226l2.14,2.14-.66,2.17-1.89.09,2.13,4.69-1.52,2,6,.95,3.36-5.52,5.49.8,3.36-6.92,2-2.52L464,221.44l2-.22.38-1.91-1.58-1.2-.18-2.54,5.75.39,4-2.41-6.74-1.71,4.12-3.16,1.69,2.4,4.24-1.23-4.25-6-3.27-.8.27-6.28,1.92-.31V191.2l4-2,5.13-4.59,4.88-1.42,3.7-4-2-2.33,1.88-1.6-.85-1.43,2.75-1.05-.46-2.26,1.83-.71Zm-48.54,47.18-4.27.26,2.9-4.12,2.1-1,3.62-.47-.42,2.91Zm8.07,1.1-4.58,4.94.41-5,4.37-3.92Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M526.86,186.09l-4.22-2.24,2-1.73-.33-1.63L521,179l.64-2.18-2.52-2.72,1.76-2.67-5.3-7.41,2.52-2.11.37-2-2.45-2.35-2.63-.35.25-2-.92-1,1.45-1.39-1-1.08.79-1.89-3.5-2.33-4.73,1.34-1.69,2.81,1.28,2.39-2.7,2.44-4.06-2.26-1.71.91-3-.47-1-1.28-1-1.28-2.75.88h0l1.13,2.81,1.82,1.68,2.42,0,3.07,2-.94,2.1,1.72.6-.87,1.44,1.68,2.05-1.2,1.69,1.22,2.5h.47l4.15,2.52.6,3.41-3.28,1-3.45,4.85-1.37,1.35-1.81-.79-1.54,3-4.06-.18,1.38,3-2.59,1.5,2.13,7.8L488.26,204l4.09,2.42,2.12-1.29L496,206.7l-1.53,2.74,7.22-2.28,2.23-.06,2.5-1.8,1.11.92,2.62-2.72.64,1.3,4.77-1.28h0l.64.32,11.14-12.68h0l1.27-2.95Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M307.08,332.41l5.75-3.17-1-4.64-7.51-.24.9-4.76-4.53,2.21L298,331.47l-7.18,9.31-1.3.09-2.2,4.6,2.38,2.38-3,9c2.78.63,5.59,1.24,8.43,1.85l4.63-6.76L298.62,350l3-1-1.7-4.82,3.88-1.9Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M352.79,339l7-1,8.17-4,1-2.63-4.87-1.9-3.12.87-5.08-5.74-3.13,1.72-4.94-1.48L342.48,318l-7.1-.65-2.56-2.1-5.24.15-6.49-3.58-6.84.13-3.53-3.11-8.82,3.6-.5.3-.67,9.11,4.53-2.21-.9,4.76,7.51.24,1,4.64-5.75,3.18-3.3,9.87-3.88,1.9,1.7,4.82-3,1,1.21,1.93-4.63,6.76,3-1,2.36,4.89,0,5.94,3.84,1,.1,0,7-3.6,11.38.28,2.4,2,6.19-6.49,4.42.62,1.48-4.33,6.2-3.12-2-3.57,1.93-3.9Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M399.34,274.22l-2.68,2.66,0,.15,1.55,4.06c4.59-3,4.88-3.1,5-3.18h0a20.85,20.85,0,0,0-2.29-2.18C400.46,275.22,399.91,274.71,399.34,274.22Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M410.23,292.27,408,294.08l-4.71-.21-3.08-.16-.07.2-.51,2.18-5.08,2.73-3.85,6.26,6.82-2.66.6,3.4,4.72,1.26,1.79-3.25,2.56-.53,2.4,4.9,3.16-4.45,3.25,1.77,4.5-4.47-6.23-2,1.2-4.55Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M399.61,296.09l.51-2.18.07-.2,3.08.16,2.84-6.27,4.81-3,.79-2.22q-3.54-.3-7-.63l-3.49-2.33a18.27,18.27,0,0,1-2.91,1.7l-.92-2-8.13-3.93-1.74-5q-2.28-.27-4.53-.57v-4.93l-3.37,1.16-2.15,4.92-9,1.3,1.44,2.53-2.91.62-5.42-3.42-3.31-.76.26,7.52-7.11-.12-1.6-3.18L341,276.38l-.12,5.71,6.06,1.48-.81,2.11,4,.43,1.78,1.88-2.42,3.34,1.64,6.41-1.44,11.08L342.48,318l5.33,6.89,4.94,1.48,3.13-1.72,5.08,5.74,3.12-.87,4.87,1.9.63-1.64v0l-1-2.5,2.23-4,5.51-2.49L388,326.81l9.36-4.83,1.34-.7-4.73-4h0l2.73-2.48-2.3-1.64,3.38-3.25-1.5-2.93,1.82-1.19-.6-3.4-6.82,2.66,3.85-6.26Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M401,275.72l.07-.17L402.9,271l-3.18-1.21,1.42-2.12-3.92-2.77-7,1.38-1.06-3.81L383,264.63v4.93q2.25.3,4.53.57l1.74,5,8.13,3.93-.63-2.07,0-.15,2.68-2.66C399.9,274.71,400.46,275.22,401,275.72Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M413,248.68l-2.45,0-7.08,3.19-.57,4.18-3.07,1.06-.19-5.27L394.27,258l-1,4-3.53.25-.57.21,1.06,3.81,7-1.38,3.92,2.77,2.73-2.72-.45-3,4.1-.29,1.71-2.24-.79-2.53,3.05-2.77C412,252.3,412.48,250.49,413,248.68Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="449.18 281.24 447.32 279.39 448.64 277.19 447.72 275.63 447.73 275.63 447.35 274.98 443.17 276.35 437.61 272.83 435.8 275.97 424.61 279.08 423.81 283.8 418.96 281.73 413.38 283.71 403.55 282.54 402.36 287.09 408.58 289.07 411.76 290.13 413.2 288.42 418.5 287.7 419.25 290.6 428.88 291.81 431.19 293.59 433.88 291.11 436.86 292.23 438.44 289.61 443.06 289.64 445.44 284.69 448.32 285.05 448.32 285.05 449.18 281.24" style="fill:#d9dadb"></polygon><path d="M457.89,353.47l2.89.6.7,2.49,2.5,0,.7-2.28L461.62,350l-6.09-3.74-6.84-2.36.09-1.66,2-1.14L450.1,340l-9-1.67-4.09-5-1.72-7-7.05-5.68.35-4.89,1.22-1.45-.86-3.37,6.56-2.39.75.52,1.95-5.61-7-.9-.76-2.9-5.3.73-1.43,1.71-3.18-1.07-4.5,4.47-3.25-1.77-3.16,4.45-2.4-4.9-2.56.53-1.79,3.25-4.72-1.26L396.28,307l1.5,2.93-3.38,3.25,2.3,1.64L394,317.31h0l4.73,4,7.41-3.89,7.59,3.91,1.07,8.76,3.75,3.13,10.78,11.6,3.61.57,2.59,3.12,4.58.8,1.57,3.27,4,2.59,2.73,8.46-4.13,5.54,1.74,2.58,3.16-1.49,2.7-6.14,3.79-.44-.3-3.47L452,358.09l0-3.24,3.09-3.8Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="441.8 261.81 440.84 260.75 437.36 261.96 434.87 259.7 430.36 260.78 428.24 264.19 425.24 263.72 421.29 265.62 423.92 271.17 426.99 271.02 426.99 271.02 426.99 271.02 431.73 277.11 435.8 275.97 437.61 272.83 443.17 276.35 447.35 274.98 447.73 275.62 452.88 276 454.15 272.91 459.12 271 457.79 267.62 452.94 267.99 452.86 264.97 449.07 264.49 447.41 267.62 444.59 264.64 446.12 262.1 441.8 261.81" style="fill:#d9dadb"></polygon><path d="M446.82,257.06l4-6.31-2.59-2.08L447,246.41l1.21-2.1L446,242.66l-1.74,2-2.47-.5-2.66,2.67-6.46.69L429.31,243l-6.5-1-.22,2.29,1.83,4.27-4.25-1.06-3.47,4.11-2.61-3-1.1,0c-.51,1.81-1,3.62-1.5,5.44l-3.05,2.77.79,2.53-1.71,2.24-4.1.29.45,3h0l-2.73,2.72-1.42,2.12L402.9,271l-1.81,4.56-.07.17a13.9,13.9,0,0,1,2.28,2.19c-.21.11-.67.43-2.13,1.48l3.49,2.33q3.51.33,7,.63l-.79,2.22-4.81,3-2.84,6.27,4.71.21,2.25-1.81,5.22,2.25,9.83,1.17,5.58-2h0l4.85,2.08.79-4.73,7.13-2-4.74-6.1h0l-3.07.15-2.63-5.54,3.94-1.91h0l3,.47,2.12-3.41,4.5-1.08,2.5,2.27,1.62-5.41-1.47-2.23,1.49-6.19Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M500.21,276.81l.76-3.18-3.72-4.37.57-5-3-.85.89-2.81,3.58-1.19,0-3.23-1.8-2.8c0-1.27,0-2.54,0-3.81L495,247l-10.3.64-7-2.2-.16-.06-5,.26-.69-3.54-9.62,2.38-2.19,2L452.48,248l-1.63,2.8-4,6.31,4.08,3.06-1.49,6.19,1.47,2.23L449.26,274l3.48-1.22.95,1.06,4.32.29-1.53,2.54,2.83,3,1.66-3.13,3.79.48.08,3,4.85-.37L471,283l1.3,1.3,2.69-.93,2.32,1.15,2.92-1.16,2.64,1.39,2-1.34,3.62.69.53.56,2.64,1,1.92.71-.19-4.2,4.29-5.26Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M489,284.64l-.53-.56-3.62-.69-2,1.34-2.64-1.39-2.92,1.16L475,283.35l-2.69.93L471,283l-5,1.92L464.78,288l-5.16-.38h0l.92,1.56-1.32,2.2,1.86,1.85-.11.5,4.78,2.37,4.4-.67,1.19-2.11,4.48-1.05,2.8.57,1.34-3.05h4l1.47,3,4-1.13h0l2.21-6.06Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="515.31 327.55 510.43 329.82 507.88 327.15 505.38 327.68 504.78 337.3 507.73 338.1 512.81 334.04 521.48 334.14 520.36 332.01 516.48 330.07 515.31 327.55" style="fill:#d9dadb"></polygon><polygon points="504.78 337.3 505.38 327.68 501.46 328.49 501.01 331.38 495.72 331.8 493.06 330.19 488.78 332.19 482.77 332.13 480.07 334.45 475.66 334.35 473.93 337.23 469.06 337.81 468.52 341.79 463.19 347.85 468.47 354.58 476.12 354.76 477.86 356.32 468.97 357.86 475.46 364.81 475.71 372.65 480 368.47 485.57 370.91 482.32 361.61 485.78 361.77 483.78 356.6 489.13 356.16 481.63 353.21 482.29 350.07 486.5 350.2 479.57 344.02 479.7 340.2 482.32 338.06 488.16 342.53 487.58 336.93 496.27 335.44 504.78 337.3" style="fill:#d9dadb"></polygon><path d="M448.76,304.21h0l-3-1.12-2.69,2.48-2.31-1.78-2.61-.31-1.95,5.61,1.28.87q6,.3,11.9.51l6.23-5-.67-3.82-4.62,0Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="454.85 323.9 447.44 317.06 443.21 320 451.58 324.87 454.69 323.9 454.69 323.9 454.85 323.9" style="fill:#d9dadb"></polygon><path d="M455.66,317l2.09-1.86,7.44,1.15,2.12,2.3,3.83-.08-2.07-8.86-3.57,2-4.89-2.16-5-4.06-6.23,5q-6-.21-11.9-.51l-.54,2.8,2.36,4.57,2.29-3.89,1.57,1.07,2.28,7.26,4.5,5.6,9.38,1.68L450,316l2.75-1Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="454.85 323.9 458.98 329 458.99 329.04 461.68 326.39 463.63 324.46 459.55 316.38 455.95 319.18 454.85 323.9" style="fill:#d9dadb"></polygon><polygon points="459.24 306.55 459.24 306.55 455.41 306.63 453.3 304.33 445.85 303.18 443.76 305.04 440.8 303.03 438.05 304.05 447.44 317.06 454.85 323.9 455.95 319.18 459.55 316.38 461 312.97 457.76 310.61 461.1 306.61 459.24 306.55" style="fill:#d9dadb"></polygon><path d="M494.14,294.2l-4.68-2.53-4,1.13-1.47-3h-4l-1.34,3.05-2.8-.57-4.48,1.05-1.19,2.11-4.4.67L461,293.72l-.75,3.31-2.88-.36-2.38,5,.67,3.82,5,4.06,4.89,2.16,3.57-2,5.42-2.49,8.42-.14,1.11-2.2,2.06-1.42,3.2-6.42,3.27-.68h0Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="482.75 319.72 479.28 317.55 478.2 314.71 481.34 309.22 478.75 307.62 476.25 308.72 472.28 307.1 473.43 304.15 468.76 301.88 469.64 299.87 462.6 295.2 457.18 297.69 459.24 306.55 459.24 306.55 461.1 306.61 457.76 310.61 461 312.97 459.55 316.38 463.63 324.46 461.68 326.39 461.73 326.41 467.14 329.58 471.5 327.99 477.91 326.61 478.1 326.52 478.01 322.03 481.19 322.92 482.75 319.72" style="fill:#d9dadb"></polygon><polygon points="461.73 326.41 461.68 326.39 458.99 329.04 457.94 340.6 461.21 345.3 463.18 347.85 468.52 341.79 469.06 337.81 465.76 334.22 467.14 329.58 461.73 326.41" style="fill:#d9dadb"></polygon><path d="M490,338.59v-.09l-.19.09L483.4,340,479,341.56l-1.38,4.64,3.3,3.6,4.87-.59,1.73-2.88,4.41.11,2.7-2.33h.47l-1.41-3.56-2.7,0Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M525.23,328.67l3.66-1.41.26-2.24-4,.19-4.64-2.66-6.12,1.89L510.57,328l-6.19-1.52-1.56,1.72-8.18-1,.57-3.1-2.84-1.34-2.27,4,1.08,2.83,3.47,2.17-1.56,3.2L489.9,334l.1,4.49v.09l1,2,2.7,0,1.41,3.56,5.54.05,4.28-2,2.65,1.61,5.3-.41.44-2.9,6.43-1.34,2.55,2.67,4.88-2.27L523,334.38l2.23-2.21Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M502.82,328.19l1.56-1.72,6.19,1.52,3.83-3.55,6.12-1.89,4.64,2.66,4-.19.05-.47.83-8.05-6.09-4.31,1-7.34-1.41-4.42-3.1-2.27-3.53-6.39-3.76.14-1.59,2-3.48.11-2.05,2-3.44-2.81-7-.8-1.44,1.86-1.59,2.12-3.27.68-3.2,6.42L484,304.84l-1.11,2.2-8.42.14,7.05,4.67-.88,2,4.66,2.27-1.14,2.94,4,1.62,2.5-1.1,2.59,1.6-.87,1.54,2.84,1.34-.57,3.1Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M537.29,307.51l-4-8.93-3.34-1.33.77-3.19-1.11-1.93-4.59-.71-3.26-2.49-4.12.28-2.26,2.62,1.58-.06,3.53,6.39,3.1,2.27,1.41,4.42-1,7.34L530,316.5h0l4.44-.24.58-3.25-1.49-1,1.06-3.21Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M574.12,298.63l3.66-3.77,3.79-.56,2.23-5.49q2.9-.33,5.76-.69l.42-2.27-2.55-3-.39-3.13,1.61-1.66-.72-2.83-5.39,1.05-5.31-2.66-1.38,2.06-4.14-3.88-3.19,2-5.52,0-1.32-1.29.13-2.4-1.43-2.31-6.13-.24L553,264.8l1.18-2-3.38-3.68-7.4,1.26-.62,2.34-6.07-.88-1.48,3.57,1.14,2.6-2.4,1.86-2.43-2.75-4-.8-1.25,2.5-3.2-2.27-2.44,2.54-3.18-3.4-6.64-.84-9.2,0-.72,3-3.55.65-.08.72,3.71,4.37-.76,3.18-2.52.05-4.29,5.26.19,4.2-1.92-.71-2.21,6.06,4.68,2.53,1.44-1.86,7,.8,3.44,2.81,2.05-2,3.48-.11,1.59-2,2.18-.08,2.26-2.62,4.12-.28,3.26,2.49,4.59.71,1.11,1.93-.77,3.19,3.34,1.33,4,8.93,2.7-5.4,3.64-2.18,4.11.26-1.62,3.59,3.3,1.47,5.06-1.58,3.4,1.94L551,310.34l1.64,1.5,5.19.56,1,5,3.39.37,2-3.11,3.48-.19,1.53-2.11c1.67-.15,3.34-.32,5-.48l-.15-4.4-6.83,2.43-5.18-5.55,6.71-5Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="480.23 235.22 480.23 235.22 480.23 235.22 480.23 235.22" style="fill:#d9dadb"></polygon><polygon points="480.23 235.22 480.23 235.22 480.23 235.22 480.23 235.22" style="fill:#d9dadb"></polygon><rect x="480.23" y="235.22" style="fill:#d9dadb"></rect><path d="M489.94,241.88l-4.2-1.92.2,1.95c-2.13,0-4.26,0-6.39,0l-2.06,3.5,7.16,2.26,7.47-.45h0l2.45-5.38Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M513.48,241.05l-2-1h0l.62-1.81-3.64-4-3.43-.45-1.67-2.06-1.93,2.15-4.48-.91L495,234.44l-4.85-2-4.89,2.69.42,4.41,0,.38,4.2,1.93,4.63,0-2.45,5.38h0L495,247l2.54,2.53v.88h5.33l2.58-2.95,1.37,2.23,2.44-.07-.22-6.44,3.2-.11Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M544.19,252.52l-1-3.11-6.95-3.25-3.05-4,0-5.4-3.64-2.21-4.09,2.53h0l-1.66-3.51-4.11,0-1.7,0-1.6,3.22-2.85-1.46-1.39,3-.62,1.81h0l2,1-1.29,2-3.2.11.22,6.44-2.44.07-1.37-2.23-2.58,2.95h-5.33c0,1,0,1.95,0,2.93l1.8,2.8,0,3.23-3.58,1.19-.89,2.81,3,.85-.48,4.3,3.55-.65.72-3,9.2,0,6.64.84,3.18,3.4,2.44-2.54,3.2,2.27,1.25-2.5,4,.8,2.43,2.75,2.4-1.86-1.14-2.6,1.48-3.57,3.91.57v0l-3.81-8.67,4.91.9Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M512.14,224.16l-2.49.82-4.43-3.11-3.77,1.79-.17,1.79c-1.86,0-3.72.08-5.59.1L493,222.3l-4.11,1.19L485,231.7l.31,3.46,4.89-2.69,4.85,2,1.89-1.48,4.48.91,1.93-2.15h0l1.66,2.07,3.43.45,3.64,4,1.39-3,2.85,1.46,1.6-3.22,1.7,0h0l0-.24-1.29-3.76-2-.42.12-2.2Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M517.46,212.34,516,210.8l-4.35.18-4.92-1L497,213l5,5.54-.48,5.09,3.77-1.79,4.43,3.11,2.49-.82,1.82,1.13,1.67-2.84-2.78-3.73,0-3.47,2.54.09Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M914.92,385.74c.69-.59,1.37-1.17,2-1.76l.72-4.62L924,391.69l1.83-1.69-5.59-15.35,3.52.61-3-10.68-1.65-1.25.46-4.37-3.38-6.89,1.59-9.28-1.7-6.73-4-1.11-1-3.6-3.42-2.69v7.14l-2.68-.15-.51,5.62-1.73,2.09,1.07,5.21-1.43,4.87,4.06,6L903.43,363l-2.81-1.22-1.56,4.77-5.16-1.9-1-3.3-1-3.23-2.59,4.08L891,369l2,1,.82,4.51-3.72,1.83-9.15.84-1.2-2.61-3.46,0-2.42,3.25-6.5-2.41-1.22,2.3-11.22-3.5-.36-5.39-1.13-1.95.78-4.81-8.77-2.45-2.1-2.69-3,.77L834.82,350l3-1.56.9-2.23-2.35-3.39-5.17-3-1.78-2.58.52-3.08-5.05-.93-4.2-5.78-2.27,1.14-5.39-.67-3.45,2.67-.89,4.24q-2.43,1.11-4.91,2.19l-.81,5.06,5.91,10.79,5.8,3.35,3-1.34,3.78,2,.52,4.67-2.06,3.37,2.9,4.14-1.74,7.1,1.75,13.21L819,392.1l.26,7-4.62,5.25-3.42-3.2-2,8.9.87,3.73,4.73-1.72,2.89,8.74,3.39-1.33,5.51,8.47-13.31,4.7-.63,6.05,6.4,4.25,6.35-4.8.56,6.33-6.33,3.78,8.81,6.69,4,1.52,6.31-6.85-.16-10.6,5.63,12.17.6,8,3.49,3.81.13,4.67,4.14,7.5,2.68,8,6,9.62,3.75,3.46,3.16,5.7,1.53,5.14,4.14,9,3.83,3.88,4,8.69,1.87,1.3.09,3.58,1.64,4.26,4.08,5.56,4.45-5.12,1.48-6.78,2-1.9-.12-3.25,1.08-5.26,1.69-.73-1.27-9.06-1.1-.62L898,499.7l-1.12-9.22-3.1-5.86-1.64-6.81-.16-5.3,3.35-7.74,4-4-1-3.71,4.81-14.12.46-8,1.12-3.62-1.35-5.3,2.94,1.46,2-4.17.26-6.22-2.28-5,1.7-6.4-.74-7,4.32,4.08,1.1-.79v0l-5.17-7.44q-1.44-3.45-2.91-6.87l-3-.47c-.52-1.2-1-2.4-1.58-3.6l2.33-4.16-3.71-2-1.57-5,5.66-.74q1.19,2.55,2.36,5.11l2.31-.9,1.63-2.34,1.9.36,1.47-3.82,3.25,3.53-2.24,7.61Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M924,391.69l-6.28-12.33L917,384c-.67.59-1.35,1.17-2,1.76l-1.57-4.65,2.24-7.61L912.34,370l-1.47,3.82-1.9-.36-1.63,2.34-2.31.9q-1.17-2.56-2.36-5.11l-5.66.74,1.57,5,3.71,2L900,383.47c.53,1.2,1.06,2.4,1.58,3.6l3,.47q1.47,3.42,2.91,6.87l5.17,7.44v0l3.87-2.86-.27-4.31.16-4,1.36-1.22,2.5,3.15,4.23,7.22v-.15c.68-.6,1.35-1.2,2-1.81Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M870.85,361.91,868.91,364l-3.11-2.63-5-.9c-.47-1-.94-1.92-1.42-2.87L856,358.73l-.15,3.73-1.66-.45-.78,4.81,1.13,1.95.36,5.39,11.22,3.5,1.22-2.3,6.5,2.41,2.42-3.25,3.46,0,1.2,2.61,9.15-.84,3.72-1.83-.82-4.51-2-1-1.73-6.72-2,2.2L883.16,363l.11,2.81-6.09-.68Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M892.87,361.38l1,3.3,5.16,1.9,1.56-4.77,2.81,1.22,3.05-3.55-4.06-6-3.1-2.72L897.6,355l-1.42-2.78c-.72.6-1.44,1.18-2.18,1.77a22,22,0,0,1,.28,4.2C894.1,359.4,893.24,360.28,892.87,361.38Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="874.04 188.12 877.92 192.09 881.08 196.09 881.9 196.93 884.52 200.41 885.97 201.91 882.27 196.82 882.29 196.61 880.42 194.27 880.16 193.75 877.61 190.66 877.61 190.48 872.36 184.21 872.45 184.41 866.96 178.22 861.9 173.32 864.45 176.31 864.79 177.39 867.99 181.24 871.29 184.51 872.3 185.65 872.19 185.77 874.04 188.12" style="fill:#d9dadb"></polygon><path d="M860.86,174.09l4.52,4.75,5.93,7.61h0l1.35.16,3.38,3.73.57.3.92.83.7,1.26,2.09,2.53,1.85,1.57-.6-1.1-1.7-1.75,0-.22.83.59-.78-1.14-3.2-3.85-.34-1.08-2.55-3-.41-.39-1.41-.83-2.76-2.83-2.84-3.19-1.27-1.76-2.37-2.63-1.39-1.43-1.67-1.92L855.12,166l-4.64-4.8-2.27-1.88-.31.19,5,4.71,3.43,4.14,3.12,2.59,2.16,3-2.85-2.4Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M606.17,404.49l3.85,9,8.55-.44,13,6.66,21,14.59q6.11-1,12.14-2l2.4-8.05c2.8-.48,5.58-1,8.36-1.49l.09-.21.82-1.87,1.32-.43h0l-8.12-7.9-.18-5.38-3.92-5-2.94.47-4-2.93-3.9.66-1.16-5.94-4.54-1.53-.59-6.5,3.93-4.76-2-3,.58-3.16-6,0-4-7.18-5.2,2.47-2.31-4.1h-6.71l-4.9,8.08-3.78.51-.12,4.53,2.8,4.87h0l-.35,7.94Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M667.08,424.3l-2.4,8.05,5.18-.9,2.88,4.05,6.73-1.22-1.33-2.09-3.46-7.68.76-1.7C672.66,423.32,669.88,423.82,667.08,424.3Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M623.51,371.57l-1.84-4.31-8.48,2.58-5.8,4.92-6.18.74-4.35-1.3-4.4,2.84-5-.52.93,4.65-2.18,4-3.15,0,1.49,7.77-.44,1.48h0l4.74-.76,2,3.91-3.65,8.74-.32.09-1.53.44.4,4.29h0l0-.07,6.5,3.34,13.89-9.93,14-12,.35-7.94h0l-2.8-4.87.12-4.53,3.78-.51h0Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M596.86,374.2l4.35,1.3,6.18-.74,5.8-4.92,8.48-2.58h0l1.84,4.31,3-5h6.71l2.31,4.1,5.2-2.47-2.63-4.72-5.36-2.78.5-2.7-3.64-6.48,3.55-4.16L626,345.51l-.14-4.92-2.65-1.91L618.47,335l-4.66,3.33L609.45,336,603,341.08l-4.8-1-6.13,2.35-10.57-2.24-2.21.9-2.56-3.27L572,338l-2.53-2.86-2.66,1.36-7.23.16-11.52,7.72-13.77,1.17,2.11,2.66-2.48,3.5-8,.11L524.12,353l-5.64-.58-3.38,3.44L519,364.3l-2.2,3.42,5.71.53-1.16,4.94,6.16,1.22-.35,5,7.49.41,2.38,2.81,3.49,1.27,5.26-1.24,1-3.83,4.81-.73,9,5.58,8.83-2.67,4-5.26,5.93,1.75,3-2.87,1.57,2.37-1.42.79-.16,2,1.61,2.48-.83,2.93,3.15,0,2.18-4-.93-4.65h0l5,.53Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="631.53 342.75 627.96 336.74 621.27 335.36 624.78 341.95 624.78 341.95 631.53 342.75" style="fill:#d9dadb"></polygon><polygon points="620.49 323.8 619.82 324.46 611.34 326.7 613.99 328.61 614.13 333.52 621.27 335.36 627.96 336.74 631.53 342.75 634.16 338.71 632.62 334.19 628.81 332.67 628.8 330.85 624.89 329.13 625.2 327.34 620.49 323.8" style="fill:#d9dadb"></polygon><path d="M657,333.51l-5.62-5.33-1.8,4.76-3.06.55-2.36-3.71-5-2.53-1.07,1.29-.9,1.06,4.19,3.07L640.3,336l-5.78-2.33-2.14,2.13,4.71,3.54-.3,1.79,3.9,1.72,0,1.83,3.81,1.51,1.54,4.52,5.5-6.61,2.8,2.17,1.86,5.92h5.23l-2.24-4.44h0l4.91-11.36Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="597.55 324.04 601.91 326.29 606.58 322.97 611.34 326.7 619.82 324.46 622.62 321.67 628.4 324 629.5 320.69 625.3 317.63 625.3 317.62 626.2 316.55 626.2 316.55 621.37 314.82 621.16 312.26 616.59 311.14 611.31 314.84 608.71 311.5 602.78 309.78 597.13 310.28 587.58 306.52 586.87 309.06 595.88 313.96 599.35 320.53 598.38 323.39 597.55 324.04" style="fill:#d9dadb"></polygon><polygon points="657.06 37.03 653.02 35.68 651.48 35.19 654.22 36.11 657.41 37.15 657.06 37.03" style="fill:#d9dadb"></polygon><path d="M810.39,126.45l1.14.69,2.23,1.74,2.08,1.84,15.35,12.46.21.85,3.82,3.71,4.67,3.74h0l5.64,5.19,2.68,2.65,2.27,1.88-.59-.59-3.21-3.22-4.85-4.57,1.43.74-2.77-2.73-6.15-5.65L828,139.67l-12.44-10.31L800,117.49l-5.87-4.26-8-5.48-1.88-1.28-3.31-2.09-8.11-5.18-5.38-3.1-3.31-1.94-.38,0-2.91-1.47,1.75,1.48,6,3.44.68.91-2.84-1.47,3.4,2.33L764,96.16l3.07,2.38-1.76-.61-10.23-6.66L749.25,88l-1.51-1.08L743.86,85l-8.69-5-3.49-1.69-11.35-6-5.49-3.34,0-.25-5.7-2.94-.57-.44-3.44-1.55-5.08-2.53,1.62.6,3.51,1.59.92.33-3.31-1.58L698.6,60.3,694,58.36l-1.81-.71,2.09.9-6.17-2.41-4.87-1.88-5.14-1.88-2-.68-3.48-1.26-5.3-1.92-.34-.15-.83-.27L655,44.47l-1.89-.58-6-1.79h0l-19.28-5.17c-22.26-5-25.68-5.79-36.64-7.51h0c-7.63-1.13-17.82-2.6-25.48-3.52l4.08.53,1.8.23h-.39l2.11.24.1.09,4.87.94,4.73.91.89.26,5.49,1.1,2.63.38,2.14.63,4,1,1.11.12L598.6,32l.88-.1,2.91.42,2.5.61-.77,0,1.74.54-2-.16-1.57-.4-2.27-.35,2.67.76,6.16,1,4.48,1.44.38.27,6.82,1.79,3.2.62-1.85.05,1.24.54-3.95-.59-1.67.3.51.73,3.4,1.41,2.08.42c.78.32,1.55.64,2.31,1l4.21,1.42-2.23.4,3.37,1.23L628,44.79l-.1.23,1.11.56-3.71-.69-.88.21,2.53,1.38,6,1.35L635,48.94l-7.48-1.83,1,1.62,2,1.7v.8l6.16,1.09,3,1,3,.27.1.63,2,.74,3.5.87-1.87.15-.52.77,4.21,1.63L646,59.1l11.73,3.63-1.93.7-5.37-1-2.13.1-6.43-1.34-1,1,7.94,1.7-.46,1.21-10.39-2.85.84,1.17-3.77,0,4.63,1.3.79.85,4.54.7-.74,1.87-1.93.27,1.63.86-2.07.45-3.06-.9-1.52,2.08,1.41,1.68,7.27,2.48-8-1.38,1.58,1.23-3.29-.25,6.8,4.87,1.14,3.83-4.44-2.52-2.2-1.79.13-.88-3.34-2-.32-.81-5.34-2.74.84-.19L625.4,70l-7.2-1.06-2.44.32-3.53-.21,1.43,1.13-1.69.15,1.47,1.52L613.18,73,610,71.34l-1.14.26,1,1.31-1.42.73-2.28-2.29-1.79-.1-1.5,1.83,3.79,2.53,7.22,1-2.75.71-.79,1,3.58.7,7.49,2.1L617.7,81l-5.88-1.61,1.64,1.48,0,1.94L611,82l-1.72,2.07,3.16.8-.27,2-1.74,1.83,2.82,3.18,1.45,1.44-2,.44,5,2.39,7.7,1.65-1.91,1.54-3.31-1L617,99l-2.09,3.44,6.46,3.22,3.8.17,2.65,1.3,6,.54,5.74,5,4.93,2.57L639,113.94l-5.74-4.61-3.49-.12-5.15-1.38-4.61.94,3,2.65-3.14.21,2.19,2.68,4.13.28.33-.71,4.32.67,3,3.72-4.78-1.85-5,1.16L619.6,114l-6.84-3.25,3.36,3-.34,1.62,1.74,2.32,7.25,2.53,2.92,3.84,5.38,3.53,2.76-2.12,6.46-.65,5,3.71,5.22.29-2.79,2.49-2.37-.33-4.23-3.11-3.34-.82-3.4,2.26,6.34,3.48,1.83,3.83-1.09,3,1.28,2.47-7.59,1.19-3.24-1.94,5.18-.85-1.11-6.6-2.54-1.45v-1.68l-4.16-1.43-7.39-5.48-3.12-3.31L615,118.37l-3.42-4.74-2.85-1.92-7.47,1.05.9,1.81,5,5.36.15,4.66,2.81.34,6,6.61,2.94-.95,3.58,2.15,1.82-.48,1.84,3.22-.86.42-5.19-1.5-12.27-.76-7.88,1-7.28-2.85,1.29,3.17,6.72,1.79,4.61,2.13-1,3.54-4.5-2.58-2.39,2.14-.08,1.05c-1.71.44-3.43.86-5.18,1.28l.56,2.89L588,147l1.12-1.77-.47-2.63c-4,2.47-9.31,5.77-13.4,8.07l2.68,1.71-3.57.93,1.2,3.73-4.79.92-4.52-2,.43-2.15,3.75-1.08-3.82-2.87-8.19.14,3.5,2.19,1.08,5,3.22,1.32-.46,2,1.79,3.41-4.1-2.4-3.71-.11-1,2.15-4.49,4.56,4.52,6.11-3.37.22-10.56-2.62,1.69,4,4,.82-.92,4.32-6.06-3.88-5.09-.77-1.46-8.23-9.52-5.94,6.51-.14,1.2,2.09,8.68.78,3,.58,4.18-.66,5-4.52-.29-1.95-2.2-2.48-9.13-2.15-6.57-2.87-8.37-.86-4.63.42,1.6-2.3-3.67-.83-.12,1.44-2.7-.48.62,3.18-2.3-.47-2.93,3-1-1.09-1.45,1.39.92,1-.25,2,2.63.35,2.45,2.35-.37,2L515.62,164l5.3,7.41-1.76,2.67,2.52,2.72L521,179l3.23,1.48.33,1.63-2,1.73,4.22,2.24,1.7,2.12-1.27,2.95-11.14,12.68,6.81,3.35-6,1.6-.05,2-.94.05,1.49,1.54-2.09,3,1.3,0,.39,2.94L519,222.2l-1.89,2.2-1.48-2L514,225.29l2.41,1.59-.12,2.2,2,.42,1.29,3.76,0,.24h0l4.11,0,1.66,3.51h0l4.09-2.53,3.64,2.21,0,5.4,3.05,4,6.95,3.25,1,3.11-2.47,2.09-4.91-.9,3.81,8.67v0l2.16.31.62-2.34,7.4-1.26,3.39,3.68-1.19,2,1.24,2.78,6.14.25,1.43,2.31-.13,2.4,1.32,1.29,5.52,0,3.19-2,4.14,3.88,1.38-2.06,5.31,2.66,5.39-1.05.72,2.83L587,279.74l.39,3.13,2.55,3-.42,2.27q-2.87.36-5.76.69l-2.23,5.49,6.92-2.16-.41,2.35-7.54,4,.76,1.92,3.78,1-2.61,2-.84,4.91L576.5,308l1.33,2.06,5.66,3,2.28,2.12,3.39.55,9.6,5.35.71-2.54,9.55,3.76,5.66-.5,5.93,1.73,2.6,3.33,5.28-3.69,4.57,1.12.21,2.55,4.82,1.73h0l1.07-1.29,5,2.53,2.36,3.71,3.06-.55,1.8-4.76-9.14-8.73-3-8.71-6-1.8,2.72-4.26.8-7.69,4.41-.05.67-2.56-3.38-2,1-4.7-5.61-4.55-5.88-.08c-.32-.92-.64-1.84-.95-2.76l-2.94-1.09.37-5.81L622,271.87l1.35-3.67-1.08-2.58,1.58-1.95,5.36,3.67,2-1.63-2-3,1.94-5.2,3.58-1.85.3-2.42,2.62-.53,1.12,1,2.29-.47.29-1.66,2.84-.61.6,1.31,3.78-.62,3.23,2.35,2.88,2.5,2.4-.37c-.42-.86-.84-1.72-1.25-2.58l6,2.39,1.26-4.08,2.87-1.11,2,1.81,2-1.25-.34-2,3.07-.49,2,2,5.59.63.46-2.29,5.39-1.76-1.66-4.48-8.38-.38-1.63-1.93,4.86-2.63-3.63-2.58.16-2.17,5.26-.27L680,229.76l-4.7.07-3.75-4.19,5.88-3.57,7.88-3.48-.69-2.28,9-5.38-1.89-2.64,1.78-2.64,4.44.22,3.19-1.37,3.88,3,.93,3.64,3.38,1.65,1.56-3.88,2.18,1.47,1.61-2.92,2.34,1.9.07,2.79,3.61,1.75,1.37-12,2.81-1,2.12,4.74,7.44,2,21,12.71.28-1.83L754.09,216l2.46-1.13,4.05,3.06,3.25-1.55-.72-3.36,3.57-.2,4.52,3.46,2.73-.57,3.16,2.08,2.42-.81-.93-3.31,2.87.46.82,1.17,4.73,1.33-1.2-4,3.44-1.92-2.28-2.3-.31-6,2.08-.94-1.4-3.23,3.25-1,2.6-1.79,3.94,3,2.88-1.17-.32-2.61,4.35.14.18-3.13-2.72-3.38-4.38-2.22-3.35-4-2.8-5.49,4.5.64,3.08-1.17,1.54-1.8c1.86,1.5,3.7,3,5.54,4.54l6,.26-2-6.42,5.72-2.61h0l2.63,2.1,2.48-1.17,2.15-1.75-2-2.83.9-3.27-2.9-2.71-3.66-4.86,3.13.06-1.64-2.63,2.35.43h0l1.73-.5-3-3.53-1-2.23-2.2-1.8-.62.15-9-7.63-2.3-2.67-4.21-2.56.63,1.33L796,132.36l-3.1-3.22-3.76-5.61,2.11-.47-1.16-1.42,5.06,1.45,7.09,4.11,8.66,5.12,1,.13L810,130.58l.48-.64,1.17.61L810.26,129l8.93,6.29L817,133.06l-.54-1-3.95-3-5.67-5.12,1.36.83ZM536.32,205.89l-.44,3.12-3.6-1.36-.11,2.44-2.13,0-4.27-7.19-1.71-1.07,2.53-3.89,3.22-.44,1,2.61,3.65.32L538,205Zm13.36-3.64-2.86-.54-.4-3-5-2.17.76-3.2,1.73-.26-2.3-4.1,4.58,1.55,1.12,3.25,3.07,3.79ZM790.14,149l4.78,4.91,3.15,6.2,5.35,7-3.28,3.74-2.48-7.1-7.36-8.83-2.41-5.12-11.37-9.68-1.39-2.35Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M860.94,223.75l3.18,1.95-2.23-11.41,1.92-4.56-5.09-8.53-.15-2.55-3.28-4.52-3.46-1.06-4.51-5.55,2.77.84-.18-3.44-4.53-5.34,1.56-.87-3-4.24-4.5-4.31-3.26-5.91,2.16-.52L835.61,161l-7.6-3.88.47,2.15,2.82,3-.06,1.91,1.58,2.14-3.66-1.91-10.43-10.89h0l-2.35-.43,1.64,2.63-3.13-.06,3.66,4.86,2.9,2.71-.9,3.27,2,2.83-2.15,1.75L818,172.22l-2.62-2.1-5.73,2.6,2,6.42-6-.26c-1.84-1.52-3.68-3-5.54-4.54l-1.54,1.8-3.08,1.17-4.5-.64,2.8,5.49,3.35,4,4.38,2.22,2.72,3.38-.18,3.13-4.35-.14.32,2.61-2.88,1.17-3.94-3-2.6,1.79-3.25,1,1.4,3.23-2.08.94.31,6,2.28,2.3-3.44,1.92,1.2,4,3.31,2.84,6.31,1.67c.94-.73,1.87-1.46,2.78-2.19l9.36,6.06h0l4.65,7.22,4,3,6.87-5.68,11,3.1,7.81,5.54.32-3.15,7.26-2.74-.64-3.8,6.86-3.14Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M988.56,509.1,987,493.3l-3.6-8-.28-.41.26,8.15-1.61,3.7c-.21-1.65-.43-3.29-.67-4.93l-2.48-.68,2,9.72,1.09,2.56.12,3.26,2.93,5.67-.22,3.3,5.24,7.32,1.22-4.09-1.45-8.07Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M980.75,482.73l-.36,2.88-2.25-2.11-2.21-9.37-2.16-5.65-1.35,2.34-2.83-17.44-.68-8.28-3-10.41.24-2.6.9,1.3,2.74,5.34,2.59-3.13,1.25,2.29,2.44,2.77c-.7-2.8-1.42-5.6-2.17-8.38l-3.3-6.9-.07-6q1.62-2.9,3-5.78l-.12-4.09L971,402.1l-3.19-3.54L966,392.74,962.64,388l-1.37,1.14.41,6.05-2.12-1.63.19,8.78-1.87-.48-2-11.17q-.93-2.42-1.87-4.83l-2.43,3.3-1.35-6.49-2.75,1.69,1.55,8c-.58.76-1.16,1.51-1.76,2.26l-2-1.11q2.07,5.28,4,10.59c-.44.54-.89,1.08-1.34,1.61l9,10.57,3.31,14.8,2.67,4.09,5,14.66-.17,9.68.83,5.79.5,8L971.81,484l.86-3,3.35,3.57,2.36,5.82,0,.08.16.72,2.48.68c.24,1.64.46,3.28.67,4.93l1.61-3.7-.26-8.15Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M984.72,431.58l-.88-10.53,0-1.38L981,407.84l-2.25-6.74L976,394.76l-.71-2.49-2.74-4.61-.87.49-4.63-5.34-1.66-3.47-3.18-3.17-1.81-5.44-2.07-10.89-1.23-2c.27-.71.53-1.43.78-2.14l-1-2.45-.11-2-2.75.65-2.33-6.06c-.29.75-.59,1.51-.91,2.27l-2.95-2.34,1.35,6.31.1,4.21-1.78-1,.6,3.22h0l-2.21-.84,1,4.89,2.83,2.91.65-1.15,1.64,6.25,2.6-.53-.42-4,3.81,5,.74,3.67-.87,1.46,1.11,4.67,3.79.14,7.37,11.07,2.32,1.35.73,3.39,1.45,1,1.35,4.35,2.48,9.4,2.73,9.18-.39,10c.43,1.68.84,3.37,1.25,5.06l-.72,1.71-.16,8.65.95.79,2.18,9.74,1.09-11.32-1.36-8.78Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M981.24,420.75l-2.73-9.18-2.48-9.4-.18,4.1-1-1.28,0,3.33,1.57,5.53-2.87-.21q-1.35,2.88-3,5.78l.06,6,3.3,6.9c.75,2.78,1.47,5.58,2.17,8.38l1.44,1.71.65-3.66,1.47,6.21,1.59,1.27.16-8.65.72-1.71c-.41-1.69-.82-3.38-1.25-5.06Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M966,392.74l1.85,5.82L971,402.1l2.36,7.44.13,4.1,2.87.21-1.57-5.53,0-3.33,1,1.28.18-4.1-1.35-4.35-1.45-1-.73-3.39-2.32-1.35L962.81,381l-3.79-.14-1.11-4.67.87-1.46-.74-3.67-3.81-5,.42,4-2.6.53-1.64-6.25-.65,1.15-2.83-2.91-1.3.21.7,2.82,2.35,3.1h0l1.94,5.15c-.38.62-.77,1.23-1.17,1.85L948,373.2l.63,10.44,1.58-1,1.35,6.49,2.43-3.3q.94,2.41,1.87,4.83l2,11.17,1.87.48-.19-8.78,2.12,1.63-.41-6.05,1.37-1.14Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M954,421.46l6.71,17.65.42-2.42,4.52,15.91,1.18.42,1,6.49.17-9.68-5-14.66-2.67-4.09L957,416.28l-9-10.57c.45-.53.9-1.07,1.34-1.61q-1.93-5.31-4-10.59l2,1.11c.6-.75,1.18-1.5,1.76-2.26l-1.55-8,1.17-.71L948,373.2l-2.53-4.36.25,6.58-2.35-3.15-2.22.82-1.46-4.49.13-2.17L937.2,366l-2-2.93L934,359.85l-1.62,1.76.11,4.16L929.32,360l-.13-2.64L927.75,354l-.52-6.33L925,341.86l-3.35-5.61-2.07-.31-2.2-3-2.23-.4.89,3.5,1.7,6.73-1.59,9.28,3.38,6.89-.46,4.37,1.65,1.25,3,10.68-3.52-.61L925.79,390,924,391.69l2.55,6.18c-.66.61-1.33,1.21-2,1.81v.15h0l6.62,5.12,2.33-.54,2.45,2.94,1.3,4.05,5.09,7.87,1.48,8.55,1.3,4.25,4.12-4.07,1.18-9-1.58-5.69,4.39,3.95Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M768.9,433.17l.5,5.79,11.28-3.29,3-3.25,3.89,1.2,6.18-4.23,2.42-2.57,2.54,3.91,2.26-.62,5.87,8.13,4.31-.52,1.56,1h0l.63-6.05,13.31-4.7-5.51-8.47-3.39,1.33-2.89-8.74-4.73,1.72-.87-3.73,2-8.9,3.42,3.2,4.62-5.25-.26-7,3.83-2.74-1.75-13.21,1.74-7.1-2.9-4.14,2.06-3.37-.52-4.67-3.78-2-3,1.34-5.8-3.35L803,342.08l.81-5.06q2.48-1.08,4.91-2.19l.89-4.24h0l3.45-2.67-5.4-3-3.21-1.12-3.34,1.52-1.8,3.39-7.7,3-1.91,6.56,4.16,4.66-.8,6.08c.76,1.62,1.53,3.23,2.28,4.86l-6.17-.08,1.34,5,3.42,1.27,0,3.62-3.32,1.27,3.27,8.26-.56,3.71-5.24.13-.44,4.43-5.4,3.57,1.47,9.63-7.41,6.13-.81,2.69-5.69-.62-4.62,3.21L754,404.22l7.13,7.93,8.33,3.07c.83,2.55,1.66,5.12,2.48,7.68,1.07-.32,2.14-.65,3.2-1h0l1.05,5.54-5,1.53Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M799.3,328.69l1.8-3.39-1.33-4h0l-2.64-1.46-5.68,2L791,325.2l-4.34,4.5c-1.21-2.34-2.42-4.67-3.66-7l-1.84-.6-2-4-2.22,1.38-2.11,3.7c.79,1.52,1.57,3,2.34,4.55l-2.19,4.83-2.48-2-2.58,5.52-3-2.81-10.38,1.9L757,338c-1.34.45-2.68.9-4,1.34l1.65,9-5.31,4.15,1.21,4.2-3.1,4.52-3.57-4.66-3.21.65-2.15.44L741,367.74l-1.2,3.39,1.32,3.56,2.93,1.18-1.13,3.74,6.81,12.07,4.56-.51,2.19,4.25-2.48,8.8,11.19,1.86,4.62-3.21,5.69.62.81-2.69,7.41-6.13L782.26,385l5.4-3.57.44-4.43,5.24-.13.56-3.71-3.27-8.26,3.32-1.27,0-3.62-3.42-1.27h0l-1.34-5,6.17.08c-.75-1.63-1.52-3.24-2.28-4.86l.8-6.08-4.16-4.66,1.91-6.56Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M776.2,427.46l-1.05-5.54h0c-1.06.34-2.13.67-3.2,1-.82-2.56-1.65-5.13-2.48-7.68l-8.33-3.07L754,404.22l2.48-8.8-2.19-4.25-4.56.51-6.81-12.07,1.13-3.74-2.93-1.18-1.32-3.56,1.19-3.4-2.5-10.06h.07l-4-8.35-4.18.46-9.47-5.43-4,3.27-6.85-2.3-1.64-3.09-10,3.61L697,352.44l-4.31.93,2.36,6.22-6.35-.62-7.11,3.9L664,357.94l-2.53-5.78h-5.23l-1.86-5.92-2.8-2.17-5.5,6.61-2.63,4-6.75-.8-3.51-6.58-3.55,4.16,3.64,6.48-.5,2.7,5.36,2.78,2.63,4.72,4,7.18,6,0-.58,3.16,2,3-3.93,4.76.59,6.5,4.54,1.53,1.16,5.94,3.9-.66,4,2.93,2.94-.47,3.92,5,.18,5.38,8.12,7.9h0l8.59-3,7.54,7.52,4.45,7.46,8.61,2,7.37,3.85,2.37,1.72,6.33.25,3.38-3.21,1.53-.21,4.56-4.79,3.09-.19,2.69,3.28,3.37,6.66,11.68.19L762.4,439l7,0-.5-5.79,2.3-4.18Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M760.52,334.28q-1.57-3.33-3.18-6.63l-4.72,1.13-7.72-2.07-3,2-11.43-5.46-4.77-7.44-3.61-1.34-3.38,2.94-4.82-1.31.69-3.15-3.47-4.24-3.78.93-4.48-2.32-2.37,1.87,1,3.67-3.54,3.35,3.63,5.83-7,.63-2.85,1.45-5.85-5.44-9.16-5.19-6.6,7.15L673.3,325l1-4.93,5.87-.47,7.57,7.13-10.45,3.39,1.09,5.62,5,.87.23,4.11,5,2.61,4,10.08,4.31-.93,1.46-6.61,10-3.61,1.64,3.09,6.85,2.3,4-3.27,9.47,5.43,4.18-.46,4,8.35,2.08-.42,3.21-.65,3.57,4.66,3.1-4.52-1.21-4.2,5.31-4.15-1.65-9c1.36-.44,2.7-.89,4-1.34l-.5-2.78,4.11-.73Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M779.59,280.82l5.48-3.56,7.65-4h0l1.58,1.36,5.58.33L796.62,271l1.34-2.92L790.3,260l-5.81-1.79,4.11-7.74,5.24,2.31-2.24-5.12L789,246.22,783.7,236l6.84-1.21.2-3.4q-2.88-3.32-5.81-6.58c.74-.49,1.48-1,2.2-1.49l-1.64-3.81,1.53-2.83-4.73-1.33-.82-1.17-2.87-.46.93,3.31-2.42.81L774,215.71l-2.73.57-4.52-3.46-3.57.2.72,3.36-3.25,1.55-4.05-3.06L754.09,216l1.61,2.36-.28,1.83-21-12.71-7.44-2-2.12-4.74-2.81,1-1.37,12-3.61-1.75-.07-2.79-2.34-1.9-1.61,2.92-2.18-1.47-1.56,3.89L706,211.1l-.93-3.64-3.88-3L698,205.87l-4.44-.22-1.78,2.64,1.89,2.64-9,5.38.69,2.28-7.88,3.48-5.88,3.57,3.75,4.19,4.7-.07,1.14,3.13-5.26.27-.16,2.17,3.63,2.58-4.86,2.63,1.63,1.93,8.38.38,1.66,4.48-5.39,1.76-.46,2.29-5.59-.63-2-2-3.07.49.34,2-2,1.25-2-1.81-2.87,1.11-1.26,4.08-6-2.39c.41.86.83,1.72,1.25,2.58l-2.4.37L651.9,254l-3.24-2.36-3.77.62h0l-.6-1.31-2.84.61-.29,1.66-2.29.47-1.12-1-2.62.53-.3,2.42-3.58,1.85-1.94,5.2,2,3-2,1.63-5.36-3.67-1.58,1.95,1.08,2.58L622,271.87l2.49,1.54-.37,5.81,2.94,1.09c.31.92.63,1.84.95,2.76l5.88.08,5.61,4.55-1,4.7,3.38,2,.71-2.85,9-6.49,8.93.31,2.29,9.34-7.41,5.37,1.56,3.32-2.68,2,6.51,7.78,9.69,2.17-.36,5.27,6.6-7.15,9.16,5.19,5.85,5.44,2.85-1.45q-5.67-14.11-11.71-27.8l9.61-7.07,1-8,7.49.93-1.84,4.45,6.05,6.17,11.86,7.25,9.9-3.07,3.23-4.24,8.24,5q1.75,3.25,3.48,6.54l2.36-.81,4,6,5.5-1.95,4.3,2.89-.33-5.48,4.52-11.71-.55-4.34h10.74l-1.72-3.76,1.44-2.91Zm-14.35-10.48-8.07-3.76v-12l14.2-4.15-.2-3.07,3.15-.91,2.84,6.67h0l-14.65,6.07-.73,4.58Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M799.89,274.94l-5.58-.33-1.58-1.36h0l-7.66,4-5.48,3.56h0l-7.46-.1-1.44,2.91,1.72,3.76H761.67l.55,4.34,3.76,2.09-1.88,4.61,4.32,1.06,1.53-3,9.42,2.43-3.81,7.93h0l-3.35-1-1.52,3.49-3.67.92,1.07,4.76,6.95-1.18,3.46-1.94,4,1.64,4.3-4.52.92-1-1.78-3.95.69-4.94,3-2.54,2.56,2.76,2.55-1.79-1.71-5.84q2.87-1.38,5.63-2.79l-1.25-4.79,4.11-7.35Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M770.68,309.33l1.52-3.49,3.35,1h0l3.82-7.93L770,296.5l-1.53,3-4.32-1.06,1.88-4.61-3.76-2.09-4.52,11.71.33,5.48-4.3-2.89-5.5,1.95-4-6-2.36.81q-1.73-3.29-3.48-6.54l-8.24-5L727,295.51l-9.9,3.07-11.86-7.25-.83,5.71-2.46-.12-4.1-6.55-.3,5.69-2.93.58-2.53-6.08.41-2.79-9.61,7.07q6,13.68,11.71,27.8l7-.63-3.63-5.83,3.54-3.35-1-3.67,2.37-1.87,4.48,2.32,3.78-.93,3.47,4.24-.69,3.15,4.82,1.31,3.38-2.94,3.61,1.34,4.77,7.44,11.43,5.46,3-2h0l7.72,2.07,4.72-1.13q1.6,3.3,3.18,6.63l.11.21,6.27-1.17-.12-7.49-3.46-3.63-4.87-1,.25-3.39,4-1.06-.59-4.23,1.62-1.54-1.35-3.27,1.84-.37,2.41-3.93,2.11,1.17-.19,2.62Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M779.12,318.13l2,4,1.84.6c1.24,2.33,2.45,4.66,3.66,7l4.34-4.5.51-3.28,5.68-2,2.64,1.46,1.21-2.61-6.24-7-2.79.46-1,1.24L786.75,309h0l-4.3,4.52-4-1.64L775,313.83,768.08,315,767,310.25l3.67-.92-2.13-2.16.19-2.62-2.11-1.17-2.41,3.93-1.84.37,1.35,3.27-1.62,1.54.59,4.23-4,1.06-.25,3.39,4.87,1,3.46,3.63.12,7.49,3,2.81,2.58-5.52,2.48,2,2.19-4.83c-.77-1.52-1.55-3-2.34-4.55l2.11-3.7Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M958.54,344.63l1.41,4.24,2.26,4.88-.39-3.84-2.79-7,.29-3.48-.93-6.46-1.76-4.3,1,.4-2.31-5.45,1.11.87-1.32-6,.58.18-.85-3.36-2.23-5.36-3.12-8.37-.77-.57-.72-1.95.09-1.15-1.4-2.75-.7-2-1.48-2.66-.34-1.34-2.54-4.74-.64-.87-.92-2.05-.73-.79-.9-1.75-.36-1.25-5.21-9.36-2.78-5.1,1.6,2.47-1.4-2.64-1-1.39-1-1.77-.72-.79-.85-1.46.22-.15L924.55,254l-2.18-2.61,1.07,2.47-1.53-2.09-1.75-3.29-1-2.25-1.4-1.67-.4.28-1.74-1.76.05-1.59L914,239.08l-2.09-1.42-3-4.08-4.32-4.28-1.37.12L901.26,227l-6.38-10.13L893,214.72,889.71,209l-.08-.71-3.49-4.18L887.3,207,886,207l4.64,6.54.52,1.44-1.87-1.36-1.63-2.41-1.65-1.1,1,2.21-2.61-1.42-3.62-4.79-.81-3-4.36-5.49-1.9-3.29-4.14-5.27-.82-1.86,1.93,1.17,3.64,4.36,1.46,2.29,1.56,1.61h.32l.26,0,1.94,2.89,1.59,1.71-1.54-2.62-6.52-8.78-.39-1.43-1.63-1.93-5.93-7.61-4.52-4.75-2.12-2.52,2.85,2.4-2.16-3-3.12-2.59h0l-3.43-4.13-5-4.71.31-.19-2.68-2.65-5.64-5.19h0l-4.67-3.74L831.4,144l-.21-.85-15.35-12.46-2.08-1.84-2.23-1.74-1.14-.69-2.24-1.74-1.36-.83,5.67,5.12,3.95,3,.54,1,2.24,2.22L810.26,129l1.36,1.56-1.17-.61-.48.64,1.89,1.87-1-.13-8.66-5.12-7.09-4.11-5.06-1.45,1.16,1.42-2.11.47,3.76,5.61,3.1,3.22,2.84,1.69-.63-1.33,4.21,2.56,2.3,2.67,9,7.63.62-.15,2.2,1.8,1,2.23,3,3.53-1.73.5,10.42,10.89,3.66,1.91-1.58-2.14.06-1.91-2.82-3-.47-2.15,7.6,3.88,2.71,2.77-2.16.52,3.26,5.91,4.5,4.31,3,4.24-1.56.87,4.53,5.34.18,3.44-2.77-.84,4.51,5.55,3.46,1.06,3.28,4.52.15,2.56,5.09,8.52-1.92,4.56,2.23,11.41-3.18-1.95-4,1.63L850,228.52l.64,3.8-7.26,2.74-.32,3.15-7.81-5.54-11-3.1-6.87,5.68-4-3L808.78,225h0L799.42,219c-.91.73-1.84,1.46-2.78,2.19l-6.31-1.67L787,216.63l-1.53,2.83,1.64,3.81c-.72.5-1.46,1-2.2,1.49q2.93,3.27,5.81,6.58l-.2,3.4L783.7,236,789,246.22l2.61,1.39,2.24,5.12-5.24-2.31-4.11,7.74L790.3,260l7.66,8.14L796.62,271l4.81,5.79-4.11,7.35,1.25,4.79q-2.76,1.41-5.63,2.79l1.71,5.84-2.55,1.79-2.56-2.76-3,2.54-.69,4.94,1.78,3.95-.92,1h0l4.19,4.37,1-1.23,2.79-.47,6.24,7.05-1.21,2.61h0l1.33,4,3.34-1.52,3.21,1.12,5.4,3,5.39.67,2.27-1.14,4.2,5.78,5.05.93-.52,3.08,1.78,2.58,5.17,3,2.35,3.39-.9,2.23-3,1.56,5.48,7.61,3-.77,2.1,2.69,8.77,2.45,1.66.45.15-3.73,3.32-1.14c.48,1,.95,1.91,1.42,2.87l5,.9,3.11,2.63,1.94-2.08,6.33,3.19,6.09.68-.12-2.81h0l4.13,1.46,2-2.2,2.59-4.08c.32.91.76,2.12,1.08,3l1.34-3L894,354c.74-.59,1.46-1.17,2.18-1.77L897.6,355l1.72-4.3,3.1,2.72,1.43-4.87-1.07-5.21,1.73-2.09.51-5.62,2.68.15v-7.14l3.42,2.69,1,3.6,4,1.11-.89-3.5,2.23.4,2.2,3,2.07.31,3.35,5.61,2.21,5.77.52,6.33,1.44,3.36.13,2.64,3.16,5.81-.11-4.16,1.62-1.76,1.21,3.21,2,2.93,2.63.44-.13,2.17,1.46,4.49,2.22-.82,2.34,3.14-.24-6.57,4,6.89c.4-.62.79-1.23,1.17-1.85l-1.94-5.15h0l-2.35-3.1-.7-2.82,1.3-.21-1-4.89,2.21.83h0l-.6-3.22,1.78,1-.1-4.21-1.35-6.31,2.95,2.34c.32-.76.62-1.52.91-2.27l2.33,6.06,2.75-.65-.2-2.86,1.63-.75Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="749.53 82.54 751.66 83.39 747.14 80.6 746.99 80.92 749.53 82.54" style="fill:#d9dadb"></polygon><path d="M903.51,221.28c-.27-.48-.55-.95-.83-1.42l-1.51-2.11-1-1.2,1.54,2.09-.1,0Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="911.93 240.69 911.92 240.69 911.93 240.69 911.93 240.69" style="fill:#d9dadb"></polygon><polygon points="909.34 236.82 910.54 238.93 911.92 240.69 910.82 238.76 909.34 236.82" style="fill:#d9dadb"></polygon><path d="M995.56,550.26c.3-.88.58-1.76.85-2.64l.41-6-.79.86Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="44.64 321.5 44.65 321.48 44.64 321.5 44.64 321.5" style="fill:#d9dadb"></polygon><polygon points="44.65 321.48 45.65 319.08 46.72 316.28 45.78 318.58 45.64 318.93 44.65 321.48" style="fill:#d9dadb"></polygon><polygon points="27.57 401.45 28.61 396.85 28.48 394.69 27.37 399.25 27.57 401.45" style="fill:#d9dadb"></polygon><path d="M36.21,424.7c.11.51.22,1,.34,1.53l1.15-3.81.64-4.27v-2l-1.28,6.06Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="22.56 421.79 23.27 417.74 22.41 419.52 21.85 422.97 22.56 421.79" style="fill:#d9dadb"></polygon><path d="M41.4,404l.83-3.44c-.11-.58-.21-1.16-.31-1.74l-.82,3.57C41.19,402.91,41.29,403.45,41.4,404Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M43.2,393l.91-3.41c-.08-.58-.16-1.16-.22-1.74l-.9,3.54C43.05,392,43.12,392.49,43.2,393Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M33.87,408.88l-.6,2.84c-.19.89-.37,1.79-.55,2.68Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M32.7,414.5l0-.1v.1Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="583.91 980.16 583.66 980.2 580.69 980.71 580.39 980.76 583.75 980.19 583.75 980.19 583.91 980.16" style="fill:#d9dadb"></polygon><polygon points="587.99 979.42 591.82 978.7 591.08 978.84 587.61 979.49 587.99 979.42" style="fill:#d9dadb"></polygon><path d="M618.9,987.48l6-1.36C623,986.52,621,987,618.9,987.48Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M613,988.79l-3.34.68-2.28.49.12,0c3.42-.61,7.52-1.56,11.41-2.46l-1,.23Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M553.83,997.66l.27,0-3.31.28-1.11.1Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="142.62 503.05 142.62 503.05 142.62 503.05 142.62 503.05" style="fill:#ff7b00"></polygon><polygon points="142.91 496.21 141.44 498.26 142.62 503.05 145.06 500.25 142.91 496.21" style="fill:#ff7b00"></polygon><polygon points="150.31 494.94 150.82 490.44 148.03 489.74 147.55 494.08 150.31 494.94" style="fill:#ff7b00"></polygon><polygon points="139.9 478.19 135.89 479.92 139.66 483.76 139.9 478.19" style="fill:#ff7b00"></polygon><polygon points="349.97 342.76 354.73 338.99 351.23 335.76 345.35 338.32 349.97 342.76" style="fill:#d9dadb"></polygon><polygon points="211.47 412 215.64 410.62 214.03 406.08 211.18 407.83 211.47 412" style="fill:#d9dadb"></polygon><polygon points="212.87 402.4 206.08 402.56 207.42 407.99 212.87 402.4" style="fill:#d9dadb"></polygon><path d="M235.65,421.2l2.54-5-.4-2.13-4.92,6.38Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><path d="M203.58,327.57l4.78,2.32.89-3.34-3.29-1.4-2.38,2.42Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="187.4 307.31 189.53 305.68 189.08 302.56 186.06 304.65 187.4 307.31" style="fill:#d9dadb"></polygon><path d="M744.18,934l4.3-3.08-6.16,1.73c-1.23,1-2.48,2.09-3.73,3.12Z" transform="translate(-11.9 -11.98)" style="fill:#d9dadb"></path><polygon points="735.36 806.32 739.62 802.74 736.43 800.16 732.46 803.69 735.36 806.32" style="fill:#ff7b00"></polygon><polygon points="748.19 798.54 755.1 792.09 751.42 790.96 747.06 796.5 748.19 798.54" style="fill:#ff7b00"></polygon><polygon points="965.97 531.48 964 529.36 963.84 533.2 965.8 538.08 965.8 538.08 965.97 531.48" style="fill:#d9dadb"></polygon><polygon points="967.99 548.9 969.14 553.44 970 548.91 968.99 544.68 967.99 548.9" style="fill:#d9dadb"></polygon><polygon points="950.05 498.28 950.05 498.28 950.05 498.28 950.05 498.28" style="fill:#d9dadb"></polygon><polygon points="947.57 491.1 948.01 496.07 950.05 498.28 949.7 492.94 947.57 491.1" style="fill:#d9dadb"></polygon><polygon points="938.75 470.61 940.05 471.68 940.01 467.62 938.63 467.01 938.75 470.61" style="fill:#d9dadb"></polygon><polygon points="959.01 525.79 961.89 528.12 961.57 524.31 959.07 522.29 959.01 525.79" style="fill:#d9dadb"></polygon><polygon points="982.13 475.49 982.91 478.82 982.91 473.93 982.14 470.87 982.13 475.49" style="fill:#d9dadb"></polygon><polygon points="858.68 550.73 856.61 550.13 855.91 554.51 857.97 555.13 857.97 555.13 858.68 550.73" style="fill:#d9dadb"></polygon><polygon points="861.95 561.91 860.08 560.51 859.38 565.62 861.68 566.47 861.68 566.47 861.95 561.91" style="fill:#d9dadb"></polygon><polygon points="731.4 926.82 729.77 927.34 727.66 929.09 731.4 926.82" style="fill:#d9dadb"></polygon><polygon points="630.39 714.26 626.3 716.74 628.83 719.89 630.39 714.26" style="fill:#ff7b00"></polygon><polygon points="655.24 758.07 658.27 756.02 656.52 751.92 654.72 754.03 655.24 758.07" style="fill:#ff7b00"></polygon><polygon points="748.35 687.16 750.41 685.4 749.57 682.84 746.81 685.26 748.35 687.16" style="fill:#ff7b00"></polygon><polygon points="664.04 761.04 666.35 758.65 664.8 756.39 662.25 758.6 664.04 761.04" style="fill:#ff7b00"></polygon><polygon points="677.22 735.36 681.51 736.29 681.42 732.75 677.22 735.36 677.22 735.36" style="fill:#ff7b00"></polygon></g><circle cx="511.9" cy="511.98" r="488.79" transform="translate(-223.99 499.94) rotate(-45)" style="fill:none"></circle></g></g></svg></span> </span> <a class="elementor-accordion-title" tabindex="0">North America</a> </div> <div id="elementor-tab-content-2601" class="elementor-tab-content elementor-clearfix" data-tab="1" role="region" aria-labelledby="elementor-tab-title-2601"><p> <div data-elementor-type="page" data-elementor-id="20465" class="elementor elementor-20465" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-763149e7 local-chapter_section elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="763149e7" data-element_type="section"> <div class="elementor-container elementor-column-gap-extended"> <div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-76ed6f97" data-id="76ed6f97" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-33c0ed49 elementor-widget elementor-widget-text-editor" data-id="33c0ed49" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong>Canadian Society of Exploration Geophysicists (CSEG)<br /></strong>Canada</p> </div> </div> <div class="elementor-element elementor-element-aebb223 e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="aebb223" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://cseg.ca/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-56574120 elementor-widget elementor-widget-text-editor" data-id="56574120" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong>Chinese American Petroleum Association (CAPA)</strong><br />United States</p> </div> </div> <div class="elementor-element elementor-element-0b89fac e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="0b89fac" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://capa.wildapricot.org/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-d337ecb elementor-widget elementor-widget-text-editor" data-id="d337ecb" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <strong>The Society of High Performance Computing Professionals (SHPCP)</strong> United States </div> </div> <div class="elementor-element elementor-element-b72e36a e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="b72e36a" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://hpcsociety.org/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-22f06f0c" data-id="22f06f0c" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-f4fc4cb elementor-widget elementor-widget-text-editor" data-id="f4fc4cb" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong>Geological Society of America (GSA)</strong><br />United States</p> </div> </div> <div class="elementor-element elementor-element-08aa934 e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="08aa934" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://www.geosociety.org/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-437ac540 elementor-widget elementor-widget-text-editor" data-id="437ac540" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong>Canadian Global Energy Forum (CGEF)</strong><br />Canada</p> </div> </div> <div class="elementor-element elementor-element-fdb2e01 e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="fdb2e01" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://www.cgef.org/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-6d180026" data-id="6d180026" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-4e2a531 elementor-widget elementor-widget-text-editor" data-id="4e2a531" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong>International Association for Engineering Geology and the Environment (IAEG)</strong></p> </div> </div> <div class="elementor-element elementor-element-168250a e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="168250a" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://www.iaeg.info/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-19e54e83 elementor-widget elementor-widget-text-editor" data-id="19e54e83" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><b>Canadian Energy Geoscience Association (CEGA)</b><br />Canada</p> </div> </div> <div class="elementor-element elementor-element-b99a0d0 e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="b99a0d0" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://cspg.org/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-16db977a" data-id="16db977a" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-39ab787 elementor-widget elementor-widget-text-editor" data-id="39ab787" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong>American Rock Mechanics Association</strong><br />United States</p> </div> </div> <div class="elementor-element elementor-element-08cbc4e e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="08cbc4e" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://armarocks.org/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-89a0d01 elementor-widget elementor-widget-text-editor" data-id="89a0d01" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><b>International Association for Mathematical Geosciences (IAMG)<br /></b>United States</p> </div> </div> <div class="elementor-element elementor-element-b23805d e-grid-align-left local_chapter_socialmedia elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="b23805d" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-globe elementor-repeater-item-3204af6" href="https://iamg.org/" target="_blank" rel="noopener"> <span class="elementor-screen-only">Globe</span> <i class="fas fa-globe"></i> </a> </span> </div> </div> </div> </div> </div> </div> </section> </div> </p></div> </div> </div> </div> </div> </div> </div> </div> </section> </div> </div> </div> </div> <div class="elementor-element elementor-element-95b8da7 e-con-full e-flex e-con e-child" data-id="95b8da7" data-element_type="container" data-settings="{"background_background":"classic"}"> <div class="elementor-element elementor-element-47a6508 e-con-full e-flex e-con e-child" data-id="47a6508" data-element_type="container" data-settings="{"background_background":"classic"}"> <div class="elementor-element elementor-element-e016a46 elementor-position-left elementor-widget__width-inherit iconbox-iconleft elementor-view-default elementor-mobile-position-top elementor-vertical-align-top elementor-widget elementor-widget-icon-box" data-id="e016a46" data-element_type="widget" data-widget_type="icon-box.default"> <div class="elementor-widget-container"> <div class="elementor-icon-box-wrapper"> <div class="elementor-icon-box-icon"> <span class="elementor-icon elementor-animation-"> <i aria-hidden="true" class="fas fa-share-alt"></i> </span> </div> <div class="elementor-icon-box-content"> <div class="elementor-icon-box-title"> <span > Stay connected sandbox </span> </div> </div> </div> </div> </div> <div class="elementor-element elementor-element-b266822 elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons" data-id="b266822" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-ce9306a" href="https://www.facebook.com/EAGEglobal" target="_blank"> <span class="elementor-screen-only">Facebook</span> <i class="fab fa-facebook"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-repeater-item-5d63df5" href="https://www.linkedin.com/company/eagelinkedin/" target="_blank"> <span class="elementor-screen-only">Linkedin</span> <i class="fab fa-linkedin"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-03f4c7d" href="http://youtube.com/user/EAGEchannel" target="_blank"> <span class="elementor-screen-only">Youtube</span> <i class="fab fa-youtube"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-x-twitter elementor-repeater-item-2284b44" href="https://twitter.com/EAGE_Global" target="_blank"> <span class="elementor-screen-only">X-twitter</span> <i class="fab fa-x-twitter"></i> </a> </span> </div> </div> </div> </div> <div class="elementor-element elementor-element-ea4bab7 e-con-full e-flex e-con e-child" data-id="ea4bab7" data-element_type="container"> <div class="elementor-element elementor-element-2ed3ece elementor-widget elementor-widget-html" data-id="2ed3ece" data-element_type="widget" data-widget_type="html.default"> <div class="elementor-widget-container"> <!-- /20287594127/WP_EAGE_skyscraper --> <div id='div-gpt-ad-1721216353239-0' style='min-width: 310px; min-height: 360px;'> <script> googletag.cmd.push(function() { googletag.display('div-gpt-ad-1721216353239-0'); }); </script> </div> </div> </div> </div> <div class="elementor-element elementor-element-7a71a37 e-con-full e-flex e-con e-child" data-id="7a71a37" data-element_type="container" data-settings="{"background_background":"classic"}"> <div class="elementor-element elementor-element-e250c96 elementor-position-left elementor-widget__width-inherit iconbox-iconleft elementor-view-default elementor-mobile-position-top elementor-vertical-align-top elementor-widget elementor-widget-icon-box" data-id="e250c96" data-element_type="widget" data-widget_type="icon-box.default"> <div class="elementor-widget-container"> <div class="elementor-icon-box-wrapper"> <div class="elementor-icon-box-icon"> <span class="elementor-icon elementor-animation-"> <i aria-hidden="true" class="fas fa-newspaper"></i> </span> </div> <div class="elementor-icon-box-content"> <div class="elementor-icon-box-title"> <span > Related news </span> </div> </div> </div> </div> </div> <div class="elementor-element elementor-element-e9f9616 elementor-grid-1 elementor-posts--thumbnail-left related_news_widget elementor-grid-tablet-1 elementor-grid-mobile-1 elementor-widget elementor-widget-posts" data-id="e9f9616" data-element_type="widget" data-settings="{"classic_columns":"1","classic_row_gap":{"unit":"px","size":10,"sizes":[]},"classic_columns_tablet":"1","classic_columns_mobile":"1","classic_row_gap_tablet":{"unit":"px","size":"","sizes":[]},"classic_row_gap_mobile":{"unit":"px","size":"","sizes":[]}}" data-widget_type="posts.classic"> <div class="elementor-widget-container"> <div class="elementor-posts-container elementor-posts elementor-posts--skin-classic elementor-grid"> <article class="elementor-post elementor-grid-item post-15555 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry news_categories-about-eage_news"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/wge-online-talk-on-patenting/" tabindex="-1" > <div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2022/02/women-in-science.jpeg?w=150&h=150&crop=1" title="Professional engineering, worker, woman" alt="" loading="lazy" /></div> </a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/wge-online-talk-on-patenting/" > WGE to Conduct a Webinar on Patenting </a> </h3> <a class="elementor-post__read-more" href="https://eage.org/eage_news/wge-online-talk-on-patenting/" aria-label="Read more about WGE to Conduct a Webinar on Patenting" tabindex="-1" > Read More » </a> </div> </article> <article class="elementor-post elementor-grid-item post-15438 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry news_categories-about-eage_news"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/eage-board-ukraine-statement/" tabindex="-1" > <div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2022/03/Panoramic_Polonina-Borzava_Ukraine.jpg?w=150&h=150&crop=1" title="Panoramic_Polonina-Borzava_Ukraine" alt="" loading="lazy" /></div> </a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/eage-board-ukraine-statement/" > EAGE BOARD UKRAINE STATEMENT </a> </h3> <a class="elementor-post__read-more" href="https://eage.org/eage_news/eage-board-ukraine-statement/" aria-label="Read more about EAGE BOARD UKRAINE STATEMENT" tabindex="-1" > Read More » </a> </div> </article> <article class="elementor-post elementor-grid-item post-8352 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry news_categories-about-eage_news"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/changes-to-the-constitution-june-2020/" tabindex="-1" > <div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2021/01/EAGEbuilding.jpg?w=150&h=150&crop=1" title="EAGE building" alt="Eage Head office" loading="lazy" /></div> </a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/changes-to-the-constitution-june-2020/" > Changes to the Constitution (June 2020) </a> </h3> <a class="elementor-post__read-more" href="https://eage.org/eage_news/changes-to-the-constitution-june-2020/" aria-label="Read more about Changes to the Constitution (June 2020)" tabindex="-1" > Read More » </a> </div> </article> </div> </div> </div> <div class="elementor-element elementor-element-3aac958 elementor-position-right elementor-widget__width-inherit iconbox-iconright elementor-view-default elementor-mobile-position-top elementor-vertical-align-top elementor-widget elementor-widget-icon-box" data-id="3aac958" data-element_type="widget" data-widget_type="icon-box.default"> <div class="elementor-widget-container"> <div class="elementor-icon-box-wrapper"> <div class="elementor-icon-box-icon"> <a href="https://eage.org/eage_news/eage-news-archive/" class="elementor-icon elementor-animation-" tabindex="-1"> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 25 25" style="enable-background:new 0 0 25 25;" xml:space="preserve"><style type="text/css"> .st0{fill:#009B7B;} .st1{fill:#FFFFFF;}</style><g id="Layer_3"></g><g id="Layer_4"> <g> <g id="Path_1173"> <path class="st0" d="M12.5,24.01c6.36,0,11.51-5.15,11.51-11.51S18.86,0.99,12.5,0.99S0.99,6.14,0.99,12.5c0,0,0,0,0,0 C0.99,18.86,6.14,24.01,12.5,24.01"></path> <path class="st1" d="M12.5,24.39c-6.55,0-11.89-5.33-11.89-11.89c0-6.56,5.33-11.89,11.89-11.89c6.56,0,11.89,5.33,11.89,11.89 S19.06,24.39,12.5,24.39z M12.5,1.36c-6.14,0-11.14,5-11.14,11.14c0,6.14,5,11.14,11.14,11.14c6.14,0,11.14-5,11.14-11.14 C23.64,6.36,18.64,1.36,12.5,1.36z"></path> </g> <path id="Path_1175" class="st1" d="M10.61,18.46c-0.57,0.01-1.05-0.44-1.07-1.01c-0.01-0.31,0.12-0.6,0.35-0.81l4.23-4.1 L9.9,8.45c-0.43-0.41-0.44-1.1-0.03-1.53c0.41-0.43,1.1-0.44,1.53-0.03l5.79,5.66L11.4,18.2c-0.19,0.2-0.44,0.31-0.72,0.33"></path> </g></g></svg> </a> </div> <div class="elementor-icon-box-content"> <div class="elementor-icon-box-title"> <a href="https://eage.org/eage_news/eage-news-archive/" > Read more news </a> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <div data-elementor-type="footer" data-elementor-id="174" class="elementor elementor-174 elementor-location-footer" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-8de936b footer_green_line elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="8de936b" data-element_type="section" data-settings="{"background_background":"classic"}"> <div class="elementor-background-overlay"></div> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-fa94818" data-id="fa94818" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-81dfce2 elementor-widget__width-auto elementor-fixed elementor-hidden-phone elementor-view-default elementor-widget elementor-widget-icon" data-id="81dfce2" data-element_type="widget" id="backupthepage" data-settings="{"motion_fx_motion_fx_scrolling":"yes","motion_fx_opacity_effect":"yes","motion_fx_opacity_range":{"unit":"%","size":"","sizes":{"start":"21","end":"42"}},"motion_fx_range":"viewport","_position":"fixed","motion_fx_devices":["desktop","tablet"],"_animation":"none","motion_fx_opacity_direction":"out-in","motion_fx_opacity_level":{"unit":"px","size":10,"sizes":[]}}" data-widget_type="icon.default"> <div class="elementor-widget-container"> <div class="elementor-icon-wrapper"> <a class="elementor-icon" href="#"> <i aria-hidden="true" class="far fa-arrow-alt-circle-up"></i> </a> </div> </div> </div> </div> </div> </div> </section> <footer class="elementor-section elementor-top-section elementor-element elementor-element-8bc4f38 elementor-section-height-min-height elementor-section-content-middle elementor-hidden-phone elementor-section-boxed elementor-section-height-default elementor-section-items-middle" data-id="8bc4f38" data-element_type="section" data-settings="{"background_background":"classic"}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-65982f09" data-id="65982f09" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-f251e86 elementor-widget elementor-widget-image" data-id="f251e86" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <img src="https://eage.org/wp-content/uploads/2020/03/EAGE_logo_diap_bijschrift.svg?w=768" title="EAGE_logo_diap_bijschrift" alt="" loading="lazy" /> </div> </div> </div> </div> <div class="elementor-column elementor-col-66 elementor-top-column elementor-element elementor-element-66e431cc" data-id="66e431cc" data-element_type="column" data-settings="{"background_background":"classic"}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-ca43308 elementor-widget elementor-widget-text-editor" data-id="ca43308" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <span class="footer_item"> <a href="https://eage.org/corporate-calendar/">Corporate Calendar</a></span><span class="footer_item"><a href="https://support.eage.org" target="_blank" rel="noopener">Support</a> </span> <span class="footer_item"><a href="https://eage.org/about_eage/eage-privacy-and-cookie-statement/">Privacy & Cookie Statement</a></span> <span class="footer_item"><a href="https://eage.org/membership/membership-terms-and-conditions/">Membership Terms and Conditions </a></span><span class="footer_item"><a href="https://eage.org/about_eage/3957-2/">Health and safety policy</a></span> </div> </div> <div class="elementor-element elementor-element-551c95e9 e-grid-align-right e-grid-align-mobile-center elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="551c95e9" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook-f elementor-animation-pop elementor-repeater-item-993ef04" href="https://www.facebook.com/EAGEglobal" target="_blank"> <span class="elementor-screen-only">Facebook-f</span> <i class="fab fa-facebook-f"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-animation-pop elementor-repeater-item-a1c64d4" href="https://www.linkedin.com/company/eagelinkedin/" target="_blank"> <span class="elementor-screen-only">Linkedin</span> <i class="fab fa-linkedin"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-animation-pop elementor-repeater-item-20757a3" href="http://youtube.com/user/EAGEchannel" target="_blank"> <span class="elementor-screen-only">Youtube</span> <i class="fab fa-youtube"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon- elementor-animation-pop elementor-repeater-item-a229ff5" href="https://twitter.com/EAGE_Global" target="_blank"> <span class="elementor-screen-only"></span> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 1200 1227" style="enable-background:new 0 0 1200 1227;" xml:space="preserve"><path d="M714.16302,519.284L1160.89001,0h-105.85999L667.13702,450.88699L357.328,0H0l468.492,681.82098L0,1226.37h105.866 l409.62503-476.15198L842.672,1226.37H1200L714.13702,519.284H714.16302z M569.16498,687.828l-47.46796-67.89398L144.011,79.6944 h162.60399l304.797,435.9906L658.88,583.57898l396.19995,566.72107H892.47601L569.16498,687.854V687.828z"></path></svg> </a> </span> </div> </div> </div> </div> </div> </div> </footer> <footer class="elementor-section elementor-top-section elementor-element elementor-element-422826b elementor-section-height-min-height elementor-section-content-middle elementor-hidden-desktop elementor-hidden-tablet elementor-section-boxed elementor-section-height-default elementor-section-items-middle" data-id="422826b" data-element_type="section" data-settings="{"background_background":"classic"}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-27a96d1" data-id="27a96d1" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-34f85cc elementor-widget elementor-widget-text-editor" data-id="34f85cc" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <span class="footer_item"> <!– <a href="https://eage.org/blog/membership/membership-terms-and-conditions/">Membership Terms and Conditions</a></span> <span class="footer_item"><a href="https://eage.org/about_eage/3957-2/">Health and safety policy</a> –> </span> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-0784a8e" data-id="0784a8e" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-576ff26 elementor-widget elementor-widget-image" data-id="576ff26" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <img src="https://eage.org/wp-content/uploads/2020/03/EAGE_logo_diap_bijschrift.svg?w=768" title="EAGE_logo_diap_bijschrift" alt="" loading="lazy" /> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-965482f" data-id="965482f" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-7e03b63 e-grid-align-right e-grid-align-mobile-center elementor-grid-mobile-3 elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="7e03b63" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook-f elementor-animation-pop elementor-repeater-item-993ef04" href="https://www.facebook.com/EAGEglobal" target="_blank"> <span class="elementor-screen-only">Facebook-f</span> <i class="fab fa-facebook-f"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-animation-pop elementor-repeater-item-a1c64d4" href="https://www.linkedin.com/company/eagelinkedin/" target="_blank"> <span class="elementor-screen-only">Linkedin</span> <i class="fab fa-linkedin"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-animation-pop elementor-repeater-item-20757a3" href="http://youtube.com/user/EAGEchannel" target="_blank"> <span class="elementor-screen-only">Youtube</span> <i class="fab fa-youtube"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-animation-pop elementor-repeater-item-a229ff5" href="https://twitter.com/EAGE_Global" target="_blank"> <span class="elementor-screen-only">Twitter</span> <i class="fab fa-twitter"></i> </a> </span> </div> </div> </div> </div> </div> </div> </footer> </div> <script> window.RS_MODULES = window.RS_MODULES || {}; window.RS_MODULES.modules = window.RS_MODULES.modules || {}; window.RS_MODULES.waiting = window.RS_MODULES.waiting || []; window.RS_MODULES.defered = true; window.RS_MODULES.moduleWaiting = window.RS_MODULES.moduleWaiting || {}; window.RS_MODULES.type = 'compiled'; </script> <div data-elementor-type="popup" data-elementor-id="15640" class="elementor elementor-15640 elementor-location-popup" data-elementor-settings="{"entrance_animation":"fadeIn","classes":"award-popup","open_selector":"popup-arie-2021","entrance_animation_duration":{"unit":"px","size":1.2,"sizes":[]},"a11y_navigation":"yes","triggers":[],"timing":[]}" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-2c210806 award-popup_section elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="2c210806" data-element_type="section" data-settings="{"background_background":"classic"}"> <div class="elementor-background-overlay"></div> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-6246df59 award-popup_maincolumn " data-id="6246df59" data-element_type="column" data-settings="{"animation":"none"}"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-760f3ac0 elementor-section-content-middle animated-slow award-popup_inner_section elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="760f3ac0" data-element_type="section" data-settings="{"background_background":"classic","animation":"none"}"> <div class="elementor-background-overlay"></div> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-123d3b58 award-popup_first_col" data-id="123d3b58" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-3922dfe8 award-popup_year_title elementor-widget elementor-widget-heading" data-id="3922dfe8" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h3 class="elementor-heading-title elementor-size-default">2021</h3> </div> </div> <div class="elementor-element elementor-element-79e7a1f0 award-popup_bioname elementor-widget elementor-widget-heading" data-id="79e7a1f0" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-default">Siddharth Misra</h2> </div> </div> <div class="elementor-element elementor-element-48cad6ca award-popup_spinning_coin elementor-widget elementor-widget-image" data-id="48cad6ca" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <img src="https://eage.org/wp-content/uploads/2021/01/Award-Spinning-coin-.gif?w=150" title="Award-Spinning-coin-" alt="" loading="lazy" /> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-3d27bea2 award-popup_second_col" data-id="3d27bea2" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-322bc7bc elementor-widget elementor-widget-text-editor" data-id="322bc7bc" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p>Prof Dr Siddharth Misra’s research focuses on improving subsurface characterization and prospect evaluation for the exploration of hydrocarbons, minerals and water resources.</p><p>His major contribution is in the theory of electromagnetic responses of geological formations to various charge polarization phenomena. The theory has enabled him to introduce a multi-frequency electromagnetic log-inversion technique to remove dielectric effects for improved estimation of hydrocarbon pore volume.</p> </div> </div> </div> </div> </div> </section> </div> </div> </div> </section> </div> <div data-elementor-type="popup" data-elementor-id="14898" class="elementor elementor-14898 elementor-location-popup" data-elementor-settings="{"entrance_animation":"fadeInDown","exit_animation":"fadeInDown","entrance_animation_duration":{"unit":"px","size":0.5,"sizes":[]},"open_selector":".pop_media2","a11y_navigation":"yes","triggers":[],"timing":[]}" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-fdd7028 elementor-section-full_width elementor-section-content-top elementor-section-height-default elementor-section-height-default" data-id="fdd7028" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-8c48882" data-id="8c48882" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-b5b1fab" data-id="b5b1fab" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-5dc7b23 elementor-widget__width-inherit elementor-widget elementor-widget-wp-widget-nav_menu" data-id="5dc7b23" data-element_type="widget" data-widget_type="wp-widget-nav_menu.default"> <div class="elementor-widget-container"> <div class="menu-menu-media-container"><ul id="menu-menu-media" class="menu"><li id="menu-item-2595" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2595"><a href="#">First Break</a> <ul class="sub-menu"> <li id="menu-item-2602" class="menu-item menu-item-type-post_type menu-item-object-media menu-item-2602"><a href="https://eage.org/media/about-firstbreak/">About First Break</a></li> </ul> </li> <li id="menu-item-2596" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2596"><a href="#">Earthdoc</a> <ul class="sub-menu"> <li id="menu-item-2605" class="menu-item menu-item-type-post_type menu-item-object-media menu-item-2605"><a href="https://eage.org/media/earthdoc/">EarthDoc</a></li> </ul> </li> <li id="menu-item-2597" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2597"><a href="#">Journals</a> <ul class="sub-menu"> <li id="menu-item-5534" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5534"><a href="https://eage.org/media/nearsurfacegeophysics#near_surface_geophysics">Near Surface Geophysics</a></li> <li id="menu-item-5535" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5535"><a href="https://eage.org/media/nearsurfacegeophysics#petroleum_geoscience">Petroleum Geoscience</a></li> <li id="menu-item-5536" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5536"><a href="https://eage.org/media/nearsurfacegeophysics#geophysical_prospecting">Geophysical Prospecting</a></li> <li id="menu-item-5537" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5537"><a href="https://eage.org/media/nearsurfacegeophysics#basin_research">Basin Research</a></li> <li id="menu-item-17866" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-17866"><a href="https://eage.org/media/nearsurfacegeophysics#geoenergy">Geoenergy</a></li> </ul> </li> <li id="menu-item-2598" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2598"><a href="#">Books</a> <ul class="sub-menu"> <li id="menu-item-2610" class="menu-item menu-item-type-post_type menu-item-object-media menu-item-2610"><a href="https://eage.org/media/online-bookshop/">Online Bookshop</a></li> <li id="menu-item-5527" class="menu-item menu-item-type-post_type menu-item-object-media menu-item-5527"><a href="https://eage.org/media/publishing-with-eage/">Publishing with EAGE</a></li> </ul> </li> <li id="menu-item-2599" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2599"><a href="#">Newsletters</a> <ul class="sub-menu"> <li id="menu-item-4051" class="menu-item menu-item-type-post_type menu-item-object-media menu-item-4051"><a href="https://eage.org/media/newsletters_stay-connected/">Stay Connected</a></li> <li id="menu-item-5528" class="menu-item menu-item-type-post_type menu-item-object-media menu-item-5528"><a href="https://eage.org/media/digital-newsletters/">Digital Newsletters</a></li> <li id="menu-item-9740" class="menu-item menu-item-type-post_type menu-item-object-media menu-item-9740"><a href="https://eage.org/media/nsg-newsletters/">NSG Newsletters</a></li> </ul> </li> <li id="menu-item-2601" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2601"><a href="#">Media Partners</a> <ul class="sub-menu"> <li id="menu-item-2608" class="menu-item menu-item-type-post_type menu-item-object-media menu-item-2608"><a href="https://eage.org/media/media-partners/">Media Partners</a></li> <li id="menu-item-9659" class="menu-item menu-item-type-post_type menu-item-object-media menu-item-9659"><a href="https://eage.org/media/copyrights-and-use-of-eage-materials/">Copyrights and use of EAGE materials</a></li> </ul> </li> </ul></div> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-b95cc03" data-id="b95cc03" data-element_type="column" data-settings="{"background_background":"classic"}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-82fac38 elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons" data-id="82fac38" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-57fb79f" href="https://www.facebook.com/EAGEglobal" target="_blank"> <span class="elementor-screen-only">Facebook</span> <i class="fab fa-facebook"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-repeater-item-a3355b7" href="https://www.linkedin.com/company/eagelinkedin/" target="_blank"> <span class="elementor-screen-only">Linkedin</span> <i class="fab fa-linkedin"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-70c7d92" href="http://youtube.com/user/EAGEchannel" target="_blank"> <span class="elementor-screen-only">Youtube</span> <i class="fab fa-youtube"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-b11320d" href="https://twitter.com/EAGE_Global" target="_blank"> <span class="elementor-screen-only">Twitter</span> <i class="fab fa-twitter"></i> </a> </span> </div> </div> </div> </div> </div> </div> </section> </div> <div data-elementor-type="popup" data-elementor-id="4198" class="elementor elementor-4198 elementor-location-popup" data-elementor-settings="{"entrance_animation":"fadeInLeft","exit_animation":"fadeInLeft","open_selector":".tablet_overlay_menu","classes":"tablet_overlay","entrance_animation_duration":{"unit":"px","size":1.2,"sizes":[]},"a11y_navigation":"yes","triggers":[],"timing":[]}" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-6d75e2e4 elementor-section-height-full elementor-section-items-top elementor-section-full_width tablet_overlay_popup elementor-section-height-default" data-id="6d75e2e4" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-c590aba" data-id="c590aba" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-6b5d2638 elementor-nav-menu--dropdown-none elementor-nav-menu__align-start elementor-widget elementor-widget-nav-menu" data-id="6b5d2638" data-element_type="widget" data-settings="{"layout":"vertical","submenu_icon":{"value":"<i class=\"fas fa-caret-down\"><\/i>","library":"fa-solid"}}" data-widget_type="nav-menu.default"> <div class="elementor-widget-container"> <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-vertical e--pointer-none"> <ul id="menu-1-6b5d2638" class="elementor-nav-menu sm-vertical"><li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom current-menu-ancestor menu-item-has-children menu-item-1349"><a href="#" class="elementor-item elementor-item-anchor">About EAGE</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1328"><a href="#" class="elementor-sub-item elementor-item-anchor">General</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3501"><a href="https://eage.org/about_eage/mission-and-objectives/" class="elementor-sub-item">Mission and Objectives</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-9309"><a href="https://eage.org/about_eage/eage-history/" class="elementor-sub-item">History</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3498"><a href="https://eage.org/about_eage/agmm/" class="elementor-sub-item">AGMM</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3499"><a href="https://eage.org/about_eage/circles/" class="elementor-sub-item">Circles</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-25434"><a href="https://eage.org/about_eage/code-of-conduct/" class="elementor-sub-item">Code of Conduct</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1329"><a href="#" class="elementor-sub-item elementor-item-anchor">Organization</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-20411"><a href="https://eage.org/about_eage/ballot/" class="elementor-sub-item">Ballot</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3502"><a href="https://eage.org/about_eage/board-and-bod/" class="elementor-sub-item">Board and BoD</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3504"><a href="https://eage.org/about_eage/committees/" class="elementor-sub-item">Committees</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3505"><a href="https://eage.org/about_eage/constitution/" class="elementor-sub-item">Constitution</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3503"><a href="https://eage.org/about_eage/by-laws/" class="elementor-sub-item">By-Laws</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1330"><a href="#" class="elementor-sub-item elementor-item-anchor">Funds</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3508"><a href="https://eage.org/about_eage/student-fund/" class="elementor-sub-item">Student Fund</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3506"><a href="https://eage.org/about_eage/green-fund/" class="elementor-sub-item">Green Fund</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom current-menu-ancestor current-menu-parent menu-item-has-children menu-item-1331"><a href="#" class="elementor-sub-item elementor-item-anchor">Cooperations</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage current-menu-item menu-item-3509"><a href="https://eage.org/about_eage/associated-societies/" aria-current="page" class="elementor-sub-item elementor-item-active">Associated Societies</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3511"><a href="https://eage.org/about_eage/joint-events/" class="elementor-sub-item">Joint Events</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1332"><a href="#" class="elementor-sub-item elementor-item-anchor">Global Offices</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8453"><a href="/about_eage/global-offices" class="elementor-sub-item">Europe Office</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8455"><a href="/about_eage/global-offices#middle-east_africa_office" class="elementor-sub-item elementor-item-anchor">Middle East / Africa Office</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8458"><a href="/about_eage/global-offices#asia-pacific_office" class="elementor-sub-item elementor-item-anchor">Asia Pacific Office</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8459"><a href="/about_eage/global-offices#latin-americas_office" class="elementor-sub-item elementor-item-anchor">Latin America Office</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1333"><a href="#" class="elementor-sub-item elementor-item-anchor">Careers</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3515"><a href="https://eage.org/about_eage/careers/" class="elementor-sub-item">Work with EAGE</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3513"><a href="https://eage.org/about_eage/careers-in-the-industry/" class="elementor-sub-item">Careers in the Industry</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3514"><a href="https://eage.org/about_eage/volunteer/" class="elementor-sub-item">Volunteering Opportunities</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-8492"><a href="#" class="elementor-sub-item elementor-item-anchor">Awards</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-8494"><a href="https://eage.org/about_eage/nominations/" class="elementor-sub-item">Nominations</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-8495"><a href="https://eage.org/about_eage/overview-awards/" class="elementor-sub-item">Overview Awards</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-8493"><a href="https://eage.org/about_eage/award-winners/" class="elementor-sub-item">Award Winners</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1350"><a href="#" class="elementor-item elementor-item-anchor">Events</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3518"><a href="#" class="elementor-sub-item elementor-item-anchor">About Events</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-3516"><a href="https://eage.org/events/conferences/" class="elementor-sub-item">Conferences</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-3517"><a href="https://eage.org/events/workshops/" class="elementor-sub-item">Workshops</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-20412"><a href="https://eage.org/events/eage-event-terms-conditions/" class="elementor-sub-item">EAGE Event Terms & Conditions</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3519"><a href="#" class="elementor-sub-item elementor-item-anchor">Highlights</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-20413"><a href="https://eagedigital.org/" class="elementor-sub-item">EAGE Digital 2024</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-16612"><a target="_blank" href="https://eageannual.org/" class="elementor-sub-item">EAGE Annual 2024</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8497"><a target="_blank" href="https://eagensg.org/" class="elementor-sub-item">EAGE Near Surface Geoscience 2024</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-21878"><a href="https://eageget.org/" class="elementor-sub-item">EAGE Global Energy Transition 2024</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3520"><a href="#" class="elementor-sub-item elementor-item-anchor">Overview</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-9429"><a href="https://eage.org/events/calendar-of-events/" class="elementor-sub-item">Calendar of Events</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-9427"><a href="https://eage.org/events/calendar-of-online-events/" class="elementor-sub-item">Calendar of Online Events</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-9428"><a href="https://eage.org/events/calendar-of-past-events/" class="elementor-sub-item">Calendar of Past Events</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1351"><a href="#" class="elementor-item elementor-item-anchor">Membership</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3522"><a href="#" class="elementor-sub-item elementor-item-anchor">Membership</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-12860"><a href="https://eage.org/membership/welcome/" class="elementor-sub-item">Welcome to EAGE</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-3525"><a href="https://eage.org/membership/benefits/" class="elementor-sub-item">Benefits</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-9123"><a href="https://eage.org/membership/membershiptypes/" class="elementor-sub-item">Types of Membership</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-3527"><a href="https://eage.org/membership/recognition-programme/" class="elementor-sub-item">Recognition Programme</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-8498"><a href="https://eage.org/membership/membership-terms-and-conditions/" class="elementor-sub-item">Membership Terms and Conditions</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3523"><a href="#" class="elementor-sub-item elementor-item-anchor">Support</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-3526"><a href="https://eage.org/membership/hardship-programme/" class="elementor-sub-item">Hardship Programme</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-3528"><a href="https://eage.org/membership/travel-grant/" class="elementor-sub-item">Individual Support – PACE</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3524"><a href="#" class="elementor-sub-item elementor-item-anchor">Join or Renew</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8499"><a href="https://eage.eventsair.com/eage-membership-module/membership-application" class="elementor-sub-item">Join EAGE</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8500"><a href="https://eage.eventsair.com/eage-membership-module/membership-application" class="elementor-sub-item">Renew your Membership</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1352"><a href="#" class="elementor-item elementor-item-anchor">Communities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3529"><a href="#" class="elementor-sub-item elementor-item-anchor">Local Chapters</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3539"><a href="https://eage.org/communities/eage-local-chapters/" class="elementor-sub-item">EAGE Local Chapters</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3544"><a href="https://eage.org/communities/find-your-local-chapter/" class="elementor-sub-item">Find your Local Chapter</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3546"><a href="https://eage.org/communities/local-chapter-prizes/" class="elementor-sub-item">Local Chapter Prizes</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3530"><a href="#" class="elementor-sub-item elementor-item-anchor">Special Interest Communities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3540"><a href="https://eage.org/communities/women-in-geoscience-and-engineering/" class="elementor-sub-item">Women in Geoscience & Engineering</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3541"><a href="https://eage.org/communities/young-professionals/" class="elementor-sub-item">Young Professionals</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3532"><a href="#" class="elementor-sub-item elementor-item-anchor">Technical Communities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3536"><a href="https://eage.org/communities/artificial-intelligence-community/" class="elementor-sub-item">Artificial Intelligence</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8502"><a href="https://eage.org/communities/basinpetroleumsystems/" class="elementor-sub-item">Basin & Petroleum Systems Analysis</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3537"><a href="https://eage.org/communities/decabonization-and-energy-transition/" class="elementor-sub-item">Decarbonization and Energy Transition</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-9548"><a href="https://eage.org/communities/geochemistry/" class="elementor-sub-item">Geochemistry</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-20409"><a href="https://eage.org/communities/geohazards/" class="elementor-sub-item">Geohazards</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8503"><a href="https://eage.org/communities/hydrogeophysics/" class="elementor-sub-item">Hydrogeophysics</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8504"><a href="https://eage.org/communities/critical-minerals/" class="elementor-sub-item">Critical Minerals</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-10328"><a href="https://eage.org/communities/seismic-acquisition/" class="elementor-sub-item">Seismic Acquisition</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-10329"><a href="https://eage.org/communities/seismic-interpretation/" class="elementor-sub-item">Seismic Interpretation</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-20410"><a href="https://eage.org/communities/uav/" class="elementor-sub-item">Uncrewed Aerial Vehicles</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23793"><a href="https://eage.org/communities/ccs/" class="elementor-sub-item">CCS</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23790"><a href="https://eage.org/communities/geothermal-energy/" class="elementor-sub-item">Geothermal Energy</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23791"><a href="https://eage.org/communities/wind-energy/" class="elementor-sub-item">Wind Energy</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23792"><a href="https://eage.org/communities/hydrogen-and-energy-storage/" class="elementor-sub-item">Hydrogen and Energy Storage</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-25655"><a href="https://eage.org/communities/enhancing-hydrocarbon-recovery-for-sustainability/" class="elementor-sub-item">Enhancing Hydrocarbon Recovery for Sustainability</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3534"><a href="#" class="elementor-sub-item elementor-item-anchor">EU Affairs</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3538"><a href="https://eage.org/communities/eu-affairs/" class="elementor-sub-item">About EU Affairs</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3535"><a href="#" class="elementor-sub-item elementor-item-anchor">Community Activities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3550"><a href="https://events.eage.org/" class="elementor-sub-item">Calendar of Events</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8505"><a href="https://eage.org/communities/mentoring-programme/" class="elementor-sub-item">Mentoring Programme</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8506"><a href="https://eage.org/communities/pace-event-support/" class="elementor-sub-item">PACE Event Support</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-19319"><a href="https://eage.org/communities/resources/" class="elementor-sub-item">Resources</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1353"><a href="#" class="elementor-item elementor-item-anchor">Students</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3551"><a href="#" class="elementor-sub-item elementor-item-anchor">Student Chapters</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3563"><a href="https://eage.org/students/about-student-chapter/" class="elementor-sub-item">About Student Chapters</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3564"><a href="https://eage.org/students/establish-your-student-chapter/" class="elementor-sub-item">Establish a Student Chapter</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-8508"><a href="https://eage.org/students/your-student-chapter/" class="elementor-sub-item">Your Student Chapter</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3552"><a href="#" class="elementor-sub-item elementor-item-anchor">Online Activities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3573"><a href="https://eage.org/students/webinars/" class="elementor-sub-item">Student Webinars</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-8509"><a href="https://eage.org/students/e-summits/" class="elementor-sub-item">Student E-Summits</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3553"><a href="#" class="elementor-sub-item elementor-item-anchor">GEO Quiz</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3560"><a href="https://eage.org/students/about-geo-quiz/" class="elementor-sub-item">About the Geo Quiz</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3566"><a href="https://eage.org/students/join-the-geoquiz/" class="elementor-sub-item">Join the Geo Quiz</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3565"><a href="https://eage.org/students/geo-quiz/" class="elementor-sub-item">Geo Quiz Hall of Fame</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3554"><a href="#" class="elementor-sub-item elementor-item-anchor">Laurie Dake Challenge</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3561"><a href="https://eage.org/students/about-laurie-dake-challenge/" class="elementor-sub-item">About the Laurie Dake Challenge</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3567"><a href="https://eage.org/students/join-the-laurie-dake-challenge/" class="elementor-sub-item">Join the Laurie Dake Challenge</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-8507"><a href="https://eage.org/students/laurie-dake-challenge-hall-of-fame/" class="elementor-sub-item">Laurie Dake Challenge Hall of Fame</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3555"><a href="#" class="elementor-sub-item elementor-item-anchor">Minus CO2 challenge</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3562"><a href="https://eage.org/students/about-minus-co2-challenge/" class="elementor-sub-item">About Minus CO2 Challenge</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3568"><a href="https://eage.org/students/minus-co2-challenge/" class="elementor-sub-item">Join the Minus CO2 Challenge</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3569"><a href="https://eage.org/students/minus-co2-challenge-hall-of-fame/" class="elementor-sub-item">Minus CO2 Challenge Hall of Fame</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3556"><a href="#" class="elementor-sub-item elementor-item-anchor">Support</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3570"><a href="https://eage.org/students/scholarship-support/" class="elementor-sub-item">Scholarships & Awards</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3574"><a href="https://eage.org/students/awards-support/" class="elementor-sub-item">EAGE Membership & Grants</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-20414"><a href="https://eage.org/students/support-ukraine-professional-development-fund/" class="elementor-sub-item">Ukraine Professional Development Fund</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3557"><a href="#" class="elementor-sub-item elementor-item-anchor">EAGE Student Fund</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3559"><a href="https://eage.org/students/about-eage-student-fund/" class="elementor-sub-item">About the EAGE Student Fund</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1354"><a href="#" class="elementor-item elementor-item-anchor">Education</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3575"><a href="#" class="elementor-sub-item elementor-item-anchor">Highlights</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8511"><a href="https://eage.org/education/highlights/" class="elementor-sub-item">EAGE Education</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-21602"><a href="https://eage.org/education/energy-transition-skills/" class="elementor-sub-item">Energy Transition Skills</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3576"><a href="#" class="elementor-sub-item elementor-item-anchor">Learning Geoscience</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8519"><a href="https://eage.org/education/learning-geoscience/" class="elementor-sub-item">About Learning Geoscience</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8510"><a href="https://eage.org/education/electures/" class="elementor-sub-item">E-Lectures</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8517"><a href="https://eage.org/education/webinars/" class="elementor-sub-item">Webinars</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8513"><a href="https://eage.org/education/how-to-videos/" class="elementor-sub-item">How-to Videos</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3579"><a href="#" class="elementor-sub-item elementor-item-anchor">Short Courses</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8512"><a href="https://eage.org/education/education-tours/" class="elementor-sub-item">Education Tours</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8515"><a href="https://eage.org/education/interactive-online-short-courses/" class="elementor-sub-item">Interactive Online Short Courses</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8514"><a href="https://eage.org/education/in-house-training/" class="elementor-sub-item">In-House Training</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8518"><a href="https://eage.org/education/classroom-training/" class="elementor-sub-item">Classroom Training</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3581"><a href="#" class="elementor-sub-item elementor-item-anchor">Eurgeol Title</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-3584"><a href="https://eage.org/education/eurgeol-title/" class="elementor-sub-item">Accreditation</a></li> </ul> </li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-14709"><a href="#" class="elementor-sub-item elementor-item-anchor">Overview</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-14710"><a href="https://eage.org/education/education-calendar/" class="elementor-sub-item">Education Calendar</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8516"><a href="https://eage.org/education/short-course-catalogue/" class="elementor-sub-item">Short Course Catalogue</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1355"><a href="#" class="elementor-item elementor-item-anchor">Media</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3589"><a href="#" class="elementor-sub-item elementor-item-anchor">First Break</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3596"><a href="https://eage.org/media/about-firstbreak/" class="elementor-sub-item">About First Break</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3590"><a href="#" class="elementor-sub-item elementor-item-anchor">EarthDoc</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3599"><a href="https://eage.org/media/earthdoc/" class="elementor-sub-item">EarthDoc</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3591"><a href="#" class="elementor-sub-item elementor-item-anchor">Journals</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3588"><a href="https://eage.org/media/nearsurfacegeophysics#near_surface_geophysics" class="elementor-sub-item elementor-item-anchor">Near Surface Geophysics</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3594"><a href="https://eage.org/media/nearsurfacegeophysics#petroleum_geoscience" class="elementor-sub-item elementor-item-anchor">Petroleum Geoscience</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8522"><a href="https://eage.org/media/nearsurfacegeophysics#geophysical_prospecting" class="elementor-sub-item elementor-item-anchor">Geophysical Prospecting</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8523"><a href="https://eage.org/media/nearsurfacegeophysics#basin_research" class="elementor-sub-item elementor-item-anchor">Basin Research</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-17867"><a href="https://eage.org/media/nearsurfacegeophysics#geoenergy" class="elementor-sub-item elementor-item-anchor">Geoenergy</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3592"><a href="#" class="elementor-sub-item elementor-item-anchor">Books</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3604"><a href="https://eage.org/media/online-bookshop/" class="elementor-sub-item">Online Bookshop</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3597"><a href="https://eage.org/media/publishing-with-eage/" class="elementor-sub-item">Publishing with EAGE</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3593"><a href="#" class="elementor-sub-item elementor-item-anchor">Newsletters</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-8521"><a href="https://eage.org/media/newsletters_stay-connected/" class="elementor-sub-item">Stay Connected</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-8520"><a href="https://eage.org/media/digital-newsletters/" class="elementor-sub-item">Digital Newsletters</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-9742"><a href="https://eage.org/media/nsg-newsletters/" class="elementor-sub-item">NSG Newsletters</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3595"><a href="#" class="elementor-sub-item elementor-item-anchor">Media Partners</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3602"><a href="https://eage.org/media/media-partners/" class="elementor-sub-item">Media Partners</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-9661"><a href="https://eage.org/media/copyrights-and-use-of-eage-materials/" class="elementor-sub-item">Copyrights and use of EAGE materials</a></li> </ul> </li> </ul> </li> </ul> </nav> <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true"> <ul id="menu-2-6b5d2638" class="elementor-nav-menu sm-vertical"><li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom current-menu-ancestor menu-item-has-children menu-item-1349"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">About EAGE</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1328"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">General</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3501"><a href="https://eage.org/about_eage/mission-and-objectives/" class="elementor-sub-item" tabindex="-1">Mission and Objectives</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-9309"><a href="https://eage.org/about_eage/eage-history/" class="elementor-sub-item" tabindex="-1">History</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3498"><a href="https://eage.org/about_eage/agmm/" class="elementor-sub-item" tabindex="-1">AGMM</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3499"><a href="https://eage.org/about_eage/circles/" class="elementor-sub-item" tabindex="-1">Circles</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-25434"><a href="https://eage.org/about_eage/code-of-conduct/" class="elementor-sub-item" tabindex="-1">Code of Conduct</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1329"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Organization</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-20411"><a href="https://eage.org/about_eage/ballot/" class="elementor-sub-item" tabindex="-1">Ballot</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3502"><a href="https://eage.org/about_eage/board-and-bod/" class="elementor-sub-item" tabindex="-1">Board and BoD</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3504"><a href="https://eage.org/about_eage/committees/" class="elementor-sub-item" tabindex="-1">Committees</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3505"><a href="https://eage.org/about_eage/constitution/" class="elementor-sub-item" tabindex="-1">Constitution</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3503"><a href="https://eage.org/about_eage/by-laws/" class="elementor-sub-item" tabindex="-1">By-Laws</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1330"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Funds</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3508"><a href="https://eage.org/about_eage/student-fund/" class="elementor-sub-item" tabindex="-1">Student Fund</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3506"><a href="https://eage.org/about_eage/green-fund/" class="elementor-sub-item" tabindex="-1">Green Fund</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom current-menu-ancestor current-menu-parent menu-item-has-children menu-item-1331"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Cooperations</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage current-menu-item menu-item-3509"><a href="https://eage.org/about_eage/associated-societies/" aria-current="page" class="elementor-sub-item elementor-item-active" tabindex="-1">Associated Societies</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3511"><a href="https://eage.org/about_eage/joint-events/" class="elementor-sub-item" tabindex="-1">Joint Events</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1332"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Global Offices</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8453"><a href="/about_eage/global-offices" class="elementor-sub-item" tabindex="-1">Europe Office</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8455"><a href="/about_eage/global-offices#middle-east_africa_office" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Middle East / Africa Office</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8458"><a href="/about_eage/global-offices#asia-pacific_office" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Asia Pacific Office</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8459"><a href="/about_eage/global-offices#latin-americas_office" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Latin America Office</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1333"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Careers</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3515"><a href="https://eage.org/about_eage/careers/" class="elementor-sub-item" tabindex="-1">Work with EAGE</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3513"><a href="https://eage.org/about_eage/careers-in-the-industry/" class="elementor-sub-item" tabindex="-1">Careers in the Industry</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3514"><a href="https://eage.org/about_eage/volunteer/" class="elementor-sub-item" tabindex="-1">Volunteering Opportunities</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-8492"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Awards</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-8494"><a href="https://eage.org/about_eage/nominations/" class="elementor-sub-item" tabindex="-1">Nominations</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-8495"><a href="https://eage.org/about_eage/overview-awards/" class="elementor-sub-item" tabindex="-1">Overview Awards</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-8493"><a href="https://eage.org/about_eage/award-winners/" class="elementor-sub-item" tabindex="-1">Award Winners</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1350"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Events</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3518"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">About Events</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-3516"><a href="https://eage.org/events/conferences/" class="elementor-sub-item" tabindex="-1">Conferences</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-3517"><a href="https://eage.org/events/workshops/" class="elementor-sub-item" tabindex="-1">Workshops</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-20412"><a href="https://eage.org/events/eage-event-terms-conditions/" class="elementor-sub-item" tabindex="-1">EAGE Event Terms & Conditions</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3519"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Highlights</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-20413"><a href="https://eagedigital.org/" class="elementor-sub-item" tabindex="-1">EAGE Digital 2024</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-16612"><a target="_blank" href="https://eageannual.org/" class="elementor-sub-item" tabindex="-1">EAGE Annual 2024</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8497"><a target="_blank" href="https://eagensg.org/" class="elementor-sub-item" tabindex="-1">EAGE Near Surface Geoscience 2024</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-21878"><a href="https://eageget.org/" class="elementor-sub-item" tabindex="-1">EAGE Global Energy Transition 2024</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3520"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Overview</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-9429"><a href="https://eage.org/events/calendar-of-events/" class="elementor-sub-item" tabindex="-1">Calendar of Events</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-9427"><a href="https://eage.org/events/calendar-of-online-events/" class="elementor-sub-item" tabindex="-1">Calendar of Online Events</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-9428"><a href="https://eage.org/events/calendar-of-past-events/" class="elementor-sub-item" tabindex="-1">Calendar of Past Events</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1351"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Membership</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3522"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Membership</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-12860"><a href="https://eage.org/membership/welcome/" class="elementor-sub-item" tabindex="-1">Welcome to EAGE</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-3525"><a href="https://eage.org/membership/benefits/" class="elementor-sub-item" tabindex="-1">Benefits</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-9123"><a href="https://eage.org/membership/membershiptypes/" class="elementor-sub-item" tabindex="-1">Types of Membership</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-3527"><a href="https://eage.org/membership/recognition-programme/" class="elementor-sub-item" tabindex="-1">Recognition Programme</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-8498"><a href="https://eage.org/membership/membership-terms-and-conditions/" class="elementor-sub-item" tabindex="-1">Membership Terms and Conditions</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3523"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Support</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-3526"><a href="https://eage.org/membership/hardship-programme/" class="elementor-sub-item" tabindex="-1">Hardship Programme</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-3528"><a href="https://eage.org/membership/travel-grant/" class="elementor-sub-item" tabindex="-1">Individual Support – PACE</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3524"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Join or Renew</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8499"><a href="https://eage.eventsair.com/eage-membership-module/membership-application" class="elementor-sub-item" tabindex="-1">Join EAGE</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8500"><a href="https://eage.eventsair.com/eage-membership-module/membership-application" class="elementor-sub-item" tabindex="-1">Renew your Membership</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1352"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Communities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3529"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Local Chapters</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3539"><a href="https://eage.org/communities/eage-local-chapters/" class="elementor-sub-item" tabindex="-1">EAGE Local Chapters</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3544"><a href="https://eage.org/communities/find-your-local-chapter/" class="elementor-sub-item" tabindex="-1">Find your Local Chapter</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3546"><a href="https://eage.org/communities/local-chapter-prizes/" class="elementor-sub-item" tabindex="-1">Local Chapter Prizes</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3530"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Special Interest Communities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3540"><a href="https://eage.org/communities/women-in-geoscience-and-engineering/" class="elementor-sub-item" tabindex="-1">Women in Geoscience & Engineering</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3541"><a href="https://eage.org/communities/young-professionals/" class="elementor-sub-item" tabindex="-1">Young Professionals</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3532"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Technical Communities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3536"><a href="https://eage.org/communities/artificial-intelligence-community/" class="elementor-sub-item" tabindex="-1">Artificial Intelligence</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8502"><a href="https://eage.org/communities/basinpetroleumsystems/" class="elementor-sub-item" tabindex="-1">Basin & Petroleum Systems Analysis</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3537"><a href="https://eage.org/communities/decabonization-and-energy-transition/" class="elementor-sub-item" tabindex="-1">Decarbonization and Energy Transition</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-9548"><a href="https://eage.org/communities/geochemistry/" class="elementor-sub-item" tabindex="-1">Geochemistry</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-20409"><a href="https://eage.org/communities/geohazards/" class="elementor-sub-item" tabindex="-1">Geohazards</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8503"><a href="https://eage.org/communities/hydrogeophysics/" class="elementor-sub-item" tabindex="-1">Hydrogeophysics</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8504"><a href="https://eage.org/communities/critical-minerals/" class="elementor-sub-item" tabindex="-1">Critical Minerals</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-10328"><a href="https://eage.org/communities/seismic-acquisition/" class="elementor-sub-item" tabindex="-1">Seismic Acquisition</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-10329"><a href="https://eage.org/communities/seismic-interpretation/" class="elementor-sub-item" tabindex="-1">Seismic Interpretation</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-20410"><a href="https://eage.org/communities/uav/" class="elementor-sub-item" tabindex="-1">Uncrewed Aerial Vehicles</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23793"><a href="https://eage.org/communities/ccs/" class="elementor-sub-item" tabindex="-1">CCS</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23790"><a href="https://eage.org/communities/geothermal-energy/" class="elementor-sub-item" tabindex="-1">Geothermal Energy</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23791"><a href="https://eage.org/communities/wind-energy/" class="elementor-sub-item" tabindex="-1">Wind Energy</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23792"><a href="https://eage.org/communities/hydrogen-and-energy-storage/" class="elementor-sub-item" tabindex="-1">Hydrogen and Energy Storage</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-25655"><a href="https://eage.org/communities/enhancing-hydrocarbon-recovery-for-sustainability/" class="elementor-sub-item" tabindex="-1">Enhancing Hydrocarbon Recovery for Sustainability</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3534"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">EU Affairs</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3538"><a href="https://eage.org/communities/eu-affairs/" class="elementor-sub-item" tabindex="-1">About EU Affairs</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3535"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Community Activities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3550"><a href="https://events.eage.org/" class="elementor-sub-item" tabindex="-1">Calendar of Events</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8505"><a href="https://eage.org/communities/mentoring-programme/" class="elementor-sub-item" tabindex="-1">Mentoring Programme</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8506"><a href="https://eage.org/communities/pace-event-support/" class="elementor-sub-item" tabindex="-1">PACE Event Support</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-19319"><a href="https://eage.org/communities/resources/" class="elementor-sub-item" tabindex="-1">Resources</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1353"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Students</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3551"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Student Chapters</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3563"><a href="https://eage.org/students/about-student-chapter/" class="elementor-sub-item" tabindex="-1">About Student Chapters</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3564"><a href="https://eage.org/students/establish-your-student-chapter/" class="elementor-sub-item" tabindex="-1">Establish a Student Chapter</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-8508"><a href="https://eage.org/students/your-student-chapter/" class="elementor-sub-item" tabindex="-1">Your Student Chapter</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3552"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Online Activities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3573"><a href="https://eage.org/students/webinars/" class="elementor-sub-item" tabindex="-1">Student Webinars</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-8509"><a href="https://eage.org/students/e-summits/" class="elementor-sub-item" tabindex="-1">Student E-Summits</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3553"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">GEO Quiz</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3560"><a href="https://eage.org/students/about-geo-quiz/" class="elementor-sub-item" tabindex="-1">About the Geo Quiz</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3566"><a href="https://eage.org/students/join-the-geoquiz/" class="elementor-sub-item" tabindex="-1">Join the Geo Quiz</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3565"><a href="https://eage.org/students/geo-quiz/" class="elementor-sub-item" tabindex="-1">Geo Quiz Hall of Fame</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3554"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Laurie Dake Challenge</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3561"><a href="https://eage.org/students/about-laurie-dake-challenge/" class="elementor-sub-item" tabindex="-1">About the Laurie Dake Challenge</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3567"><a href="https://eage.org/students/join-the-laurie-dake-challenge/" class="elementor-sub-item" tabindex="-1">Join the Laurie Dake Challenge</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-8507"><a href="https://eage.org/students/laurie-dake-challenge-hall-of-fame/" class="elementor-sub-item" tabindex="-1">Laurie Dake Challenge Hall of Fame</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3555"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Minus CO2 challenge</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3562"><a href="https://eage.org/students/about-minus-co2-challenge/" class="elementor-sub-item" tabindex="-1">About Minus CO2 Challenge</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3568"><a href="https://eage.org/students/minus-co2-challenge/" class="elementor-sub-item" tabindex="-1">Join the Minus CO2 Challenge</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3569"><a href="https://eage.org/students/minus-co2-challenge-hall-of-fame/" class="elementor-sub-item" tabindex="-1">Minus CO2 Challenge Hall of Fame</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3556"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Support</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3570"><a href="https://eage.org/students/scholarship-support/" class="elementor-sub-item" tabindex="-1">Scholarships & Awards</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3574"><a href="https://eage.org/students/awards-support/" class="elementor-sub-item" tabindex="-1">EAGE Membership & Grants</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-20414"><a href="https://eage.org/students/support-ukraine-professional-development-fund/" class="elementor-sub-item" tabindex="-1">Ukraine Professional Development Fund</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3557"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">EAGE Student Fund</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3559"><a href="https://eage.org/students/about-eage-student-fund/" class="elementor-sub-item" tabindex="-1">About the EAGE Student Fund</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1354"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Education</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3575"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Highlights</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8511"><a href="https://eage.org/education/highlights/" class="elementor-sub-item" tabindex="-1">EAGE Education</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-21602"><a href="https://eage.org/education/energy-transition-skills/" class="elementor-sub-item" tabindex="-1">Energy Transition Skills</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3576"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Learning Geoscience</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8519"><a href="https://eage.org/education/learning-geoscience/" class="elementor-sub-item" tabindex="-1">About Learning Geoscience</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8510"><a href="https://eage.org/education/electures/" class="elementor-sub-item" tabindex="-1">E-Lectures</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8517"><a href="https://eage.org/education/webinars/" class="elementor-sub-item" tabindex="-1">Webinars</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8513"><a href="https://eage.org/education/how-to-videos/" class="elementor-sub-item" tabindex="-1">How-to Videos</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3579"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Short Courses</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8512"><a href="https://eage.org/education/education-tours/" class="elementor-sub-item" tabindex="-1">Education Tours</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8515"><a href="https://eage.org/education/interactive-online-short-courses/" class="elementor-sub-item" tabindex="-1">Interactive Online Short Courses</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8514"><a href="https://eage.org/education/in-house-training/" class="elementor-sub-item" tabindex="-1">In-House Training</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8518"><a href="https://eage.org/education/classroom-training/" class="elementor-sub-item" tabindex="-1">Classroom Training</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3581"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Eurgeol Title</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-3584"><a href="https://eage.org/education/eurgeol-title/" class="elementor-sub-item" tabindex="-1">Accreditation</a></li> </ul> </li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-14709"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Overview</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-14710"><a href="https://eage.org/education/education-calendar/" class="elementor-sub-item" tabindex="-1">Education Calendar</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8516"><a href="https://eage.org/education/short-course-catalogue/" class="elementor-sub-item" tabindex="-1">Short Course Catalogue</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1355"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Media</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3589"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">First Break</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3596"><a href="https://eage.org/media/about-firstbreak/" class="elementor-sub-item" tabindex="-1">About First Break</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3590"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">EarthDoc</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3599"><a href="https://eage.org/media/earthdoc/" class="elementor-sub-item" tabindex="-1">EarthDoc</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3591"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Journals</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3588"><a href="https://eage.org/media/nearsurfacegeophysics#near_surface_geophysics" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Near Surface Geophysics</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3594"><a href="https://eage.org/media/nearsurfacegeophysics#petroleum_geoscience" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Petroleum Geoscience</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8522"><a href="https://eage.org/media/nearsurfacegeophysics#geophysical_prospecting" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Geophysical Prospecting</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8523"><a href="https://eage.org/media/nearsurfacegeophysics#basin_research" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Basin Research</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-17867"><a href="https://eage.org/media/nearsurfacegeophysics#geoenergy" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Geoenergy</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3592"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Books</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3604"><a href="https://eage.org/media/online-bookshop/" class="elementor-sub-item" tabindex="-1">Online Bookshop</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3597"><a href="https://eage.org/media/publishing-with-eage/" class="elementor-sub-item" tabindex="-1">Publishing with EAGE</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3593"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Newsletters</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-8521"><a href="https://eage.org/media/newsletters_stay-connected/" class="elementor-sub-item" tabindex="-1">Stay Connected</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-8520"><a href="https://eage.org/media/digital-newsletters/" class="elementor-sub-item" tabindex="-1">Digital Newsletters</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-9742"><a href="https://eage.org/media/nsg-newsletters/" class="elementor-sub-item" tabindex="-1">NSG Newsletters</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3595"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Media Partners</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3602"><a href="https://eage.org/media/media-partners/" class="elementor-sub-item" tabindex="-1">Media Partners</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-9661"><a href="https://eage.org/media/copyrights-and-use-of-eage-materials/" class="elementor-sub-item" tabindex="-1">Copyrights and use of EAGE materials</a></li> </ul> </li> </ul> </li> </ul> </nav> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-017d646" data-id="017d646" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-3613d17 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="3613d17" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-921c94e" data-id="921c94e" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-59b1439 elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons" data-id="59b1439" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-1577a46" target="_blank"> <span class="elementor-screen-only">Facebook</span> <i class="fab fa-facebook"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-7e3fc8d" target="_blank"> <span class="elementor-screen-only">Twitter</span> <i class="fab fa-twitter"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-32325cb" target="_blank"> <span class="elementor-screen-only">Youtube</span> <i class="fab fa-youtube"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-instagram elementor-repeater-item-c950098" target="_blank"> <span class="elementor-screen-only">Instagram</span> <i class="fab fa-instagram"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-repeater-item-358e98a" target="_blank"> <span class="elementor-screen-only">Linkedin</span> <i class="fab fa-linkedin"></i> </a> </span> </div> </div> </div> </div> </div> </div> </section> </div> <div data-elementor-type="popup" data-elementor-id="1653" class="elementor elementor-1653 elementor-location-popup" data-elementor-settings="{"entrance_animation":"fadeInDown","exit_animation":"fadeInDown","open_selector":".pop_media","entrance_animation_duration":{"unit":"px","size":"0.5","sizes":[]},"a11y_navigation":"yes","triggers":[],"timing":[]}" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-5640d53f elementor-section-full_width elementor-section-content-top elementor-section-height-default elementor-section-height-default" data-id="5640d53f" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-6d5f1c71" data-id="6d5f1c71" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-1d09e456" data-id="1d09e456" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-7ee34a70 elementor-widget__width-inherit elementor-widget elementor-widget-wp-widget-nav_menu" data-id="7ee34a70" data-element_type="widget" data-widget_type="wp-widget-nav_menu.default"> <div class="elementor-widget-container"> <div class="menu-menu-media-container"><ul id="menu-menu-media-1" class="menu"><li class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2595"><a href="#">First Break</a> <ul class="sub-menu"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-2602"><a href="https://eage.org/media/about-firstbreak/">About First Break</a></li> </ul> </li> <li class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2596"><a href="#">Earthdoc</a> <ul class="sub-menu"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-2605"><a href="https://eage.org/media/earthdoc/">EarthDoc</a></li> </ul> </li> <li class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2597"><a href="#">Journals</a> <ul class="sub-menu"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5534"><a href="https://eage.org/media/nearsurfacegeophysics#near_surface_geophysics">Near Surface Geophysics</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5535"><a href="https://eage.org/media/nearsurfacegeophysics#petroleum_geoscience">Petroleum Geoscience</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5536"><a href="https://eage.org/media/nearsurfacegeophysics#geophysical_prospecting">Geophysical Prospecting</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5537"><a href="https://eage.org/media/nearsurfacegeophysics#basin_research">Basin Research</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-17866"><a href="https://eage.org/media/nearsurfacegeophysics#geoenergy">Geoenergy</a></li> </ul> </li> <li class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2598"><a href="#">Books</a> <ul class="sub-menu"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-2610"><a href="https://eage.org/media/online-bookshop/">Online Bookshop</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-5527"><a href="https://eage.org/media/publishing-with-eage/">Publishing with EAGE</a></li> </ul> </li> <li class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2599"><a href="#">Newsletters</a> <ul class="sub-menu"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-4051"><a href="https://eage.org/media/newsletters_stay-connected/">Stay Connected</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-5528"><a href="https://eage.org/media/digital-newsletters/">Digital Newsletters</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-9740"><a href="https://eage.org/media/nsg-newsletters/">NSG Newsletters</a></li> </ul> </li> <li class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2601"><a href="#">Media Partners</a> <ul class="sub-menu"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-2608"><a href="https://eage.org/media/media-partners/">Media Partners</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-9659"><a href="https://eage.org/media/copyrights-and-use-of-eage-materials/">Copyrights and use of EAGE materials</a></li> </ul> </li> </ul></div> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-24633947" data-id="24633947" data-element_type="column" data-settings="{"background_background":"classic"}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-9614c8a elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons" data-id="9614c8a" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-57fb79f" href="https://www.facebook.com/EAGEglobal" target="_blank"> <span class="elementor-screen-only">Facebook</span> <i class="fab fa-facebook"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-repeater-item-a3355b7" href="https://www.linkedin.com/company/eagelinkedin/" target="_blank"> <span class="elementor-screen-only">Linkedin</span> <i class="fab fa-linkedin"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-70c7d92" href="http://youtube.com/user/EAGEchannel" target="_blank"> <span class="elementor-screen-only">Youtube</span> <i class="fab fa-youtube"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-b11320d" href="https://twitter.com/EAGE_Global" target="_blank"> <span class="elementor-screen-only">Twitter</span> <i class="fab fa-twitter"></i> </a> </span> </div> </div> </div> </div> </div> </div> </section> </div> <div data-elementor-type="popup" data-elementor-id="1650" class="elementor elementor-1650 elementor-location-popup" data-elementor-settings="{"entrance_animation":"fadeInDown","exit_animation":"fadeInDown","open_selector":".pop_education","entrance_animation_duration":{"unit":"px","size":"0.5","sizes":[]},"a11y_navigation":"yes","triggers":[],"timing":[]}" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-3141df06 elementor-section-full_width elementor-section-content-top elementor-section-height-default elementor-section-height-default" data-id="3141df06" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-62ffc1ec" data-id="62ffc1ec" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-617cb706" data-id="617cb706" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-71692381 elementor-widget__width-inherit elementor-widget elementor-widget-wp-widget-nav_menu" data-id="71692381" data-element_type="widget" data-widget_type="wp-widget-nav_menu.default"> <div class="elementor-widget-container"> <div class="menu-menu-education-container"><ul id="menu-menu-education" class="menu"><li id="menu-item-1620" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1620"><a href="#">Highlights</a> <ul class="sub-menu"> <li id="menu-item-7940" class="menu-item menu-item-type-post_type menu-item-object-education menu-item-7940"><a href="https://eage.org/education/highlights/">EAGE Education</a></li> <li id="menu-item-21601" class="menu-item menu-item-type-post_type menu-item-object-education menu-item-21601"><a href="https://eage.org/education/energy-transition-skills/">Energy Transition Skills</a></li> </ul> </li> <li id="menu-item-1621" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1621"><a href="#">Learning Geoscience</a> <ul class="sub-menu"> <li id="menu-item-3417" class="menu-item menu-item-type-post_type menu-item-object-education menu-item-3417"><a href="https://eage.org/education/learning-geoscience/">About Learning Geoscience</a></li> <li id="menu-item-3415" class="menu-item menu-item-type-post_type menu-item-object-education menu-item-3415"><a href="https://eage.org/education/electures/">E-Lectures</a></li> <li id="menu-item-3419" class="menu-item menu-item-type-post_type menu-item-object-education menu-item-3419"><a href="https://eage.org/education/webinars/">Webinars</a></li> <li id="menu-item-5524" class="menu-item menu-item-type-post_type menu-item-object-education menu-item-5524"><a href="https://eage.org/education/how-to-videos/">How-to Videos</a></li> </ul> </li> <li id="menu-item-3412" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3412"><a href="#">Short Courses</a> <ul class="sub-menu"> <li id="menu-item-5989" class="menu-item menu-item-type-post_type menu-item-object-education menu-item-5989"><a href="https://eage.org/education/education-tours/">Education Tours</a></li> <li id="menu-item-5525" class="menu-item menu-item-type-post_type menu-item-object-education menu-item-5525"><a href="https://eage.org/education/interactive-online-short-courses/">Interactive Online Short Courses</a></li> <li id="menu-item-5526" class="menu-item menu-item-type-post_type menu-item-object-education menu-item-5526"><a href="https://eage.org/education/in-house-training/">In-House Training</a></li> <li id="menu-item-6209" class="menu-item menu-item-type-post_type menu-item-object-education menu-item-6209"><a href="https://eage.org/education/classroom-training/">Classroom Training</a></li> </ul> </li> <li id="menu-item-7944" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-7944"><a href="#">Eurgeol title</a> <ul class="sub-menu"> <li id="menu-item-3416" class="menu-item menu-item-type-post_type menu-item-object-education menu-item-3416"><a href="https://eage.org/education/eurgeol-title/">Accreditation</a></li> </ul> </li> <li id="menu-item-14706" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-14706"><a href="#">Overview</a> <ul class="sub-menu"> <li id="menu-item-14708" class="menu-button menu-item menu-item-type-post_type menu-item-object-education menu-item-14708"><a href="https://eage.org/education/education-calendar/">Education Calendar</a></li> <li id="menu-item-6210" class="menu-button menu-item menu-item-type-post_type menu-item-object-education menu-item-6210"><a href="https://eage.org/education/short-course-catalogue/">Short Course Catalogue</a></li> </ul> </li> </ul></div> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-55e52e7b" data-id="55e52e7b" data-element_type="column" data-settings="{"background_background":"classic"}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-7e0500d0 elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons" data-id="7e0500d0" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-57fb79f" href="https://www.facebook.com/EAGEglobal" target="_blank"> <span class="elementor-screen-only">Facebook</span> <i class="fab fa-facebook"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-repeater-item-a3355b7" href="https://www.linkedin.com/company/eagelinkedin/" target="_blank"> <span class="elementor-screen-only">Linkedin</span> <i class="fab fa-linkedin"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-70c7d92" href="http://youtube.com/user/EAGEchannel" target="_blank"> <span class="elementor-screen-only">Youtube</span> <i class="fab fa-youtube"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-b11320d" href="https://twitter.com/EAGE_Global" target="_blank"> <span class="elementor-screen-only">Twitter</span> <i class="fab fa-twitter"></i> </a> </span> </div> </div> </div> </div> </div> </div> </section> </div> <div data-elementor-type="popup" data-elementor-id="1647" class="elementor elementor-1647 elementor-location-popup" data-elementor-settings="{"entrance_animation":"fadeInDown","exit_animation":"fadeInDown","open_selector":".pop_students","entrance_animation_duration":{"unit":"px","size":"0.5","sizes":[]},"a11y_navigation":"yes","triggers":[],"timing":[]}" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-4a63d3e6 elementor-section-full_width elementor-section-content-top elementor-section-height-default elementor-section-height-default" data-id="4a63d3e6" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-39fe2b25" data-id="39fe2b25" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-2a95800e" data-id="2a95800e" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-103792c3 elementor-widget__width-inherit elementor-widget elementor-widget-wp-widget-nav_menu" data-id="103792c3" data-element_type="widget" data-widget_type="wp-widget-nav_menu.default"> <div class="elementor-widget-container"> <div class="menu-menu-students-container"><ul id="menu-menu-students" class="menu"><li id="menu-item-1617" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1617"><a href="#">Student Chapters</a> <ul class="sub-menu"> <li id="menu-item-2583" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-2583"><a href="https://eage.org/students/about-student-chapter/">About Student Chapters</a></li> <li id="menu-item-2584" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-2584"><a href="https://eage.org/students/establish-your-student-chapter/">Establish a Student Chapter</a></li> <li id="menu-item-5988" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-5988"><a href="https://eage.org/students/your-student-chapter/">Your Student Chapter</a></li> </ul> </li> <li id="menu-item-1619" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1619"><a href="#">Online Activities</a> <ul class="sub-menu"> <li id="menu-item-2593" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-2593"><a href="https://eage.org/students/webinars/">Student Webinars</a></li> <li id="menu-item-5523" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-5523"><a href="https://eage.org/students/e-summits/">Student E-Summits</a></li> </ul> </li> <li id="menu-item-1618" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1618"><a href="#">Geo Quiz</a> <ul class="sub-menu"> <li id="menu-item-2580" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-2580"><a href="https://eage.org/students/about-geo-quiz/">About the Geo Quiz</a></li> <li id="menu-item-2586" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-2586"><a href="https://eage.org/students/join-the-geoquiz/">Join the Geo Quiz</a></li> <li id="menu-item-2585" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-2585"><a href="https://eage.org/students/geo-quiz/">Geo Quiz Hall of Fame</a></li> </ul> </li> <li id="menu-item-2575" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2575"><a href="#">Laurie Dake Challenge</a> <ul class="sub-menu"> <li id="menu-item-2581" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-2581"><a href="https://eage.org/students/about-laurie-dake-challenge/">About the Laurie Dake Challenge</a></li> <li id="menu-item-2587" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-2587"><a href="https://eage.org/students/join-the-laurie-dake-challenge/">Join the Laurie Dake Challenge</a></li> <li id="menu-item-6203" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-6203"><a href="https://eage.org/students/laurie-dake-challenge-hall-of-fame/">Laurie Dake Challenge Hall of Fame</a></li> </ul> </li> <li id="menu-item-2576" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2576"><a href="#">Minus co2 Challenge</a> <ul class="sub-menu"> <li id="menu-item-2582" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-2582"><a href="https://eage.org/students/about-minus-co2-challenge/">About Minus CO2 Challenge</a></li> <li id="menu-item-2588" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-2588"><a href="https://eage.org/students/minus-co2-challenge/">Join the Minus CO2 Challenge</a></li> <li id="menu-item-2589" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-2589"><a href="https://eage.org/students/minus-co2-challenge-hall-of-fame/">Minus CO2 Challenge Hall of Fame</a></li> </ul> </li> <li id="menu-item-2577" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2577"><a href="#">Support</a> <ul class="sub-menu"> <li id="menu-item-2590" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-2590"><a href="https://eage.org/students/scholarship-support/">Scholarships & Awards</a></li> <li id="menu-item-2594" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-2594"><a href="https://eage.org/students/awards-support/">EAGE Membership & Grants</a></li> <li id="menu-item-16377" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-16377"><a href="https://eage.org/students/support-ukraine-professional-development-fund/">Ukraine Professional Development Fund</a></li> </ul> </li> <li id="menu-item-2578" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2578"><a href="#">EAGE Student Fund</a> <ul class="sub-menu"> <li id="menu-item-2579" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-2579"><a href="https://eage.org/students/about-eage-student-fund/">About the EAGE Student Fund</a></li> </ul> </li> </ul></div> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-1d9764b6" data-id="1d9764b6" data-element_type="column" data-settings="{"background_background":"classic"}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-e7ceaed elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons" data-id="e7ceaed" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-57fb79f" href="https://www.facebook.com/EAGEglobal" target="_blank"> <span class="elementor-screen-only">Facebook</span> <i class="fab fa-facebook"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-repeater-item-a3355b7" href="https://www.linkedin.com/company/eagelinkedin/" target="_blank"> <span class="elementor-screen-only">Linkedin</span> <i class="fab fa-linkedin"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-70c7d92" href="http://youtube.com/user/EAGEchannel" target="_blank"> <span class="elementor-screen-only">Youtube</span> <i class="fab fa-youtube"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-b11320d" href="https://twitter.com/EAGE_Global" target="_blank"> <span class="elementor-screen-only">Twitter</span> <i class="fab fa-twitter"></i> </a> </span> </div> </div> </div> </div> </div> </div> </section> </div> <div data-elementor-type="popup" data-elementor-id="1644" class="elementor elementor-1644 elementor-location-popup" data-elementor-settings="{"entrance_animation":"fadeInDown","exit_animation":"fadeInDown","open_selector":".pop_communities","entrance_animation_duration":{"unit":"px","size":"0.5","sizes":[]},"a11y_navigation":"yes","triggers":[],"timing":[]}" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-5ac0563c elementor-section-full_width elementor-section-content-top elementor-section-height-default elementor-section-height-default" data-id="5ac0563c" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-4101717a" data-id="4101717a" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-14ea76b4 elementor-widget__width-inherit elementor-widget elementor-widget-wp-widget-nav_menu" data-id="14ea76b4" data-element_type="widget" data-widget_type="wp-widget-nav_menu.default"> <div class="elementor-widget-container"> <div class="menu-menu-communities-container"><ul id="menu-menu-communities" class="menu"><li id="menu-item-1601" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1601"><a href="#">Local Chapters</a> <ul class="sub-menu"> <li id="menu-item-2554" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-2554"><a href="https://eage.org/communities/eage-local-chapters/">Local Chapters</a></li> <li id="menu-item-2555" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-2555"><a href="https://eage.org/communities/find-your-local-chapter/">Find your Local Chapter</a></li> <li id="menu-item-2556" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-2556"><a href="https://eage.org/communities/local-chapter-prizes/">Local Chapter Prizes</a></li> </ul> </li> <li id="menu-item-1602" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1602"><a href="#">Special Interest Communities</a> <ul class="sub-menu"> <li id="menu-item-2557" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-2557"><a href="https://eage.org/communities/women-in-geoscience-and-engineering/">Women in Geoscience & Engineering</a></li> <li id="menu-item-2560" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-2560"><a href="https://eage.org/communities/young-professionals/">Young Professionals</a></li> </ul> </li> <li id="menu-item-2562" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2562"><a href="#">Technical Communities</a> <ul class="sub-menu"> <li id="menu-item-2563" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-2563"><a href="https://eage.org/communities/artificial-intelligence-community/">Artificial Intelligence</a></li> <li id="menu-item-7945" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-7945"><a href="https://eage.org/communities/basinpetroleumsystems/">Basin & Petroleum Systems Analysis</a></li> <li id="menu-item-2566" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-2566"><a href="https://eage.org/communities/decabonization-and-energy-transition/">Decarbonization and Energy Transition</a></li> <li id="menu-item-9545" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-9545"><a href="https://eage.org/communities/geochemistry/">Geochemistry</a></li> <li id="menu-item-17136" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-17136"><a href="https://eage.org/communities/geohazards/">Geohazards</a></li> <li id="menu-item-4035" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-4035"><a href="https://eage.org/communities/hydrogeophysics/">Hydrogeophysics</a></li> <li id="menu-item-4036" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-4036"><a href="https://eage.org/communities/critical-minerals/">Critical Minerals</a></li> <li id="menu-item-10326" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-10326"><a href="https://eage.org/communities/seismic-acquisition/">Seismic Acquisition</a></li> <li id="menu-item-10327" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-10327"><a href="https://eage.org/communities/seismic-interpretation/">Seismic Interpretation</a></li> <li id="menu-item-16853" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-16853"><a href="https://eage.org/communities/uav/">Uncrewed Aerial Vehicles</a></li> <li id="menu-item-23789" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23789"><a href="https://eage.org/communities/ccs/">CCS</a></li> <li id="menu-item-23786" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23786"><a href="https://eage.org/communities/geothermal-energy/">Geothermal Energy</a></li> <li id="menu-item-23787" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23787"><a href="https://eage.org/communities/wind-energy/">Wind Energy</a></li> <li id="menu-item-23788" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23788"><a href="https://eage.org/communities/hydrogen-and-energy-storage/">Hydrogen and Energy Storage</a></li> <li id="menu-item-25654" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-25654"><a href="https://eage.org/communities/enhancing-hydrocarbon-recovery-for-sustainability/">Enhancing Hydrocarbon Recovery for Sustainability</a></li> </ul> </li> <li id="menu-item-2570" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2570"><a href="#">EU Affairs</a> <ul class="sub-menu"> <li id="menu-item-2572" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-2572"><a href="https://eage.org/communities/eu-affairs/">About EU Affairs</a></li> </ul> </li> <li id="menu-item-2573" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2573"><a href="#">Community Activities</a> <ul class="sub-menu"> <li id="menu-item-9782" class="menu-item menu-item-type-post_type menu-item-object-events menu-item-9782"><a href="https://eage.org/events/calendar-of-events/">Calendar of Events</a></li> <li id="menu-item-4058" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-4058"><a href="https://eage.org/communities/mentoring-programme/">Mentoring Programme</a></li> <li id="menu-item-6208" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-6208"><a href="https://eage.org/communities/pace-event-support/">PACE Event Support</a></li> <li id="menu-item-19318" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-19318"><a href="https://eage.org/communities/resources/">Resources</a></li> </ul> </li> </ul></div> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-587493b3" data-id="587493b3" data-element_type="column" data-settings="{"background_background":"classic"}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-f7ab452 elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons" data-id="f7ab452" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-57fb79f" href="https://www.facebook.com/EAGEglobal" target="_blank"> <span class="elementor-screen-only">Facebook</span> <i class="fab fa-facebook"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-repeater-item-a3355b7" href="https://www.linkedin.com/company/eagelinkedin/" target="_blank"> <span class="elementor-screen-only">Linkedin</span> <i class="fab fa-linkedin"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-70c7d92" href="http://youtube.com/user/EAGEchannel" target="_blank"> <span class="elementor-screen-only">Youtube</span> <i class="fab fa-youtube"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-b11320d" href="https://twitter.com/EAGE_Global" target="_blank"> <span class="elementor-screen-only">Twitter</span> <i class="fab fa-twitter"></i> </a> </span> </div> </div> </div> </div> </div> </div> </section> </div> <div data-elementor-type="popup" data-elementor-id="1641" class="elementor elementor-1641 elementor-location-popup" data-elementor-settings="{"entrance_animation":"fadeInDown","exit_animation":"fadeInDown","open_selector":".pop_membership","entrance_animation_duration":{"unit":"px","size":"0.5","sizes":[]},"a11y_navigation":"yes","triggers":[],"timing":[]}" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-52fc1a12 elementor-section-full_width elementor-section-content-top elementor-section-height-default elementor-section-height-default" data-id="52fc1a12" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-4be13bf3" data-id="4be13bf3" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-7e797f79" data-id="7e797f79" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-336a75d elementor-widget__width-inherit elementor-widget elementor-widget-wp-widget-nav_menu" data-id="336a75d" data-element_type="widget" data-widget_type="wp-widget-nav_menu.default"> <div class="elementor-widget-container"> <div class="menu-menu-membership-container"><ul id="menu-menu-membership" class="menu"><li id="menu-item-1591" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1591"><a href="#">Membership</a> <ul class="sub-menu"> <li id="menu-item-12859" class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-12859"><a href="https://eage.org/membership/welcome/">Welcome to EAGE</a></li> <li id="menu-item-2553" class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-2553"><a href="https://eage.org/membership/benefits/">Benefits</a></li> <li id="menu-item-9121" class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-9121"><a href="https://eage.org/membership/membershiptypes/">Types of Membership</a></li> <li id="menu-item-2552" class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-2552"><a href="https://eage.org/membership/recognition-programme/">Recognition Programme</a></li> <li id="menu-item-6197" class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-6197"><a href="https://eage.org/membership/membership-terms-and-conditions/">Membership Terms and Conditions</a></li> </ul> </li> <li id="menu-item-1592" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1592"><a href="#">Support</a> <ul class="sub-menu"> <li id="menu-item-2551" class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-2551"><a href="https://eage.org/membership/hardship-programme/">Hardship Programme</a></li> <li id="menu-item-2550" class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-2550"><a href="https://eage.org/membership/travel-grant/">Individual Support – PACE</a></li> </ul> </li> <li id="menu-item-1593" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1593"><a href="#">Join or Renew</a> <ul class="sub-menu"> <li id="menu-item-4328" class="menu-button menu-item menu-item-type-custom menu-item-object-custom menu-item-4328"><a href="https://eage.eventsair.com/eage-membership-module/membership-application">Join EAGE</a></li> <li id="menu-item-4329" class="menu-button menu-item menu-item-type-custom menu-item-object-custom menu-item-4329"><a href="https://eage.eventsair.com/eage-membership-module/membership-application">Renew your Membership</a></li> </ul> </li> </ul></div> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-271e2f07" data-id="271e2f07" data-element_type="column" data-settings="{"background_background":"classic"}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-01d6f3c elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons" data-id="01d6f3c" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-57fb79f" href="https://www.facebook.com/EAGEglobal" target="_blank"> <span class="elementor-screen-only">Facebook</span> <i class="fab fa-facebook"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-repeater-item-a3355b7" href="https://www.linkedin.com/company/eagelinkedin/" target="_blank"> <span class="elementor-screen-only">Linkedin</span> <i class="fab fa-linkedin"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-70c7d92" href="http://youtube.com/user/EAGEchannel" target="_blank"> <span class="elementor-screen-only">Youtube</span> <i class="fab fa-youtube"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-b11320d" href="https://twitter.com/EAGE_Global" target="_blank"> <span class="elementor-screen-only">Twitter</span> <i class="fab fa-twitter"></i> </a> </span> </div> </div> </div> </div> </div> </div> </section> </div> <div data-elementor-type="popup" data-elementor-id="1588" class="elementor elementor-1588 elementor-location-popup" data-elementor-settings="{"entrance_animation":"fadeInDown","exit_animation":"fadeInDown","open_selector":".pop_events","entrance_animation_duration":{"unit":"px","size":"0.5","sizes":[]},"a11y_navigation":"yes","triggers":[],"timing":[]}" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-b00dac6 elementor-section-full_width elementor-section-content-top elementor-section-height-default elementor-section-height-default" data-id="b00dac6" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-e9a80bb" data-id="e9a80bb" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-10d41b7c" data-id="10d41b7c" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-267581f6 elementor-widget__width-inherit elementor-widget elementor-widget-wp-widget-nav_menu" data-id="267581f6" data-element_type="widget" data-widget_type="wp-widget-nav_menu.default"> <div class="elementor-widget-container"> <div class="menu-menu-events-container"><ul id="menu-menu-events" class="menu"><li id="menu-item-1583" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1583"><a href="#">About Events</a> <ul class="sub-menu"> <li id="menu-item-2547" class="menu-item menu-item-type-post_type menu-item-object-events menu-item-2547"><a href="https://eage.org/events/conferences/">Conferences</a></li> <li id="menu-item-2548" class="menu-item menu-item-type-post_type menu-item-object-events menu-item-2548"><a href="https://eage.org/events/workshops/">Workshops</a></li> <li id="menu-item-9798" class="menu-item menu-item-type-post_type menu-item-object-events menu-item-9798"><a href="https://eage.org/events/eage-event-terms-conditions/">EAGE Event Terms & Conditions</a></li> </ul> </li> <li id="menu-item-1584" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1584"><a href="#">Highlights</a> <ul class="sub-menu"> <li id="menu-item-4006" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-4006"><a target="_blank" href="https://eagedigital.org/">EAGE Digital 2024</a></li> <li id="menu-item-16494" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-16494"><a target="_blank" href="https://eageannual.org/">EAGE Annual 2024</a></li> <li id="menu-item-19103" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-19103"><a target="_blank" href="https://eagensg.org/">EAGE Near Surface Geoscience 2024</a></li> <li id="menu-item-21877" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-21877"><a target="_blank" href="https://eageget.org/">EAGE Global Energy Transition 2024</a></li> </ul> </li> <li id="menu-item-1585" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1585"><a href="#">Overview</a> <ul class="sub-menu"> <li id="menu-item-9426" class="menu-button menu-item menu-item-type-post_type menu-item-object-events menu-item-9426"><a href="https://eage.org/events/calendar-of-events/">Calendar of Events</a></li> <li id="menu-item-9424" class="menu-button menu-item menu-item-type-post_type menu-item-object-events menu-item-9424"><a href="https://eage.org/events/calendar-of-online-events/">Calendar of Online Events</a></li> <li id="menu-item-9425" class="menu-button menu-item menu-item-type-post_type menu-item-object-events menu-item-9425"><a href="https://eage.org/events/calendar-of-past-events/">Calendar of Past Events</a></li> </ul> </li> </ul></div> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-36d6f532" data-id="36d6f532" data-element_type="column" data-settings="{"background_background":"classic"}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-ce9dfa9 elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons" data-id="ce9dfa9" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-57fb79f" href="https://www.facebook.com/EAGEglobal" target="_blank"> <span class="elementor-screen-only">Facebook</span> <i class="fab fa-facebook"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-repeater-item-a3355b7" href="https://www.linkedin.com/company/eagelinkedin/" target="_blank"> <span class="elementor-screen-only">Linkedin</span> <i class="fab fa-linkedin"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-70c7d92" href="http://youtube.com/user/EAGEchannel" target="_blank"> <span class="elementor-screen-only">Youtube</span> <i class="fab fa-youtube"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-b11320d" href="https://twitter.com/EAGE_Global" target="_blank"> <span class="elementor-screen-only">Twitter</span> <i class="fab fa-twitter"></i> </a> </span> </div> </div> </div> </div> </div> </div> </section> </div> <div data-elementor-type="popup" data-elementor-id="1566" class="elementor elementor-1566 elementor-location-popup" data-elementor-settings="{"entrance_animation":"fadeInDown","exit_animation":"fadeInDown","open_selector":".pop_mobile","entrance_animation_mobile":"none","exit_animation_mobile":"none","entrance_animation_duration":{"unit":"px","size":"0","sizes":[]},"a11y_navigation":"yes","triggers":[],"timing":[]}" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-27a275b4 elementor-section-full_width elementor-section-content-top mobile_menu_container_popup elementor-section-height-default elementor-section-height-default" data-id="27a275b4" data-element_type="section" data-settings="{"background_background":"classic"}"> <div class="elementor-background-overlay"></div> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-dc0edff" data-id="dc0edff" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-77cd725 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="77cd725" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-33d9293" data-id="33d9293" data-element_type="column" data-settings="{"background_background":"classic"}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-00db6a8 elementor-widget elementor-widget-image" data-id="00db6a8" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <img src="https://eage.org/wp-content/uploads/2020/05/EAGE_logo_header.svg?w=800" title="EAGE_logo" alt="" loading="lazy" /> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-d7ee7bc" data-id="d7ee7bc" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-f04bbc4 elementor-widget elementor-widget-image" data-id="f04bbc4" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <img src="https://eage.org/wp-content/uploads/2020/05/Mobile_MenuIcon_closing.svg?w=150&h=150&crop=1" title="Mobile_MenuIcon_closing" alt="" loading="lazy" /> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-inner-section elementor-element elementor-element-444c9ec elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="444c9ec" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-624d41a" data-id="624d41a" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-afad4b1 mobile_top_menu elementor-widget elementor-widget-text-editor" data-id="afad4b1" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p style="text-align: center;"> <a href="https://www.firstbreak.org/">First Break</a> <a href="https://www.earthdoc.org/">EarthDoc</a></p> </div> </div> </div> </div> </div> </section> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-d22a331 elementor-section-full_width elementor-section-content-top elementor-section-height-default elementor-section-height-default" data-id="d22a331" data-element_type="section" data-settings="{"background_background":"classic"}"> <div class="elementor-background-overlay"></div> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-1220ef8" data-id="1220ef8" data-element_type="column" data-settings="{"background_background":"classic"}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-background-overlay"></div> <section class="elementor-section elementor-inner-section elementor-element elementor-element-df7c7e4 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="df7c7e4" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-4315d2c" data-id="4315d2c" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-d0dba09 elementor-search-form--skin-classic elementor-search-form--button-type-icon elementor-search-form--icon-search elementor-widget elementor-widget-search-form" data-id="d0dba09" data-element_type="widget" data-settings="{"skin":"classic"}" data-widget_type="search-form.default"> <div class="elementor-widget-container"> <search role="search"> <form class="elementor-search-form" action="https://eage.org" method="get"> <div class="elementor-search-form__container"> <label class="elementor-screen-only" for="elementor-search-form-d0dba09">Search</label> <input id="elementor-search-form-d0dba09" placeholder="Search..." class="elementor-search-form__input" type="search" name="s" value=""> <button class="elementor-search-form__submit" type="submit" aria-label="Search"> <i aria-hidden="true" class="fas fa-search"></i> <span class="elementor-screen-only">Search</span> </button> </div> </form> </search> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-inner-section elementor-element elementor-element-3752fb4 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="3752fb4" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-025f73c" data-id="025f73c" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-1a7ce65 elementor-nav-menu__text-align-aside elementor-widget elementor-widget-nav-menu" data-id="1a7ce65" data-element_type="widget" data-settings="{"layout":"dropdown","submenu_icon":{"value":"<i class=\"fas fa-caret-down\"><\/i>","library":"fa-solid"}}" data-widget_type="nav-menu.default"> <div class="elementor-widget-container"> <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true"> <ul id="menu-2-1a7ce65" class="elementor-nav-menu"><li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom current-menu-ancestor menu-item-has-children menu-item-1349"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">About EAGE</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1328"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">General</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3501"><a href="https://eage.org/about_eage/mission-and-objectives/" class="elementor-sub-item" tabindex="-1">Mission and Objectives</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-9309"><a href="https://eage.org/about_eage/eage-history/" class="elementor-sub-item" tabindex="-1">History</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3498"><a href="https://eage.org/about_eage/agmm/" class="elementor-sub-item" tabindex="-1">AGMM</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3499"><a href="https://eage.org/about_eage/circles/" class="elementor-sub-item" tabindex="-1">Circles</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-25434"><a href="https://eage.org/about_eage/code-of-conduct/" class="elementor-sub-item" tabindex="-1">Code of Conduct</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1329"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Organization</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-20411"><a href="https://eage.org/about_eage/ballot/" class="elementor-sub-item" tabindex="-1">Ballot</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3502"><a href="https://eage.org/about_eage/board-and-bod/" class="elementor-sub-item" tabindex="-1">Board and BoD</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3504"><a href="https://eage.org/about_eage/committees/" class="elementor-sub-item" tabindex="-1">Committees</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3505"><a href="https://eage.org/about_eage/constitution/" class="elementor-sub-item" tabindex="-1">Constitution</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3503"><a href="https://eage.org/about_eage/by-laws/" class="elementor-sub-item" tabindex="-1">By-Laws</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1330"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Funds</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3508"><a href="https://eage.org/about_eage/student-fund/" class="elementor-sub-item" tabindex="-1">Student Fund</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3506"><a href="https://eage.org/about_eage/green-fund/" class="elementor-sub-item" tabindex="-1">Green Fund</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom current-menu-ancestor current-menu-parent menu-item-has-children menu-item-1331"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Cooperations</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage current-menu-item menu-item-3509"><a href="https://eage.org/about_eage/associated-societies/" aria-current="page" class="elementor-sub-item elementor-item-active" tabindex="-1">Associated Societies</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3511"><a href="https://eage.org/about_eage/joint-events/" class="elementor-sub-item" tabindex="-1">Joint Events</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1332"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Global Offices</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8453"><a href="/about_eage/global-offices" class="elementor-sub-item" tabindex="-1">Europe Office</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8455"><a href="/about_eage/global-offices#middle-east_africa_office" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Middle East / Africa Office</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8458"><a href="/about_eage/global-offices#asia-pacific_office" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Asia Pacific Office</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8459"><a href="/about_eage/global-offices#latin-americas_office" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Latin America Office</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1333"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Careers</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3515"><a href="https://eage.org/about_eage/careers/" class="elementor-sub-item" tabindex="-1">Work with EAGE</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3513"><a href="https://eage.org/about_eage/careers-in-the-industry/" class="elementor-sub-item" tabindex="-1">Careers in the Industry</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3514"><a href="https://eage.org/about_eage/volunteer/" class="elementor-sub-item" tabindex="-1">Volunteering Opportunities</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-8492"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Awards</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-8494"><a href="https://eage.org/about_eage/nominations/" class="elementor-sub-item" tabindex="-1">Nominations</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-8495"><a href="https://eage.org/about_eage/overview-awards/" class="elementor-sub-item" tabindex="-1">Overview Awards</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-8493"><a href="https://eage.org/about_eage/award-winners/" class="elementor-sub-item" tabindex="-1">Award Winners</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1350"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Events</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3518"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">About Events</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-3516"><a href="https://eage.org/events/conferences/" class="elementor-sub-item" tabindex="-1">Conferences</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-3517"><a href="https://eage.org/events/workshops/" class="elementor-sub-item" tabindex="-1">Workshops</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-20412"><a href="https://eage.org/events/eage-event-terms-conditions/" class="elementor-sub-item" tabindex="-1">EAGE Event Terms & Conditions</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3519"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Highlights</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-20413"><a href="https://eagedigital.org/" class="elementor-sub-item" tabindex="-1">EAGE Digital 2024</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-16612"><a target="_blank" href="https://eageannual.org/" class="elementor-sub-item" tabindex="-1">EAGE Annual 2024</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8497"><a target="_blank" href="https://eagensg.org/" class="elementor-sub-item" tabindex="-1">EAGE Near Surface Geoscience 2024</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-21878"><a href="https://eageget.org/" class="elementor-sub-item" tabindex="-1">EAGE Global Energy Transition 2024</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3520"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Overview</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-9429"><a href="https://eage.org/events/calendar-of-events/" class="elementor-sub-item" tabindex="-1">Calendar of Events</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-9427"><a href="https://eage.org/events/calendar-of-online-events/" class="elementor-sub-item" tabindex="-1">Calendar of Online Events</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-9428"><a href="https://eage.org/events/calendar-of-past-events/" class="elementor-sub-item" tabindex="-1">Calendar of Past Events</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1351"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Membership</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3522"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Membership</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-12860"><a href="https://eage.org/membership/welcome/" class="elementor-sub-item" tabindex="-1">Welcome to EAGE</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-3525"><a href="https://eage.org/membership/benefits/" class="elementor-sub-item" tabindex="-1">Benefits</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-9123"><a href="https://eage.org/membership/membershiptypes/" class="elementor-sub-item" tabindex="-1">Types of Membership</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-3527"><a href="https://eage.org/membership/recognition-programme/" class="elementor-sub-item" tabindex="-1">Recognition Programme</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-8498"><a href="https://eage.org/membership/membership-terms-and-conditions/" class="elementor-sub-item" tabindex="-1">Membership Terms and Conditions</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3523"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Support</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-3526"><a href="https://eage.org/membership/hardship-programme/" class="elementor-sub-item" tabindex="-1">Hardship Programme</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-3528"><a href="https://eage.org/membership/travel-grant/" class="elementor-sub-item" tabindex="-1">Individual Support – PACE</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3524"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Join or Renew</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8499"><a href="https://eage.eventsair.com/eage-membership-module/membership-application" class="elementor-sub-item" tabindex="-1">Join EAGE</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8500"><a href="https://eage.eventsair.com/eage-membership-module/membership-application" class="elementor-sub-item" tabindex="-1">Renew your Membership</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1352"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Communities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3529"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Local Chapters</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3539"><a href="https://eage.org/communities/eage-local-chapters/" class="elementor-sub-item" tabindex="-1">EAGE Local Chapters</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3544"><a href="https://eage.org/communities/find-your-local-chapter/" class="elementor-sub-item" tabindex="-1">Find your Local Chapter</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3546"><a href="https://eage.org/communities/local-chapter-prizes/" class="elementor-sub-item" tabindex="-1">Local Chapter Prizes</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3530"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Special Interest Communities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3540"><a href="https://eage.org/communities/women-in-geoscience-and-engineering/" class="elementor-sub-item" tabindex="-1">Women in Geoscience & Engineering</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3541"><a href="https://eage.org/communities/young-professionals/" class="elementor-sub-item" tabindex="-1">Young Professionals</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3532"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Technical Communities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3536"><a href="https://eage.org/communities/artificial-intelligence-community/" class="elementor-sub-item" tabindex="-1">Artificial Intelligence</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8502"><a href="https://eage.org/communities/basinpetroleumsystems/" class="elementor-sub-item" tabindex="-1">Basin & Petroleum Systems Analysis</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3537"><a href="https://eage.org/communities/decabonization-and-energy-transition/" class="elementor-sub-item" tabindex="-1">Decarbonization and Energy Transition</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-9548"><a href="https://eage.org/communities/geochemistry/" class="elementor-sub-item" tabindex="-1">Geochemistry</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-20409"><a href="https://eage.org/communities/geohazards/" class="elementor-sub-item" tabindex="-1">Geohazards</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8503"><a href="https://eage.org/communities/hydrogeophysics/" class="elementor-sub-item" tabindex="-1">Hydrogeophysics</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8504"><a href="https://eage.org/communities/critical-minerals/" class="elementor-sub-item" tabindex="-1">Critical Minerals</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-10328"><a href="https://eage.org/communities/seismic-acquisition/" class="elementor-sub-item" tabindex="-1">Seismic Acquisition</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-10329"><a href="https://eage.org/communities/seismic-interpretation/" class="elementor-sub-item" tabindex="-1">Seismic Interpretation</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-20410"><a href="https://eage.org/communities/uav/" class="elementor-sub-item" tabindex="-1">Uncrewed Aerial Vehicles</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23793"><a href="https://eage.org/communities/ccs/" class="elementor-sub-item" tabindex="-1">CCS</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23790"><a href="https://eage.org/communities/geothermal-energy/" class="elementor-sub-item" tabindex="-1">Geothermal Energy</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23791"><a href="https://eage.org/communities/wind-energy/" class="elementor-sub-item" tabindex="-1">Wind Energy</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23792"><a href="https://eage.org/communities/hydrogen-and-energy-storage/" class="elementor-sub-item" tabindex="-1">Hydrogen and Energy Storage</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-25655"><a href="https://eage.org/communities/enhancing-hydrocarbon-recovery-for-sustainability/" class="elementor-sub-item" tabindex="-1">Enhancing Hydrocarbon Recovery for Sustainability</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3534"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">EU Affairs</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3538"><a href="https://eage.org/communities/eu-affairs/" class="elementor-sub-item" tabindex="-1">About EU Affairs</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3535"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Community Activities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3550"><a href="https://events.eage.org/" class="elementor-sub-item" tabindex="-1">Calendar of Events</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8505"><a href="https://eage.org/communities/mentoring-programme/" class="elementor-sub-item" tabindex="-1">Mentoring Programme</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8506"><a href="https://eage.org/communities/pace-event-support/" class="elementor-sub-item" tabindex="-1">PACE Event Support</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-19319"><a href="https://eage.org/communities/resources/" class="elementor-sub-item" tabindex="-1">Resources</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1353"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Students</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3551"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Student Chapters</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3563"><a href="https://eage.org/students/about-student-chapter/" class="elementor-sub-item" tabindex="-1">About Student Chapters</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3564"><a href="https://eage.org/students/establish-your-student-chapter/" class="elementor-sub-item" tabindex="-1">Establish a Student Chapter</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-8508"><a href="https://eage.org/students/your-student-chapter/" class="elementor-sub-item" tabindex="-1">Your Student Chapter</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3552"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Online Activities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3573"><a href="https://eage.org/students/webinars/" class="elementor-sub-item" tabindex="-1">Student Webinars</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-8509"><a href="https://eage.org/students/e-summits/" class="elementor-sub-item" tabindex="-1">Student E-Summits</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3553"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">GEO Quiz</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3560"><a href="https://eage.org/students/about-geo-quiz/" class="elementor-sub-item" tabindex="-1">About the Geo Quiz</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3566"><a href="https://eage.org/students/join-the-geoquiz/" class="elementor-sub-item" tabindex="-1">Join the Geo Quiz</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3565"><a href="https://eage.org/students/geo-quiz/" class="elementor-sub-item" tabindex="-1">Geo Quiz Hall of Fame</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3554"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Laurie Dake Challenge</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3561"><a href="https://eage.org/students/about-laurie-dake-challenge/" class="elementor-sub-item" tabindex="-1">About the Laurie Dake Challenge</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3567"><a href="https://eage.org/students/join-the-laurie-dake-challenge/" class="elementor-sub-item" tabindex="-1">Join the Laurie Dake Challenge</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-8507"><a href="https://eage.org/students/laurie-dake-challenge-hall-of-fame/" class="elementor-sub-item" tabindex="-1">Laurie Dake Challenge Hall of Fame</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3555"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Minus CO2 challenge</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3562"><a href="https://eage.org/students/about-minus-co2-challenge/" class="elementor-sub-item" tabindex="-1">About Minus CO2 Challenge</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3568"><a href="https://eage.org/students/minus-co2-challenge/" class="elementor-sub-item" tabindex="-1">Join the Minus CO2 Challenge</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3569"><a href="https://eage.org/students/minus-co2-challenge-hall-of-fame/" class="elementor-sub-item" tabindex="-1">Minus CO2 Challenge Hall of Fame</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3556"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Support</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3570"><a href="https://eage.org/students/scholarship-support/" class="elementor-sub-item" tabindex="-1">Scholarships & Awards</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3574"><a href="https://eage.org/students/awards-support/" class="elementor-sub-item" tabindex="-1">EAGE Membership & Grants</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-20414"><a href="https://eage.org/students/support-ukraine-professional-development-fund/" class="elementor-sub-item" tabindex="-1">Ukraine Professional Development Fund</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3557"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">EAGE Student Fund</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3559"><a href="https://eage.org/students/about-eage-student-fund/" class="elementor-sub-item" tabindex="-1">About the EAGE Student Fund</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1354"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Education</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3575"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Highlights</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8511"><a href="https://eage.org/education/highlights/" class="elementor-sub-item" tabindex="-1">EAGE Education</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-21602"><a href="https://eage.org/education/energy-transition-skills/" class="elementor-sub-item" tabindex="-1">Energy Transition Skills</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3576"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Learning Geoscience</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8519"><a href="https://eage.org/education/learning-geoscience/" class="elementor-sub-item" tabindex="-1">About Learning Geoscience</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8510"><a href="https://eage.org/education/electures/" class="elementor-sub-item" tabindex="-1">E-Lectures</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8517"><a href="https://eage.org/education/webinars/" class="elementor-sub-item" tabindex="-1">Webinars</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8513"><a href="https://eage.org/education/how-to-videos/" class="elementor-sub-item" tabindex="-1">How-to Videos</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3579"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Short Courses</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8512"><a href="https://eage.org/education/education-tours/" class="elementor-sub-item" tabindex="-1">Education Tours</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8515"><a href="https://eage.org/education/interactive-online-short-courses/" class="elementor-sub-item" tabindex="-1">Interactive Online Short Courses</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8514"><a href="https://eage.org/education/in-house-training/" class="elementor-sub-item" tabindex="-1">In-House Training</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8518"><a href="https://eage.org/education/classroom-training/" class="elementor-sub-item" tabindex="-1">Classroom Training</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3581"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Eurgeol Title</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-3584"><a href="https://eage.org/education/eurgeol-title/" class="elementor-sub-item" tabindex="-1">Accreditation</a></li> </ul> </li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-14709"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Overview</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-14710"><a href="https://eage.org/education/education-calendar/" class="elementor-sub-item" tabindex="-1">Education Calendar</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8516"><a href="https://eage.org/education/short-course-catalogue/" class="elementor-sub-item" tabindex="-1">Short Course Catalogue</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1355"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Media</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3589"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">First Break</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3596"><a href="https://eage.org/media/about-firstbreak/" class="elementor-sub-item" tabindex="-1">About First Break</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3590"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">EarthDoc</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3599"><a href="https://eage.org/media/earthdoc/" class="elementor-sub-item" tabindex="-1">EarthDoc</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3591"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Journals</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3588"><a href="https://eage.org/media/nearsurfacegeophysics#near_surface_geophysics" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Near Surface Geophysics</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3594"><a href="https://eage.org/media/nearsurfacegeophysics#petroleum_geoscience" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Petroleum Geoscience</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8522"><a href="https://eage.org/media/nearsurfacegeophysics#geophysical_prospecting" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Geophysical Prospecting</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8523"><a href="https://eage.org/media/nearsurfacegeophysics#basin_research" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Basin Research</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-17867"><a href="https://eage.org/media/nearsurfacegeophysics#geoenergy" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Geoenergy</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3592"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Books</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3604"><a href="https://eage.org/media/online-bookshop/" class="elementor-sub-item" tabindex="-1">Online Bookshop</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3597"><a href="https://eage.org/media/publishing-with-eage/" class="elementor-sub-item" tabindex="-1">Publishing with EAGE</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3593"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Newsletters</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-8521"><a href="https://eage.org/media/newsletters_stay-connected/" class="elementor-sub-item" tabindex="-1">Stay Connected</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-8520"><a href="https://eage.org/media/digital-newsletters/" class="elementor-sub-item" tabindex="-1">Digital Newsletters</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-9742"><a href="https://eage.org/media/nsg-newsletters/" class="elementor-sub-item" tabindex="-1">NSG Newsletters</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3595"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Media Partners</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3602"><a href="https://eage.org/media/media-partners/" class="elementor-sub-item" tabindex="-1">Media Partners</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-9661"><a href="https://eage.org/media/copyrights-and-use-of-eage-materials/" class="elementor-sub-item" tabindex="-1">Copyrights and use of EAGE materials</a></li> </ul> </li> </ul> </li> </ul> </nav> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-inner-section elementor-element elementor-element-3b3b8a4 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="3b3b8a4" data-element_type="section" data-settings="{"background_background":"classic"}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-a4b9c70" data-id="a4b9c70" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-3cbbfb4 elementor-align-center elementor-widget elementor-widget-button" data-id="3cbbfb4" data-element_type="widget" data-widget_type="button.default"> <div class="elementor-widget-container"> <div class="elementor-button-wrapper"> <a class="elementor-button elementor-button-link elementor-size-sm" href="#"> <span class="elementor-button-content-wrapper"> <span class="elementor-button-icon"> <i aria-hidden="true" class="fas fa-phone-alt"></i> </span> <span class="elementor-button-text">Call Us</span> </span> </a> </div> </div> </div> <div class="elementor-element elementor-element-50455d9 elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons" data-id="50455d9" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-1577a46" href="https://www.facebook.com/EAGEglobal" target="_blank"> <span class="elementor-screen-only">Facebook</span> <i class="fab fa-facebook"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-repeater-item-358e98a" href="https://www.linkedin.com/company/eagelinkedin/" target="_blank"> <span class="elementor-screen-only">Linkedin</span> <i class="fab fa-linkedin"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-32325cb" href="http://youtube.com/user/EAGEchannel" target="_blank"> <span class="elementor-screen-only">Youtube</span> <i class="fab fa-youtube"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-7e3fc8d" href="https://twitter.com/EAGE_Global" target="_blank"> <span class="elementor-screen-only">Twitter</span> <i class="fab fa-twitter"></i> </a> </span> </div> </div> </div> </div> </div> </div> </section> </div> </div> </div> </section> </div> <div data-elementor-type="popup" data-elementor-id="1137" class="elementor elementor-1137 elementor-location-popup" data-elementor-settings="{"entrance_animation":"fadeInDown","exit_animation":"fadeInDown","open_selector":".pop_abouteage","entrance_animation_duration":{"unit":"px","size":"0.5","sizes":[]},"a11y_navigation":"yes","triggers":[],"timing":[]}" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-54464432 elementor-section-full_width elementor-section-content-top elementor-section-height-default elementor-section-height-default" data-id="54464432" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-a784336" data-id="a784336" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-5af8966f" data-id="5af8966f" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-85623ab elementor-widget__width-inherit elementor-widget elementor-widget-wp-widget-nav_menu" data-id="85623ab" data-element_type="widget" data-widget_type="wp-widget-nav_menu.default"> <div class="elementor-widget-container"> <div class="menu-menu-about-eage-container"><ul id="menu-menu-about-eage" class="menu"><li id="menu-item-1124" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1124"><a href="#">General</a> <ul class="sub-menu"> <li id="menu-item-2337" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2337"><a href="https://eage.org/about_eage/mission-and-objectives/">Mission and Objectives</a></li> <li id="menu-item-6973" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-6973"><a href="https://eage.org/about_eage/eage-history/">History</a></li> <li id="menu-item-2336" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2336"><a href="https://eage.org/about_eage/agmm/">AGMM</a></li> <li id="menu-item-2318" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2318"><a href="https://eage.org/about_eage/circles/">Circles</a></li> <li id="menu-item-25432" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-25432"><a href="https://eage.org/about_eage/code-of-conduct/">Code of Conduct</a></li> </ul> </li> <li id="menu-item-1125" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1125"><a href="#">Organization</a> <ul class="sub-menu"> <li id="menu-item-19501" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-19501"><a href="https://eage.org/about_eage/ballot/">Ballot</a></li> <li id="menu-item-2339" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2339"><a href="https://eage.org/about_eage/board-and-bod/">Board and BoD</a></li> <li id="menu-item-2340" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2340"><a href="https://eage.org/about_eage/committees/">Committees</a></li> <li id="menu-item-2319" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2319"><a href="https://eage.org/about_eage/constitution/">Constitution</a></li> <li id="menu-item-2342" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2342"><a href="https://eage.org/about_eage/by-laws/">By-Laws</a></li> </ul> </li> <li id="menu-item-1126" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1126"><a href="#">Funds</a> <ul class="sub-menu"> <li id="menu-item-2322" class="hide_menu_item menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2322"><a href="https://eage.org/?post_type=about_eage&p=2108">Structural Funds</a></li> <li id="menu-item-5224" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5224"><a href="https://eage.org/about_eage/funds">Student Fund</a></li> <li id="menu-item-4378" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-4378"><a href="https://eage.org/about_eage/funds#green_fund">Green Fund</a></li> </ul> </li> <li id="menu-item-1150" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom current-menu-ancestor current-menu-parent menu-item-has-children menu-item-1150"><a href="#">Cooperations</a> <ul class="sub-menu"> <li id="menu-item-2324" class="menu-item menu-item-type-post_type menu-item-object-about_eage current-menu-item menu-item-2324"><a href="https://eage.org/about_eage/associated-societies/" aria-current="page">Associated Societies</a></li> <li id="menu-item-2325" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2325"><a href="https://eage.org/about_eage/joint-events/">Joint Events</a></li> <li id="menu-item-2323" class="hide_menu_item menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2323"><a href="https://eage.org/?post_type=about_eage&p=2136">Corporate Partners</a></li> </ul> </li> <li id="menu-item-1151" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1151"><a href="#">Global Offices</a> <ul class="sub-menu"> <li id="menu-item-5576" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5576"><a href="/about_eage/global-offices">Europe Office</a></li> <li id="menu-item-5577" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5577"><a href="/about_eage/global-offices#middle-east_africa_office">Middle East / Africa Office</a></li> <li id="menu-item-5579" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5579"><a href="/about_eage/global-offices#asia-pacific_office">Asia Pacific Office</a></li> <li id="menu-item-5580" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5580"><a href="/about_eage/global-offices#latin-americas_office">Latin America Office</a></li> </ul> </li> <li id="menu-item-1152" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1152"><a href="#">Careers</a> <ul class="sub-menu"> <li id="menu-item-2329" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2329"><a href="https://eage.org/about_eage/careers/">Work with EAGE</a></li> <li id="menu-item-2328" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2328"><a href="https://eage.org/about_eage/careers-in-the-industry/">Careers in the Industry</a></li> <li id="menu-item-2327" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2327"><a href="https://eage.org/about_eage/volunteer/">Volunteering Opportunities</a></li> </ul> </li> <li id="menu-item-2331" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2331"><a href="#">Awards</a> <ul class="sub-menu"> <li id="menu-item-2334" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2334"><a href="https://eage.org/about_eage/nominations/">Nominations</a></li> <li id="menu-item-2333" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2333"><a href="https://eage.org/about_eage/overview-awards/">Overview Awards</a></li> <li id="menu-item-2332" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2332"><a href="https://eage.org/about_eage/award-winners/">Award Winners</a></li> </ul> </li> </ul></div> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-7cb713e" data-id="7cb713e" data-element_type="column" data-settings="{"background_background":"classic"}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-8ce403f elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons" data-id="8ce403f" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-57fb79f" href="https://www.facebook.com/EAGEglobal" target="_blank"> <span class="elementor-screen-only">Facebook</span> <i class="fab fa-facebook"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-repeater-item-a3355b7" href="https://www.linkedin.com/company/eagelinkedin/" target="_blank"> <span class="elementor-screen-only">Linkedin</span> <i class="fab fa-linkedin"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-70c7d92" href="http://youtube.com/user/EAGEchannel" target="_blank"> <span class="elementor-screen-only">Youtube</span> <i class="fab fa-youtube"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-b11320d" href="https://twitter.com/EAGE_Global" target="_blank"> <span class="elementor-screen-only">Twitter</span> <i class="fab fa-twitter"></i> </a> </span> </div> </div> </div> </div> </div> </div> </section> </div> <script type='text/javascript'> const lazyloadRunObserver = () => { const lazyloadBackgrounds = document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` ); const lazyloadBackgroundObserver = new IntersectionObserver( ( entries ) => { entries.forEach( ( entry ) => { if ( entry.isIntersecting ) { let lazyloadBackground = entry.target; if( lazyloadBackground ) { lazyloadBackground.classList.add( 'e-lazyloaded' ); } lazyloadBackgroundObserver.unobserve( entry.target ); } }); }, { rootMargin: '200px 0px 200px 0px' } ); lazyloadBackgrounds.forEach( ( lazyloadBackground ) => { lazyloadBackgroundObserver.observe( lazyloadBackground ); } ); }; const events = [ 'DOMContentLoaded', 'elementor/lazyload/observe', ]; events.forEach( ( event ) => { document.addEventListener( event, lazyloadRunObserver ); } ); </script> <link rel='stylesheet' id='elementor-post-3293-css' href='https://eage.org/wp-content/uploads/elementor/css/post-3293.css?ver=1731931368' media='all' /> <link rel='stylesheet' id='elementor-post-20487-css' href='https://eage.org/wp-content/uploads/elementor/css/post-20487.css?ver=1731934889' media='all' /> <link rel='stylesheet' id='elementor-post-20501-css' href='https://eage.org/wp-content/uploads/elementor/css/post-20501.css?ver=1731934893' media='all' /> <link rel='stylesheet' id='elementor-post-20505-css' href='https://eage.org/wp-content/uploads/elementor/css/post-20505.css?ver=1731934897' media='all' /> <link rel='stylesheet' id='elementor-post-20468-css' href='https://eage.org/wp-content/uploads/elementor/css/post-20468.css?ver=1731934900' media='all' /> <link rel='stylesheet' id='elementor-post-20497-css' href='https://eage.org/wp-content/uploads/elementor/css/post-20497.css?ver=1731934904' media='all' /> <link rel='stylesheet' id='elementor-post-20490-css' href='https://eage.org/wp-content/uploads/elementor/css/post-20490.css?ver=1731934907' media='all' /> <link rel='stylesheet' id='elementor-post-20465-css' href='https://eage.org/wp-content/uploads/elementor/css/post-20465.css?ver=1731934910' media='all' /> <style id='core-block-supports-inline-css'> /** * Core styles: block-supports */ </style> <link rel='stylesheet' id='all-css-20' href='https://eage.org/wp-content/plugins/revslider/public/assets/css/rs6.css?m=1712303167g' type='text/css' media='all' /> <style id='rs-plugin-settings-inline-css'> #rs-demo-id {} </style> <script type="text/javascript" src="https://eage.org/_static/??-eJyVyzEOwjAMQNEL0bqkUpkQZ2kTCxwSO8QxqLenYmIAJOb/PjxK54UbcoOS7EysUPGuiQJWKLYk8jCrYlOIW1qaSNI+E/dRd/DnrdP7SeyTBXyleDOsKxiBl4q/RUa2TyKQNgiSu4pzWL+Ki8hVt3rKx/1hdG6YBjfGJweZYXg=" ></script><script type="text/javascript" src="https://eage.org/wp-includes/js/dist/i18n.js?ver=2aff907006e2aa00e26e" id="wp-i18n-js"></script> <script type="text/javascript" id="wp-i18n-js-after"> /* <![CDATA[ */ wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } ); /* ]]> */ </script> <script type="text/javascript" src="https://eage.org/wp-includes/js/dist/a11y.js?ver=55ca8e5ef2be0319312c" id="wp-a11y-js"></script> <script type="text/javascript" id="_ning_global-js-extra"> /* <![CDATA[ */ var _adn_ = {"ajaxurl":"https:\/\/eage.org\/wp-admin\/admin-ajax.php","upload":{"dir":"vip:\/\/wp-content\/uploads\/angwp\/","src":"https:\/\/eage.org\/wp-content\/uploads\/angwp\/"}}; /* ]]> */ </script> <script type="text/javascript" src="https://eage.org/_static/??-eJytjUsOwjAMBS9E69JKsELcgi1KE4Mc5WPiRC23JyVsERskL6z3xmNYuKOgXTEoYOs8CqYnFAJVctTRs8OMvZUdVFLHkDFkYFfuFARUuC8MSgSzgCHJLennEoz7cfX5CrjWUijWQjhddXTFb1CT2pZSuBAuHFP+k5RVUs6ptfcUviq5a2snOhFnjHBLb8ZsillUr1WKRdBVxdmf9sdpHIfDME72BUiLgqc=" ></script><script type="text/javascript" src="https://eage.org/wp-includes/js/jquery/ui/datepicker.js?ver=1.13.3" id="jquery-ui-datepicker-js"></script> <script type="text/javascript" id="jquery-ui-datepicker-js-after"> /* <![CDATA[ */ jQuery(function(jQuery){jQuery.datepicker.setDefaults({"closeText":"Close","currentText":"Today","monthNames":["January","February","March","April","May","June","July","August","September","October","November","December"],"monthNamesShort":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],"nextText":"Next","prevText":"Previous","dayNames":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"dayNamesShort":["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],"dayNamesMin":["S","M","T","W","T","F","S"],"dateFormat":"MM d, yy","firstDay":1,"isRTL":false});}); /* ]]> */ </script> <script type="text/javascript" src="https://eage.org/_static/??/wp-content/plugins/elementor-pro/assets/lib/smartmenus/jquery.smartmenus.js,/wp-includes/js/imagesloaded.min.js?m=1732206023j" ></script><script type="text/javascript" src="https://stats.wp.com/e-202447.js" id="jetpack-stats-js" data-wp-strategy="defer"></script> <script type="text/javascript" id="jetpack-stats-js-after"> /* <![CDATA[ */ _stq = window._stq || []; _stq.push([ "view", JSON.parse("{\"v\":\"ext\",\"blog\":\"172520282\",\"post\":\"2116\",\"tz\":\"0\",\"srv\":\"eage.org\",\"hp\":\"vip\",\"j\":\"1:13.9.1\"}") ]); _stq.push([ "clickTrackerInit", "172520282", "2116" ]); /* ]]> */ </script> <script type="text/javascript" id="ivory-search-scripts-js-extra"> /* <![CDATA[ */ var IvorySearchVars = {"is_analytics_enabled":"1"}; /* ]]> */ </script> <script type="text/javascript" src="https://eage.org/_static/??-eJydzMEOwiAQBNAfkq61sZ6M30JhVRB2yS7Y+Pe2xpsmJl5n5g3MxTimilShpHYJpGC9N4pW3NVUNhmpQWlTCg6iQrizPN51lwN1UTfw5QQTLrKymCIMVhWrrn7GqVh3W9NOGtWQ8efFJ/+HnuU18iazbwl1sad87A/Dth9247iPT3C0ZGs=" ></script><script type="text/javascript" id="elementor-pro-frontend-js-before"> /* <![CDATA[ */ var ElementorProFrontendConfig = {"ajaxurl":"https:\/\/eage.org\/wp-admin\/admin-ajax.php","nonce":"1e80debb76","urls":{"assets":"https:\/\/eage.org\/wp-content\/plugins\/elementor-pro\/assets\/","rest":"https:\/\/eage.org\/wp-json\/"},"settings":{"lazy_load_background_images":true},"shareButtonsNetworks":{"facebook":{"title":"Facebook","has_counter":true},"twitter":{"title":"Twitter"},"linkedin":{"title":"LinkedIn","has_counter":true},"pinterest":{"title":"Pinterest","has_counter":true},"reddit":{"title":"Reddit","has_counter":true},"vk":{"title":"VK","has_counter":true},"odnoklassniki":{"title":"OK","has_counter":true},"tumblr":{"title":"Tumblr"},"digg":{"title":"Digg"},"skype":{"title":"Skype"},"stumbleupon":{"title":"StumbleUpon","has_counter":true},"mix":{"title":"Mix"},"telegram":{"title":"Telegram"},"pocket":{"title":"Pocket","has_counter":true},"xing":{"title":"XING","has_counter":true},"whatsapp":{"title":"WhatsApp"},"email":{"title":"Email"},"print":{"title":"Print"},"x-twitter":{"title":"X"},"threads":{"title":"Threads"}},"facebook_sdk":{"lang":"en_US","app_id":""},"lottie":{"defaultAnimationUrl":"https:\/\/eage.org\/wp-content\/plugins\/elementor-pro\/modules\/lottie\/assets\/animations\/default.json"}}; /* ]]> */ </script> <script type="text/javascript" src="https://eage.org/wp-content/plugins/elementor-pro/assets/js/frontend.js?ver=3.24.4" id="elementor-pro-frontend-js"></script> <script type="text/javascript" id="elementor-frontend-js-before"> /* <![CDATA[ */ var elementorFrontendConfig = {"environmentMode":{"edit":false,"wpPreview":false,"isScriptDebug":true},"i18n":{"shareOnFacebook":"Share on Facebook","shareOnTwitter":"Share on Twitter","pinIt":"Pin it","download":"Download","downloadImage":"Download image","fullscreen":"Fullscreen","zoom":"Zoom","share":"Share","playVideo":"Play Video","previous":"Previous","next":"Next","close":"Close","a11yCarouselWrapperAriaLabel":"Carousel | Horizontal scrolling: Arrow Left & Right","a11yCarouselPrevSlideMessage":"Previous slide","a11yCarouselNextSlideMessage":"Next slide","a11yCarouselFirstSlideMessage":"This is the first slide","a11yCarouselLastSlideMessage":"This is the last slide","a11yCarouselPaginationBulletMessage":"Go to slide"},"is_rtl":false,"breakpoints":{"xs":0,"sm":480,"md":768,"lg":900,"xl":1440,"xxl":1600},"responsive":{"breakpoints":{"mobile":{"label":"Mobile Portrait","value":767,"default_value":767,"direction":"max","is_enabled":true},"mobile_extra":{"label":"Mobile Landscape","value":880,"default_value":880,"direction":"max","is_enabled":false},"tablet":{"label":"Tablet Portrait","value":899,"default_value":1024,"direction":"max","is_enabled":true},"tablet_extra":{"label":"Tablet Landscape","value":1200,"default_value":1200,"direction":"max","is_enabled":false},"laptop":{"label":"Laptop","value":1366,"default_value":1366,"direction":"max","is_enabled":false},"widescreen":{"label":"Widescreen","value":2400,"default_value":2400,"direction":"min","is_enabled":false}},"hasCustomBreakpoints":true},"version":"3.24.7","is_static":false,"experimentalFeatures":{"additional_custom_breakpoints":true,"container":true,"container_grid":true,"e_swiper_latest":true,"e_nested_atomic_repeaters":true,"e_onboarding":true,"theme_builder_v2":true,"home_screen":true,"ai-layout":true,"landing-pages":true,"nested-elements":true,"link-in-bio":true,"floating-buttons":true,"display-conditions":true,"form-submissions":true,"mega-menu":true},"urls":{"assets":"https:\/\/eage.org\/wp-content\/plugins\/elementor\/assets\/","ajaxurl":"https:\/\/eage.org\/wp-admin\/admin-ajax.php","uploadUrl":"https:\/\/eage.org\/wp-content\/uploads"},"nonces":{"floatingButtonsClickTracking":"b16ffc3d35"},"swiperClass":"swiper","settings":{"page":[],"editorPreferences":[]},"kit":{"viewport_tablet":899,"active_breakpoints":["viewport_mobile","viewport_tablet"],"global_image_lightbox":"yes","lightbox_enable_counter":"yes","lightbox_enable_fullscreen":"yes","lightbox_enable_zoom":"yes","lightbox_enable_share":"yes","lightbox_title_src":"title","lightbox_description_src":"description"},"post":{"id":2116,"title":"Associated%20Societies%20-%20eage.org","excerpt":"","featuredImage":"https:\/\/eage.org\/wp-content\/uploads\/2020\/04\/Template_RevSlider_BG.jpg?w=800"}}; /* ]]> */ </script> <script type="text/javascript" src="https://eage.org/wp-content/plugins/elementor/assets/js/frontend.js?ver=3.24.7" id="elementor-frontend-js"></script> <script type="text/javascript" id="powerpack-frontend-js-extra"> /* <![CDATA[ */ var ppLogin = {"empty_username":"Enter a username or email address.","empty_password":"Enter password.","empty_password_1":"Enter a password.","empty_password_2":"Re-enter password.","empty_recaptcha":"Please check the captcha to verify you are not a robot.","email_sent":"A password reset email has been sent to the email address for your account, but may take several minutes to show up in your inbox. Please wait at least 10 minutes before attempting another reset.","reset_success":"Your password has been reset successfully.","ajax_url":"https:\/\/eage.org\/wp-admin\/admin-ajax.php","show_password":"Show password","hide_password":"Hide password"}; var ppRegistration = {"invalid_username":"This username is invalid because it uses illegal characters. Please enter a valid username.","username_exists":"This username is already registered. Please choose another one.","empty_email":"Please type your email address.","invalid_email":"The email address isn\u2019t correct!","email_exists":"The email is already registered, please choose another one.","password":"Password must not contain the character \"\\\\\"","password_length":"Your password should be at least 8 characters long.","password_mismatch":"Password does not match.","invalid_url":"URL seems to be invalid.","recaptcha_php_ver":"reCAPTCHA API requires PHP version 5.3 or above.","recaptcha_missing_key":"Your reCAPTCHA Site or Secret Key is missing!","show_password":"Show password","hide_password":"Hide password","ajax_url":"https:\/\/eage.org\/wp-admin\/admin-ajax.php"}; var ppCoupons = {"copied_text":"Copied"}; /* ]]> */ </script> <script type="text/javascript" src="https://eage.org/_static/??-eJyVjMEOgkAMRH/ItSART8RvWaHiLmXbtDX8vsQEw8ELt5nJvAeLhJ6LY3EQeo+pGCDhvHbWIMoQzdAN8m+38IplIFQ7ZzvBH4Hwgiqxn8KG7CxP/b6H4zClBzgzeRJz1H1eZfe5q29NVTeXtr3mD1GDUes=" ></script><script type="text/javascript">var ang_tracker = "UA-6893078-30";var loaded_ang = [];var loaded_angzones = [];</script> </body> </html>