Thank You thankyouwiki https://thankyou.wikipedia.org/wiki/Main_Page MediaWiki 1.46.0-wmf.22 first-letter Media Special Talk User User talk Thank You Thank You talk File File talk MediaWiki MediaWiki talk Template Template talk Help Help talk Category Category talk TimedText TimedText talk Module Module talk MediaWiki:Common.js 8 32 1408 1393 2026-04-02T16:00:16Z EHughes (WMF) 9 Show the social share feature on english pages 1408 javascript text/javascript /* Any JavaScript here will be loaded for all users on every page load. */ // Framebuster for https://phabricator.wikimedia.org/T176669 if ( self !== top ) { top.location.href = window.location; } // Redirect anons to en if page doesn't exist if ( mw.config.get('wgUserName') === null && mw.config.get('wgArticleId') === 0 ) { var basePageName = mw.config.get('wgPageName').split('/')[0]; var redirectUrl = 'https://thankyou.wikipedia.org/wiki/'; if ( basePageName === 'Recurring_donor_page' ) { redirectUrl += 'Recurring_donor_page/en'; } else if ( basePageName === 'WP25' ) { redirectUrl += 'WP25/en'; } else { redirectUrl += 'Thank_You/en'; } redirectUrl += window.location.search; // params window.location.replace( redirectUrl ); } mw.loader.using( [ 'mediawiki.cookie' ], function() { /** * Extend a url with a subset of query parameters * * @param {string} url Base url to extend * @param {object} allParams Object with all available query parameters (usually for the current location) * @param {array} paramsToInclude List of parameters to include in the extended url * @return {string} Extended url */ function extendWithSomeParams( url, allParams, paramsToInclude ) { var urlObject = new URL( url ); // Fallback for survey links allParams.wmf_medium = allParams.wmf_medium || allParams.utm_medium; allParams.wmf_campaign = allParams.wmf_campaign || allParams.utm_campaign; allParams.wmf_source = allParams.wmf_source || allParams.utm_source; paramsToInclude.forEach( function(key) { if ( allParams[key] ) { urlObject.searchParams.set( key, allParams[key] ); } }); return urlObject.toString(); } /* -- Start of main TY page code -- */ var params = {}; for ( const [key, value] of new URLSearchParams( location.search ) ) { params[key] = value; } var country = params.country, pageLanguage = mw.config.get('wgPageName').split('/')[1]; if ( params.recurring === '1' ) { document.getElementById('ty-recurringOrganic').style.display = 'block'; } if ( params.recurring === '1' && params.frequency_unit === 'year' ) { document.getElementById('ty-recurringOrganic').style.display = 'none'; document.getElementById('ty-recurringOrganicAnnual').style.display = 'block'; } if ( params.recurringConversion === '1' ) { document.getElementById('ty-recurringConversion').style.display = 'block'; } if ( params.recurringConversion === '1' && params.frequency_unit === 'year' ) { document.getElementById('ty-recurringConversion').style.display = 'none'; document.getElementById('ty-recurringConversionAnnual').style.display = 'block'; } // Recurring Upgrade if ( params.recurUpgrade === '1' ) { var recurUpgradeAmt = params.recurAmount; var recurUpgradeDate = params.recurDate; $('.recurUpgrade-yes').show(); if ( recurUpgradeAmt && recurUpgradeDate ) { $('.recurUpgradeAmt').text(recurUpgradeAmt); if ( params.country === 'US' ) { $('.recurUpgradeAmt').prepend("$"); } var upgradeDate = new Date(recurUpgradeDate); var formatOptions = { timeZone: 'UTC', weekday: 'long', year: 'numeric', month: 'long', day: 'numeric' }; $('.recurUpgradeDate').text( upgradeDate.toLocaleDateString('en-US', formatOptions) ); $('.recurUpgrade-receipt').show(); } else { $('.recurUpgrade-receipt').hide(); } } else if ( params.recurUpgrade === '0' ) { $('.recurUpgrade-no').show(); } else { $('.ty-vision, .ty-text').show(); } // Extend survey links $('.ty-survey-link, a[href^="https://www.surveymonkey.com"]').attr('href', function( i, val ) { return extendWithSomeParams( val, params, [ 'country', 'payment_method', 'recurring', 'recurringConversion', 'amount', 'currency', 'order_id', 'wmf_medium', 'wmf_campaign', 'wmf_source' ] ); }); // Return to Wikipedia link var returnToUrl = mw.cookie.get( 'fundraising_returnTo', '' ); if ( returnToUrl ) { $( '.ty-return a' ).attr( 'href', returnToUrl ); $( '.ty-return' ).show(); mw.cookie.set( 'fundraising_returnTo', null, { prefix: '', domain: '.wikipedia.org' } ); } // TODO: refactor this to be by feature instead of country? if ( params.featureEndowment ) { // To force endowment feature $( '.primary-ctas .endowment, \ .other-ctas, \ .other-ctas .store, \ .other-ctas .survey, \ .other-ctas .edit-6c' ).show(); } else if ( country === 'US' ) { $( '.primary-ctas .endowment, \ .other-ctas, \ .other-ctas .store, \ .other-ctas .survey, \ .other-ctas .edit-6c' ).show(); } else if ( country === 'CA' || country === 'GB' ) { $( '.primary-ctas .survey, \ .other-ctas, \ .other-ctas .store, \ .other-ctas .will-notUS, \ .other-ctas .edit-6c' ).show(); } else if ( country === 'IE' || country === 'AU' || country === 'NZ' ) { $( '.primary-ctas .survey, \ .other-ctas, \ .other-ctas .store, \ .other-ctas .edit-6c' ).show(); } else if ( country === 'IT' || country === 'PT' || country === 'BR' || country === 'JP' || country === 'FR' ) { $( '.primary-ctas .survey, \ .other-ctas, \ .other-ctas .store' ).show(); } else if ( country === 'ES' || country === 'CL' || country === 'CO' || country === 'MX' || country === 'PE' || country === 'UY' ) { $( '.primary-ctas .survey, \ .other-ctas, \ .other-ctas .store' ).show(); } else if ( country === 'BE' || country === 'CZ' || country === 'NO' || country === 'AT' || country === 'DK' || country === 'PL' || country === 'HU' ) { $( '.primary-ctas .survey, \ .other-ctas' ).show(); } else { $( '.primary-ctas .survey' ).show(); } if ( country === 'SE' ) { $('.chapter-SE').show(); } if ( country === 'CZ' ) { $('.chapter-CZ').show(); $('.tax-disclaimer-cs').show(); } if ( country === 'IT' ) { $('.chapter-IT').show(); } if ( country === 'AU' ) { $('.chapter-AU').show(); } if ( country === 'FR' ) { $('.chapter-FR').show(); $('.tax-disclaimer-frfr').show(); } if ( country === 'GB' ) { $('.chapter-GB').show(); } if ( country === 'CA' ) { $('.chapter-CA').show(); $('.tax-disclaimer-frca').show(); } if ( country === 'NO' ) { $('.chapter-NO').show(); } if ( country === 'BE' ) { $('.chapter-BE').show(); } if ( country === 'NL' ) { $('.chapter-NL').show(); } if ( country === 'NZ' ) { $('.chapter-NZ').show(); } if ( country === 'AT' ) { $('.chapter-AT').show(); } if ( country === 'CO' ) { $('.chapter-CO').show(); } if ( country === 'MX' ) { $('.chapter-MX').show(); } if ( country === 'BR' ) { $('.chapter-BR').show(); } if ( country === 'UY' ) { $('.chapter-UY').show(); } if ( country === 'PL' ) { $('.chapter-PL').show(); } if ( country === 'PT') { $('.tax-disclaimer-ptpt').show(); } if ( country === 'JP') { $('.tax-disclaimer-jajp').show(); } if ( country === 'HU' ) { $('.chapter-HU').show(); } /* Wikiminute blocks */ if ( country === 'CL' || country === 'CO' || country === 'MX' || country === 'PE' || country === 'UY' ) { $('.wikiminute-LATAM').show(); } if ( country === 'ES' ) { $('.wikiminute-ES').show(); } if ( country === 'FR' ) { $('.wikiminute-FR').show(); } if ( country === 'AT' ) { $('.wikiminute-DE').show(); } if ( country === 'IT' ) { $('.wikiminute-IT').show(); } if ( country === 'BR' ) { $('.wikiminute-ptBR').show(); } if ( country === 'NL' ) { $('.wikiminute-NL').show(); } if ( country === 'DK' ) { $('.wikiminute-DK').show(); } if ( country === 'SE' ) { $('.wikiminute-SV').show(); } if ( country === 'NO' ) { $('.wikiminute-NB').show(); } if ( country === 'JP' ) { $('.wikiminute-JA').show(); } /* Tax deductability disclaimer */ if ( country != 'US' && country != 'NL') { $('.tax-disclaimer-en').show(); } if ( country === 'ES') { $('.tax-disclaimer-en').show(); $('.tax-disclaimer-es').show(); } /* -- "Try editing" feature -- */ var editingUrls = { 'IN': { 'en': 'https://en.wikipedia.org/w/index.php?title=Special:CreateAccount&geEnabled=1&campaign=typage-in-en-2022' }, 'ZA': { 'en': 'https://en.wikipedia.org/w/index.php?title=Special:CreateAccount&geEnabled=1&campaign=typage-za-en-2022' }, // Latin America 'BR': { 'en': 'https://en.wikipedia.org/w/index.php?title=Special:CreateAccount&geEnabled=1&campaign=typage-latam-en-2022', 'pt-br': 'https://pt.wikipedia.org/w/index.php?title=Special:CreateAccount&geEnabled=1&campaign=typage-latam-pt-2022&uselang=pt-br' }, 'AR': { 'en': 'https://en.wikipedia.org/w/index.php?title=Special:CreateAccount&geEnabled=1&campaign=typage-latam-en-2022', 'es-419': 'https://es.wikipedia.org/w/index.php?title=Special:CreateAccount&geEnabled=1&campaign=typage-latam-es-2022' }, 'CL': { 'en': 'https://en.wikipedia.org/w/index.php?title=Special:CreateAccount&geEnabled=1&campaign=typage-latam-en-2022', 'es-419': 'https://es.wikipedia.org/w/index.php?title=Special:CreateAccount&geEnabled=1&campaign=typage-latam-es-2022' }, 'CO': { 'en': 'https://en.wikipedia.org/w/index.php?title=Special:CreateAccount&geEnabled=1&campaign=typage-latam-en-2022', 'es-419': 'https://es.wikipedia.org/w/index.php?title=Special:CreateAccount&geEnabled=1&campaign=typage-latam-es-2022' }, 'MX': { 'en': 'https://en.wikipedia.org/w/index.php?title=Special:CreateAccount&geEnabled=1&campaign=typage-latam-en-2022', 'es-419': 'https://es.wikipedia.org/w/index.php?title=Special:CreateAccount&geEnabled=1&campaign=typage-latam-es-2022' }, 'PE': { 'en': 'https://en.wikipedia.org/w/index.php?title=Special:CreateAccount&geEnabled=1&campaign=typage-latam-en-2022', 'es-419': 'https://es.wikipedia.org/w/index.php?title=Special:CreateAccount&geEnabled=1&campaign=typage-latam-es-2022' }, 'UY': { 'en': 'https://en.wikipedia.org/w/index.php?title=Special:CreateAccount&geEnabled=1&campaign=typage-latam-en-2022', 'es-419': 'https://es.wikipedia.org/w/index.php?title=Special:CreateAccount&geEnabled=1&campaign=typage-latam-es-2022' }, // Northern and Western Europe 'SE': { 'sv': 'https://sv.wikipedia.org/w/index.php?title=Special:CreateAccount&campaign=typage-nwe-sv-2023', 'en': 'https://en.wikipedia.org/w/index.php?title=Special:CreateAccount&campaign=typage-nwe-sv-2023' }, 'IT': { 'it': 'https://it.wikipedia.org/w/index.php?title=Special:CreateAccount&campaign=typage-nwe-it-2023', 'en': 'https://en.wikipedia.org/w/index.php?title=Special:CreateAccount&campaign=typage-nwe-it-2023' }, 'FR': { 'fr': 'https://fr.wikipedia.org/w/index.php?title=Special:CreateAccount&campaign=typage-nwe-fr-2023', 'en': 'https://en.wikipedia.org/w/index.php?title=Special:CreateAccount&campaign=typage-nwe-fr-2023' }, 'NL': { 'nl': 'https://nl.wikipedia.org/w/index.php?title=Special:CreateAccount&campaign=typage-nwe-nl-2023', 'en': 'https://en.wikipedia.org/w/index.php?title=Special:CreateAccount&campaign=typage-nwe-nl-2023' }, // Central Europe 'PL': { 'pl': 'https://pl.wikipedia.org/w/index.php?title=Special:CreateAccount&campaign=typage-ce-pl-2026', 'en': 'https://en.wikipedia.org/w/index.php?title=Special:CreateAccount&campaign=typage-ce-pl-2026' }, // East, Southeast Asia, and Pacific 'JP': { 'ja': 'https://ja.wikipedia.org/w/index.php?title=Special:CreateAccount&campaign=typage-eseap-ja-2023', 'en': 'https://en.wikipedia.org/w/index.php?title=Special:CreateAccount&campaign=typage-eseap-ja-2023' }, }; // Separate list so we can have others in prep for proofing var editingCTACountries = [ 'IN', 'ZA', 'BR', 'AR', 'CL', 'CO', 'MX', 'PE', 'UY', 'SE', 'IT', 'FR', 'NL', 'JP', 'PL' ]; if ( editingCTACountries.indexOf(country) !== -1 || params.testEditingCTA ) { if ( editingUrls[country] ) { if ( editingUrls[country][pageLanguage] ) { $( '.try-editing a' ).attr( 'href', editingUrls[country][pageLanguage] ); $( '.primary-ctas .survey' ).hide(); $( '.primary-ctas .try-editing, .other-ctas, .other-ctas .survey' ).show(); } } } // Only show survey 25% of time on English page //if ( pageLanguage === 'en' ) { // if ( Math.random() > 0.25 ) { // $('.survey').hide(); // } //} if ( pageLanguage === 'en' ) { var surveyNumber = Math.random(); if ( surveyNumber > 0.5 ) { $('.survey').hide(); } else if ( surveyNumber > 0.25 && surveyNumber <= 0.5 ) { $('.survey-1').hide(); } else if ( surveyNumber > 0 && surveyNumber <= 0.25 ) { $('.survey-2').hide(); } } // Don't show editing CTAs on apps: https://phabricator.wikimedia.org/T353023 if ( params.utm_medium === 'WikipediaApp' || params.wmf_medium === 'WikipediaApp' ) { $('.other-ctas .edit-6c, .primary-ctas .try-editing').hide(); } // Finally, if there are no secondary CTAs shown then hide the section header if ( $('.other-ctas .focus-block:visible').length === 0 ) { $('.other-ctas h2').hide(); } // One Click Survey page show/hide CTAs if ($('.ty-page').hasClass('one-click-survey')) { if ( params.variant === 'donate' ) { // To show donate CTA $( '.other-ctas .donate, \ .other-ctas .store, \ .other-ctas .will-notUS' ).show(); } else { // Show edit CTA $( '.other-ctas .edit-6c, \ .other-ctas .store, \ .other-ctas .will-notUS' ).show(); } } // MGFE event invite show/hide if ( ( params.wmf_campaign === 'MGYEA1R25' || params.wmf_campaign === 'MGYEA2R25' ) && params.wmf_medium === 'MGFE' ) { $('.wp25-block').show(); } if ( ( params.wmf_campaign === 'ENDYEA1R25' || params.wmf_campaign === 'ENDYEA2R25' ) && params.wmf_medium === 'endowment' ) { $('.wp25-block').show(); } //WP25 specific if ( country === 'US' ) { $('.wp25 .tax-disclaimer').hide(); } // Show social media share & social media footer only in English if ( pageLanguage === 'en' ) { $( '.social-share' ).show(); $( '.social-footer' ).show(); } /* -- Legacy giving form --- */ var lg = { post: function( $form ) { // Create iframe for the form and use it as the form's target var frameName = 'lgFrame'; if ( $("iframe[name=" + frameName + "]").length === 0 ) { var $iframe = $('<iframe style="display: none;" name="' + frameName + '"></iframe>'); $form.attr('target', $iframe.attr('name')); $form.after($iframe); } $form[0].submit(); }, getCurrentDate: function() { /* Get current date in correct format for Silverpop */ var today = new Date(); var dd = today.getDate(); var mm = today.getMonth()+1; // January is 0! var yyyy = today.getFullYear(); if( dd < 10 ) { dd = '0' + dd; } if( mm < 10 ) { mm = '0' + mm; } return mm+'/'+dd+'/'+yyyy; }, init: function() { var legacyForm = document.getElementById( 'lg-form' ), legacyDialog = document.getElementById( 'frb-dialog-legacy' ); if ( !legacyForm ) { return false; } // pre-fill country, only shown in US for now legacyForm.country.value = 'United States'; legacyForm.lg_submitDate.value = lg.getCurrentDate(); $('.frb-dialog-link').on( 'click', function(e) { legacyDialog.showModal(); legacyForm.firstname.focus(); }); $('#frb-dialog-legacy .frb-dialog-close').on( 'click', function(e) { legacyDialog.close(); }); // form submit $('#lg-form .lg-submit').on( 'click', function() { var pdfUrl = "https://upload.wikimedia.org/wikipedia/donate/9/97/Wikipedia_Planned_Giving_Guide.pdf"; if ( legacyForm.checkValidity() ) { lg.post( $('#lg-form') ); legacyDialog.close(); mw.notify( 'Thank you! Our team will be in touch.' ); window.open(pdfUrl, '_blank'); } else { legacyForm.reportValidity(); } return false; }); } }; lg.init(); /* -- donor badge dialog --- */ var donorBadge = { init: function() { var donorBadgeDialog = document.getElementById( 'frb-dialog-donor-badge' ); $('.getDonorBadge').on( 'click', function(e) { donorBadge.setCookie(); donorBadgeDialog.showModal(); }); $('#frb-dialog-donor-badge .frb-dialog-close').on( 'click', function(e) { donorBadgeDialog.close(); e.target.blur(); }); }, setCookie: function() { const DONOR_BADGE_COOKIE_NAME = 'fundraising_donor_badge'; const DONOR_BADGE_COOKIE_OPTIONS = { domain: 'wikipedia.org', path: '/', expires: 90 * 24 * 60 * 60 // 90 days }; mw.loader.using( 'mediawiki.cookie' ).then( function () { $.cookie( DONOR_BADGE_COOKIE_NAME, '1', DONOR_BADGE_COOKIE_OPTIONS ); }); } }; donorBadge.init(); // hack to set page language based on template const tyPage = document.querySelector( '.ty-page' ); if ( tyPage ) { document.documentElement.lang = tyPage.lang || 'en'; } }); if ( navigator.share ) { $('#ty-web-share').click(function(e) { var url = 'https://donate.wikimedia.org/?wmf_medium=SocialMedia&wmf_campaign=ThankYouPage&wmf_source=WebShare'; if ( $(this).data('share-language') ) { url += '&uselang=' + $(this).data('share-language'); } navigator.share({ text: $(this).data('share-text'), url: url }); e.preventDefault(); }); $('#ty-web-share').show(); } /* Show all elements for testing and checking translations */ function tyDebug() { $('.ty-page *:not(dialog)').show(); } 7x9q2henifhpof1ywzpnak08mmagee0 Template:Thank You 2021 10 64 1405 1403 2026-04-02T15:19:04Z EHughes (WMF) 9 adding Linkedin icon css 1405 wikitext text/x-wiki {{Add viewport tag.js}}<!-- Critical javascript to add the viewport tag. Other js is in MediaWiki:ThankYouPage.js --> {{DISPLAYTITLE:{{{title}}}}} <html> <style> /* 2024-03-27 - Stopgaps to hide most obvious Vector 2022 breakage */ .skin-vector .vector-header, .skin-vector .vector-sitenotice-container, .skin-vector .vector-column-start, .skin-vector .vector-page-titlebar, .skin-vector .vector-page-toolbar { display: none; } /* --- wiki resets --- */ html, body { margin: 0; padding: 0; background: #fff; } #jump-to-nav { display: none; } #firstHeading, #contentSub, #siteSub { display: none } /* Hiding the Interface on Desktop and Mobile, identical to Template: HideInterface */ /* Desktop */ #mw-navigation, #mw-page-base, #mw-head-base, h1#firstHeading, footer.mw-footer, #contentSub, #contentSub2, .patrollink, #catlinks { display: none; } /* Mobile */ body.mw-mobile-mode .header, body.mw-mobile-mode #mw-mf-last-modified, body.mw-mobile-mode .pre-content, body.mw-mobile-mode #footer { display: none; } body div#content { height: 100%; margin: 0; padding: 0; border: none; } .mw-body-content p { margin: 0; } /* Hide jump to navigation and search from screenreaders */ .mw-jump-link { display: none !important; } /* --- end wiki resets --- */ /* Hack to hide all the broken stuff beyond the header on apps (page content service) */ #pcs .ty-page { font-size: 0; } #pcs .ty-page * { display: none; } #pcs .ty-page .header-home, #pcs .ty-page .header-home * { display: inherit; } html, body { text-align: center; } html { -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } * { box-sizing: border-box; } /* stylelint-disable selector-list-comma-newline-after */ address, article, aside, blockquote, canvas, dd, div, dl, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, hr, li, main, nav, noscript, ol, output, p, .p, pre, section, table, tfoot, ul, video, .mw-body-content h1, .mw-body-content h2, .mw-body-content h3, .mw-body-content ul { margin: 0; padding: 0; border: 0; } article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary { display: block; } /* stylelint-enable */ a { text-decoration: none; color: inherit; } a:visited { color: inherit; } a:hover { text-decoration: none; } a:focus { text-decoration: none; outline: 1px dotted currentColor; } body { margin: 0; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Lato', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif; font-size: 100%; text-align: left; direction: ltr; } .mar-bottom { margin-bottom: 16px; } h1, h2 { font-size: inherit; font-weight: 700; } h1, .h1 { font-size: 1.875rem; } @media ( min-width: 768px ) and ( max-width: 1280px ) { h1, .h1 { font-size: 2.9375rem; } } @media ( min-width: 1281px ) { h1, .h1 { font-size: 4rem; } } h2, .h2 { margin-bottom: 2rem; font-size: 1.125rem; } @media ( min-width: 768px ) { h2, .h2 { margin-bottom: 2rem; } } @media ( min-width: 768px ) and ( max-width: 1280px ) { h2, .h2 { font-size: 1.25rem; } } @media ( min-width: 1281px ) { h2, .h2 { font-size: 1.375rem; } } h3, .h3 { margin-bottom: 2rem; font-size: 1.125rem; } @media ( min-width: 768px ) { h3, .h3 { margin-bottom: 2rem; } } @media ( min-width: 768px ) and ( max-width: 1280px ) { h3, .h3 { font-size: 1.25rem; } } @media ( min-width: 1281px ) { h3, .h3 { font-size: 1.375rem; } } p, .p { font-size: 0.95rem; line-height: 1.466; } strong { font-weight: 700; } .w-100p { width: 100%; max-width: 100%; } .flex.flex-medium { display: flex; flex-direction: column; } @media ( min-width: 768px ) { .flex.flex-medium { flex-direction: row; flex-wrap: nowrap; } } .flex.flex-wrap { flex-wrap: wrap; } .flex.flex-justify-center { justify-content: center; } .flex.flex-align-center { align-items: center; } .page-intro-text a, .page-intro-text a:visited, .page-intro-text a.external, .page-intro-text a.external:visited { color: #3a25ff; } .page-intro-text a:hover { text-decoration: underline; } /* Don't break "Wikimedia Foundation" link across lines */ .page-intro-text a { white-space: nowrap; } .page-intro-text p { margin-bottom: 1rem; } .header-home a { transition: 0.3s all; } .header-home .header-content { position: relative; z-index: 1; } .card { position: relative; } @media ( min-width: 768px ) { .img-left-content-right .card { display: flex; justify-content: flex-end; } } /* buttons */ .btn { display: inline-block; font-weight: 700; border-radius: 5px; cursor: pointer; padding: 1rem 1.5rem; padding: 0.6rem 1rem; transition: 0.3s all; border: 0; outline: 0; } .btn:hover { box-shadow: 0 10px 20px 0 rgba( 0, 0, 0, 0.21 ); } @media ( min-width: 1200px ) { .btn.btn-blue, .btn.btn-pink { padding: 11px 1.5rem; } } .btn.btn-blue, .btn.btn-blue:hover { background-color: #3a25ff; color: #fff; } .btn.btn-blue:focus { outline: 1px dotted #3a25ff; } .btn.btn-pink, .btn.btn-pink:hover { background-color: #d40356; color: #fff; } .btn.btn-pink:focus { outline: 1px dotted #d40356; } .btn.btn-lt-blue { background-color: #eeeaff; color: #3a25ff; } .btn.btn-lt-blue:hover { background-color: #3a25ff; color: #fff; } .btn.btn-lt-blue:focus { outline: 1px dotted #3a25ff; } .btn.btn-lt-pink { background-color: #fde8f0; color: #d40356; } .btn.btn-lt-pink:hover { background-color: #d40356; color: #fff; } .btn.btn-lt-pink:focus { outline: 1px dotted #d40356; } /* header */ .header-home { position: relative; } .top-nav { z-index: 2000; width: 100%; } .site-main-nav { padding: 2vh 0; text-align: center; } .logo-container { width: 180px; margin: auto; } .logo-container a { display: block; } .logo-container a:hover { opacity: 0.8; } .logo-container svg { width: 100%; max-width: 17.4375rem; margin: auto; } .pcs-theme-black .logo-container svg path, .pcs-theme-dark .logo-container svg path { fill: #fff !important; } .btn-label-a11y { font-size: 0; height: 1px; overflow: hidden; display: block; } /* hero */ .header-img { width: 100%; position: relative; left: 50%; right: 50%; margin-left: -50%; margin-right: -50%; padding: 0; height: auto; margin-bottom: 1rem; /* overflow-x: hidden; */ } @media ( min-width: 768px ) { .header-img { height: 175px; } } .header-bg-img { position: relative; height: 25vh; width: 100%; background-image: url( https://upload.wikimedia.org/wikipedia/donate/9/9a/Thank_You_2019_Header.svg ); background-size: cover; background-position: -20vh center; background-repeat: repeat-x; } @media ( min-width: 768px ) { .header-bg-img { position: absolute; height: 100%; width: 100%; z-index: -1; background-position: 0 0; } } .mw-1120 { max-width: 70rem; height: 100%; padding: 0; margin: 0 auto; position: relative; } .vision-container { position: relative; width: 100%; text-align: center; } .vision { padding: 0.4rem 1rem; background: #fefd34 !important; color: #000 !important; font-size: 1.1rem; font-weight: bold; line-height: 1.2; } @media ( min-width: 360px ) { .vision { font-size: 1.4rem; } } @media ( min-width: 768px ) { .vision-container { position: absolute; bottom: -2rem; padding: 0 2rem; } .vision { display: inline-block; } } @media ( min-width: 1024px ) { .vision { font-size: 1.8rem; } } /* thank you message */ .w-68p { width: 100%; text-align: center; } @media ( min-width: 1024px ) { .w-68p { width: 68%; margin: auto; } } .page-intro { margin-top: 1rem; margin-left: 0; padding: 0 1rem; } @media ( min-width: 768px ) { .page-intro { margin-top: 4rem; margin-bottom: 2rem; } } .page-intro p { font-size: 1rem; } @media ( min-width: 768px ) { .page-intro p { font-size: 1.1rem; } } .page-intro p.ty-cookie-explain, .page-intro p.tax-disclaimer-en, .page-intro p.tax-disclaimer-es, .page-intro p.tax-disclaimer-frfr, .page-intro p.tax-disclaimer-cs, .page-intro p.tax-disclaimer-frca, .page-intro p.tax-disclaimer-ar, .page-intro p.tax-disclaimer-ptpt, { font-size: 0.85rem; line-height: 1.3; } /* collapse empty parts */ .page-intro p br { display: none; } /* share links */ .social-share { margin-top: auto; margin-bottom: 1rem; width: 100%; align-self: flex-end; } @media ( min-width: 768px ) { .mw-620 { max-width: 38.75rem; margin-left: auto; margin-right: auto; } .mw-640 { max-width: 40rem; margin-left: auto; margin-right: auto; } .social-share { display: flex; align-items: center; } } .social-share a { color: #3a25ff; } .social-share a:hover { color: #3a25ff; } .share-cta { width: 100%; text-align: center; margin-bottom: 1rem; padding: 0 1.5rem; } @media ( min-width: 768px ) { .share-cta { width: 40%; text-align: left; display: inline-block; margin: 0 0 0 auto; } } .share-cta .h2 { font-size: 1.1rem; } .social-list { width: 100%; text-align: center; } @media ( min-width: 768px ) { .social-list { width: 49%; display: inline-block; margin: 0.25rem auto 0 0; } } .social-list a { display: inline-flex; align-items: center; transition: 0.3s all; margin: 4px; font-size: 1rem; font-weight: 700; position: relative; padding-left: 50px; } .social-list a::before { content: ''; background-size: 48px 24px; background-repeat: no-repeat; background-position: left center; display: inline-block; width: 24px; height: 24px; position: absolute; top: 50%; left: 17px; transform: translateY(-50%); } .social-list a:hover::before { background-position: right center; } .social-list a.share-facebook::before { background-image: url('https://upload.wikimedia.org/wikipedia/donate/2/20/Btn-sprite-facebook.png'); } .social-list a.share-twitter::before { background-image: url('https://upload.wikimedia.org/wikipedia/donate/6/6a/Btn-sprite-x.png'); } .social-list a.share-bluesky::before { background-image: url('https://upload.wikimedia.org/wikipedia/donate/f/f7/Btn-sprite-bluesky.png'); } .social-list a.share-linkedin::before { background-image: url('https://upload.wikimedia.org/wikipedia/donate/6/68/Btn-sprite-linkedin.png'); } .social-list a.share-email::before { background-image: url('https://upload.wikimedia.org/wikipedia/donate/e/ea/Btn-sprite-email.png'); } /* featured action */ .cta-primary { display: none; background: #fdf3f8; padding: 2rem 1rem; } .cta-primary.endowment { padding-bottom: 1rem; } .cta-primary .card { color: #000; text-align: center; } @media ( min-width: 768px ) { .cta-primary { padding: 2rem 2rem; } .cta-primary .card { padding: 0; text-align: inherit; } } .cta-primary .card-content.w-68p { text-align: inherit; } @media ( min-width: 768px ) { .cta-primary .card-content { padding: 2rem 0; margin-top: 0; } } .cta-primary .h2, .cta-primary .h3 { color: #d40356; line-height: 1.2; } .cta .card-content { position: relative; z-index: 2; } @media ( min-width: 768px ) { .cta .card-content { padding: 0.75rem 0; } } .cta .card-content .h2 { font-size: 1.5rem; margin-bottom: 1rem; } @media ( min-width: 1024px ) { .cta .card-content .h2 { font-size: 2rem; } } .cta .card-content p, .cta .card-content .p { margin-bottom: 1.5rem; } @media ( min-width: 768px ) { .cta .card-content p, .cta .card-content .p { margin-bottom: 1.25rem; } } .cta-description { font-size: 1rem; } @media ( min-width: 1024px ) { .cta-description { font-size: 1.1rem; } } .small { font-size: 0.8rem; } .cta-primary a { color: #d40356; } .cta-primary p a:hover { color: #3a25ff; } .w-25p, .w-32p, .w-75p { width: 100%; } @media ( min-width: 768px ) { .w-25p { width: 25%; } .w-32p { width: 32%; } .w-75p { width: 75%; } } .sm-img-container { vertical-align: top; } .sm-img { position: relative; overflow: hidden; height: auto; width: 35%; max-width: 90px; max-height: 90px; } @media ( min-width: 768px ) { .sm-img { width: 70%; max-width: 120px; max-height: 120px; } } .endowment-text { margin-right: 1rem; text-align: center; } @media ( min-width: 768px ) { .endowment-text { text-align: left; } } /* other ctas */ .other-ctas { display: none; padding: 2rem 1rem; background: #f8f9fa; } .other-ctas .h2 { text-align: center; font-size: 1.5rem; margin-bottom: 2rem; } @media ( min-width: 768px ) { .other-ctas .h2 { font-size: 2rem; } } .rounded { border-radius: 5px; } .shadow { border: 1px solid #e5e5e5; } .other-ctas .focus-block { display: none; } .focus-block { background-color: #fff; overflow: hidden; display: block; margin-bottom: 1rem; } .focus-block .card, .focus-block .card-content { height: 100%; display: block; } .focus-block .card-content { padding: 1.5rem; } @media ( max-width: 768px ) { .cta-primary.endowment .btn { display: block; width: calc(100% - 3rem); } } .focus-block .h3 { margin-bottom: 0.3125rem; font-size: 1.5rem; line-height: 1.2; } .focus-block .h3 a, .focus-block .h3 a:visited { color: #000000; } .focus-block .mar-bottom { padding-bottom: 2rem; display: block; } .focus-block .stick-to-bottom { position: absolute; bottom: 22px; } @media ( min-width: 768px ) { .other-ctas .flex.flex-medium { flex-wrap: wrap; } .focus-block { margin-left: 0.5rem; margin-right: 0.5rem; flex: 0 0 20rem; } .focus-block .h3 { margin-bottom: 0.3125rem; } .focus-block .card-content .btn { max-width: calc( 100% - 3rem ); } } .focus-block p { margin-bottom: 1rem; } .focus-block p a { text-decoration: underline; } .focus-block a:hover { color: #3a25ff; } /* return to Wikipedia */ .ty-return { background: #f8f9fa; padding-bottom: 2rem; } /* footer */ footer { padding: 3rem 1.5rem; background: #54595d; color: #fff !important; } footer a, footer a:visited { color: inherit !important; text-decoration: underline; transition: 0.3s all; } footer a:hover { text-decoration: underline; } @media ( min-width: 768px ) { footer { padding: 3rem 0 4rem; } } footer .footer-legal { text-align: center; } footer .footer-legal p, footer .footer-legal .p { padding-bottom: 0.75rem; font-size: 0.75rem; line-height: 1.3; } @media ( min-width: 768px ) and ( max-width: 1280px ) { footer .footer-legal p, footer .footer-legal .p { font-size: 0.85rem; } } @media ( min-width: 1281px ) { footer .footer-legal p, footer .footer-legal .p { font-size: 0.95rem; } } .editor-tools { text-align: center; } /* WP25 Birthday CTA Block */ .wp25-block { background-color: #FBDFC5; padding: 2rem; position: relative; } .wp25-block .wp25-icon { position: absolute; bottom: -155px; left: 0; width: 436px; } .wp25-block .wp25-icon svg { width: 100%; height: auto; z-index: 1; } .wp25-block .wp25-icon svg path { fill: #FBDFC5; } .wp25-block .wp25-logo { width: 200px; height: auto; margin: 0 auto 1em; } .wp25-block .wp25-logo svg { width: 100%; height: auto; } .wp25-block .focus-block { position: relative; } .wp25-block .card { position: relative; z-index: 2; } .wp25-block .mgfe-event-invite { text-align: center; position: relative; background-color: #fff; overflow: hidden; display: block; margin-bottom: 1rem; padding: 2rem; } .wp25-block .mgfe-event-invite h3 { font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Lato', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif; margin-top: 0; } .wp25-block .mgfe-event-invite h4 { font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Lato', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif; margin-top: 2em; margin-bottom: 0; } .wp25-block .mgfe-event-invite p { margin: 0 0 1em; } .wp25-block .mgfe-event-invite a { text-decoration: none; } /* -- Endowment Dialog -- */ .frb-dialog { display: none; /* needed for unsupported browsers */ background: #fff; border: 1px solid #aaa; border-radius: 2px; box-shadow: 0 2px 2px #0003; width: 90%; max-width: 600px; padding: 40px 20px; } .frb-dialog[open] { display: block; } .frb-dialog::backdrop { background: #ffffffa6; } .frb-dialog-close { border: none; background: none; margin: 0; padding: 0; cursor: pointer; position: absolute; top: 20px; left: 20px; width: 24px; height: 24px; opacity: 0.5; } .frb-dialog-close:hover { opacity: 1; } .frb-dialog-title { font-size: 17px; color: #000; font-weight: bold; border: 0; text-align: center; margin-bottom: 20px; } .frb-dialog-text { font-size: 15px; line-height: 1.44; margin-bottom: 20px; max-width: 530px; } .frb-dialog-text form { width: 100%; max-width: 352px; margin: 0 auto; } .frb-dialog-text label.lg-form-legend { display: block; } .frb-dialog-text input { padding: 10px 15px; display: block; width: 100%; max-width: 350px; margin-bottom: 10px; } .frb-dialog-text input:focus, .frb-dialog-text input:hover { outline-color: #d40356; } .frb-dialog-text .btn.lg-submit { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Lato', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif; font-size: 14px; min-width: 150px; } @media (min-width: 720px) { .frb-dialog { padding: 40px; } } .donor-badge-cta button { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Lato', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif; font-size: 14px; } /* social media footer */ .social-footer { display: flex; position: relative; padding: 0 25px 35px; margin: 0 auto 35px; } .social-footer-col { flex: 0 1 50%; padding: 0 25px 0 0; display: flex; position: relative; } .social-footer-logo { flex: 0 1 auto; margin: 0 25px 0 0; } .social-footer-links ul { list-style: none outside none; position: relative; left: -10px; margin-top: 10px; } .social-footer-links li { display: inline-block; } .social-footer-links ul li svg { max-height: 24px; filter: invert(1); } .social-footer-links a { padding: 8px; display: flex; } .social-footer-col:first-child::after { content: ''; width: 1px; height: 100%; background: #fff; position: absolute; top: 0; right: 0; opacity: 0.25; } .social-footer-col:last-child { padding: 0 0 0 25px; } .social-footer::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; background: #fff; opacity: 0.25; height: 1px; } @media (max-width: 768px) { .social-footer { flex-direction: column; padding: 0 25px 10px; } .social-footer-col { padding: 0 0 25px 0; } .social-footer-col:first-child::after { content: none } .social-footer-col:last-child { padding: 0 0 25px 0; } .social-footer-logo { flex: 0 0 120px; margin: 0 15px 0 0; text-align: center; } } @media (max-width: 500px) { .social-footer { padding: 0 0 10px; } .social-footer-logo { flex: 0 0 80px; max-width: 80px; margin: 0 15px 0 0; text-align: center; } .social-footer-logo img { width: 80px!important; height: auto!important; } } </style> </html> <div class="ty-page plainlinks" lang="{{{language|en}}}"><!--feature-endowment feature-matching feature-survey--> <div class="header-home"> <div class="top-nav"> <div class="site-main-nav"> <div class="logo-container"> <html> <a href="https://wikimediafoundation.org/"> <span class="btn-label-a11y">Wikimedia Foundation</span> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 279 62"><path d="M83.46 25.83l4.378-14.102h5.738l4.34 14.102 4.893-14.102h5.959l-8.608 24.515h-4.082L90.67 19.18 85.3 36.243h-4.083L72.61 11.728h5.959L83.46 25.83zm28.287-14.102h5.518v24.515h-5.518V11.728zm11.587 0h5.517V21.81l9.306-10.083h6.805l-9.821 10.85c.846 1.17 2.428 3.362 4.708 6.54 2.281 3.179 3.973 5.554 5.113 7.125h-6.437l-7.246-9.682-2.464 2.74v6.942h-5.518V11.728h.037zm25.049 0h5.518v24.515h-5.518V11.728zm33.693 9.097l-6.657 13.408h-3.274l-6.621-13.408v15.418h-5.517V11.728h7.467l6.363 13.481 6.4-13.481h7.431v24.515h-5.518V20.825h-.074zm29.39-9.097v4.859h-12.285v5.078h11.035v4.677h-11.035v5.078h12.69v4.823H193.7V11.728h17.766zm24.13 3.215c2.354 2.155 3.531 5.115 3.531 8.914 0 3.8-1.14 6.832-3.458 9.061-2.28 2.229-5.811 3.325-10.52 3.325h-8.423V11.728h8.718c4.451 0 7.798 1.096 10.152 3.215zm-4.009 14.577c1.361-1.278 2.023-3.105 2.023-5.517 0-2.41-.662-4.274-2.023-5.553-1.361-1.315-3.421-1.936-6.217-1.936h-3.09V31.42h3.495c2.501 0 4.451-.62 5.812-1.9zm12.322-17.792h5.517v24.515h-5.517V11.728zm29.169 24.515l-2.281-5.298h-10.336l-2.28 5.298h-5.849l10.667-24.515h5.334L279 36.243h-5.922zm-7.467-17.208l-3.09 7.124h6.18l-3.09-7.124zM82.651 47.386v2.96h4.782v1.68h-4.781v4.42h-1.84v-10.74h7.21v1.68h-5.37zm25.822 7.526c-1.103 1.06-2.427 1.571-4.046 1.571-1.618 0-2.942-.511-4.046-1.57-1.103-1.06-1.655-2.376-1.655-3.947 0-1.57.552-2.886 1.655-3.945 1.104-1.06 2.428-1.571 4.046-1.571 1.619 0 2.943.511 4.046 1.57 1.104 1.06 1.656 2.375 1.656 3.946 0 1.571-.552 2.887-1.656 3.946zm-1.324-6.686c-.735-.767-1.655-1.132-2.722-1.132-1.066 0-1.986.365-2.722 1.132a3.825 3.825 0 00-1.103 2.74c0 1.096.368 2.01 1.103 2.74.736.731 1.656 1.133 2.722 1.133 1.067 0 1.987-.365 2.722-1.133a3.822 3.822 0 001.104-2.74c0-1.096-.368-2.009-1.104-2.74zm16.957 5.736c.478.585 1.177.877 2.023.877.846 0 1.508-.292 2.023-.877.515-.584.736-1.352.736-2.338v-5.955h1.839v6.028c0 1.535-.441 2.74-1.287 3.58-.846.84-1.95 1.243-3.274 1.243s-2.428-.402-3.274-1.242c-.846-.84-1.287-2.01-1.287-3.58v-6.03h1.839v5.956c-.073.986.184 1.754.662 2.338zm26.815-8.293h1.839V56.41h-1.986l-6.106-7.818v7.818h-1.839V45.67h1.839l6.29 8.001V45.67h-.037zm22.254 1.425c1.03.95 1.545 2.228 1.545 3.909 0 1.68-.515 2.996-1.508 3.946-.993.986-2.538 1.461-4.635 1.461h-3.568V45.67h3.715c1.913 0 3.421.475 4.451 1.425zm-.258 3.945c0-2.447-1.434-3.69-4.23-3.69h-1.839v7.344h2.023c1.325 0 2.318-.292 3.017-.913.662-.622 1.029-1.535 1.029-2.74zm14.971 2.923l-1.067 2.448h-1.949l4.745-10.741h1.95l4.745 10.741h-1.95l-1.067-2.448h-5.407zm4.672-1.68l-1.95-4.421-1.949 4.42h3.899zm17.766-4.933v9.061h-1.839v-9.06h-3.274v-1.645h8.387v1.644h-3.274zm14.529-1.68h1.839V56.41h-1.839V45.67zm23.1 9.243c-1.103 1.06-2.428 1.571-4.046 1.571-1.619 0-2.943-.511-4.046-1.57-1.104-1.06-1.655-2.376-1.655-3.947 0-1.57.551-2.886 1.655-3.945 1.103-1.06 2.427-1.571 4.046-1.571 1.618 0 2.943.511 4.046 1.57 1.104 1.06 1.655 2.375 1.655 3.946 0 1.571-.551 2.887-1.655 3.946zm-1.324-6.686c-.736-.767-1.655-1.132-2.722-1.132s-1.986.365-2.722 1.132a3.822 3.822 0 00-1.104 2.74c0 1.096.368 2.01 1.104 2.74.736.731 1.655 1.133 2.722 1.133s1.986-.365 2.722-1.133a3.82 3.82 0 001.103-2.74c0-1.096-.367-2.009-1.103-2.74zm22.621-2.557h1.84V56.41h-1.987l-6.106-7.818v7.818h-1.839V45.67h1.839l6.29 8.001-.037-8.001zM33.84 49.943c9.307-1.315 16.442-9.243 16.442-18.815 0-5.846-2.648-11.034-6.804-14.541l-9.638 9.572v23.784zm-5.407 0V26.16l-9.637-9.609a18.896 18.896 0 00-6.805 14.541c0 9.61 7.136 17.537 16.442 18.852zm19.348-35.365c4.451 4.42 6.879 10.302 6.879 16.513 0 6.211-2.465 12.13-6.879 16.514-4.45 4.42-10.373 6.832-16.626 6.832a23.545 23.545 0 01-16.626-6.832c-4.414-4.384-6.915-10.266-6.915-16.514 0-6.247 2.465-12.13 6.879-16.514.367-.365.772-.73 1.177-1.096L10.3 8.147c-.405.366-.773.731-1.178 1.096-2.869 2.85-5.113 6.138-6.658 9.828A30.563 30.563 0 000 31.091c0 4.165.81 8.22 2.464 12.02 1.582 3.69 3.826 6.979 6.658 9.828 2.87 2.85 6.18 5.079 9.895 6.613A31.132 31.132 0 0031.119 62c4.193 0 8.276-.804 12.101-2.448a31.698 31.698 0 009.895-6.613c2.869-2.85 5.113-6.138 6.658-9.828a30.565 30.565 0 002.464-12.02c0-4.165-.81-8.22-2.464-12.02-1.582-3.69-3.826-6.978-6.658-9.828-.368-.365-.773-.73-1.177-1.096l-5.334 5.334c.405.33.773.695 1.177 1.097zM31.12 0c5.37 0 9.71 4.311 9.71 9.645s-4.34 9.646-9.71 9.646c-5.37 0-9.711-4.312-9.711-9.646 0-5.334 4.34-9.645 9.71-9.645z"></path></svg> </a> </html> </div> </div> </div> <div class="header-content"> <div class="header-img"> <div class="header-bg-img"></div> <div class="vision-container"> <div class="vision ty-vision" style="display: none;">{{{header-new}}}</div> {{#if:{{{recurUpgrade-header-yes|}}}|<div class="vision recurUpgrade-yes" style="display: none;">{{{recurUpgrade-header-yes}}}</div>}} {{#if:{{{recurUpgrade-header-no|}}}|<div class="vision recurUpgrade-no" style="display: none;">{{{recurUpgrade-header-no}}}</div>}} </div> </div> <div class="page-intro"> <div class="page-intro-text flex flex-medium flex-align-center"> <div class="w-68p"> <p class="ty-text" style="display: none;"> <strong> {{{receipt}}} </strong> <br> <span id="ty-recurringOrganic" style="display: none;"> {{#if:{{{monthly-organic|}}}|{{{monthly-organic}}}<br>}} </span> <span id="ty-recurringOrganicAnnual" style="display: none;"> {{#if:{{{annual-organic|}}}|{{{annual-organic}}}<br>}} </span> <span id="ty-recurringConversion" style="display: none;"> {{#if:{{{monthly-conversion|}}}|{{{monthly-conversion}}}<br>}} </span> <span id="ty-recurringConversionAnnual" style="display: none;"> {{#if:{{{annual-conversion}}}|{{{annual-conversion}}}<br>}} </span> </p> <p class="ty-text" style="display: none;"> {{{header-text1}}} {{{header-text2}}} </p> {{#if:{{{recurUpgrade-text-yes1|}}}|<p class="recurUpgrade-yes recurUpgrade-receipt" style="display: none;"><strong>{{{recurUpgrade-text-yes1}}}</strong></p>}} {{#if:{{{recurUpgrade-text-yes2|}}}|<p class="recurUpgrade-yes" style="display: none;">{{{recurUpgrade-text-yes2}}}</p>}} {{#if:{{{recurUpgrade-text-no1|}}}|<p class="recurUpgrade-no" style="display: none;"><strong>{{{recurUpgrade-text-no1}}}</strong></p>}} {{#if:{{{recurUpgrade-text-no2|}}}|<p class="recurUpgrade-no" style="display: none;">{{{recurUpgrade-text-no2}}}</p>}} {{#if:{{{tax-disclaimer-en|}}}|<p class="tax-disclaimer-en" style="display:none;">{{{tax-disclaimer-en}}}</p>}} {{#if:{{{tax-disclaimer-es|}}}|<p class="tax-disclaimer-es" style="display:none;">{{{tax-disclaimer-es}}}</p>}} {{#if:{{{tax-disclaimer-frfr|}}}|<p class="tax-disclaimer-frfr" style="display:none;">{{{tax-disclaimer-frfr}}}</p>}} {{#if:{{{tax-disclaimer-frca|}}}|<p class="tax-disclaimer-frca" style="display:none;">{{{tax-disclaimer-frca}}}</p>}} {{#if:{{{tax-disclaimer-ar|}}}|<p class="tax-disclaimer-ar" style="display:none;">{{{tax-disclaimer-ar}}}</p>}} {{#if:{{{tax-disclaimer-cs|}}}|<p class="tax-disclaimer-cs" style="display:none;">{{{tax-disclaimer-cs}}}</p>}} {{#if:{{{tax-disclaimer-ptpt|}}}|<p class="tax-disclaimer-ptpt" style="display:none;">{{{tax-disclaimer-ptpt}}}</p>}} {{#if:{{{tax-disclaimer-jajp|}}}|<p class="tax-disclaimer-jajp" style="display:none;">{{{tax-disclaimer-jajp}}}</p>}} {{#ifeq:{{{language|}}}|en|<p class="ty-cookie-explain">We value your support and try to prevent donors like you from receiving more fundraising messages. If you clear your browser's cookies, or visit on a different device, you may still see additional banners. Copying the link to this page and opening it on your other devices will suppress the banners.</p>}} {{#ifeq:{{{language|}}}|pt-br|<p class="ty-cookie-explain">Valorizamos seu apoio e tentamos evitar que doadores como você recebam mais mensagens sobre arrecadação de fundos. Se você limpar os cookies do seu navegador ou acessar o site em um dispositivo diferente, ainda poderá ver outros banners. Copiar o link desta página e abri-lo em seus outros dispositivos suprimirá os banners.</p>}} {{#ifeq:{{{language|}}}|es-419|<p class="ty-cookie-explain">Valoramos tu apoyo y tratamos de evitar que donantes como tú reciban más mensajes de recaudación de fondos. Si eliminas las cookies de tu navegador o accedes desde otro dispositivo, aún podrías ver anuncios adicionales. Copiar el enlace a esta página y abrirlo en tus otros dispositivos suprimirá los anuncios.</p>}} {{#ifeq:{{{language|}}}|it|<p class="ty-cookie-explain">Apprezziamo il tuo sostegno e cerchiamo di evitare che donatori come te ricevano ulteriori messaggi di raccolta fondi. Se cancelli i cookies dal browser o visiti da un altro dispositivo, potresti comunque vedere altri banner. Copiare il link di questa pagina e aprirlo su altri dispositivi impedirà la comparsa dei banner.</p>}} {{#ifeq:{{{language|}}}|ja|<p class="ty-cookie-explain">皆様の温かいご支援に感謝し、寄付者の皆様に募金のメッセージが過度に届かないよう配慮しております。ブラウザのCookieを削除したり、別のデバイスからアクセスされた場合は、再びバナーが表示されることがあります。その場合は、このページのリンクをコピーして他のデバイスで開くことで、バナーの表示を停止できます。</p>}} {{#ifeq:{{{language|}}}|ar|<p class="ty-cookie-explain">نقدر دعمكم ونسعى جاهدين لتجنب المتبرعين أمثالكم من تلقي المزيد من رسائل جمع التبرعات. إذا قمتم بمسح ملفات تعريف الارتباط في متصفحكم، أو زيارة الموقع من جهاز مختلف، فقد لا تزالون ترون إعلاناتٍ إضافية. سيؤدي نسخ رابط هذه الصفحة وفتحها على أجهزتك الأخرى إلى إخفاء الإعلانات.</p>}} {{#ifeq:{{{language|}}}|sv|<p class="ty-cookie-explain">Vi värdesätter ditt stöd och försöker se till att givare som du inte får fler insamlingsmeddelanden. Om du rensar webbläsarens cookies eller besöker oss från en annan enhet, kan du ändå se sådana banners. Vill du slippa dem, så kopiera länken till den här sidan och öppna den på dina andra enheter.</p>}} {{#ifeq:{{{language|}}}|nl|<p class="ty-cookie-explain">We waarderen je steun en proberen te voorkomen dat donateurs zoals jij nog meer berichten over fondsenwerving ontvangen. Als je de cookies van je browser wist of de website op een ander apparaat gebruikt, kun je nog steeds banners te zien krijgen. Als je deze link kopieert en op een ander apparaat opent, zie je geen banners meer.</p>}} {{#ifeq:{{{language|}}}|nb|<p class="ty-cookie-explain">Vi setter pris på støtten din, og prøver å forhindre at givere som deg skal få flere innsamlingsmeldinger. Hvis du rensker informasjonskapslene dine eller besøker oss med en annen enhet, kan det fortsatt hende du ser flere bannere. Hvis du kopierer lenken til denne siden og åpner den på de andre enhetene vil du ikke se flere bannere.</p>}} {{#ifeq:{{{language|}}}|es|<p class="ty-cookie-explain">Valoramos mucho tu apoyo e intentamos que las personas que ya donáis no recibáis más mensajes pidiendo apoyo. Si eliminas las cookies de tu navegador o entras en Wikipedia desde otro dispositivo, quizás sigas viendo mensajes de recaudación. Para que no aparezcan más, copia el enlace a esta página y ábrelo en el resto de dispositivos.</p>}} {{#ifeq:{{{language|}}}|fr|<p class="ty-cookie-explain">Votre soutien est important pour nous, c’est pourquoi nous nous efforçons de limiter les messages d’appels aux dons pour les donateurs et donatrices comme vous. Si vous effacez les témoins de connexion (cookies) ou consultez le site sur un autre appareil, il est possible que vous voyiez de nouvelles bannières. Copier le lien de cette page et l’ouvrir sur vos différents appareils empêchera l’affichage de ces bannières.</p>}} {{#ifeq:{{{language|}}}|cs|<p class="ty-cookie-explain">Vážíme si vaší podpory a snažíme se vám jako dárci neposílat další fundraisingová sdělení. Bannery se vám mohou stále zobrazovat, pokud vymažete cookies ve svém prohlížeči nebo navštívíte stránky z jiného zařízení. Pokud však zkopírujete odkaz na tuto stránku a otevřete jej na jiném zařízení, bannery by se již zobrazovat neměly.</p>}} {{#ifeq:{{{language|}}}|pt|<p class="ty-cookie-explain">Valorizamos o seu apoio e tentamos evitar que os doadores recebam mais mensagens de angariação de fundos. Se limpar os cookies do seu navegador ou visitar o site num dispositivo diferente, ainda poderá ver banners adicionais. Copiar a ligação para esta página e abri-la nos seus outros dispositivos irá suprimir os banners.</p>}} </div> </div> </div> </div> </div> <html> <main id="ty-content"> </html>{{#ifeq:{{{language|}}}|en|<html> <!-- start WP25 birthday block note: english only--!> <div class="wp25-block" style="display: none"> <div class="mw-1120 mgfe-event-invite rounded"> <span class="wp25-icon"> <svg width="436" height="305" viewBox="0 0 436 305" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M163.903 60.8027C164.165 57.4343 160.971 56.3309 162.742 52.7883C165.762 46.7194 180.049 47.7212 178.974 55.8372C178.814 56.9987 175.693 60.8027 178.001 60.8027H194.712V45.3982C194.712 41.9572 198.836 44.9917 200.273 45.1224C208.389 45.9209 209.449 31.9247 203.482 28.7742C199.242 26.5383 197.718 30.1535 196.44 29.9212C196.063 29.8486 194.712 28.4692 194.712 28.3531V12.2953H177.667C177.261 10.1901 178.873 8.68011 179.018 6.72007C179.715 -2.74619 161.087 -1.70085 161.929 6.66199C162.016 7.56215 165.152 12.2953 162.902 12.2953H146.191V29.0065C146.191 31.4601 151.171 28.0772 152.434 28.0918C158.895 28.2079 160.884 41.2313 154.96 44.3238C151.011 46.3855 149.907 43.4236 146.191 43.7576C146.176 49.4344 146.22 55.1258 146.191 60.8027C152.085 60.7446 157.994 60.8462 163.889 60.8027H163.903Z" fill="#CFCFCF"/> <path d="M5.575 125.613C6.76554 125.526 7.81112 125.816 8.71129 126.339H3.61517C4.23948 126.005 4.86357 125.671 5.575 125.613Z" fill="#CFCFCF"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M0.014533 304.572H17.7129V304.586H32.3916C32.3916 304.586 32.4348 304.572 32.4639 304.572H114.408C114.408 304.572 114.524 304.586 114.582 304.586H129.305C129.305 304.586 129.406 304.572 129.479 304.572H211.423C211.423 304.572 211.466 304.586 211.495 304.586H226.174L227.147 304.572H309.105C309.105 304.572 309.222 304.586 309.28 304.586H324.147L324.176 304.572H338.695L406.193 304.586H436V135.95H435.942V109.947C432.951 110.528 422.817 109.033 420.842 110.252C419.259 111.239 421.931 113.185 422.164 114.913C423.209 122.593 408.53 124.379 405.626 117.628C404.174 114.245 407.151 113.156 407.107 109.933H373.351C370.955 109.933 373.525 105.621 373.656 104.982C375.224 96.8658 360.792 94.7025 357.38 101.163C355.145 105.403 358.76 106.927 358.527 108.19C358.455 108.568 357.075 109.918 356.959 109.918H341.889C341.889 109.918 340.902 109.004 340.902 108.931V93.2071C340.902 91.0292 336.807 93.3813 335.936 93.5119C326.252 94.9929 326.179 75.6828 335.936 77.1783C336.807 77.309 340.902 79.6465 340.902 77.4832V60.772H324.844C321.113 60.772 325.062 65.5197 325.163 67.0441C325.628 73.8389 311.341 75.5812 308.467 69.28C306.841 65.7084 310.209 63.5596 310.02 62.5143C309.948 62.1368 308.568 60.7865 308.452 60.7865H292.394V77.4977C292.394 80.0821 287.124 76.5685 286.166 76.5685C277.788 76.5685 277.876 95.1671 286.761 94.2089C287.748 94.1072 292.394 90.6517 292.394 93.2216V108.945C292.394 108.945 291.48 109.933 291.407 109.933H276.336C272.634 109.933 276.511 105.766 276.671 104.299C277.585 95.8059 258.783 94.3395 259.582 104.358C259.713 106.071 262.543 109.933 259.291 109.933H243.887V126.644C243.887 128.981 247.72 125.787 248.867 125.657C258.115 124.669 257.578 143.224 249.52 142.687C248.46 142.615 243.902 139.406 243.902 141.714V157.438C243.902 157.438 242.987 158.426 242.914 158.426H226.203C225.797 160.531 227.408 162.041 227.553 164.001C228.265 173.583 209.811 172.001 210.639 164.088C210.711 163.435 213.993 158.426 211.452 158.426H195.714C195.714 158.426 194.726 157.511 194.726 157.438V142.368C194.726 142.252 196.077 140.872 196.454 140.8C197.311 140.64 198.719 142.513 200.345 142.687C208.955 143.631 210.174 124.611 200.272 125.599C198.835 125.744 194.712 128.764 194.712 125.323V109.918H178.654C176.287 109.918 178.959 105.214 179.046 104.358C180.019 94.6589 160.999 95.5591 161.943 104.285C162.103 105.751 165.979 109.918 162.277 109.918H147.206C147.206 109.918 146.219 109.004 146.219 108.931V92.2198C144.114 91.8132 142.604 93.4248 140.644 93.57C131.889 94.2089 131.889 76.4524 140.644 77.1057C142.604 77.2509 144.114 78.8625 146.219 78.4559C146.248 72.5613 146.19 66.6522 146.219 60.7575C143.62 60.7866 129.305 60.322 128.535 61.4399C128.506 64.8228 131.642 65.2874 129.987 69.1058C127.707 74.3907 116.847 74.5649 114.19 69.5124C111.954 65.2729 115.57 63.7484 115.337 62.4853C115.265 62.1078 113.885 60.7575 113.769 60.7575H80.986C78.6484 60.7575 81.8425 56.9246 81.9732 55.7776C82.9024 47.0518 63.8972 45.8902 64.8699 55.8501C65.0442 57.6069 66.6992 58.7684 66.2346 60.7575H49.1896V77.4687C49.1896 79.6029 44.747 77.1928 43.6146 77.0912C33.7563 76.2926 35.0774 95.08 43.5564 94.1798C45.4729 93.9765 46.4456 91.8858 48.5218 92.2198C49.6107 92.9747 49.1605 107.334 49.1896 109.904C51.8901 109.875 65.1167 110.339 66.2492 109.599C68.1656 108.336 65.1168 106.071 64.9136 104.285C63.9408 95.3123 82.9314 95.3123 81.9586 104.285C81.857 105.272 78.4016 109.918 80.9714 109.918H97.6826V126.949C99.7878 127.384 101.327 125.686 103.258 125.584C112.753 125.119 110.633 144.197 102.75 142.571C102.111 142.44 97.6826 139.072 97.6826 141.685V158.397H80.9714C78.5468 158.397 81.8134 154.273 81.9441 153.431C83.425 144.371 64.3908 143.529 64.8554 152.821C64.957 154.767 66.6557 156.291 66.2201 158.397H49.175V140.698C52.7176 140.771 53.5598 143.849 57.2766 141.918C63.2584 138.811 62.4744 124.756 54.068 125.569C52.3113 125.744 51.1496 127.399 49.1605 126.934C49.1169 121.257 49.2041 115.566 49.1605 109.889C43.2659 109.947 37.3568 109.846 31.4621 109.889C31.0121 111.864 32.6671 113.025 32.8268 114.797C33.7706 124.408 15.4189 123.377 15.9126 115.566C16.0287 113.679 18.2646 112.082 17.6983 109.904H0C0 115.348 0.0580752 120.836 0 126.281V304.514L0.014533 304.572ZM8.71129 126.339C7.81112 125.816 6.76554 125.526 5.575 125.613C4.86357 125.671 4.23948 126.005 3.61517 126.339H8.71129Z" fill="#CFCFCF"/> </svg> </span> <div class="card"> <div class="card-content"> <div class="wp25-logo"> <svg viewBox="0 0 1231 186" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M1210.93 47.7427C1207.02 47.7427 1203.26 49.3236 1200.02 52.3097C1199.21 53.0474 1198.22 53.4339 1197.17 53.4339C1196.11 53.4339 1195.02 53.0123 1194.21 52.2746C1193.37 51.4666 1192.91 50.4126 1192.91 49.2182V0H1143.61C1142.45 0 1141.36 0.456696 1140.55 1.29983C1139.81 2.10784 1139.39 3.16176 1139.39 4.25082C1139.39 5.33987 1139.78 6.28841 1140.51 7.09641C1143.51 10.3284 1145.09 14.0523 1145.09 17.9869C1145.09 28.6316 1133.3 37.2737 1118.77 37.2737C1104.23 37.2737 1092.45 28.6316 1092.45 17.9869C1092.45 14.0874 1094.03 10.3284 1097.02 7.09641C1097.76 6.28841 1098.15 5.30474 1098.15 4.25082C1098.15 3.1969 1097.72 2.10784 1096.99 1.29983C1096.18 0.456696 1095.12 0 1093.92 0H1044.62V49.2182C1044.62 50.3775 1045.08 51.4666 1045.93 52.2746C1046.74 53.0123 1047.79 53.4339 1048.88 53.4339C1049.97 53.4339 1050.92 53.0474 1051.73 52.3097C1054.97 49.3236 1058.7 47.7427 1062.64 47.7427C1073.3 47.7427 1081.96 59.5115 1081.96 74.0205C1081.96 88.5295 1073.3 100.298 1062.64 100.298C1058.73 100.298 1054.97 98.7174 1051.73 95.7313C1050.92 94.9935 1049.94 94.6071 1048.88 94.6071C1047.83 94.6071 1046.74 95.0287 1045.93 95.7664C1045.08 96.5744 1044.62 97.6283 1044.62 98.8228V148.041H1093.92C1095.09 148.041 1096.18 148.498 1096.99 149.341C1097.72 150.149 1098.15 151.203 1098.15 152.292C1098.15 153.381 1097.76 154.329 1097.02 155.137C1094.03 158.369 1092.45 162.093 1092.45 166.028C1092.45 176.673 1104.23 185.315 1118.77 185.315C1133.3 185.315 1145.09 176.673 1145.09 166.028C1145.09 162.128 1143.51 158.369 1140.51 155.137C1139.78 154.329 1139.39 153.346 1139.39 152.292C1139.39 151.238 1139.81 150.149 1140.55 149.341C1141.36 148.498 1142.41 148.041 1143.61 148.041H1192.91V98.8228C1192.91 97.6635 1193.37 96.5744 1194.21 95.7664C1195.02 95.0287 1196.08 94.6071 1197.17 94.6071C1198.26 94.6071 1199.21 94.9935 1200.02 95.7313C1203.26 98.7174 1206.99 100.298 1210.93 100.298C1221.59 100.298 1230.25 88.5295 1230.25 74.0205C1230.25 59.5115 1221.59 47.7427 1210.93 47.7427ZM1092.55 111.716L1092.83 108.8C1093.26 107.465 1094.45 105.779 1096.42 103.741C1098.39 101.704 1102.4 98.1553 1108.46 93.1316L1117.29 85.7893C1118.73 84.5597 1120 83.3301 1121.05 82.1006C1122.11 80.8359 1123.03 79.5009 1123.76 78.0254C1124.47 76.5499 1125.03 75.0042 1125.38 73.3179C1125.73 71.6667 1125.91 69.8399 1125.91 67.8726C1125.91 65.7648 1125.38 63.938 1124.33 62.4273C1123.27 60.8816 1121.93 60.1087 1120.32 60.1087C1118.42 60.1087 1116.55 60.7059 1114.83 61.9004C1113.1 63.0948 1112.12 64.2893 1111.87 65.4486C1111.73 66.1863 1111.73 66.9592 1111.87 67.8023C1111.98 68.7509 1111.98 69.4184 1111.91 69.8048C1111.69 70.7182 1111.27 71.5613 1110.64 72.2639C1110.01 72.9666 1109.27 73.5287 1108.42 73.9151C1107.58 74.3015 1106.73 74.4772 1105.92 74.4772C1105.11 74.4772 1104.3 74.2664 1103.67 73.88C1103.04 73.4935 1102.58 72.9666 1102.26 72.3342C1101.95 71.7019 1101.84 71.0695 1101.84 70.3669C1101.84 69.313 1102.12 68.2239 1102.62 67.0997C1103.14 66.0107 1103.85 64.9568 1104.73 63.938C1105.64 62.9192 1106.7 61.9706 1107.89 61.0924C1109.13 60.2141 1110.43 59.4412 1111.84 58.7386C1115.28 57.1226 1118.98 56.2795 1123.03 56.2795C1127.07 56.2795 1130.2 57.228 1132.88 59.1602C1135.52 61.0924 1136.89 63.8677 1136.89 67.4159C1136.89 68.9617 1136.75 70.3669 1136.47 71.6667C1136.19 72.9666 1135.62 74.2664 1134.78 75.6365C1133.93 76.9715 1133.12 78.1659 1132.35 79.1496C1131.58 80.1684 1130.34 81.4331 1128.59 82.9788C1126.86 84.5246 1125.35 85.8244 1124.05 86.8783C1122.74 87.9323 1120.81 89.478 1118.27 91.5156L1112.19 96.3285C1109.34 98.5769 1107.44 101.282 1106.49 104.409H1117.57C1119.54 104.409 1121.3 103.741 1122.88 102.406C1123.87 101.598 1124.82 100.439 1125.77 98.9985C1125.63 99.1038 1129.92 101.001 1129.82 100.966C1128.23 105.427 1126.79 109.011 1125.45 111.61H1092.45H1092.48L1092.55 111.716ZM1169.16 80.4845C1168.35 80.5548 1167.29 80.6251 1165.92 80.7305C1164.58 80.8359 1163.67 80.9061 1163.21 80.9412C1162.79 80.9764 1162.16 81.0115 1161.42 81.0466C1160.64 81.0818 1159.9 81.0818 1159.16 81.0818C1153.92 81.0818 1149.84 80.9061 1146.88 80.5899C1146.29 82.1006 1144.88 86.1055 1142.7 92.6047C1143.79 92.3236 1145.48 92.0777 1147.69 91.7967C1149.95 91.5156 1151.7 91.4102 1153.01 91.4102C1157.19 91.4102 1160.47 92.4993 1162.79 94.7125C1165.11 96.9257 1166.27 99.8065 1166.27 103.425C1166.27 110.416 1163.28 116.634 1157.37 122.044C1152.94 126.049 1148.01 128.052 1142.66 128.052C1137.31 128.052 1133.3 127.208 1130.66 125.522C1129.01 124.468 1128.16 123.098 1128.16 121.447C1128.16 120.147 1128.69 118.988 1129.71 117.969C1130.73 116.95 1132 116.423 1133.51 116.423C1136.36 116.423 1138.26 117.583 1139.21 119.972C1140.27 122.712 1141.53 124.047 1143.01 124.047C1145.48 124.047 1147.66 122.747 1149.59 120.182C1150.86 118.461 1152.02 116.002 1153.08 112.77C1154.13 109.538 1154.63 106.516 1154.63 103.601C1154.63 102.02 1154.34 100.65 1153.82 99.5605C1153.29 98.4715 1152.58 97.6635 1151.77 97.2068C1150.93 96.7501 1150.02 96.5042 1148.99 96.5042C1146.95 96.5042 1145.19 96.6798 1143.75 97.0663C1142.31 97.4527 1135.83 98.8579 1135.83 98.8579L1145.02 71.8424C1146.04 71.9478 1147.76 72.1234 1150.23 72.3693C1152.69 72.6152 1154.59 72.7558 1155.96 72.7558C1157.16 72.7558 1158.43 72.7206 1159.66 72.6504C1160.92 72.5801 1161.94 72.5099 1162.75 72.4396C1163.6 72.3693 1164.87 72.2288 1166.55 72.0532C1168.28 71.8775 1169.65 71.7019 1170.74 71.6316L1172.43 72.7909L1169.16 80.5899V80.4845Z" fill="#0E65C0"/> <path d="M235.697 5.69118C235.697 6.53432 235.415 7.30719 234.852 8.00981C234.359 8.71242 233.796 9.06373 233.163 9.06373C227.99 9.55556 223.768 11.2418 220.46 14.0874C217.187 16.8628 213.774 22.2729 210.29 30.2124L156.803 150.535C156.451 151.659 155.465 152.222 153.882 152.222C152.615 152.222 151.63 151.659 150.961 150.535L120.945 87.8971L86.4245 150.535C85.7207 151.659 84.7354 152.222 83.5038 152.222C81.9554 152.222 80.935 151.659 80.4775 150.535L27.905 30.2124C24.6324 22.7296 21.1487 17.5302 17.5242 14.6144C13.8997 11.6283 8.83247 9.76634 2.32248 9.06373C1.75946 9.06373 1.23162 8.78269 0.738975 8.2206C0.246327 7.58824 0 6.88562 0 6.11274C0 4.14542 0.563031 3.1969 1.68908 3.1969C6.36923 3.1969 11.2605 3.40768 16.3629 3.82925C21.1135 4.25082 25.5825 4.46161 29.8052 4.46161C34.0279 4.46161 39.0951 4.25082 44.9013 3.82925C50.989 3.40768 56.373 3.1969 61.0531 3.1969C62.1792 3.1969 62.7422 4.18055 62.7422 6.11274C62.7422 8.04493 62.3903 9.0286 61.6865 9.0286C57.0064 9.37991 53.3115 10.5743 50.5668 12.5768C47.8924 14.6144 46.5904 17.2492 46.5904 20.5515C46.5904 22.2378 47.1534 24.3105 48.2795 26.8399L91.7028 124.749L116.37 78.2362L93.3919 30.1773C89.2748 21.6054 85.8614 16.0899 83.2222 13.6307C80.5479 11.1013 76.5363 9.59069 71.1524 9.0286C70.6597 9.0286 70.1671 8.74755 69.6744 8.18546C69.2522 7.5531 69.041 6.85049 69.041 6.07762C69.041 4.1103 69.5337 3.16176 70.519 3.16176C75.1991 3.16176 79.4922 3.37255 83.4334 3.79411C87.1986 4.21568 91.2454 4.42647 95.5033 4.42647C99.7611 4.42647 104.125 4.21568 108.84 3.79411C113.661 3.37255 118.411 3.16176 123.092 3.16176C124.218 3.16176 124.781 4.14543 124.781 6.07762C124.781 8.00981 124.429 8.99346 123.725 8.99346C114.365 9.62582 109.684 12.2606 109.684 16.9681C109.684 19.076 110.775 22.308 112.922 26.6994L128.124 57.4739L143.22 29.299C145.331 25.3293 146.352 21.9567 146.352 19.2516C146.352 12.8227 141.671 9.41503 132.311 8.99346C131.467 8.99346 131.044 8.00981 131.044 6.07762C131.044 5.375 131.255 4.70752 131.678 4.07517C132.1 3.44281 132.522 3.12663 132.944 3.12663C136.287 3.12663 140.44 3.33742 145.331 3.75899C150.011 4.18056 153.847 4.39134 156.873 4.39134C159.055 4.39134 162.222 4.21568 166.409 3.86438C171.723 3.37255 176.157 3.12663 179.746 3.12663C180.591 3.12663 181.013 3.96978 181.013 5.65605C181.013 7.90442 180.239 8.99346 178.69 8.99346C173.236 9.55556 168.837 11.0662 165.459 13.4902C162.187 15.9494 158.034 21.5 153.073 30.1422L132.944 67.3105L160.216 122.817L200.508 29.299C201.915 25.8914 202.619 22.7296 202.619 19.884C202.619 13.0335 197.939 9.41503 188.578 8.99346C187.734 8.99346 187.312 8.00981 187.312 6.07762C187.312 4.14543 187.945 3.16176 189.212 3.16176C192.625 3.16176 196.707 3.37255 201.387 3.79411C205.716 4.21568 209.375 4.42647 212.296 4.42647C215.217 4.42647 218.947 4.21568 222.993 3.79411C227.181 3.37255 230.981 3.16176 234.324 3.16176C235.31 3.16176 235.802 4.0049 235.802 5.69118H235.697ZM271.625 146.425C271.625 147.795 271.238 148.498 270.428 148.498C267.121 148.498 263.179 148.357 258.64 148.041C254.277 147.76 250.617 147.584 247.591 147.584C244.564 147.584 240.905 147.725 236.541 148.041C231.931 148.322 227.955 148.498 224.612 148.498C223.838 148.498 223.416 147.795 223.416 146.425C223.416 145.195 223.803 144.528 224.612 144.423C230.594 143.72 234.641 142.631 236.788 141.085C238.969 139.539 240.06 136.483 240.06 131.916V62.2517C240.06 58.8089 239.603 56.3848 238.723 55.0148C237.878 53.5744 236.365 52.4853 234.219 51.6773C232.037 50.8342 228.87 50.1667 224.647 49.6749C223.873 49.6749 223.451 48.9723 223.451 47.6022C223.451 46.2321 223.838 45.5294 224.647 45.5294C228.025 45.5294 232.002 45.67 236.576 45.9861C240.94 46.2672 244.6 46.4428 247.626 46.4428C250.652 46.4428 254.312 46.3023 258.675 45.9861C263.215 45.7051 267.156 45.5294 270.464 45.5294C271.273 45.5294 271.66 46.2321 271.66 47.6022C271.66 48.9723 271.273 49.6749 270.464 49.6749C266.311 50.1667 263.144 50.8342 260.962 51.6773C258.781 52.4502 257.268 53.5393 256.423 54.9445C255.578 56.3146 255.156 58.7737 255.156 62.2868V131.951C255.156 135.359 255.578 137.783 256.423 139.188C257.268 140.558 258.746 141.682 260.857 142.525C263.039 143.298 266.206 143.966 270.358 144.458C271.202 144.563 271.625 145.231 271.625 146.46V146.425ZM401.648 146.425C401.648 147.795 401.261 148.498 400.452 148.498C397.144 148.498 393.203 148.357 388.593 148.041C384.195 147.76 380.5 147.584 377.474 147.584C374.447 147.584 370.541 147.725 365.404 148.041C360.02 148.322 355.656 148.498 352.349 148.498C351.574 148.498 351.152 147.795 351.152 146.425C351.152 145.195 351.504 144.528 352.173 144.423C358.859 143.65 362.166 142.034 362.166 139.61C362.166 138.24 361.075 136.448 358.894 134.27L329.476 104.373C327.892 102.793 326.52 101.774 325.323 101.282C324.197 100.79 322.614 100.544 320.573 100.544V131.916C320.573 135.324 320.995 137.748 321.84 139.153C322.719 140.523 324.268 141.647 326.449 142.49C328.666 143.263 331.833 143.931 335.95 144.423C336.795 144.528 337.217 145.195 337.217 146.425C337.217 147.795 336.83 148.498 336.021 148.498C332.713 148.498 328.737 148.357 324.162 148.041C319.763 147.76 316.069 147.584 313.042 147.584C310.016 147.584 306.427 147.725 302.063 148.041C297.454 148.322 293.512 148.498 290.205 148.498C289.43 148.498 289.008 147.795 289.008 146.425C289.008 145.195 289.395 144.528 290.205 144.423C296.187 143.72 300.233 142.631 302.38 141.085C304.562 139.539 305.653 136.483 305.653 131.916V62.2517C305.653 58.8089 305.195 56.3848 304.315 55.0148C303.471 53.5744 301.958 52.4853 299.776 51.6773C297.594 50.8342 294.427 50.1667 290.205 49.6749C289.43 49.6749 289.008 48.9723 289.008 47.6022C289.008 46.2321 289.395 45.5294 290.205 45.5294C293.512 45.5294 297.454 45.67 302.063 45.9861C306.427 46.2672 310.086 46.4428 313.042 46.4428C315.998 46.4428 319.763 46.3023 324.162 45.9861C328.772 45.7051 332.713 45.5294 336.021 45.5294C336.795 45.5294 337.217 46.2321 337.217 47.6022C337.217 48.9723 336.83 49.6749 336.021 49.6749C331.833 50.1667 328.631 50.8342 326.449 51.6773C324.268 52.4502 322.755 53.5744 321.84 55.0148C320.995 56.3848 320.573 58.8089 320.573 62.2517V95.7664C322.508 95.7664 324.057 95.5205 325.253 95.0287C326.449 94.5368 327.857 93.4829 329.476 91.9372L362.026 59.8979C364.7 57.3685 366.037 55.5417 366.037 54.4175C366.037 53.0826 365.404 52.0989 364.102 51.4665C362.87 50.7639 360.336 50.1667 356.536 49.6749C355.727 49.6749 355.34 48.9723 355.34 47.6022C355.34 46.2321 355.797 45.5294 356.677 45.5294C358.999 45.5294 362.061 45.67 365.861 45.9861C369.908 46.2672 373.286 46.4428 375.96 46.4428C378.635 46.4428 381.591 46.2672 384.863 45.9159C387.573 45.67 389.895 45.5294 391.831 45.5294C392.535 45.5294 392.851 46.2321 392.851 47.6022C392.851 48.9723 392.464 49.6749 391.655 49.6749C386.904 50.2721 383.174 51.2206 380.465 52.5556C377.755 53.8906 374.483 56.3497 370.682 59.9682L336.865 92.0777L378.916 134.726C381.837 137.783 384.687 139.996 387.502 141.401C390.353 142.736 394.611 143.755 400.241 144.423C401.121 144.528 401.578 145.195 401.578 146.425H401.648ZM463.124 146.425C463.124 147.795 462.737 148.498 461.927 148.498C458.62 148.498 454.678 148.357 450.139 148.041C445.776 147.76 442.116 147.584 439.09 147.584C436.063 147.584 432.404 147.725 428.04 148.041C423.431 148.322 419.454 148.498 416.111 148.498C415.337 148.498 414.915 147.795 414.915 146.425C414.915 145.195 415.302 144.528 416.111 144.423C422.093 143.72 426.14 142.631 428.287 141.085C430.468 139.539 431.559 136.483 431.559 131.916V62.2517C431.559 58.8089 431.102 56.3848 430.222 55.0148C429.378 53.5744 427.864 52.4853 425.683 51.6773C423.501 50.8342 420.334 50.1667 416.111 49.6749C415.337 49.6749 414.915 48.9723 414.915 47.6022C414.915 46.2321 415.302 45.5294 416.111 45.5294C419.489 45.5294 423.466 45.67 428.04 45.9861C432.404 46.2672 436.063 46.4428 439.09 46.4428C442.116 46.4428 445.776 46.3023 450.139 45.9861C454.678 45.7051 458.62 45.5294 461.927 45.5294C462.702 45.5294 463.124 46.2321 463.124 47.6022C463.124 48.9723 462.737 49.6749 461.927 49.6749C457.775 50.1667 454.608 50.8342 452.426 51.6773C450.245 52.4502 448.732 53.5393 447.887 54.9445C447.042 56.3146 446.62 58.7737 446.62 62.2868V131.951C446.62 135.359 447.042 137.783 447.887 139.188C448.732 140.558 450.209 141.682 452.321 142.525C454.503 143.298 457.67 143.966 461.822 144.458C462.666 144.563 463.089 145.231 463.089 146.46L463.124 146.425ZM564.68 75.7068C564.68 84.3841 561.302 91.6912 554.58 97.6283C547.894 103.495 539.625 106.446 529.737 106.446C523.79 106.446 517.984 106.2 512.248 105.708V131.916C512.248 135.359 512.67 137.783 513.515 139.153C514.394 140.523 515.908 141.647 518.054 142.49C520.236 143.263 523.403 143.931 527.555 144.423C528.365 144.528 528.752 145.195 528.752 146.425C528.752 147.795 528.365 148.498 527.555 148.498C524.247 148.498 520.306 148.357 515.767 148.041C511.403 147.76 507.744 147.584 504.717 147.584C501.691 147.584 497.996 147.725 493.598 148.041C488.988 148.322 485.047 148.498 481.739 148.498C480.965 148.498 480.542 147.795 480.542 146.425C480.542 145.195 480.93 144.528 481.739 144.423C487.721 143.72 491.768 142.631 493.914 141.085C496.096 139.539 497.187 136.483 497.187 131.916V62.2517C497.187 58.8089 496.729 56.3848 495.85 55.0148C495.005 53.5744 493.492 52.4853 491.346 51.6773C489.164 50.8342 485.997 50.1667 481.774 49.6749C481 49.6749 480.578 48.9723 480.578 47.6022C480.578 46.2321 480.965 45.5294 481.774 45.5294C485.082 45.5294 489.023 45.67 493.633 45.9861C498.031 46.2672 501.726 46.4428 504.753 46.4428C507.779 46.4428 511.439 46.3023 515.802 45.9861C520.341 45.7051 524.283 45.5294 527.59 45.5294C539.766 45.5294 548.95 48.094 555.249 53.2231C561.583 58.3522 564.75 65.8701 564.75 75.7068H564.68ZM548.211 75.7068C548.211 67.8023 546.276 61.6545 542.37 57.1929C538.499 52.7664 533.361 50.518 526.957 50.518C523.086 50.518 520.095 50.7991 517.984 51.3963C515.908 51.9935 514.43 52.942 513.55 54.277C512.705 55.612 512.283 58.2468 512.283 62.1814V96.1529C512.283 98.2607 512.952 99.7011 514.289 100.439C515.626 101.141 518.512 101.458 522.981 101.458C531.039 101.458 537.267 99.1741 541.666 94.572C546.065 89.9698 548.282 83.6814 548.282 75.6365L548.211 75.7068ZM668.452 124.047C664.441 132.583 661.203 140.734 658.67 148.463C640.02 147.865 626.753 147.584 618.871 147.584C610.989 147.584 597.828 147.865 579.142 148.463C578.333 148.463 577.946 147.76 577.946 146.39C577.946 145.16 578.333 144.493 579.142 144.387C583.26 143.896 586.391 143.263 588.573 142.455C590.755 141.612 592.268 140.523 593.112 139.118C593.992 137.748 594.45 135.324 594.45 131.881V62.2166C594.45 58.8089 594.027 56.42 593.183 55.0499C592.409 53.6095 590.896 52.4853 588.749 51.6422C586.567 50.7991 583.4 50.1316 579.178 49.6397C578.368 49.6397 577.981 48.9371 577.981 47.567C577.981 46.1969 578.368 45.4943 579.178 45.4943C591.635 46.0915 604.373 46.3726 617.428 46.3726C630.483 46.3726 643.363 46.0915 655.749 45.4943C656.875 53.1528 658.529 60.7059 660.711 68.1536C660.711 69.1373 659.831 69.6291 658.107 69.6291C657.262 69.6291 656.734 69.2778 656.558 68.6104C652.899 56.9821 645.087 51.1504 633.122 51.1504H618.132C612.396 51.1504 609.546 54.1014 609.546 60.0384V92.9911H628.231C633.158 92.9911 636.501 91.8669 638.225 89.5834C640.02 87.2999 641.251 83.295 641.92 77.5336C641.92 76.7607 642.624 76.3391 643.996 76.3391C645.368 76.3391 646.072 76.7256 646.072 77.5336C646.072 79.9927 645.931 83.1193 645.615 86.8432C645.333 90.4617 645.157 93.3775 645.157 95.661C645.157 97.9445 645.298 100.931 645.615 104.549C645.896 108.413 646.072 111.54 646.072 114.034C646.072 114.807 645.368 115.229 643.996 115.229C642.624 115.229 641.92 114.842 641.92 114.034C641.181 108.027 639.879 103.811 637.979 101.387C636.149 98.9633 632.876 97.7689 628.196 97.7689H609.511V134.199C609.511 140.031 612.361 142.947 618.097 142.947H634.249C640.125 142.947 645.966 141.05 651.737 137.256C657.508 133.391 661.766 128.614 664.476 122.887C664.687 122.431 665.109 122.22 665.743 122.22C666.447 122.22 667.045 122.431 667.608 122.817C668.136 123.168 668.417 123.59 668.417 124.152L668.452 124.047ZM790.383 97.6986C790.383 112.91 785.28 125.171 775.111 134.481C764.941 143.79 751.147 148.463 733.799 148.463C731.617 148.463 727.218 148.357 720.603 148.181C713.776 147.971 709.237 147.9 706.949 147.9C697.765 147.9 688.827 148.111 680.1 148.498C679.326 148.498 678.904 147.795 678.904 146.425C678.904 145.195 679.291 144.528 680.1 144.423C684.217 143.931 687.349 143.298 689.531 142.49C691.712 141.647 693.225 140.558 694.035 139.153C694.915 137.783 695.372 135.359 695.372 131.916V62.5679C695.372 59.1602 694.95 56.7713 694.105 55.4012C693.296 53.9608 691.818 52.8366 689.671 51.9935C687.49 51.1504 684.323 50.4829 680.1 49.9911C679.326 49.9911 678.904 49.2884 678.904 47.9183C678.904 46.5482 679.291 45.8456 680.1 45.8456C685.871 46.2321 694.844 46.4428 706.949 46.4428C709.237 46.4428 713.776 46.3726 720.603 46.2321C727.218 46.0915 731.617 46.0213 733.799 46.0213C750.689 46.0213 764.343 50.8693 774.724 60.5303C785.139 70.1561 790.383 82.5573 790.383 97.7689V97.6986ZM774.09 97.6986C774.09 84.2787 770.219 73.1422 762.513 64.2541C754.842 55.3309 745.235 50.8693 733.658 50.8693H733.2L719.265 51.1504C713.424 51.3611 710.503 54.2067 710.503 59.7223V134.691C710.503 140.312 713.424 143.123 719.265 143.123L733.2 143.579C744.707 143.579 754.419 139.223 762.267 130.476C770.114 121.693 774.055 110.767 774.055 97.6986H774.09ZM858.403 146.425C858.403 147.795 858.016 148.498 857.207 148.498C853.899 148.498 849.958 148.357 845.418 148.041C841.055 147.76 837.395 147.584 834.369 147.584C831.343 147.584 827.683 147.725 823.32 148.041C818.71 148.322 814.734 148.498 811.391 148.498C810.616 148.498 810.194 147.795 810.194 146.425C810.194 145.195 810.581 144.528 811.391 144.423C817.373 143.72 821.419 142.631 823.566 141.085C825.748 139.539 826.839 136.483 826.839 131.916V62.2517C826.839 58.8089 826.381 56.3848 825.501 55.0148C824.657 53.5744 823.144 52.4853 820.962 51.6773C818.78 50.8342 815.613 50.1667 811.391 49.6749C810.616 49.6749 810.194 48.9723 810.194 47.6022C810.194 46.2321 810.581 45.5294 811.391 45.5294C814.769 45.5294 818.745 45.67 823.32 45.9861C827.683 46.2672 831.343 46.4428 834.369 46.4428C837.395 46.4428 841.055 46.3023 845.418 45.9861C849.958 45.7051 853.899 45.5294 857.207 45.5294C857.981 45.5294 858.403 46.2321 858.403 47.6022C858.403 48.9723 858.016 49.6749 857.207 49.6749C853.054 50.1667 849.887 50.8342 847.706 51.6773C845.524 52.4502 844.011 53.5393 843.166 54.9445C842.322 56.3146 841.899 58.7737 841.899 62.2868V131.951C841.899 135.359 842.322 137.783 843.166 139.188C844.011 140.558 845.489 141.682 847.6 142.525C849.782 143.298 852.949 143.966 857.101 144.458C857.946 144.563 858.368 145.231 858.368 146.46L858.403 146.425ZM1025.34 145.933C1025.34 147.9 1024.78 148.849 1023.65 148.849C1018.83 148.849 1013.38 148.638 1007.29 148.217C1002.05 147.795 997.576 147.584 993.846 147.584C989.588 147.584 984.31 147.795 978.011 148.217C971.36 148.638 965.695 148.849 961.015 148.849C959.889 148.849 959.326 147.865 959.326 145.933C959.326 144.001 959.748 143.017 960.592 143.017C966.821 142.736 971.29 141.928 974.035 140.593C976.779 139.188 978.117 137.08 978.117 134.199C978.117 132.373 977.413 129.492 976.005 125.522L964.146 90.4265H920.934L908.97 122.887C907.422 127.208 906.647 130.581 906.647 132.935C906.647 139.083 912.313 142.42 923.644 142.982C924.488 142.982 924.911 143.966 924.911 145.898C924.911 147.83 924.348 148.814 923.221 148.814C919.034 148.814 914.389 148.603 909.251 148.181C904.43 147.76 900.137 147.549 896.337 147.549C893.346 147.549 889.546 147.76 885.006 148.181C880.256 148.603 876.209 148.814 872.831 148.814C871.775 148.814 871.247 147.936 871.247 146.179C871.247 144.212 872.057 143.193 873.675 143.052C879.481 142.49 884.056 140.874 887.434 138.24C890.848 135.57 894.402 130.159 898.026 122.009L947.115 1.68627C947.537 0.56209 948.523 0 950.036 0C951.725 0 952.78 0.526964 953.167 1.58089L996.485 122.009C998.948 128.789 1002.22 133.778 1006.34 136.975C1010.53 140.172 1016.12 142.209 1023.12 143.052C1024.53 143.193 1025.23 144.141 1025.23 145.898L1025.34 145.933ZM961.894 83.7166L943.42 30.2124L923.503 83.7166H961.894Z" fill="black"/> </svg> </div> <h3 class="h3">Wikipedia is turning 25!</h3> <p>Please join us for a virtual celebration on November 20. You have been such an important part of our journey so far, and we hope you will continue on the path with us for the next 25 years and beyond. We’d be thrilled to celebrate this huge milestone in the history of Wikipedia together!</p> <h4 class="h4">🎉 Wikipedia’s 25th Birthday Party 🎉</h4> <p>20 November 2025<br> 11:00 am PST | 2:00 pm EST | 7:00 pm UTC</p> <a href="https://events.zoom.us/ev/Anqzk0mXmhKm6A0ePVyMEiSGsUMn4tveMCPG6pU85f6mryI68SQK~AtX5pK0BLRMZ0UkVKhgQW7eKjJO5MzoA-7yUHN3TTNjPrPpjYiFPe4hUog" target="_blank" class="btn btn-blue">CLICK HERE TO LEARN MORE</a> </div> </div> </div> </div> <!-- end WP25 birthday block --!> </html>}}<html> </html>{{#if:{{{share-text|}}}|<html> <div class="ty-share social-share w-68p mw-640" style="display: none;"> <div class="share-cta"> <h2 class="h2"></html>{{{share-text}}}<html></h2> </div> <div class="link-list social-list"> <p id="ty-share-links" class="social-share-buttons"></p> </div> </div> </html>}}<html> <div class="primary-ctas"> </html>{{#if:{{{endowment-header|}}}|<html> <div class="endowment endowment-1 w-100p cta cta-primary img-left-content-right bg-img--pink btn-pink cta-support"> <div class="mw-1120 flex flex-medium flex-justify-center"> <div class="w-32p endowment-text card-content"> <h2 class="h2"></html>{{{endowment-header}}}<html></h2> <p class="cta-description"> </html>{{{endowment-text}}}<html> </p> </div> <a href="#" class="w-32p focus-block rounded shadow frb-dialog-link"> <div class="card"> <div class="card-content"> <h3 class="h3"></html>{{{legacy-header}}}<html></h3> <div class="mar-bottom"> <p></html>{{{legacy-text}}}<html></p> </div> <div class="btn btn-pink stick-to-bottom"> </html>{{{request-info}}}<html> </div> </div> </div> </a> <a href="https://www.freewill.com/Wikipedia?utm_source=TY_page" class="w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"></html>{{{will-header}}}<html></h3> <div class="mar-bottom"> <p></html>{{{will-text}}}<html></p> </div> <div class="btn btn-pink stick-to-bottom"> </html>{{{will-button}}}<html> </div> </div> </div> </a> </div> </div><!-- endowment --> <!-- endowment form pop up --> <dialog id="frb-dialog-legacy" class="frb frb-dialog"> <button class="frb-dialog-close"> <svg width="24px" height="24px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M5.29289 5.29289C5.68342 4.90237 6.31658 4.90237 6.70711 5.29289L12 10.5858L17.2929 5.29289C17.6834 4.90237 18.3166 4.90237 18.7071 5.29289C19.0976 5.68342 19.0976 6.31658 18.7071 6.70711L13.4142 12L18.7071 17.2929C19.0976 17.6834 19.0976 18.3166 18.7071 18.7071C18.3166 19.0976 17.6834 19.0976 17.2929 18.7071L12 13.4142L6.70711 18.7071C6.31658 19.0976 5.68342 19.0976 5.29289 18.7071C4.90237 18.3166 4.90237 17.6834 5.29289 17.2929L10.5858 12L5.29289 6.70711C4.90237 6.31658 4.90237 5.68342 5.29289 5.29289Z" fill="#0F1729"/> </svg> </button> <div class="frb-dialog-title"> Receive your Planned Giving Guide </div> <div class="frb-dialog-text"> <form method="post" action="https://lp.email.wikimedia.org/LegacyGivingSignup/Form/?sp_source=thankyoupage" id="lg-form" class="lg-form"> <input type="hidden" name="formSourceName" value="StandardForm" /> <!-- DO NOT REMOVE HIDDEN FIELD sp_exp --> <input type="hidden" name="sp_exp" value="yes" /> <input type="hidden" name="lg_source" value="thankyoupage" /> <input type="hidden" name="lg_submitDate" value="" /> <label class="lg-form-legend" for="lg-firstname">First Name</label> <input type="text" name="firstname" id="lg-firstname" dir="ltr" autocomplete="given-name" required="true" /> <label class="lg-form-legend" for="lg-lastname">Last Name</label> <input type="text" name="lastname" id="lg-lastname" dir="ltr" autocomplete="family-name" required="true" /> <label class="lg-form-legend" for="lg-email">Email</label> <input type="email" name="Email" id="lg-email" dir="ltr" autocomplete="email" required="true" /> <label class="lg-form-legend" for="lg-country">Country</label> <input type="text" name="country" id="lg-country" dir="ltr" autocomplete="country-name" /> <button class="lg-submit active btn btn-pink" id="lg-submit" type="submit">Download</button> </form> </div> </dialog><!-- end endowment form pop up --> </html>}}<html> </html>{{#if:{{{survey-code|}}}|<html> <div class="survey survey-1 w-100p cta cta-primary img-left-content-right bg-img--pink btn-pink cta-support"> <div class="mw-620"> <div class="card flex flex-medium flex-wrap"> <div class="card-content w-25p sm-img-container"> <a href="https://www.surveymonkey.com/r/</html>{{{survey-code}}}<html>" title="</html>{{{survey-header}}}<html>" class="ty-survey-link"> <svg class="sm-img" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 146 193"><g fill-rule="evenodd" clip-rule="evenodd" stroke="#54595d" stroke-width="2"><path d="M3.6 20h138.8c1.4 0 2.6 1.2 2.6 2.6v166.8c0 1.4-1.2 2.6-2.6 2.6H3.6c-1.4 0-2.6-1.2-2.6-2.6V22.6C1 21.2 2.2 20 3.6 20z" fill="#fff"></path><path d="M55.2 12.2C56.4 5.9 63.9 1 73 1c9 0 16.5 4.8 17.8 11.1L118 12c5 0 9 4 9 9 0 0 0 0 0 0v6.9c0 1.2-.9 2.1-2.1 2.1H21.1c-1.2 0-2.1-.9-2.1-2.1 0 0 0 0 0 0v-6.8c0-4.9 4-8.9 8.9-8.9h27.3z" fill="#eaecf0"></path></g><path d="M32 105.6L58.6 136l56.1-64.2" fill="none" stroke="#d40356" stroke-width="15" stroke-linecap="round" stroke-linejoin="round"></path></svg> </a> </div> <div class="card-content w-75p"> <h2 class="h2"><a href="https://www.surveymonkey.com/r/</html>{{{survey-code}}}<html>" class="ty-survey-link"> </html>{{{survey-header}}}<html> </a></h2> <div class="mar-bottom"> <p class="cta-description"></html>{{{survey-text}}}<html></p> <p class="small"></html>{{{survey-legal}}}<html></p> </div> <a class="btn btn-pink" href="https://www.surveymonkey.com/r/</html>{{{survey-code}}}<html>" class="ty-survey-link"> </html>{{{survey-button}}}<html> </a> </div> </div> </div> </div><!-- survey --> </html>}}{{#if:{{{survey-code-2|}}}|<html> <div class="survey survey-2 w-100p cta cta-primary img-left-content-right bg-img--pink btn-pink cta-support"> <div class="mw-620"> <div class="card flex flex-medium flex-wrap"> <div class="card-content w-25p sm-img-container"> <a href="https://www.surveymonkey.com/r/</html>{{{survey-code-2}}}<html>" title="</html>{{{survey-header}}}<html>" class="ty-survey-link"> <svg class="sm-img" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 146 193"><g fill-rule="evenodd" clip-rule="evenodd" stroke="#54595d" stroke-width="2"><path d="M3.6 20h138.8c1.4 0 2.6 1.2 2.6 2.6v166.8c0 1.4-1.2 2.6-2.6 2.6H3.6c-1.4 0-2.6-1.2-2.6-2.6V22.6C1 21.2 2.2 20 3.6 20z" fill="#fff"></path><path d="M55.2 12.2C56.4 5.9 63.9 1 73 1c9 0 16.5 4.8 17.8 11.1L118 12c5 0 9 4 9 9 0 0 0 0 0 0v6.9c0 1.2-.9 2.1-2.1 2.1H21.1c-1.2 0-2.1-.9-2.1-2.1 0 0 0 0 0 0v-6.8c0-4.9 4-8.9 8.9-8.9h27.3z" fill="#eaecf0"></path></g><path d="M32 105.6L58.6 136l56.1-64.2" fill="none" stroke="#d40356" stroke-width="15" stroke-linecap="round" stroke-linejoin="round"></path></svg> </a> </div> <div class="card-content w-75p"> <h2 class="h2"><a href="https://www.surveymonkey.com/r/</html>{{{survey-code-2}}}<html>" class="ty-survey-link"> </html>{{{survey-header}}}<html> </a></h2> <div class="mar-bottom"> <p class="cta-description"></html>{{{survey-text}}}<html></p> <p class="small"></html>{{{survey-legal}}}<html></p> </div> <a class="btn btn-pink" href="https://www.surveymonkey.com/r/</html>{{{survey-code-2}}}<html>" class="ty-survey-link"> </html>{{{survey-button}}}<html> </a> </div> </div> </div> </div><!-- survey 2 --> </html>}}<html> <div class="matching w-100p cta cta-primary img-left-content-right bg-img--pink btn-pink cta-support"> <div class="mw-620"> <div class="card flex flex-medium flex-wrap"> <div class="card-content w-25p sm-img-container"> <a href="https://donate.wikimedia.org/wiki/</html>{{{match-link|Matching_Gifts}}}<html>" title="</html>{{{match-button}}}<html>"> <svg class="sm-img" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M13.6 85.8h172.8v104.1c0 1.2-.9 2.1-2.1 2.1H15.7c-1.2 0-2.1-.9-2.1-2.1V85.8h0z" fill-rule="evenodd" clip-rule="evenodd" fill="#fff" stroke="#72777d" stroke-width="2"></path><path d="M3 85.9h194V57.6H3v28.3z" fill-rule="evenodd" clip-rule="evenodd" fill="#d40356" stroke="#72777d" stroke-width="2"></path><path d="M92 66.3l-28.7 29c-.4.4-1.1.4-1.5 0-.2-.2-.4-.6-.3-.9l.9-5.4c.2-1.2-.6-2.2-1.8-2.4h-.5l-6.3.6c-.6.1-1.1-.4-1.2-.9 0-.3.1-.6.3-.9l26.7-26.9c-19.9-.8-26.7-3.6-28.8-4.9C39 46.3 35.5 31 42.9 19.5 47.6 12.3 55.6 8 64.3 8c4.8 0 9.4 1.3 13.5 3.8 6.3 3.9 15 18.8 22.2 33.7 7.2-14.9 15.9-29.8 22.2-33.7 4-2.5 8.7-3.8 13.5-3.8 8.7 0 16.7 4.3 21.4 11.5 7.4 11.5 3.9 26.8-7.9 34.1-2.2 1.3-9.2 4.2-30.2 4.9l26.6 26.9c.4.4.4 1.1 0 1.5-.2.2-.5.3-.9.3l-6.3-.6c-1.2-.1-2.2.7-2.3 1.9v.5l.9 5.4c.1.6-.3 1.1-.9 1.2-.3.1-.7-.1-.9-.3L108 67.8V192H92V66.3zm55.7-40.1c-2.6-4-7-6.3-11.8-6.3-2.6 0-5.2.7-7.4 2.1-4.5 2.8-11.1 15.6-15.5 25.6 2.4.1 5.3.2 8.5.2 15.6 0 20.5-2 21.9-2.8 6.4-4.1 8.4-12.5 4.3-18.8zm-95.4 0C48.2 32.5 50.1 41 56.6 45c1.4.8 6.2 2.8 21.9 2.8 3.2 0 6.1-.1 8.5-.2-4.3-10-11-22.8-15.5-25.6-2.2-1.4-4.8-2.1-7.4-2.1-4.8-.1-9.2 2.3-11.8 6.3z" fill-rule="evenodd" clip-rule="evenodd" fill="#fc3" stroke="#72777d" stroke-width="2"></path></svg> </a> </div> <div class="card-content w-75p"> <h2 class="h2"><a href="https://donate.wikimedia.org/wiki/</html>{{{match-link|Matching_Gifts}}}<html>"> </html>{{{match-header}}}<html> </a></h2> <div class="mar-bottom"> <p class="cta-description"></html>{{{match-text}}}<html></p> </div> <a class="btn btn-pink" href="https://donate.wikimedia.org/wiki/</html>{{{match-link|Matching_Gifts}}}<html>"> </html>{{{match-button}}}<html> </a> </div> </div> </div> </div><!-- matching --> <div class="try-editing w-100p cta cta-primary img-left-content-right bg-img--pink btn-pink cta-support"> <div class="mw-620"> <div class="card flex flex-medium flex-wrap"> <div class="card-content w-25p sm-img-container"> <a href="#" title="</html>{{{editing-button}}}<html>"> <svg class="sm-img" role="img" width="115" height="119" viewBox="0 0 115 119" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M95.6 117.999H22.9C14.3 109.399 9.49999 104.599 0.899994 95.9992V3.29922C0.899994 2.09922 1.89999 1.19922 2.99999 1.19922H95.5C96.7 1.19922 97.6 2.19922 97.6 3.29922V115.899C97.7 117.099 96.7 117.999 95.6 117.999Z" fill="white" stroke="#6D6E70" stroke-width="1.0682" stroke-miterlimit="10"/> <path d="M77.9 47.1988C75.1 53.3988 66.4 73.3988 60.8 86.1988H59.3L50.5 65.3988C47 72.2988 43.1 79.3988 39.8 86.1988H38.2C33.1 74.3988 27.9 62.5988 22.8 50.7988C21.6 47.8988 17.5 43.2988 14.6 43.2988C14.6 42.9988 14.6 42.1988 14.6 41.7988H32.1V43.2988C30.1 43.3988 26.5 44.6988 27.4 46.9988C29.9 52.2988 38.6 72.8988 40.9 78.0988C42.5 74.8988 47.1 66.2988 49 62.6988C47.5 59.6988 42.6 48.2988 41.2 45.4988C40.1 43.5988 37.3 43.3988 35.2 43.3988C35.2 42.8988 35.2 42.4988 35.2 41.8988H50.5V43.2988C48.4 43.3988 46.5 44.0988 47.3 46.0988C49.4 50.3988 50.6 53.3988 52.5 57.3988C53.1 56.1988 56.2 49.8988 57.7 46.4988C58.6 44.2988 57.3 43.3988 53.5 43.2988C53.5 42.8988 53.5 42.1988 53.5 41.7988C58.3 41.7988 65.5 41.7988 66.8 41.7988V43.2988C64.4 43.3988 61.8 44.6988 60.5 46.6988L54.1 59.8988C54.8 61.6988 60.9 75.2988 61.6 76.7988L74.8 46.2988" stroke="#6D6E70" stroke-width="1.0682" stroke-miterlimit="10"/> <path d="M105.768 7.62696L77.6256 35.7695L86.6058 44.7497L114.748 16.6071L105.768 7.62696Z" fill="#D40356"/> <path d="M78.1 37.6988L84.7 44.2988L74.7 47.6988L78.1 37.6988ZM77.7 35.7988L73.6 47.9988C73.4 48.4988 73.8 48.9988 74.3 48.9988C74.4 48.9988 74.5 48.9988 74.5 48.9988L86.7 44.8988L77.7 35.7988Z" fill="#6D6E70"/> <path d="M76.3 43.1992L79.3 46.1992L74.6 47.7992L76.3 43.1992Z" fill="#6D6E70"/> <path d="M1.19998 96H21.1C22.3 96 23.2 97 23.2 98.1V118" stroke="#6D6E70" stroke-width="1.0682" stroke-miterlimit="10"/> </svg> </a> </div> <div class="card-content w-75p"> <h2 class="h2"><a href="#"> </html>{{{editing-header}}}<html> </a></h2> <div class="mar-bottom"> <p class="cta-description"></html>{{{editing-text}}}<html></p> </div> <a class="btn btn-pink" href="#"> </html>{{{editing-button}}}<html> </a> </div> </div> </div> </div><!-- try-editing --> </div> <div class="other-ctas"> <div class="mw-1120"> </html>{{#if:{{{cta-header|}}}|<h2 class="h2">{{{cta-header}}}</h2>}}<html> <div class="flex flex-medium flex-justify-center"> </html>{{#if:{{{survey-code|}}}|<html> <div class="survey survey-1 w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> <a href="https://www.surveymonkey.com/r/</html>{{{survey-code}}}<html>" class="ty-survey-link"> </html>{{{survey-header}}}<html> </a> </h3> <div class="mar-bottom"> <p></html>{{{survey-text}}}<html></p> <p class="small"></html>{{{survey-legal}}}<html></p> </div> <a href="https://www.surveymonkey.com/r/</html>{{{survey-code}}}<html>" class="btn btn-blue stick-to-bottom ty-survey-link"> </html>{{{survey-button}}}<html> </a> </div> </div> </div><!-- survey --> </html>}}{{#if:{{{survey-code-2|}}}|<html> <div class="survey survey-2 w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> <a href="https://www.surveymonkey.com/r/</html>{{{survey-code-2}}}<html>" class="ty-survey-link"> </html>{{{survey-header}}}<html> </a> </h3> <div class="mar-bottom"> <p></html>{{{survey-text}}}<html></p> <p class="small"></html>{{{survey-legal}}}<html></p> </div> <a href="https://www.surveymonkey.com/r/</html>{{{survey-code-2}}}<html>" class="btn btn-blue stick-to-bottom ty-survey-link"> </html>{{{survey-button}}}<html> </a> </div> </div> </div><!-- survey 2--> </html>}}<html> <div class="matching w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> <a href="https://donate.wikimedia.org/wiki/</html>{{{match-link|Matching_Gifts}}}<html>"> </html>{{{match-header}}}<html> </a> </h3> <div class="mar-bottom"> <p></html>{{{match-text}}}<html></p> </div> <a href="https://donate.wikimedia.org/wiki/</html>{{{match-link|Matching_Gifts}}}<html>" class="btn btn-blue stick-to-bottom"> </html>{{{match-button}}}<html> </a> </div> </div> </div><!-- matching --> <div class="store w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> <a href="https://</html>{{{store-link|store.wikimedia.org/}}}<html>"> </html>{{{store-header}}}<html> </a> </h3> <div class="mar-bottom"> <p></html>{{{store-text-new}}}<html></p> </div> <a href="https://</html>{{{store-link|store.wikimedia.org/}}}<html>" class="btn btn-blue stick-to-bottom"> </html>{{{store-button}}}<html> </a> </div> </div> </div><!-- store --> </html>{{#if:{{{will-header|}}}|<html> <div class="will-US w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{will-header}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{will-text}}}<html></p> </div> <a class="btn btn-blue stick-to-bottom" href="https://www.freewill.com/Wikipedia?utm_source=TY_page"> </html>{{{will-button}}}<html> </a> </div> </div> </div><!-- will-US --> </html>}}<html> </html>{{#if:{{{legacy-header|}}}|<html> <div class="will-notUS w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{legacy-header}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{legacy-text-2}}}<html></p> </div> <a class="btn btn-blue stick-to-bottom" href="https://wikimediaendowment.org/#request-more-info"> </html>{{{request-info}}}<html> </a> </div> </div> </div><!-- will-notUS --> </html>}}<html> </html>{{#if:{{{editing-header|}}}|<html> <div class="edit-6c w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> <a href="https://en.wikipedia.org/wiki/Special:CreateAccount?campaign=typage-6C-en-2023"> </html>{{{editing-header}}}<html> </a> </h3> <div class="mar-bottom"> <p></html>{{{editing-text}}}<html></p> </div> <a href="https://en.wikipedia.org/wiki/Special:CreateAccount?campaign=typage-6C-en-2023" class="btn btn-blue stick-to-bottom"> </html>{{{editing-button}}}<html> </a> </div> </div> </div><!-- edit cta 6c --> </html>}}<html> </html>{{#if:{{{chapter-AU-title|}}}|<html> <div class="chapter-message chapter-AU w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{chapter-AU-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{chapter-AU-text}}}<html></p> </div> </html>{{{chapter-AU-link}}}<html> </div> </div> </div><!-- chapter message cta --> </html>}}{{#if:{{{chapter-BE-title|}}}|<html> <div class="chapter-message chapter-BE w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{chapter-BE-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{chapter-BE-text}}}<html></p> </div> </html>{{{chapter-BE-link}}}<html> </div> </div> </div><!-- chapter message cta --> </html>}}{{#if:{{{chapter-CA-title|}}}|<html> <div class="chapter-message chapter-CA w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{chapter-CA-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{chapter-CA-text}}}<html></p> </div> </html>{{{chapter-CA-link}}}<html> </div> </div> </div><!-- chapter message cta --> </html>}}{{#if:{{{chapter-CZ-title|}}}|<html> <div class="chapter-message chapter-CZ w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{chapter-CZ-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{chapter-CZ-text}}}<html></p> </div> </html>{{{chapter-CZ-link}}}<html> </div> </div> </div><!-- chapter message cta --> </html>}}{{#if:{{{chapter-FR-title|}}}|<html> <div class="chapter-message chapter-FR w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{chapter-FR-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{chapter-FR-text}}}<html></p> </div> </html>{{{chapter-FR-link}}}<html> </div> </div> </div><!-- chapter message cta --> </html>}}{{#if:{{{chapter-GB-title|}}}|<html> <div class="chapter-message chapter-GB w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{chapter-GB-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{chapter-GB-text}}}<html></p> </div> </html>{{{chapter-GB-link}}}<html> </div> </div> </div><!-- chapter message cta --> </html>}}{{#if:{{{chapter-HU-title|}}}|<html> <div class="chapter-message chapter-HU w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{chapter-HU-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{chapter-HU-text}}}<html></p> </div> </html>{{{chapter-HU-link}}}<html> </div> </div> </div><!-- chapter message cta --> </html>}}{{#if:{{{chapter-IT-title|}}}|<html> <div class="chapter-message chapter-IT w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{chapter-IT-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{chapter-IT-text}}}<html></p> </div> </html>{{{chapter-IT-link}}}<html> </div> </div> </div><!-- chapter message cta --> </html>}}{{#if:{{{chapter-NL-title|}}}|<html> <div class="chapter-message chapter-NL w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{chapter-NL-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{chapter-NL-text}}}<html></p> </div> </html>{{{chapter-NL-link}}}<html> </div> </div> </div><!-- chapter message cta --> </html>}}{{#if:{{{chapter-NO-title|}}}|<html> <div class="chapter-message chapter-NO w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{chapter-NO-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{chapter-NO-text}}}<html></p> </div> </html>{{{chapter-NO-link}}}<html> </div> </div> </div><!-- chapter message cta --> </html>}}{{#if:{{{chapter-NZ-title|}}}|<html> <div class="chapter-message chapter-NZ w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{chapter-NZ-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{chapter-NZ-text}}}<html></p> </div> </html>{{{chapter-NZ-link}}}<html> </div> </div> </div><!-- chapter message cta --> </html>}}{{#if:{{{chapter-PL-title|}}}|<html> <div class="chapter-message chapter-PL w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{chapter-PL-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{chapter-PL-text}}}<html></p> </div> </html>{{{chapter-PL-link}}}<html> </div> </div> </div><!-- chapter message cta --> </html>}}{{#if:{{{chapter-SE-title|}}}|<html> <div class="chapter-message chapter-SE w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{chapter-SE-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{chapter-SE-text}}}<html></p> </div> </html>{{{chapter-SE-link}}}<html> </div> </div> </div><!-- chapter message cta --> </html>}}{{#if:{{{chapter-UY-title|}}}|<html> <div class="chapter-message chapter-UY w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{chapter-UY-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{chapter-UY-text}}}<html></p> </div> </html>{{{chapter-UY-link}}}<html> </div> </div> </div><!-- chapter message cta --> </html>}}{{#if:{{{chapter-MX-title|}}}|<html> <div class="chapter-message chapter-MX w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{chapter-MX-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{chapter-MX-text}}}<html></p> </div> </html>{{{chapter-MX-link}}}<html> </div> </div> </div><!-- chapter message cta --> </html>}}{{#if:{{{chapter-CO-title|}}}|<html> <div class="chapter-message chapter-CO w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{chapter-CO-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{chapter-CO-text}}}<html></p> </div> </html>{{{chapter-CO-link}}}<html> </div> </div> </div><!-- chapter message cta --> </html>}}{{#if:{{{chapter-BR-title|}}}|<html> <div class="chapter-message chapter-BR w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{chapter-BR-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{chapter-BR-text}}}<html></p> </div> </html>{{{chapter-BR-link}}}<html> </div> </div> </div><!-- chapter message cta --> </html>}}{{#if:{{{chapter-AT-title|}}}|<html> <div class="chapter-message chapter-AT w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{chapter-AT-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{chapter-AT-text}}}<html></p> </div> </html>{{{chapter-AT-link}}}<html> </div> </div> </div><!-- chapter message cta --> </html>}}{{#if:{{{wikiminute-LATAM-title|}}}|<html> <div class="wikiminute-LATAM w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{wikiminute-LATAM-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{wikiminute-LATAM-text}}}<html></p> </div> </div> </div> </div><!-- wikiminute cta --> </html>}}{{#if:{{{wikiminute-ES-title|}}}|<html> <div class="wikiminute-ES w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{wikiminute-ES-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{wikiminute-ES-text}}}<html></p> </div> </div> </div> </div><!-- wikiminute cta --> </html>}}{{#if:{{{wikiminute-ptBR-title|}}}|<html> <div class="wikiminute-ptBR w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{wikiminute-ptBR-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{wikiminute-ptBR-text}}}<html></p> </div> </div> </div> </div><!-- wikiminute cta --> </html>}}{{#if:{{{wikiminute-FR-title|}}}|<html> <div class="wikiminute-FR w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{wikiminute-FR-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{wikiminute-FR-text}}}<html></p> </div> </div> </div> </div><!-- wikiminute cta --> </html>}}{{#if:{{{wikiminute-IT-title|}}}|<html> <div class="wikiminute-IT w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{wikiminute-IT-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{wikiminute-IT-text}}}<html></p> </div> </div> </div> </div><!-- wikiminute cta --> </html>}}{{#if:{{{wikiminute-DE-title|}}}|<html> <div class="wikiminute-DE w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{wikiminute-DE-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{wikiminute-DE-text}}}<html></p> </div> </div> </div> </div><!-- wikiminute cta --> </html>}}{{#if:{{{wikiminute-NL-title|}}}|<html> <div class="wikiminute-NL w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{wikiminute-NL-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{wikiminute-NL-text}}}<html></p> </div> </div> </div> </div><!-- wikiminute cta --> </html>}}{{#if:{{{wikiminute-DK-title|}}}|<html> <div class="wikiminute-DK w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{wikiminute-DK-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{wikiminute-DK-text}}}<html></p> </div> </div> </div> </div><!-- wikiminute cta --> </html>}}{{#if:{{{wikiminute-SV-title|}}}|<html> <div class="wikiminute-SV w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{wikiminute-SV-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{wikiminute-SV-text}}}<html></p> </div> </div> </div> </div><!-- wikiminute cta --> </html>}}{{#if:{{{wikiminute-NB-title|}}}|<html> <div class="wikiminute-NB w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{wikiminute-NB-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{wikiminute-NB-text}}}<html></p> </div> </div> </div> </div><!-- wikiminute cta --> </html>}}{{#if:{{{wikiminute-JA-title|}}}|<html> <div class="wikiminute-JA w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{wikiminute-JA-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{wikiminute-JA-text}}}<html></p> </div> </div> </div> </div><!-- wikiminute cta --> </html>}}{{#if:{{{donor-badge-title|}}}|<html> <div class="donor-badge-cta w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{donor-badge-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{donor-badge-text}}}<html></p> </div> <button type="button" class="btn btn-blue stick-to-bottom getDonorBadge"></html>{{{donor-badge-link}}}<html></button> </div> </div> </div><!-- donor badge cta --> <!-- donor badge pop up --> <dialog id="frb-dialog-donor-badge" class="frb frb-dialog" closedby="any"> <button class="frb-dialog-close"> <svg width="24px" height="24px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M5.29289 5.29289C5.68342 4.90237 6.31658 4.90237 6.70711 5.29289L12 10.5858L17.2929 5.29289C17.6834 4.90237 18.3166 4.90237 18.7071 5.29289C19.0976 5.68342 19.0976 6.31658 18.7071 6.70711L13.4142 12L18.7071 17.2929C19.0976 17.6834 19.0976 18.3166 18.7071 18.7071C18.3166 19.0976 17.6834 19.0976 17.2929 18.7071L12 13.4142L6.70711 18.7071C6.31658 19.0976 5.68342 19.0976 5.29289 18.7071C4.90237 18.3166 4.90237 17.6834 5.29289 17.2929L10.5858 12L5.29289 6.70711C4.90237 6.31658 4.90237 5.68342 5.29289 5.29289Z" fill="#0F1729"/> </svg> </button> <div class="frb-dialog-title"> You're all set! </div> <div class="frb-dialog-text"> We’re initially introducing the Donor Badge for a limited trial period, so your badge will expire in a few weeks. But if you like it, please let us know so we can make it a more permanent feature! <br><br> Please click on your badge to give us feedback or to hide it if you’d prefer not to see it. Thank you again for supporting Wikipedia. </div> </dialog><!-- end donor badge pop up --> </html>}}<html> </div> </div> </div> </html>{{#if:{{{return|}}}|<html> <div class="ty-return" style="display: none;"> <div class="w-68p mw-640"> <a href="https://en.wikipedia.org" class="btn btn-lt-blue"></html>{{{return}}}<html></a> </div> </div> </html>}}<html> </main> <footer> </html>{{#if:{{{social-footer-wmf|}}}|<html> <div class="social-footer mw-1120" style="display: none;"> <div class="social-footer-col"> <div class="social-footer-logo"> <img src="https://upload.wikimedia.org/wikipedia/donate/b/b0/Wmf-logo-stacked-reverse.svg" alt="Wikimedia Foundation" style="width: auto; height: 80px;"> </div> <div class="social-footer-links"> <p></html>{{{social-footer-wmf}}}<html></p> <ul> <li><a href="https://www.instagram.com/wikimediafoundation/" class="" aria-label="</html>{{{social-footer-wmf-1-title}}}<html>" target="_blank"><svg width="24" height="24" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"><path d="M12,4.622c2.403,0,2.688,0.009,3.637,0.052c0.877,0.04,1.354,0.187,1.671,0.31c0.42,0.163,0.72,0.358,1.035,0.673 c0.315,0.315,0.51,0.615,0.673,1.035c0.123,0.317,0.27,0.794,0.31,1.671c0.043,0.949,0.052,1.234,0.052,3.637 s-0.009,2.688-0.052,3.637c-0.04,0.877-0.187,1.354-0.31,1.671c-0.163,0.42-0.358,0.72-0.673,1.035 c-0.315,0.315-0.615,0.51-1.035,0.673c-0.317,0.123-0.794,0.27-1.671,0.31c-0.949,0.043-1.233,0.052-3.637,0.052 s-2.688-0.009-3.637-0.052c-0.877-0.04-1.354-0.187-1.671-0.31c-0.42-0.163-0.72-0.358-1.035-0.673 c-0.315-0.315-0.51-0.615-0.673-1.035c-0.123-0.317-0.27-0.794-0.31-1.671C4.631,14.688,4.622,14.403,4.622,12 s0.009-2.688,0.052-3.637c0.04-0.877,0.187-1.354,0.31-1.671c0.163-0.42,0.358-0.72,0.673-1.035 c0.315-0.315,0.615-0.51,1.035-0.673c0.317-0.123,0.794-0.27,1.671-0.31C9.312,4.631,9.597,4.622,12,4.622 M12,3 C9.556,3,9.249,3.01,8.289,3.054C7.331,3.098,6.677,3.25,6.105,3.472C5.513,3.702,5.011,4.01,4.511,4.511 c-0.5,0.5-0.808,1.002-1.038,1.594C3.25,6.677,3.098,7.331,3.054,8.289C3.01,9.249,3,9.556,3,12c0,2.444,0.01,2.751,0.054,3.711 c0.044,0.958,0.196,1.612,0.418,2.185c0.23,0.592,0.538,1.094,1.038,1.594c0.5,0.5,1.002,0.808,1.594,1.038 c0.572,0.222,1.227,0.375,2.185,0.418C9.249,20.99,9.556,21,12,21s2.751-0.01,3.711-0.054c0.958-0.044,1.612-0.196,2.185-0.418 c0.592-0.23,1.094-0.538,1.594-1.038c0.5-0.5,0.808-1.002,1.038-1.594c0.222-0.572,0.375-1.227,0.418-2.185 C20.99,14.751,21,14.444,21,12s-0.01-2.751-0.054-3.711c-0.044-0.958-0.196-1.612-0.418-2.185c-0.23-0.592-0.538-1.094-1.038-1.594 c-0.5-0.5-1.002-0.808-1.594-1.038c-0.572-0.222-1.227-0.375-2.185-0.418C14.751,3.01,14.444,3,12,3L12,3z M12,7.378 c-2.552,0-4.622,2.069-4.622,4.622S9.448,16.622,12,16.622s4.622-2.069,4.622-4.622S14.552,7.378,12,7.378z M12,15 c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S13.657,15,12,15z M16.804,6.116c-0.596,0-1.08,0.484-1.08,1.08 s0.484,1.08,1.08,1.08c0.596,0,1.08-0.484,1.08-1.08S17.401,6.116,16.804,6.116z"></path></svg></a></li> <li><a href="https://bsky.app/profile/wikimediafoundation.org" class="" aria-label="</html>{{{social-footer-wmf-2-title}}}<html>" target="_blank"><svg width="24" height="24" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"><path d="M6.3,4.2c2.3,1.7,4.8,5.3,5.7,7.2.9-1.9,3.4-5.4,5.7-7.2,1.7-1.3,4.3-2.2,4.3.9s-.4,5.2-.6,5.9c-.7,2.6-3.3,3.2-5.6,2.8,4,.7,5.1,3,2.9,5.3-5,5.2-6.7-2.8-6.7-2.8,0,0-1.7,8-6.7,2.8-2.2-2.3-1.2-4.6,2.9-5.3-2.3.4-4.9-.3-5.6-2.8-.2-.7-.6-5.3-.6-5.9,0-3.1,2.7-2.1,4.3-.9h0Z"></path></svg></a></li> <li><a href="https://www.facebook.com/wikimediafoundation/" class="" aria-label="</html>{{{social-footer-wmf-3-title}}}<html>" target="_blank"><svg width="24" height="24" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"><path d="M12 2C6.5 2 2 6.5 2 12c0 5 3.7 9.1 8.4 9.9v-7H7.9V12h2.5V9.8c0-2.5 1.5-3.9 3.8-3.9 1.1 0 2.2.2 2.2.2v2.5h-1.3c-1.2 0-1.6.8-1.6 1.6V12h2.8l-.4 2.9h-2.3v7C18.3 21.1 22 17 22 12c0-5.5-4.5-10-10-10z"></path></svg></a></li> <li><a href="https://www.linkedin.com/company/wikimedia-foundation" class="" aria-label="</html>{{{social-footer-wmf-4-title}}}<html>" target="_blank"><svg width="24" height="24" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"><path d="M19.7,3H4.3C3.582,3,3,3.582,3,4.3v15.4C3,20.418,3.582,21,4.3,21h15.4c0.718,0,1.3-0.582,1.3-1.3V4.3 C21,3.582,20.418,3,19.7,3z M8.339,18.338H5.667v-8.59h2.672V18.338z M7.004,8.574c-0.857,0-1.549-0.694-1.549-1.548 c0-0.855,0.691-1.548,1.549-1.548c0.854,0,1.547,0.694,1.547,1.548C8.551,7.881,7.858,8.574,7.004,8.574z M18.339,18.338h-2.669 v-4.177c0-0.996-0.017-2.278-1.387-2.278c-1.389,0-1.601,1.086-1.601,2.206v4.249h-2.667v-8.59h2.559v1.174h0.037 c0.356-0.675,1.227-1.387,2.526-1.387c2.703,0,3.203,1.779,3.203,4.092V18.338z"></path></svg></a></li> </ul> </div> </div><!-- social-footer-col WMF --> <div class="social-footer-col"> <div class="social-footer-logo"> <img src="https://upload.wikimedia.org/wikipedia/donate/c/ca/Wikipedia-logo-stacked-reverse.svg" alt="Wikipedia - The Free Encyclopedia" style="width: auto; height: 80px;"> </div> <div class="social-footer-links"> <p></html>{{{social-footer-wiki}}}<html></p> <ul> <li><a href="https://www.tiktok.com/@wikipedia" class="" aria-label="</html>{{{social-footer-wiki-1-title}}}<html>" target="_blank"><svg width="24" height="24" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"><path d="M16.708 0.027c1.745-0.027 3.48-0.011 5.213-0.027 0.105 2.041 0.839 4.12 2.333 5.563 1.491 1.479 3.6 2.156 5.652 2.385v5.369c-1.923-0.063-3.855-0.463-5.6-1.291-0.76-0.344-1.468-0.787-2.161-1.24-0.009 3.896 0.016 7.787-0.025 11.667-0.104 1.864-0.719 3.719-1.803 5.255-1.744 2.557-4.771 4.224-7.88 4.276-1.907 0.109-3.812-0.411-5.437-1.369-2.693-1.588-4.588-4.495-4.864-7.615-0.032-0.667-0.043-1.333-0.016-1.984 0.24-2.537 1.495-4.964 3.443-6.615 2.208-1.923 5.301-2.839 8.197-2.297 0.027 1.975-0.052 3.948-0.052 5.923-1.323-0.428-2.869-0.308-4.025 0.495-0.844 0.547-1.485 1.385-1.819 2.333-0.276 0.676-0.197 1.427-0.181 2.145 0.317 2.188 2.421 4.027 4.667 3.828 1.489-0.016 2.916-0.88 3.692-2.145 0.251-0.443 0.532-0.896 0.547-1.417 0.131-2.385 0.079-4.76 0.095-7.145 0.011-5.375-0.016-10.735 0.025-16.093z"></path></svg></a></li> <li><a href="https://www.linkedin.com/company/wikipedia-the-free-encyclopedia/" class="" aria-label="</html>{{{social-footer-wiki-2-title}}}<html>" target="_blank"><svg width="24" height="24" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"><path d="M19.7,3H4.3C3.582,3,3,3.582,3,4.3v15.4C3,20.418,3.582,21,4.3,21h15.4c0.718,0,1.3-0.582,1.3-1.3V4.3 C21,3.582,20.418,3,19.7,3z M8.339,18.338H5.667v-8.59h2.672V18.338z M7.004,8.574c-0.857,0-1.549-0.694-1.549-1.548 c0-0.855,0.691-1.548,1.549-1.548c0.854,0,1.547,0.694,1.547,1.548C8.551,7.881,7.858,8.574,7.004,8.574z M18.339,18.338h-2.669 v-4.177c0-0.996-0.017-2.278-1.387-2.278c-1.389,0-1.601,1.086-1.601,2.206v4.249h-2.667v-8.59h2.559v1.174h0.037 c0.356-0.675,1.227-1.387,2.526-1.387c2.703,0,3.203,1.779,3.203,4.092V18.338z"></path></svg></a></li> <li><a href="https://www.instagram.com/wikipedia/" class="" aria-label="</html>{{{social-footer-wiki-3-title}}}<html>" target="_blank"><svg width="24" height="24" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"><path d="M12,4.622c2.403,0,2.688,0.009,3.637,0.052c0.877,0.04,1.354,0.187,1.671,0.31c0.42,0.163,0.72,0.358,1.035,0.673 c0.315,0.315,0.51,0.615,0.673,1.035c0.123,0.317,0.27,0.794,0.31,1.671c0.043,0.949,0.052,1.234,0.052,3.637 s-0.009,2.688-0.052,3.637c-0.04,0.877-0.187,1.354-0.31,1.671c-0.163,0.42-0.358,0.72-0.673,1.035 c-0.315,0.315-0.615,0.51-1.035,0.673c-0.317,0.123-0.794,0.27-1.671,0.31c-0.949,0.043-1.233,0.052-3.637,0.052 s-2.688-0.009-3.637-0.052c-0.877-0.04-1.354-0.187-1.671-0.31c-0.42-0.163-0.72-0.358-1.035-0.673 c-0.315-0.315-0.51-0.615-0.673-1.035c-0.123-0.317-0.27-0.794-0.31-1.671C4.631,14.688,4.622,14.403,4.622,12 s0.009-2.688,0.052-3.637c0.04-0.877,0.187-1.354,0.31-1.671c0.163-0.42,0.358-0.72,0.673-1.035 c0.315-0.315,0.615-0.51,1.035-0.673c0.317-0.123,0.794-0.27,1.671-0.31C9.312,4.631,9.597,4.622,12,4.622 M12,3 C9.556,3,9.249,3.01,8.289,3.054C7.331,3.098,6.677,3.25,6.105,3.472C5.513,3.702,5.011,4.01,4.511,4.511 c-0.5,0.5-0.808,1.002-1.038,1.594C3.25,6.677,3.098,7.331,3.054,8.289C3.01,9.249,3,9.556,3,12c0,2.444,0.01,2.751,0.054,3.711 c0.044,0.958,0.196,1.612,0.418,2.185c0.23,0.592,0.538,1.094,1.038,1.594c0.5,0.5,1.002,0.808,1.594,1.038 c0.572,0.222,1.227,0.375,2.185,0.418C9.249,20.99,9.556,21,12,21s2.751-0.01,3.711-0.054c0.958-0.044,1.612-0.196,2.185-0.418 c0.592-0.23,1.094-0.538,1.594-1.038c0.5-0.5,0.808-1.002,1.038-1.594c0.222-0.572,0.375-1.227,0.418-2.185 C20.99,14.751,21,14.444,21,12s-0.01-2.751-0.054-3.711c-0.044-0.958-0.196-1.612-0.418-2.185c-0.23-0.592-0.538-1.094-1.038-1.594 c-0.5-0.5-1.002-0.808-1.594-1.038c-0.572-0.222-1.227-0.375-2.185-0.418C14.751,3.01,14.444,3,12,3L12,3z M12,7.378 c-2.552,0-4.622,2.069-4.622,4.622S9.448,16.622,12,16.622s4.622-2.069,4.622-4.622S14.552,7.378,12,7.378z M12,15 c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S13.657,15,12,15z M16.804,6.116c-0.596,0-1.08,0.484-1.08,1.08 s0.484,1.08,1.08,1.08c0.596,0,1.08-0.484,1.08-1.08S17.401,6.116,16.804,6.116z"></path></svg></a></li> <li><a href="https://bsky.app/profile/wikipedia.org" class="" aria-label="</html>{{{social-footer-wiki-4-title}}}<html>" target="_blank"><svg width="24" height="24" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"><path d="M6.3,4.2c2.3,1.7,4.8,5.3,5.7,7.2.9-1.9,3.4-5.4,5.7-7.2,1.7-1.3,4.3-2.2,4.3.9s-.4,5.2-.6,5.9c-.7,2.6-3.3,3.2-5.6,2.8,4,.7,5.1,3,2.9,5.3-5,5.2-6.7-2.8-6.7-2.8,0,0-1.7,8-6.7,2.8-2.2-2.3-1.2-4.6,2.9-5.3-2.3.4-4.9-.3-5.6-2.8-.2-.7-.6-5.3-.6-5.9,0-3.1,2.7-2.1,4.3-.9h0Z"></path></svg></a></li> <li><a href="https://www.facebook.com/wikipedia" class="" aria-label="</html>{{{social-footer-wiki-5-title}}}<html>" target="_blank"><svg width="24" height="24" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"><path d="M12 2C6.5 2 2 6.5 2 12c0 5 3.7 9.1 8.4 9.9v-7H7.9V12h2.5V9.8c0-2.5 1.5-3.9 3.8-3.9 1.1 0 2.2.2 2.2.2v2.5h-1.3c-1.2 0-1.6.8-1.6 1.6V12h2.8l-.4 2.9h-2.3v7C18.3 21.1 22 17 22 12c0-5.5-4.5-10-10-10z"></path></svg></a></li> <li><a href="https://www.youtube.com/@wikipedia" class="" aria-label="</html>{{{social-footer-wiki-6-title}}}<html>" target="_blank"><svg width="24" height="24" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"><path d="M21.8,8.001c0,0-0.195-1.378-0.795-1.985c-0.76-0.797-1.613-0.801-2.004-0.847c-2.799-0.202-6.997-0.202-6.997-0.202 h-0.009c0,0-4.198,0-6.997,0.202C4.608,5.216,3.756,5.22,2.995,6.016C2.395,6.623,2.2,8.001,2.2,8.001S2,9.62,2,11.238v1.517 c0,1.618,0.2,3.237,0.2,3.237s0.195,1.378,0.795,1.985c0.761,0.797,1.76,0.771,2.205,0.855c1.6,0.153,6.8,0.201,6.8,0.201 s4.203-0.006,7.001-0.209c0.391-0.047,1.243-0.051,2.004-0.847c0.6-0.607,0.795-1.985,0.795-1.985s0.2-1.618,0.2-3.237v-1.517 C22,9.62,21.8,8.001,21.8,8.001z M9.935,14.594l-0.001-5.62l5.404,2.82L9.935,14.594z"></path></svg></a></li> </ul> </div> </div><!-- social-footer-col Wikipedia --> </div><!-- end social footer --></html>}}<html> <div class="footer-legal mw-620"> <p></html>{{{chapters}}}<html></p> <p></html>{{{questions}}}<html></p> <p></html>{{{terms}}}<html></p> </div><!-- End footer-legal --> </footer> </div> </html> <div style="display: none;" class="loggedinonly editor-tools"><!--edit page snippet--> [{{fullurl:{{FULLPAGENAME}}|action=edit}} Edit this page] · [{{fullurl:Template:Thank You 2021|action=edit}} Edit template] · [https://thankyou.wikipedia.org/wiki/Special:PrefixIndex?prefix=Thank+You&namespace=0 Other languages] </div> {{Hide banners}}<!-- Important - do not remove! --> {{TY share links.js}} __NOEDITSECTION__ __NOINDEX__ [[Category:Thank You page]] {{#if:{{{survey-code|}}}|[[Category:Thank You page with active survey]]}} 82qzg6t6x3u7iafmhnt2jor06r69xsp 1406 1405 2026-04-02T15:20:02Z EHughes (WMF) 9 Adjust width of TY share section 1406 wikitext text/x-wiki {{Add viewport tag.js}}<!-- Critical javascript to add the viewport tag. Other js is in MediaWiki:ThankYouPage.js --> {{DISPLAYTITLE:{{{title}}}}} <html> <style> /* 2024-03-27 - Stopgaps to hide most obvious Vector 2022 breakage */ .skin-vector .vector-header, .skin-vector .vector-sitenotice-container, .skin-vector .vector-column-start, .skin-vector .vector-page-titlebar, .skin-vector .vector-page-toolbar { display: none; } /* --- wiki resets --- */ html, body { margin: 0; padding: 0; background: #fff; } #jump-to-nav { display: none; } #firstHeading, #contentSub, #siteSub { display: none } /* Hiding the Interface on Desktop and Mobile, identical to Template: HideInterface */ /* Desktop */ #mw-navigation, #mw-page-base, #mw-head-base, h1#firstHeading, footer.mw-footer, #contentSub, #contentSub2, .patrollink, #catlinks { display: none; } /* Mobile */ body.mw-mobile-mode .header, body.mw-mobile-mode #mw-mf-last-modified, body.mw-mobile-mode .pre-content, body.mw-mobile-mode #footer { display: none; } body div#content { height: 100%; margin: 0; padding: 0; border: none; } .mw-body-content p { margin: 0; } /* Hide jump to navigation and search from screenreaders */ .mw-jump-link { display: none !important; } /* --- end wiki resets --- */ /* Hack to hide all the broken stuff beyond the header on apps (page content service) */ #pcs .ty-page { font-size: 0; } #pcs .ty-page * { display: none; } #pcs .ty-page .header-home, #pcs .ty-page .header-home * { display: inherit; } html, body { text-align: center; } html { -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } * { box-sizing: border-box; } /* stylelint-disable selector-list-comma-newline-after */ address, article, aside, blockquote, canvas, dd, div, dl, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, hr, li, main, nav, noscript, ol, output, p, .p, pre, section, table, tfoot, ul, video, .mw-body-content h1, .mw-body-content h2, .mw-body-content h3, .mw-body-content ul { margin: 0; padding: 0; border: 0; } article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary { display: block; } /* stylelint-enable */ a { text-decoration: none; color: inherit; } a:visited { color: inherit; } a:hover { text-decoration: none; } a:focus { text-decoration: none; outline: 1px dotted currentColor; } body { margin: 0; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Lato', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif; font-size: 100%; text-align: left; direction: ltr; } .mar-bottom { margin-bottom: 16px; } h1, h2 { font-size: inherit; font-weight: 700; } h1, .h1 { font-size: 1.875rem; } @media ( min-width: 768px ) and ( max-width: 1280px ) { h1, .h1 { font-size: 2.9375rem; } } @media ( min-width: 1281px ) { h1, .h1 { font-size: 4rem; } } h2, .h2 { margin-bottom: 2rem; font-size: 1.125rem; } @media ( min-width: 768px ) { h2, .h2 { margin-bottom: 2rem; } } @media ( min-width: 768px ) and ( max-width: 1280px ) { h2, .h2 { font-size: 1.25rem; } } @media ( min-width: 1281px ) { h2, .h2 { font-size: 1.375rem; } } h3, .h3 { margin-bottom: 2rem; font-size: 1.125rem; } @media ( min-width: 768px ) { h3, .h3 { margin-bottom: 2rem; } } @media ( min-width: 768px ) and ( max-width: 1280px ) { h3, .h3 { font-size: 1.25rem; } } @media ( min-width: 1281px ) { h3, .h3 { font-size: 1.375rem; } } p, .p { font-size: 0.95rem; line-height: 1.466; } strong { font-weight: 700; } .w-100p { width: 100%; max-width: 100%; } .flex.flex-medium { display: flex; flex-direction: column; } @media ( min-width: 768px ) { .flex.flex-medium { flex-direction: row; flex-wrap: nowrap; } } .flex.flex-wrap { flex-wrap: wrap; } .flex.flex-justify-center { justify-content: center; } .flex.flex-align-center { align-items: center; } .page-intro-text a, .page-intro-text a:visited, .page-intro-text a.external, .page-intro-text a.external:visited { color: #3a25ff; } .page-intro-text a:hover { text-decoration: underline; } /* Don't break "Wikimedia Foundation" link across lines */ .page-intro-text a { white-space: nowrap; } .page-intro-text p { margin-bottom: 1rem; } .header-home a { transition: 0.3s all; } .header-home .header-content { position: relative; z-index: 1; } .card { position: relative; } @media ( min-width: 768px ) { .img-left-content-right .card { display: flex; justify-content: flex-end; } } /* buttons */ .btn { display: inline-block; font-weight: 700; border-radius: 5px; cursor: pointer; padding: 1rem 1.5rem; padding: 0.6rem 1rem; transition: 0.3s all; border: 0; outline: 0; } .btn:hover { box-shadow: 0 10px 20px 0 rgba( 0, 0, 0, 0.21 ); } @media ( min-width: 1200px ) { .btn.btn-blue, .btn.btn-pink { padding: 11px 1.5rem; } } .btn.btn-blue, .btn.btn-blue:hover { background-color: #3a25ff; color: #fff; } .btn.btn-blue:focus { outline: 1px dotted #3a25ff; } .btn.btn-pink, .btn.btn-pink:hover { background-color: #d40356; color: #fff; } .btn.btn-pink:focus { outline: 1px dotted #d40356; } .btn.btn-lt-blue { background-color: #eeeaff; color: #3a25ff; } .btn.btn-lt-blue:hover { background-color: #3a25ff; color: #fff; } .btn.btn-lt-blue:focus { outline: 1px dotted #3a25ff; } .btn.btn-lt-pink { background-color: #fde8f0; color: #d40356; } .btn.btn-lt-pink:hover { background-color: #d40356; color: #fff; } .btn.btn-lt-pink:focus { outline: 1px dotted #d40356; } /* header */ .header-home { position: relative; } .top-nav { z-index: 2000; width: 100%; } .site-main-nav { padding: 2vh 0; text-align: center; } .logo-container { width: 180px; margin: auto; } .logo-container a { display: block; } .logo-container a:hover { opacity: 0.8; } .logo-container svg { width: 100%; max-width: 17.4375rem; margin: auto; } .pcs-theme-black .logo-container svg path, .pcs-theme-dark .logo-container svg path { fill: #fff !important; } .btn-label-a11y { font-size: 0; height: 1px; overflow: hidden; display: block; } /* hero */ .header-img { width: 100%; position: relative; left: 50%; right: 50%; margin-left: -50%; margin-right: -50%; padding: 0; height: auto; margin-bottom: 1rem; /* overflow-x: hidden; */ } @media ( min-width: 768px ) { .header-img { height: 175px; } } .header-bg-img { position: relative; height: 25vh; width: 100%; background-image: url( https://upload.wikimedia.org/wikipedia/donate/9/9a/Thank_You_2019_Header.svg ); background-size: cover; background-position: -20vh center; background-repeat: repeat-x; } @media ( min-width: 768px ) { .header-bg-img { position: absolute; height: 100%; width: 100%; z-index: -1; background-position: 0 0; } } .mw-1120 { max-width: 70rem; height: 100%; padding: 0; margin: 0 auto; position: relative; } .vision-container { position: relative; width: 100%; text-align: center; } .vision { padding: 0.4rem 1rem; background: #fefd34 !important; color: #000 !important; font-size: 1.1rem; font-weight: bold; line-height: 1.2; } @media ( min-width: 360px ) { .vision { font-size: 1.4rem; } } @media ( min-width: 768px ) { .vision-container { position: absolute; bottom: -2rem; padding: 0 2rem; } .vision { display: inline-block; } } @media ( min-width: 1024px ) { .vision { font-size: 1.8rem; } } /* thank you message */ .w-68p { width: 100%; text-align: center; } @media ( min-width: 1024px ) { .w-68p { width: 68%; margin: auto; } } .page-intro { margin-top: 1rem; margin-left: 0; padding: 0 1rem; } @media ( min-width: 768px ) { .page-intro { margin-top: 4rem; margin-bottom: 2rem; } } .page-intro p { font-size: 1rem; } @media ( min-width: 768px ) { .page-intro p { font-size: 1.1rem; } } .page-intro p.ty-cookie-explain, .page-intro p.tax-disclaimer-en, .page-intro p.tax-disclaimer-es, .page-intro p.tax-disclaimer-frfr, .page-intro p.tax-disclaimer-cs, .page-intro p.tax-disclaimer-frca, .page-intro p.tax-disclaimer-ar, .page-intro p.tax-disclaimer-ptpt, { font-size: 0.85rem; line-height: 1.3; } /* collapse empty parts */ .page-intro p br { display: none; } /* share links */ .social-share { margin-top: auto; margin-bottom: 1rem; width: 100%; align-self: flex-end; } @media ( min-width: 768px ) { .mw-620 { max-width: 38.75rem; margin-left: auto; margin-right: auto; } .mw-640 { max-width: 40rem; margin-left: auto; margin-right: auto; } .social-share { display: flex; align-items: center; } } .social-share a { color: #3a25ff; } .social-share a:hover { color: #3a25ff; } .share-cta { width: 100%; text-align: center; margin-bottom: 1rem; padding: 0 1.5rem; } @media ( min-width: 768px ) { .share-cta { width: 40%; text-align: left; display: inline-block; margin: 0 0 0 auto; } } .share-cta .h2 { font-size: 1.1rem; } .social-list { width: 100%; text-align: center; } @media ( min-width: 768px ) { .social-list { width: 49%; display: inline-block; margin: 0.25rem auto 0 0; } } .social-list a { display: inline-flex; align-items: center; transition: 0.3s all; margin: 4px; font-size: 1rem; font-weight: 700; position: relative; padding-left: 50px; } .social-list a::before { content: ''; background-size: 48px 24px; background-repeat: no-repeat; background-position: left center; display: inline-block; width: 24px; height: 24px; position: absolute; top: 50%; left: 17px; transform: translateY(-50%); } .social-list a:hover::before { background-position: right center; } .social-list a.share-facebook::before { background-image: url('https://upload.wikimedia.org/wikipedia/donate/2/20/Btn-sprite-facebook.png'); } .social-list a.share-twitter::before { background-image: url('https://upload.wikimedia.org/wikipedia/donate/6/6a/Btn-sprite-x.png'); } .social-list a.share-bluesky::before { background-image: url('https://upload.wikimedia.org/wikipedia/donate/f/f7/Btn-sprite-bluesky.png'); } .social-list a.share-linkedin::before { background-image: url('https://upload.wikimedia.org/wikipedia/donate/6/68/Btn-sprite-linkedin.png'); } .social-list a.share-email::before { background-image: url('https://upload.wikimedia.org/wikipedia/donate/e/ea/Btn-sprite-email.png'); } /* featured action */ .cta-primary { display: none; background: #fdf3f8; padding: 2rem 1rem; } .cta-primary.endowment { padding-bottom: 1rem; } .cta-primary .card { color: #000; text-align: center; } @media ( min-width: 768px ) { .cta-primary { padding: 2rem 2rem; } .cta-primary .card { padding: 0; text-align: inherit; } } .cta-primary .card-content.w-68p { text-align: inherit; } @media ( min-width: 768px ) { .cta-primary .card-content { padding: 2rem 0; margin-top: 0; } } .cta-primary .h2, .cta-primary .h3 { color: #d40356; line-height: 1.2; } .cta .card-content { position: relative; z-index: 2; } @media ( min-width: 768px ) { .cta .card-content { padding: 0.75rem 0; } } .cta .card-content .h2 { font-size: 1.5rem; margin-bottom: 1rem; } @media ( min-width: 1024px ) { .cta .card-content .h2 { font-size: 2rem; } } .cta .card-content p, .cta .card-content .p { margin-bottom: 1.5rem; } @media ( min-width: 768px ) { .cta .card-content p, .cta .card-content .p { margin-bottom: 1.25rem; } } .cta-description { font-size: 1rem; } @media ( min-width: 1024px ) { .cta-description { font-size: 1.1rem; } } .small { font-size: 0.8rem; } .cta-primary a { color: #d40356; } .cta-primary p a:hover { color: #3a25ff; } .w-25p, .w-32p, .w-75p { width: 100%; } @media ( min-width: 768px ) { .w-25p { width: 25%; } .w-32p { width: 32%; } .w-75p { width: 75%; } } .sm-img-container { vertical-align: top; } .sm-img { position: relative; overflow: hidden; height: auto; width: 35%; max-width: 90px; max-height: 90px; } @media ( min-width: 768px ) { .sm-img { width: 70%; max-width: 120px; max-height: 120px; } } .endowment-text { margin-right: 1rem; text-align: center; } @media ( min-width: 768px ) { .endowment-text { text-align: left; } } /* other ctas */ .other-ctas { display: none; padding: 2rem 1rem; background: #f8f9fa; } .other-ctas .h2 { text-align: center; font-size: 1.5rem; margin-bottom: 2rem; } @media ( min-width: 768px ) { .other-ctas .h2 { font-size: 2rem; } } .rounded { border-radius: 5px; } .shadow { border: 1px solid #e5e5e5; } .other-ctas .focus-block { display: none; } .focus-block { background-color: #fff; overflow: hidden; display: block; margin-bottom: 1rem; } .focus-block .card, .focus-block .card-content { height: 100%; display: block; } .focus-block .card-content { padding: 1.5rem; } @media ( max-width: 768px ) { .cta-primary.endowment .btn { display: block; width: calc(100% - 3rem); } } .focus-block .h3 { margin-bottom: 0.3125rem; font-size: 1.5rem; line-height: 1.2; } .focus-block .h3 a, .focus-block .h3 a:visited { color: #000000; } .focus-block .mar-bottom { padding-bottom: 2rem; display: block; } .focus-block .stick-to-bottom { position: absolute; bottom: 22px; } @media ( min-width: 768px ) { .other-ctas .flex.flex-medium { flex-wrap: wrap; } .focus-block { margin-left: 0.5rem; margin-right: 0.5rem; flex: 0 0 20rem; } .focus-block .h3 { margin-bottom: 0.3125rem; } .focus-block .card-content .btn { max-width: calc( 100% - 3rem ); } } .focus-block p { margin-bottom: 1rem; } .focus-block p a { text-decoration: underline; } .focus-block a:hover { color: #3a25ff; } /* return to Wikipedia */ .ty-return { background: #f8f9fa; padding-bottom: 2rem; } /* footer */ footer { padding: 3rem 1.5rem; background: #54595d; color: #fff !important; } footer a, footer a:visited { color: inherit !important; text-decoration: underline; transition: 0.3s all; } footer a:hover { text-decoration: underline; } @media ( min-width: 768px ) { footer { padding: 3rem 0 4rem; } } footer .footer-legal { text-align: center; } footer .footer-legal p, footer .footer-legal .p { padding-bottom: 0.75rem; font-size: 0.75rem; line-height: 1.3; } @media ( min-width: 768px ) and ( max-width: 1280px ) { footer .footer-legal p, footer .footer-legal .p { font-size: 0.85rem; } } @media ( min-width: 1281px ) { footer .footer-legal p, footer .footer-legal .p { font-size: 0.95rem; } } .editor-tools { text-align: center; } /* WP25 Birthday CTA Block */ .wp25-block { background-color: #FBDFC5; padding: 2rem; position: relative; } .wp25-block .wp25-icon { position: absolute; bottom: -155px; left: 0; width: 436px; } .wp25-block .wp25-icon svg { width: 100%; height: auto; z-index: 1; } .wp25-block .wp25-icon svg path { fill: #FBDFC5; } .wp25-block .wp25-logo { width: 200px; height: auto; margin: 0 auto 1em; } .wp25-block .wp25-logo svg { width: 100%; height: auto; } .wp25-block .focus-block { position: relative; } .wp25-block .card { position: relative; z-index: 2; } .wp25-block .mgfe-event-invite { text-align: center; position: relative; background-color: #fff; overflow: hidden; display: block; margin-bottom: 1rem; padding: 2rem; } .wp25-block .mgfe-event-invite h3 { font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Lato', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif; margin-top: 0; } .wp25-block .mgfe-event-invite h4 { font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Lato', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif; margin-top: 2em; margin-bottom: 0; } .wp25-block .mgfe-event-invite p { margin: 0 0 1em; } .wp25-block .mgfe-event-invite a { text-decoration: none; } /* -- Endowment Dialog -- */ .frb-dialog { display: none; /* needed for unsupported browsers */ background: #fff; border: 1px solid #aaa; border-radius: 2px; box-shadow: 0 2px 2px #0003; width: 90%; max-width: 600px; padding: 40px 20px; } .frb-dialog[open] { display: block; } .frb-dialog::backdrop { background: #ffffffa6; } .frb-dialog-close { border: none; background: none; margin: 0; padding: 0; cursor: pointer; position: absolute; top: 20px; left: 20px; width: 24px; height: 24px; opacity: 0.5; } .frb-dialog-close:hover { opacity: 1; } .frb-dialog-title { font-size: 17px; color: #000; font-weight: bold; border: 0; text-align: center; margin-bottom: 20px; } .frb-dialog-text { font-size: 15px; line-height: 1.44; margin-bottom: 20px; max-width: 530px; } .frb-dialog-text form { width: 100%; max-width: 352px; margin: 0 auto; } .frb-dialog-text label.lg-form-legend { display: block; } .frb-dialog-text input { padding: 10px 15px; display: block; width: 100%; max-width: 350px; margin-bottom: 10px; } .frb-dialog-text input:focus, .frb-dialog-text input:hover { outline-color: #d40356; } .frb-dialog-text .btn.lg-submit { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Lato', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif; font-size: 14px; min-width: 150px; } @media (min-width: 720px) { .frb-dialog { padding: 40px; } } .donor-badge-cta button { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Lato', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif; font-size: 14px; } /* social media footer */ .social-footer { display: flex; position: relative; padding: 0 25px 35px; margin: 0 auto 35px; } .social-footer-col { flex: 0 1 50%; padding: 0 25px 0 0; display: flex; position: relative; } .social-footer-logo { flex: 0 1 auto; margin: 0 25px 0 0; } .social-footer-links ul { list-style: none outside none; position: relative; left: -10px; margin-top: 10px; } .social-footer-links li { display: inline-block; } .social-footer-links ul li svg { max-height: 24px; filter: invert(1); } .social-footer-links a { padding: 8px; display: flex; } .social-footer-col:first-child::after { content: ''; width: 1px; height: 100%; background: #fff; position: absolute; top: 0; right: 0; opacity: 0.25; } .social-footer-col:last-child { padding: 0 0 0 25px; } .social-footer::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; background: #fff; opacity: 0.25; height: 1px; } @media (max-width: 768px) { .social-footer { flex-direction: column; padding: 0 25px 10px; } .social-footer-col { padding: 0 0 25px 0; } .social-footer-col:first-child::after { content: none } .social-footer-col:last-child { padding: 0 0 25px 0; } .social-footer-logo { flex: 0 0 120px; margin: 0 15px 0 0; text-align: center; } } @media (max-width: 500px) { .social-footer { padding: 0 0 10px; } .social-footer-logo { flex: 0 0 80px; max-width: 80px; margin: 0 15px 0 0; text-align: center; } .social-footer-logo img { width: 80px!important; height: auto!important; } } </style> </html> <div class="ty-page plainlinks" lang="{{{language|en}}}"><!--feature-endowment feature-matching feature-survey--> <div class="header-home"> <div class="top-nav"> <div class="site-main-nav"> <div class="logo-container"> <html> <a href="https://wikimediafoundation.org/"> <span class="btn-label-a11y">Wikimedia Foundation</span> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 279 62"><path d="M83.46 25.83l4.378-14.102h5.738l4.34 14.102 4.893-14.102h5.959l-8.608 24.515h-4.082L90.67 19.18 85.3 36.243h-4.083L72.61 11.728h5.959L83.46 25.83zm28.287-14.102h5.518v24.515h-5.518V11.728zm11.587 0h5.517V21.81l9.306-10.083h6.805l-9.821 10.85c.846 1.17 2.428 3.362 4.708 6.54 2.281 3.179 3.973 5.554 5.113 7.125h-6.437l-7.246-9.682-2.464 2.74v6.942h-5.518V11.728h.037zm25.049 0h5.518v24.515h-5.518V11.728zm33.693 9.097l-6.657 13.408h-3.274l-6.621-13.408v15.418h-5.517V11.728h7.467l6.363 13.481 6.4-13.481h7.431v24.515h-5.518V20.825h-.074zm29.39-9.097v4.859h-12.285v5.078h11.035v4.677h-11.035v5.078h12.69v4.823H193.7V11.728h17.766zm24.13 3.215c2.354 2.155 3.531 5.115 3.531 8.914 0 3.8-1.14 6.832-3.458 9.061-2.28 2.229-5.811 3.325-10.52 3.325h-8.423V11.728h8.718c4.451 0 7.798 1.096 10.152 3.215zm-4.009 14.577c1.361-1.278 2.023-3.105 2.023-5.517 0-2.41-.662-4.274-2.023-5.553-1.361-1.315-3.421-1.936-6.217-1.936h-3.09V31.42h3.495c2.501 0 4.451-.62 5.812-1.9zm12.322-17.792h5.517v24.515h-5.517V11.728zm29.169 24.515l-2.281-5.298h-10.336l-2.28 5.298h-5.849l10.667-24.515h5.334L279 36.243h-5.922zm-7.467-17.208l-3.09 7.124h6.18l-3.09-7.124zM82.651 47.386v2.96h4.782v1.68h-4.781v4.42h-1.84v-10.74h7.21v1.68h-5.37zm25.822 7.526c-1.103 1.06-2.427 1.571-4.046 1.571-1.618 0-2.942-.511-4.046-1.57-1.103-1.06-1.655-2.376-1.655-3.947 0-1.57.552-2.886 1.655-3.945 1.104-1.06 2.428-1.571 4.046-1.571 1.619 0 2.943.511 4.046 1.57 1.104 1.06 1.656 2.375 1.656 3.946 0 1.571-.552 2.887-1.656 3.946zm-1.324-6.686c-.735-.767-1.655-1.132-2.722-1.132-1.066 0-1.986.365-2.722 1.132a3.825 3.825 0 00-1.103 2.74c0 1.096.368 2.01 1.103 2.74.736.731 1.656 1.133 2.722 1.133 1.067 0 1.987-.365 2.722-1.133a3.822 3.822 0 001.104-2.74c0-1.096-.368-2.009-1.104-2.74zm16.957 5.736c.478.585 1.177.877 2.023.877.846 0 1.508-.292 2.023-.877.515-.584.736-1.352.736-2.338v-5.955h1.839v6.028c0 1.535-.441 2.74-1.287 3.58-.846.84-1.95 1.243-3.274 1.243s-2.428-.402-3.274-1.242c-.846-.84-1.287-2.01-1.287-3.58v-6.03h1.839v5.956c-.073.986.184 1.754.662 2.338zm26.815-8.293h1.839V56.41h-1.986l-6.106-7.818v7.818h-1.839V45.67h1.839l6.29 8.001V45.67h-.037zm22.254 1.425c1.03.95 1.545 2.228 1.545 3.909 0 1.68-.515 2.996-1.508 3.946-.993.986-2.538 1.461-4.635 1.461h-3.568V45.67h3.715c1.913 0 3.421.475 4.451 1.425zm-.258 3.945c0-2.447-1.434-3.69-4.23-3.69h-1.839v7.344h2.023c1.325 0 2.318-.292 3.017-.913.662-.622 1.029-1.535 1.029-2.74zm14.971 2.923l-1.067 2.448h-1.949l4.745-10.741h1.95l4.745 10.741h-1.95l-1.067-2.448h-5.407zm4.672-1.68l-1.95-4.421-1.949 4.42h3.899zm17.766-4.933v9.061h-1.839v-9.06h-3.274v-1.645h8.387v1.644h-3.274zm14.529-1.68h1.839V56.41h-1.839V45.67zm23.1 9.243c-1.103 1.06-2.428 1.571-4.046 1.571-1.619 0-2.943-.511-4.046-1.57-1.104-1.06-1.655-2.376-1.655-3.947 0-1.57.551-2.886 1.655-3.945 1.103-1.06 2.427-1.571 4.046-1.571 1.618 0 2.943.511 4.046 1.57 1.104 1.06 1.655 2.375 1.655 3.946 0 1.571-.551 2.887-1.655 3.946zm-1.324-6.686c-.736-.767-1.655-1.132-2.722-1.132s-1.986.365-2.722 1.132a3.822 3.822 0 00-1.104 2.74c0 1.096.368 2.01 1.104 2.74.736.731 1.655 1.133 2.722 1.133s1.986-.365 2.722-1.133a3.82 3.82 0 001.103-2.74c0-1.096-.367-2.009-1.103-2.74zm22.621-2.557h1.84V56.41h-1.987l-6.106-7.818v7.818h-1.839V45.67h1.839l6.29 8.001-.037-8.001zM33.84 49.943c9.307-1.315 16.442-9.243 16.442-18.815 0-5.846-2.648-11.034-6.804-14.541l-9.638 9.572v23.784zm-5.407 0V26.16l-9.637-9.609a18.896 18.896 0 00-6.805 14.541c0 9.61 7.136 17.537 16.442 18.852zm19.348-35.365c4.451 4.42 6.879 10.302 6.879 16.513 0 6.211-2.465 12.13-6.879 16.514-4.45 4.42-10.373 6.832-16.626 6.832a23.545 23.545 0 01-16.626-6.832c-4.414-4.384-6.915-10.266-6.915-16.514 0-6.247 2.465-12.13 6.879-16.514.367-.365.772-.73 1.177-1.096L10.3 8.147c-.405.366-.773.731-1.178 1.096-2.869 2.85-5.113 6.138-6.658 9.828A30.563 30.563 0 000 31.091c0 4.165.81 8.22 2.464 12.02 1.582 3.69 3.826 6.979 6.658 9.828 2.87 2.85 6.18 5.079 9.895 6.613A31.132 31.132 0 0031.119 62c4.193 0 8.276-.804 12.101-2.448a31.698 31.698 0 009.895-6.613c2.869-2.85 5.113-6.138 6.658-9.828a30.565 30.565 0 002.464-12.02c0-4.165-.81-8.22-2.464-12.02-1.582-3.69-3.826-6.978-6.658-9.828-.368-.365-.773-.73-1.177-1.096l-5.334 5.334c.405.33.773.695 1.177 1.097zM31.12 0c5.37 0 9.71 4.311 9.71 9.645s-4.34 9.646-9.71 9.646c-5.37 0-9.711-4.312-9.711-9.646 0-5.334 4.34-9.645 9.71-9.645z"></path></svg> </a> </html> </div> </div> </div> <div class="header-content"> <div class="header-img"> <div class="header-bg-img"></div> <div class="vision-container"> <div class="vision ty-vision" style="display: none;">{{{header-new}}}</div> {{#if:{{{recurUpgrade-header-yes|}}}|<div class="vision recurUpgrade-yes" style="display: none;">{{{recurUpgrade-header-yes}}}</div>}} {{#if:{{{recurUpgrade-header-no|}}}|<div class="vision recurUpgrade-no" style="display: none;">{{{recurUpgrade-header-no}}}</div>}} </div> </div> <div class="page-intro"> <div class="page-intro-text flex flex-medium flex-align-center"> <div class="w-68p"> <p class="ty-text" style="display: none;"> <strong> {{{receipt}}} </strong> <br> <span id="ty-recurringOrganic" style="display: none;"> {{#if:{{{monthly-organic|}}}|{{{monthly-organic}}}<br>}} </span> <span id="ty-recurringOrganicAnnual" style="display: none;"> {{#if:{{{annual-organic|}}}|{{{annual-organic}}}<br>}} </span> <span id="ty-recurringConversion" style="display: none;"> {{#if:{{{monthly-conversion|}}}|{{{monthly-conversion}}}<br>}} </span> <span id="ty-recurringConversionAnnual" style="display: none;"> {{#if:{{{annual-conversion}}}|{{{annual-conversion}}}<br>}} </span> </p> <p class="ty-text" style="display: none;"> {{{header-text1}}} {{{header-text2}}} </p> {{#if:{{{recurUpgrade-text-yes1|}}}|<p class="recurUpgrade-yes recurUpgrade-receipt" style="display: none;"><strong>{{{recurUpgrade-text-yes1}}}</strong></p>}} {{#if:{{{recurUpgrade-text-yes2|}}}|<p class="recurUpgrade-yes" style="display: none;">{{{recurUpgrade-text-yes2}}}</p>}} {{#if:{{{recurUpgrade-text-no1|}}}|<p class="recurUpgrade-no" style="display: none;"><strong>{{{recurUpgrade-text-no1}}}</strong></p>}} {{#if:{{{recurUpgrade-text-no2|}}}|<p class="recurUpgrade-no" style="display: none;">{{{recurUpgrade-text-no2}}}</p>}} {{#if:{{{tax-disclaimer-en|}}}|<p class="tax-disclaimer-en" style="display:none;">{{{tax-disclaimer-en}}}</p>}} {{#if:{{{tax-disclaimer-es|}}}|<p class="tax-disclaimer-es" style="display:none;">{{{tax-disclaimer-es}}}</p>}} {{#if:{{{tax-disclaimer-frfr|}}}|<p class="tax-disclaimer-frfr" style="display:none;">{{{tax-disclaimer-frfr}}}</p>}} {{#if:{{{tax-disclaimer-frca|}}}|<p class="tax-disclaimer-frca" style="display:none;">{{{tax-disclaimer-frca}}}</p>}} {{#if:{{{tax-disclaimer-ar|}}}|<p class="tax-disclaimer-ar" style="display:none;">{{{tax-disclaimer-ar}}}</p>}} {{#if:{{{tax-disclaimer-cs|}}}|<p class="tax-disclaimer-cs" style="display:none;">{{{tax-disclaimer-cs}}}</p>}} {{#if:{{{tax-disclaimer-ptpt|}}}|<p class="tax-disclaimer-ptpt" style="display:none;">{{{tax-disclaimer-ptpt}}}</p>}} {{#if:{{{tax-disclaimer-jajp|}}}|<p class="tax-disclaimer-jajp" style="display:none;">{{{tax-disclaimer-jajp}}}</p>}} {{#ifeq:{{{language|}}}|en|<p class="ty-cookie-explain">We value your support and try to prevent donors like you from receiving more fundraising messages. If you clear your browser's cookies, or visit on a different device, you may still see additional banners. Copying the link to this page and opening it on your other devices will suppress the banners.</p>}} {{#ifeq:{{{language|}}}|pt-br|<p class="ty-cookie-explain">Valorizamos seu apoio e tentamos evitar que doadores como você recebam mais mensagens sobre arrecadação de fundos. Se você limpar os cookies do seu navegador ou acessar o site em um dispositivo diferente, ainda poderá ver outros banners. Copiar o link desta página e abri-lo em seus outros dispositivos suprimirá os banners.</p>}} {{#ifeq:{{{language|}}}|es-419|<p class="ty-cookie-explain">Valoramos tu apoyo y tratamos de evitar que donantes como tú reciban más mensajes de recaudación de fondos. Si eliminas las cookies de tu navegador o accedes desde otro dispositivo, aún podrías ver anuncios adicionales. Copiar el enlace a esta página y abrirlo en tus otros dispositivos suprimirá los anuncios.</p>}} {{#ifeq:{{{language|}}}|it|<p class="ty-cookie-explain">Apprezziamo il tuo sostegno e cerchiamo di evitare che donatori come te ricevano ulteriori messaggi di raccolta fondi. Se cancelli i cookies dal browser o visiti da un altro dispositivo, potresti comunque vedere altri banner. Copiare il link di questa pagina e aprirlo su altri dispositivi impedirà la comparsa dei banner.</p>}} {{#ifeq:{{{language|}}}|ja|<p class="ty-cookie-explain">皆様の温かいご支援に感謝し、寄付者の皆様に募金のメッセージが過度に届かないよう配慮しております。ブラウザのCookieを削除したり、別のデバイスからアクセスされた場合は、再びバナーが表示されることがあります。その場合は、このページのリンクをコピーして他のデバイスで開くことで、バナーの表示を停止できます。</p>}} {{#ifeq:{{{language|}}}|ar|<p class="ty-cookie-explain">نقدر دعمكم ونسعى جاهدين لتجنب المتبرعين أمثالكم من تلقي المزيد من رسائل جمع التبرعات. إذا قمتم بمسح ملفات تعريف الارتباط في متصفحكم، أو زيارة الموقع من جهاز مختلف، فقد لا تزالون ترون إعلاناتٍ إضافية. سيؤدي نسخ رابط هذه الصفحة وفتحها على أجهزتك الأخرى إلى إخفاء الإعلانات.</p>}} {{#ifeq:{{{language|}}}|sv|<p class="ty-cookie-explain">Vi värdesätter ditt stöd och försöker se till att givare som du inte får fler insamlingsmeddelanden. Om du rensar webbläsarens cookies eller besöker oss från en annan enhet, kan du ändå se sådana banners. Vill du slippa dem, så kopiera länken till den här sidan och öppna den på dina andra enheter.</p>}} {{#ifeq:{{{language|}}}|nl|<p class="ty-cookie-explain">We waarderen je steun en proberen te voorkomen dat donateurs zoals jij nog meer berichten over fondsenwerving ontvangen. Als je de cookies van je browser wist of de website op een ander apparaat gebruikt, kun je nog steeds banners te zien krijgen. Als je deze link kopieert en op een ander apparaat opent, zie je geen banners meer.</p>}} {{#ifeq:{{{language|}}}|nb|<p class="ty-cookie-explain">Vi setter pris på støtten din, og prøver å forhindre at givere som deg skal få flere innsamlingsmeldinger. Hvis du rensker informasjonskapslene dine eller besøker oss med en annen enhet, kan det fortsatt hende du ser flere bannere. Hvis du kopierer lenken til denne siden og åpner den på de andre enhetene vil du ikke se flere bannere.</p>}} {{#ifeq:{{{language|}}}|es|<p class="ty-cookie-explain">Valoramos mucho tu apoyo e intentamos que las personas que ya donáis no recibáis más mensajes pidiendo apoyo. Si eliminas las cookies de tu navegador o entras en Wikipedia desde otro dispositivo, quizás sigas viendo mensajes de recaudación. Para que no aparezcan más, copia el enlace a esta página y ábrelo en el resto de dispositivos.</p>}} {{#ifeq:{{{language|}}}|fr|<p class="ty-cookie-explain">Votre soutien est important pour nous, c’est pourquoi nous nous efforçons de limiter les messages d’appels aux dons pour les donateurs et donatrices comme vous. Si vous effacez les témoins de connexion (cookies) ou consultez le site sur un autre appareil, il est possible que vous voyiez de nouvelles bannières. Copier le lien de cette page et l’ouvrir sur vos différents appareils empêchera l’affichage de ces bannières.</p>}} {{#ifeq:{{{language|}}}|cs|<p class="ty-cookie-explain">Vážíme si vaší podpory a snažíme se vám jako dárci neposílat další fundraisingová sdělení. Bannery se vám mohou stále zobrazovat, pokud vymažete cookies ve svém prohlížeči nebo navštívíte stránky z jiného zařízení. Pokud však zkopírujete odkaz na tuto stránku a otevřete jej na jiném zařízení, bannery by se již zobrazovat neměly.</p>}} {{#ifeq:{{{language|}}}|pt|<p class="ty-cookie-explain">Valorizamos o seu apoio e tentamos evitar que os doadores recebam mais mensagens de angariação de fundos. Se limpar os cookies do seu navegador ou visitar o site num dispositivo diferente, ainda poderá ver banners adicionais. Copiar a ligação para esta página e abri-la nos seus outros dispositivos irá suprimir os banners.</p>}} </div> </div> </div> </div> </div> <html> <main id="ty-content"> </html>{{#ifeq:{{{language|}}}|en|<html> <!-- start WP25 birthday block note: english only--!> <div class="wp25-block" style="display: none"> <div class="mw-1120 mgfe-event-invite rounded"> <span class="wp25-icon"> <svg width="436" height="305" viewBox="0 0 436 305" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M163.903 60.8027C164.165 57.4343 160.971 56.3309 162.742 52.7883C165.762 46.7194 180.049 47.7212 178.974 55.8372C178.814 56.9987 175.693 60.8027 178.001 60.8027H194.712V45.3982C194.712 41.9572 198.836 44.9917 200.273 45.1224C208.389 45.9209 209.449 31.9247 203.482 28.7742C199.242 26.5383 197.718 30.1535 196.44 29.9212C196.063 29.8486 194.712 28.4692 194.712 28.3531V12.2953H177.667C177.261 10.1901 178.873 8.68011 179.018 6.72007C179.715 -2.74619 161.087 -1.70085 161.929 6.66199C162.016 7.56215 165.152 12.2953 162.902 12.2953H146.191V29.0065C146.191 31.4601 151.171 28.0772 152.434 28.0918C158.895 28.2079 160.884 41.2313 154.96 44.3238C151.011 46.3855 149.907 43.4236 146.191 43.7576C146.176 49.4344 146.22 55.1258 146.191 60.8027C152.085 60.7446 157.994 60.8462 163.889 60.8027H163.903Z" fill="#CFCFCF"/> <path d="M5.575 125.613C6.76554 125.526 7.81112 125.816 8.71129 126.339H3.61517C4.23948 126.005 4.86357 125.671 5.575 125.613Z" fill="#CFCFCF"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M0.014533 304.572H17.7129V304.586H32.3916C32.3916 304.586 32.4348 304.572 32.4639 304.572H114.408C114.408 304.572 114.524 304.586 114.582 304.586H129.305C129.305 304.586 129.406 304.572 129.479 304.572H211.423C211.423 304.572 211.466 304.586 211.495 304.586H226.174L227.147 304.572H309.105C309.105 304.572 309.222 304.586 309.28 304.586H324.147L324.176 304.572H338.695L406.193 304.586H436V135.95H435.942V109.947C432.951 110.528 422.817 109.033 420.842 110.252C419.259 111.239 421.931 113.185 422.164 114.913C423.209 122.593 408.53 124.379 405.626 117.628C404.174 114.245 407.151 113.156 407.107 109.933H373.351C370.955 109.933 373.525 105.621 373.656 104.982C375.224 96.8658 360.792 94.7025 357.38 101.163C355.145 105.403 358.76 106.927 358.527 108.19C358.455 108.568 357.075 109.918 356.959 109.918H341.889C341.889 109.918 340.902 109.004 340.902 108.931V93.2071C340.902 91.0292 336.807 93.3813 335.936 93.5119C326.252 94.9929 326.179 75.6828 335.936 77.1783C336.807 77.309 340.902 79.6465 340.902 77.4832V60.772H324.844C321.113 60.772 325.062 65.5197 325.163 67.0441C325.628 73.8389 311.341 75.5812 308.467 69.28C306.841 65.7084 310.209 63.5596 310.02 62.5143C309.948 62.1368 308.568 60.7865 308.452 60.7865H292.394V77.4977C292.394 80.0821 287.124 76.5685 286.166 76.5685C277.788 76.5685 277.876 95.1671 286.761 94.2089C287.748 94.1072 292.394 90.6517 292.394 93.2216V108.945C292.394 108.945 291.48 109.933 291.407 109.933H276.336C272.634 109.933 276.511 105.766 276.671 104.299C277.585 95.8059 258.783 94.3395 259.582 104.358C259.713 106.071 262.543 109.933 259.291 109.933H243.887V126.644C243.887 128.981 247.72 125.787 248.867 125.657C258.115 124.669 257.578 143.224 249.52 142.687C248.46 142.615 243.902 139.406 243.902 141.714V157.438C243.902 157.438 242.987 158.426 242.914 158.426H226.203C225.797 160.531 227.408 162.041 227.553 164.001C228.265 173.583 209.811 172.001 210.639 164.088C210.711 163.435 213.993 158.426 211.452 158.426H195.714C195.714 158.426 194.726 157.511 194.726 157.438V142.368C194.726 142.252 196.077 140.872 196.454 140.8C197.311 140.64 198.719 142.513 200.345 142.687C208.955 143.631 210.174 124.611 200.272 125.599C198.835 125.744 194.712 128.764 194.712 125.323V109.918H178.654C176.287 109.918 178.959 105.214 179.046 104.358C180.019 94.6589 160.999 95.5591 161.943 104.285C162.103 105.751 165.979 109.918 162.277 109.918H147.206C147.206 109.918 146.219 109.004 146.219 108.931V92.2198C144.114 91.8132 142.604 93.4248 140.644 93.57C131.889 94.2089 131.889 76.4524 140.644 77.1057C142.604 77.2509 144.114 78.8625 146.219 78.4559C146.248 72.5613 146.19 66.6522 146.219 60.7575C143.62 60.7866 129.305 60.322 128.535 61.4399C128.506 64.8228 131.642 65.2874 129.987 69.1058C127.707 74.3907 116.847 74.5649 114.19 69.5124C111.954 65.2729 115.57 63.7484 115.337 62.4853C115.265 62.1078 113.885 60.7575 113.769 60.7575H80.986C78.6484 60.7575 81.8425 56.9246 81.9732 55.7776C82.9024 47.0518 63.8972 45.8902 64.8699 55.8501C65.0442 57.6069 66.6992 58.7684 66.2346 60.7575H49.1896V77.4687C49.1896 79.6029 44.747 77.1928 43.6146 77.0912C33.7563 76.2926 35.0774 95.08 43.5564 94.1798C45.4729 93.9765 46.4456 91.8858 48.5218 92.2198C49.6107 92.9747 49.1605 107.334 49.1896 109.904C51.8901 109.875 65.1167 110.339 66.2492 109.599C68.1656 108.336 65.1168 106.071 64.9136 104.285C63.9408 95.3123 82.9314 95.3123 81.9586 104.285C81.857 105.272 78.4016 109.918 80.9714 109.918H97.6826V126.949C99.7878 127.384 101.327 125.686 103.258 125.584C112.753 125.119 110.633 144.197 102.75 142.571C102.111 142.44 97.6826 139.072 97.6826 141.685V158.397H80.9714C78.5468 158.397 81.8134 154.273 81.9441 153.431C83.425 144.371 64.3908 143.529 64.8554 152.821C64.957 154.767 66.6557 156.291 66.2201 158.397H49.175V140.698C52.7176 140.771 53.5598 143.849 57.2766 141.918C63.2584 138.811 62.4744 124.756 54.068 125.569C52.3113 125.744 51.1496 127.399 49.1605 126.934C49.1169 121.257 49.2041 115.566 49.1605 109.889C43.2659 109.947 37.3568 109.846 31.4621 109.889C31.0121 111.864 32.6671 113.025 32.8268 114.797C33.7706 124.408 15.4189 123.377 15.9126 115.566C16.0287 113.679 18.2646 112.082 17.6983 109.904H0C0 115.348 0.0580752 120.836 0 126.281V304.514L0.014533 304.572ZM8.71129 126.339C7.81112 125.816 6.76554 125.526 5.575 125.613C4.86357 125.671 4.23948 126.005 3.61517 126.339H8.71129Z" fill="#CFCFCF"/> </svg> </span> <div class="card"> <div class="card-content"> <div class="wp25-logo"> <svg viewBox="0 0 1231 186" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M1210.93 47.7427C1207.02 47.7427 1203.26 49.3236 1200.02 52.3097C1199.21 53.0474 1198.22 53.4339 1197.17 53.4339C1196.11 53.4339 1195.02 53.0123 1194.21 52.2746C1193.37 51.4666 1192.91 50.4126 1192.91 49.2182V0H1143.61C1142.45 0 1141.36 0.456696 1140.55 1.29983C1139.81 2.10784 1139.39 3.16176 1139.39 4.25082C1139.39 5.33987 1139.78 6.28841 1140.51 7.09641C1143.51 10.3284 1145.09 14.0523 1145.09 17.9869C1145.09 28.6316 1133.3 37.2737 1118.77 37.2737C1104.23 37.2737 1092.45 28.6316 1092.45 17.9869C1092.45 14.0874 1094.03 10.3284 1097.02 7.09641C1097.76 6.28841 1098.15 5.30474 1098.15 4.25082C1098.15 3.1969 1097.72 2.10784 1096.99 1.29983C1096.18 0.456696 1095.12 0 1093.92 0H1044.62V49.2182C1044.62 50.3775 1045.08 51.4666 1045.93 52.2746C1046.74 53.0123 1047.79 53.4339 1048.88 53.4339C1049.97 53.4339 1050.92 53.0474 1051.73 52.3097C1054.97 49.3236 1058.7 47.7427 1062.64 47.7427C1073.3 47.7427 1081.96 59.5115 1081.96 74.0205C1081.96 88.5295 1073.3 100.298 1062.64 100.298C1058.73 100.298 1054.97 98.7174 1051.73 95.7313C1050.92 94.9935 1049.94 94.6071 1048.88 94.6071C1047.83 94.6071 1046.74 95.0287 1045.93 95.7664C1045.08 96.5744 1044.62 97.6283 1044.62 98.8228V148.041H1093.92C1095.09 148.041 1096.18 148.498 1096.99 149.341C1097.72 150.149 1098.15 151.203 1098.15 152.292C1098.15 153.381 1097.76 154.329 1097.02 155.137C1094.03 158.369 1092.45 162.093 1092.45 166.028C1092.45 176.673 1104.23 185.315 1118.77 185.315C1133.3 185.315 1145.09 176.673 1145.09 166.028C1145.09 162.128 1143.51 158.369 1140.51 155.137C1139.78 154.329 1139.39 153.346 1139.39 152.292C1139.39 151.238 1139.81 150.149 1140.55 149.341C1141.36 148.498 1142.41 148.041 1143.61 148.041H1192.91V98.8228C1192.91 97.6635 1193.37 96.5744 1194.21 95.7664C1195.02 95.0287 1196.08 94.6071 1197.17 94.6071C1198.26 94.6071 1199.21 94.9935 1200.02 95.7313C1203.26 98.7174 1206.99 100.298 1210.93 100.298C1221.59 100.298 1230.25 88.5295 1230.25 74.0205C1230.25 59.5115 1221.59 47.7427 1210.93 47.7427ZM1092.55 111.716L1092.83 108.8C1093.26 107.465 1094.45 105.779 1096.42 103.741C1098.39 101.704 1102.4 98.1553 1108.46 93.1316L1117.29 85.7893C1118.73 84.5597 1120 83.3301 1121.05 82.1006C1122.11 80.8359 1123.03 79.5009 1123.76 78.0254C1124.47 76.5499 1125.03 75.0042 1125.38 73.3179C1125.73 71.6667 1125.91 69.8399 1125.91 67.8726C1125.91 65.7648 1125.38 63.938 1124.33 62.4273C1123.27 60.8816 1121.93 60.1087 1120.32 60.1087C1118.42 60.1087 1116.55 60.7059 1114.83 61.9004C1113.1 63.0948 1112.12 64.2893 1111.87 65.4486C1111.73 66.1863 1111.73 66.9592 1111.87 67.8023C1111.98 68.7509 1111.98 69.4184 1111.91 69.8048C1111.69 70.7182 1111.27 71.5613 1110.64 72.2639C1110.01 72.9666 1109.27 73.5287 1108.42 73.9151C1107.58 74.3015 1106.73 74.4772 1105.92 74.4772C1105.11 74.4772 1104.3 74.2664 1103.67 73.88C1103.04 73.4935 1102.58 72.9666 1102.26 72.3342C1101.95 71.7019 1101.84 71.0695 1101.84 70.3669C1101.84 69.313 1102.12 68.2239 1102.62 67.0997C1103.14 66.0107 1103.85 64.9568 1104.73 63.938C1105.64 62.9192 1106.7 61.9706 1107.89 61.0924C1109.13 60.2141 1110.43 59.4412 1111.84 58.7386C1115.28 57.1226 1118.98 56.2795 1123.03 56.2795C1127.07 56.2795 1130.2 57.228 1132.88 59.1602C1135.52 61.0924 1136.89 63.8677 1136.89 67.4159C1136.89 68.9617 1136.75 70.3669 1136.47 71.6667C1136.19 72.9666 1135.62 74.2664 1134.78 75.6365C1133.93 76.9715 1133.12 78.1659 1132.35 79.1496C1131.58 80.1684 1130.34 81.4331 1128.59 82.9788C1126.86 84.5246 1125.35 85.8244 1124.05 86.8783C1122.74 87.9323 1120.81 89.478 1118.27 91.5156L1112.19 96.3285C1109.34 98.5769 1107.44 101.282 1106.49 104.409H1117.57C1119.54 104.409 1121.3 103.741 1122.88 102.406C1123.87 101.598 1124.82 100.439 1125.77 98.9985C1125.63 99.1038 1129.92 101.001 1129.82 100.966C1128.23 105.427 1126.79 109.011 1125.45 111.61H1092.45H1092.48L1092.55 111.716ZM1169.16 80.4845C1168.35 80.5548 1167.29 80.6251 1165.92 80.7305C1164.58 80.8359 1163.67 80.9061 1163.21 80.9412C1162.79 80.9764 1162.16 81.0115 1161.42 81.0466C1160.64 81.0818 1159.9 81.0818 1159.16 81.0818C1153.92 81.0818 1149.84 80.9061 1146.88 80.5899C1146.29 82.1006 1144.88 86.1055 1142.7 92.6047C1143.79 92.3236 1145.48 92.0777 1147.69 91.7967C1149.95 91.5156 1151.7 91.4102 1153.01 91.4102C1157.19 91.4102 1160.47 92.4993 1162.79 94.7125C1165.11 96.9257 1166.27 99.8065 1166.27 103.425C1166.27 110.416 1163.28 116.634 1157.37 122.044C1152.94 126.049 1148.01 128.052 1142.66 128.052C1137.31 128.052 1133.3 127.208 1130.66 125.522C1129.01 124.468 1128.16 123.098 1128.16 121.447C1128.16 120.147 1128.69 118.988 1129.71 117.969C1130.73 116.95 1132 116.423 1133.51 116.423C1136.36 116.423 1138.26 117.583 1139.21 119.972C1140.27 122.712 1141.53 124.047 1143.01 124.047C1145.48 124.047 1147.66 122.747 1149.59 120.182C1150.86 118.461 1152.02 116.002 1153.08 112.77C1154.13 109.538 1154.63 106.516 1154.63 103.601C1154.63 102.02 1154.34 100.65 1153.82 99.5605C1153.29 98.4715 1152.58 97.6635 1151.77 97.2068C1150.93 96.7501 1150.02 96.5042 1148.99 96.5042C1146.95 96.5042 1145.19 96.6798 1143.75 97.0663C1142.31 97.4527 1135.83 98.8579 1135.83 98.8579L1145.02 71.8424C1146.04 71.9478 1147.76 72.1234 1150.23 72.3693C1152.69 72.6152 1154.59 72.7558 1155.96 72.7558C1157.16 72.7558 1158.43 72.7206 1159.66 72.6504C1160.92 72.5801 1161.94 72.5099 1162.75 72.4396C1163.6 72.3693 1164.87 72.2288 1166.55 72.0532C1168.28 71.8775 1169.65 71.7019 1170.74 71.6316L1172.43 72.7909L1169.16 80.5899V80.4845Z" fill="#0E65C0"/> <path d="M235.697 5.69118C235.697 6.53432 235.415 7.30719 234.852 8.00981C234.359 8.71242 233.796 9.06373 233.163 9.06373C227.99 9.55556 223.768 11.2418 220.46 14.0874C217.187 16.8628 213.774 22.2729 210.29 30.2124L156.803 150.535C156.451 151.659 155.465 152.222 153.882 152.222C152.615 152.222 151.63 151.659 150.961 150.535L120.945 87.8971L86.4245 150.535C85.7207 151.659 84.7354 152.222 83.5038 152.222C81.9554 152.222 80.935 151.659 80.4775 150.535L27.905 30.2124C24.6324 22.7296 21.1487 17.5302 17.5242 14.6144C13.8997 11.6283 8.83247 9.76634 2.32248 9.06373C1.75946 9.06373 1.23162 8.78269 0.738975 8.2206C0.246327 7.58824 0 6.88562 0 6.11274C0 4.14542 0.563031 3.1969 1.68908 3.1969C6.36923 3.1969 11.2605 3.40768 16.3629 3.82925C21.1135 4.25082 25.5825 4.46161 29.8052 4.46161C34.0279 4.46161 39.0951 4.25082 44.9013 3.82925C50.989 3.40768 56.373 3.1969 61.0531 3.1969C62.1792 3.1969 62.7422 4.18055 62.7422 6.11274C62.7422 8.04493 62.3903 9.0286 61.6865 9.0286C57.0064 9.37991 53.3115 10.5743 50.5668 12.5768C47.8924 14.6144 46.5904 17.2492 46.5904 20.5515C46.5904 22.2378 47.1534 24.3105 48.2795 26.8399L91.7028 124.749L116.37 78.2362L93.3919 30.1773C89.2748 21.6054 85.8614 16.0899 83.2222 13.6307C80.5479 11.1013 76.5363 9.59069 71.1524 9.0286C70.6597 9.0286 70.1671 8.74755 69.6744 8.18546C69.2522 7.5531 69.041 6.85049 69.041 6.07762C69.041 4.1103 69.5337 3.16176 70.519 3.16176C75.1991 3.16176 79.4922 3.37255 83.4334 3.79411C87.1986 4.21568 91.2454 4.42647 95.5033 4.42647C99.7611 4.42647 104.125 4.21568 108.84 3.79411C113.661 3.37255 118.411 3.16176 123.092 3.16176C124.218 3.16176 124.781 4.14543 124.781 6.07762C124.781 8.00981 124.429 8.99346 123.725 8.99346C114.365 9.62582 109.684 12.2606 109.684 16.9681C109.684 19.076 110.775 22.308 112.922 26.6994L128.124 57.4739L143.22 29.299C145.331 25.3293 146.352 21.9567 146.352 19.2516C146.352 12.8227 141.671 9.41503 132.311 8.99346C131.467 8.99346 131.044 8.00981 131.044 6.07762C131.044 5.375 131.255 4.70752 131.678 4.07517C132.1 3.44281 132.522 3.12663 132.944 3.12663C136.287 3.12663 140.44 3.33742 145.331 3.75899C150.011 4.18056 153.847 4.39134 156.873 4.39134C159.055 4.39134 162.222 4.21568 166.409 3.86438C171.723 3.37255 176.157 3.12663 179.746 3.12663C180.591 3.12663 181.013 3.96978 181.013 5.65605C181.013 7.90442 180.239 8.99346 178.69 8.99346C173.236 9.55556 168.837 11.0662 165.459 13.4902C162.187 15.9494 158.034 21.5 153.073 30.1422L132.944 67.3105L160.216 122.817L200.508 29.299C201.915 25.8914 202.619 22.7296 202.619 19.884C202.619 13.0335 197.939 9.41503 188.578 8.99346C187.734 8.99346 187.312 8.00981 187.312 6.07762C187.312 4.14543 187.945 3.16176 189.212 3.16176C192.625 3.16176 196.707 3.37255 201.387 3.79411C205.716 4.21568 209.375 4.42647 212.296 4.42647C215.217 4.42647 218.947 4.21568 222.993 3.79411C227.181 3.37255 230.981 3.16176 234.324 3.16176C235.31 3.16176 235.802 4.0049 235.802 5.69118H235.697ZM271.625 146.425C271.625 147.795 271.238 148.498 270.428 148.498C267.121 148.498 263.179 148.357 258.64 148.041C254.277 147.76 250.617 147.584 247.591 147.584C244.564 147.584 240.905 147.725 236.541 148.041C231.931 148.322 227.955 148.498 224.612 148.498C223.838 148.498 223.416 147.795 223.416 146.425C223.416 145.195 223.803 144.528 224.612 144.423C230.594 143.72 234.641 142.631 236.788 141.085C238.969 139.539 240.06 136.483 240.06 131.916V62.2517C240.06 58.8089 239.603 56.3848 238.723 55.0148C237.878 53.5744 236.365 52.4853 234.219 51.6773C232.037 50.8342 228.87 50.1667 224.647 49.6749C223.873 49.6749 223.451 48.9723 223.451 47.6022C223.451 46.2321 223.838 45.5294 224.647 45.5294C228.025 45.5294 232.002 45.67 236.576 45.9861C240.94 46.2672 244.6 46.4428 247.626 46.4428C250.652 46.4428 254.312 46.3023 258.675 45.9861C263.215 45.7051 267.156 45.5294 270.464 45.5294C271.273 45.5294 271.66 46.2321 271.66 47.6022C271.66 48.9723 271.273 49.6749 270.464 49.6749C266.311 50.1667 263.144 50.8342 260.962 51.6773C258.781 52.4502 257.268 53.5393 256.423 54.9445C255.578 56.3146 255.156 58.7737 255.156 62.2868V131.951C255.156 135.359 255.578 137.783 256.423 139.188C257.268 140.558 258.746 141.682 260.857 142.525C263.039 143.298 266.206 143.966 270.358 144.458C271.202 144.563 271.625 145.231 271.625 146.46V146.425ZM401.648 146.425C401.648 147.795 401.261 148.498 400.452 148.498C397.144 148.498 393.203 148.357 388.593 148.041C384.195 147.76 380.5 147.584 377.474 147.584C374.447 147.584 370.541 147.725 365.404 148.041C360.02 148.322 355.656 148.498 352.349 148.498C351.574 148.498 351.152 147.795 351.152 146.425C351.152 145.195 351.504 144.528 352.173 144.423C358.859 143.65 362.166 142.034 362.166 139.61C362.166 138.24 361.075 136.448 358.894 134.27L329.476 104.373C327.892 102.793 326.52 101.774 325.323 101.282C324.197 100.79 322.614 100.544 320.573 100.544V131.916C320.573 135.324 320.995 137.748 321.84 139.153C322.719 140.523 324.268 141.647 326.449 142.49C328.666 143.263 331.833 143.931 335.95 144.423C336.795 144.528 337.217 145.195 337.217 146.425C337.217 147.795 336.83 148.498 336.021 148.498C332.713 148.498 328.737 148.357 324.162 148.041C319.763 147.76 316.069 147.584 313.042 147.584C310.016 147.584 306.427 147.725 302.063 148.041C297.454 148.322 293.512 148.498 290.205 148.498C289.43 148.498 289.008 147.795 289.008 146.425C289.008 145.195 289.395 144.528 290.205 144.423C296.187 143.72 300.233 142.631 302.38 141.085C304.562 139.539 305.653 136.483 305.653 131.916V62.2517C305.653 58.8089 305.195 56.3848 304.315 55.0148C303.471 53.5744 301.958 52.4853 299.776 51.6773C297.594 50.8342 294.427 50.1667 290.205 49.6749C289.43 49.6749 289.008 48.9723 289.008 47.6022C289.008 46.2321 289.395 45.5294 290.205 45.5294C293.512 45.5294 297.454 45.67 302.063 45.9861C306.427 46.2672 310.086 46.4428 313.042 46.4428C315.998 46.4428 319.763 46.3023 324.162 45.9861C328.772 45.7051 332.713 45.5294 336.021 45.5294C336.795 45.5294 337.217 46.2321 337.217 47.6022C337.217 48.9723 336.83 49.6749 336.021 49.6749C331.833 50.1667 328.631 50.8342 326.449 51.6773C324.268 52.4502 322.755 53.5744 321.84 55.0148C320.995 56.3848 320.573 58.8089 320.573 62.2517V95.7664C322.508 95.7664 324.057 95.5205 325.253 95.0287C326.449 94.5368 327.857 93.4829 329.476 91.9372L362.026 59.8979C364.7 57.3685 366.037 55.5417 366.037 54.4175C366.037 53.0826 365.404 52.0989 364.102 51.4665C362.87 50.7639 360.336 50.1667 356.536 49.6749C355.727 49.6749 355.34 48.9723 355.34 47.6022C355.34 46.2321 355.797 45.5294 356.677 45.5294C358.999 45.5294 362.061 45.67 365.861 45.9861C369.908 46.2672 373.286 46.4428 375.96 46.4428C378.635 46.4428 381.591 46.2672 384.863 45.9159C387.573 45.67 389.895 45.5294 391.831 45.5294C392.535 45.5294 392.851 46.2321 392.851 47.6022C392.851 48.9723 392.464 49.6749 391.655 49.6749C386.904 50.2721 383.174 51.2206 380.465 52.5556C377.755 53.8906 374.483 56.3497 370.682 59.9682L336.865 92.0777L378.916 134.726C381.837 137.783 384.687 139.996 387.502 141.401C390.353 142.736 394.611 143.755 400.241 144.423C401.121 144.528 401.578 145.195 401.578 146.425H401.648ZM463.124 146.425C463.124 147.795 462.737 148.498 461.927 148.498C458.62 148.498 454.678 148.357 450.139 148.041C445.776 147.76 442.116 147.584 439.09 147.584C436.063 147.584 432.404 147.725 428.04 148.041C423.431 148.322 419.454 148.498 416.111 148.498C415.337 148.498 414.915 147.795 414.915 146.425C414.915 145.195 415.302 144.528 416.111 144.423C422.093 143.72 426.14 142.631 428.287 141.085C430.468 139.539 431.559 136.483 431.559 131.916V62.2517C431.559 58.8089 431.102 56.3848 430.222 55.0148C429.378 53.5744 427.864 52.4853 425.683 51.6773C423.501 50.8342 420.334 50.1667 416.111 49.6749C415.337 49.6749 414.915 48.9723 414.915 47.6022C414.915 46.2321 415.302 45.5294 416.111 45.5294C419.489 45.5294 423.466 45.67 428.04 45.9861C432.404 46.2672 436.063 46.4428 439.09 46.4428C442.116 46.4428 445.776 46.3023 450.139 45.9861C454.678 45.7051 458.62 45.5294 461.927 45.5294C462.702 45.5294 463.124 46.2321 463.124 47.6022C463.124 48.9723 462.737 49.6749 461.927 49.6749C457.775 50.1667 454.608 50.8342 452.426 51.6773C450.245 52.4502 448.732 53.5393 447.887 54.9445C447.042 56.3146 446.62 58.7737 446.62 62.2868V131.951C446.62 135.359 447.042 137.783 447.887 139.188C448.732 140.558 450.209 141.682 452.321 142.525C454.503 143.298 457.67 143.966 461.822 144.458C462.666 144.563 463.089 145.231 463.089 146.46L463.124 146.425ZM564.68 75.7068C564.68 84.3841 561.302 91.6912 554.58 97.6283C547.894 103.495 539.625 106.446 529.737 106.446C523.79 106.446 517.984 106.2 512.248 105.708V131.916C512.248 135.359 512.67 137.783 513.515 139.153C514.394 140.523 515.908 141.647 518.054 142.49C520.236 143.263 523.403 143.931 527.555 144.423C528.365 144.528 528.752 145.195 528.752 146.425C528.752 147.795 528.365 148.498 527.555 148.498C524.247 148.498 520.306 148.357 515.767 148.041C511.403 147.76 507.744 147.584 504.717 147.584C501.691 147.584 497.996 147.725 493.598 148.041C488.988 148.322 485.047 148.498 481.739 148.498C480.965 148.498 480.542 147.795 480.542 146.425C480.542 145.195 480.93 144.528 481.739 144.423C487.721 143.72 491.768 142.631 493.914 141.085C496.096 139.539 497.187 136.483 497.187 131.916V62.2517C497.187 58.8089 496.729 56.3848 495.85 55.0148C495.005 53.5744 493.492 52.4853 491.346 51.6773C489.164 50.8342 485.997 50.1667 481.774 49.6749C481 49.6749 480.578 48.9723 480.578 47.6022C480.578 46.2321 480.965 45.5294 481.774 45.5294C485.082 45.5294 489.023 45.67 493.633 45.9861C498.031 46.2672 501.726 46.4428 504.753 46.4428C507.779 46.4428 511.439 46.3023 515.802 45.9861C520.341 45.7051 524.283 45.5294 527.59 45.5294C539.766 45.5294 548.95 48.094 555.249 53.2231C561.583 58.3522 564.75 65.8701 564.75 75.7068H564.68ZM548.211 75.7068C548.211 67.8023 546.276 61.6545 542.37 57.1929C538.499 52.7664 533.361 50.518 526.957 50.518C523.086 50.518 520.095 50.7991 517.984 51.3963C515.908 51.9935 514.43 52.942 513.55 54.277C512.705 55.612 512.283 58.2468 512.283 62.1814V96.1529C512.283 98.2607 512.952 99.7011 514.289 100.439C515.626 101.141 518.512 101.458 522.981 101.458C531.039 101.458 537.267 99.1741 541.666 94.572C546.065 89.9698 548.282 83.6814 548.282 75.6365L548.211 75.7068ZM668.452 124.047C664.441 132.583 661.203 140.734 658.67 148.463C640.02 147.865 626.753 147.584 618.871 147.584C610.989 147.584 597.828 147.865 579.142 148.463C578.333 148.463 577.946 147.76 577.946 146.39C577.946 145.16 578.333 144.493 579.142 144.387C583.26 143.896 586.391 143.263 588.573 142.455C590.755 141.612 592.268 140.523 593.112 139.118C593.992 137.748 594.45 135.324 594.45 131.881V62.2166C594.45 58.8089 594.027 56.42 593.183 55.0499C592.409 53.6095 590.896 52.4853 588.749 51.6422C586.567 50.7991 583.4 50.1316 579.178 49.6397C578.368 49.6397 577.981 48.9371 577.981 47.567C577.981 46.1969 578.368 45.4943 579.178 45.4943C591.635 46.0915 604.373 46.3726 617.428 46.3726C630.483 46.3726 643.363 46.0915 655.749 45.4943C656.875 53.1528 658.529 60.7059 660.711 68.1536C660.711 69.1373 659.831 69.6291 658.107 69.6291C657.262 69.6291 656.734 69.2778 656.558 68.6104C652.899 56.9821 645.087 51.1504 633.122 51.1504H618.132C612.396 51.1504 609.546 54.1014 609.546 60.0384V92.9911H628.231C633.158 92.9911 636.501 91.8669 638.225 89.5834C640.02 87.2999 641.251 83.295 641.92 77.5336C641.92 76.7607 642.624 76.3391 643.996 76.3391C645.368 76.3391 646.072 76.7256 646.072 77.5336C646.072 79.9927 645.931 83.1193 645.615 86.8432C645.333 90.4617 645.157 93.3775 645.157 95.661C645.157 97.9445 645.298 100.931 645.615 104.549C645.896 108.413 646.072 111.54 646.072 114.034C646.072 114.807 645.368 115.229 643.996 115.229C642.624 115.229 641.92 114.842 641.92 114.034C641.181 108.027 639.879 103.811 637.979 101.387C636.149 98.9633 632.876 97.7689 628.196 97.7689H609.511V134.199C609.511 140.031 612.361 142.947 618.097 142.947H634.249C640.125 142.947 645.966 141.05 651.737 137.256C657.508 133.391 661.766 128.614 664.476 122.887C664.687 122.431 665.109 122.22 665.743 122.22C666.447 122.22 667.045 122.431 667.608 122.817C668.136 123.168 668.417 123.59 668.417 124.152L668.452 124.047ZM790.383 97.6986C790.383 112.91 785.28 125.171 775.111 134.481C764.941 143.79 751.147 148.463 733.799 148.463C731.617 148.463 727.218 148.357 720.603 148.181C713.776 147.971 709.237 147.9 706.949 147.9C697.765 147.9 688.827 148.111 680.1 148.498C679.326 148.498 678.904 147.795 678.904 146.425C678.904 145.195 679.291 144.528 680.1 144.423C684.217 143.931 687.349 143.298 689.531 142.49C691.712 141.647 693.225 140.558 694.035 139.153C694.915 137.783 695.372 135.359 695.372 131.916V62.5679C695.372 59.1602 694.95 56.7713 694.105 55.4012C693.296 53.9608 691.818 52.8366 689.671 51.9935C687.49 51.1504 684.323 50.4829 680.1 49.9911C679.326 49.9911 678.904 49.2884 678.904 47.9183C678.904 46.5482 679.291 45.8456 680.1 45.8456C685.871 46.2321 694.844 46.4428 706.949 46.4428C709.237 46.4428 713.776 46.3726 720.603 46.2321C727.218 46.0915 731.617 46.0213 733.799 46.0213C750.689 46.0213 764.343 50.8693 774.724 60.5303C785.139 70.1561 790.383 82.5573 790.383 97.7689V97.6986ZM774.09 97.6986C774.09 84.2787 770.219 73.1422 762.513 64.2541C754.842 55.3309 745.235 50.8693 733.658 50.8693H733.2L719.265 51.1504C713.424 51.3611 710.503 54.2067 710.503 59.7223V134.691C710.503 140.312 713.424 143.123 719.265 143.123L733.2 143.579C744.707 143.579 754.419 139.223 762.267 130.476C770.114 121.693 774.055 110.767 774.055 97.6986H774.09ZM858.403 146.425C858.403 147.795 858.016 148.498 857.207 148.498C853.899 148.498 849.958 148.357 845.418 148.041C841.055 147.76 837.395 147.584 834.369 147.584C831.343 147.584 827.683 147.725 823.32 148.041C818.71 148.322 814.734 148.498 811.391 148.498C810.616 148.498 810.194 147.795 810.194 146.425C810.194 145.195 810.581 144.528 811.391 144.423C817.373 143.72 821.419 142.631 823.566 141.085C825.748 139.539 826.839 136.483 826.839 131.916V62.2517C826.839 58.8089 826.381 56.3848 825.501 55.0148C824.657 53.5744 823.144 52.4853 820.962 51.6773C818.78 50.8342 815.613 50.1667 811.391 49.6749C810.616 49.6749 810.194 48.9723 810.194 47.6022C810.194 46.2321 810.581 45.5294 811.391 45.5294C814.769 45.5294 818.745 45.67 823.32 45.9861C827.683 46.2672 831.343 46.4428 834.369 46.4428C837.395 46.4428 841.055 46.3023 845.418 45.9861C849.958 45.7051 853.899 45.5294 857.207 45.5294C857.981 45.5294 858.403 46.2321 858.403 47.6022C858.403 48.9723 858.016 49.6749 857.207 49.6749C853.054 50.1667 849.887 50.8342 847.706 51.6773C845.524 52.4502 844.011 53.5393 843.166 54.9445C842.322 56.3146 841.899 58.7737 841.899 62.2868V131.951C841.899 135.359 842.322 137.783 843.166 139.188C844.011 140.558 845.489 141.682 847.6 142.525C849.782 143.298 852.949 143.966 857.101 144.458C857.946 144.563 858.368 145.231 858.368 146.46L858.403 146.425ZM1025.34 145.933C1025.34 147.9 1024.78 148.849 1023.65 148.849C1018.83 148.849 1013.38 148.638 1007.29 148.217C1002.05 147.795 997.576 147.584 993.846 147.584C989.588 147.584 984.31 147.795 978.011 148.217C971.36 148.638 965.695 148.849 961.015 148.849C959.889 148.849 959.326 147.865 959.326 145.933C959.326 144.001 959.748 143.017 960.592 143.017C966.821 142.736 971.29 141.928 974.035 140.593C976.779 139.188 978.117 137.08 978.117 134.199C978.117 132.373 977.413 129.492 976.005 125.522L964.146 90.4265H920.934L908.97 122.887C907.422 127.208 906.647 130.581 906.647 132.935C906.647 139.083 912.313 142.42 923.644 142.982C924.488 142.982 924.911 143.966 924.911 145.898C924.911 147.83 924.348 148.814 923.221 148.814C919.034 148.814 914.389 148.603 909.251 148.181C904.43 147.76 900.137 147.549 896.337 147.549C893.346 147.549 889.546 147.76 885.006 148.181C880.256 148.603 876.209 148.814 872.831 148.814C871.775 148.814 871.247 147.936 871.247 146.179C871.247 144.212 872.057 143.193 873.675 143.052C879.481 142.49 884.056 140.874 887.434 138.24C890.848 135.57 894.402 130.159 898.026 122.009L947.115 1.68627C947.537 0.56209 948.523 0 950.036 0C951.725 0 952.78 0.526964 953.167 1.58089L996.485 122.009C998.948 128.789 1002.22 133.778 1006.34 136.975C1010.53 140.172 1016.12 142.209 1023.12 143.052C1024.53 143.193 1025.23 144.141 1025.23 145.898L1025.34 145.933ZM961.894 83.7166L943.42 30.2124L923.503 83.7166H961.894Z" fill="black"/> </svg> </div> <h3 class="h3">Wikipedia is turning 25!</h3> <p>Please join us for a virtual celebration on November 20. You have been such an important part of our journey so far, and we hope you will continue on the path with us for the next 25 years and beyond. We’d be thrilled to celebrate this huge milestone in the history of Wikipedia together!</p> <h4 class="h4">🎉 Wikipedia’s 25th Birthday Party 🎉</h4> <p>20 November 2025<br> 11:00 am PST | 2:00 pm EST | 7:00 pm UTC</p> <a href="https://events.zoom.us/ev/Anqzk0mXmhKm6A0ePVyMEiSGsUMn4tveMCPG6pU85f6mryI68SQK~AtX5pK0BLRMZ0UkVKhgQW7eKjJO5MzoA-7yUHN3TTNjPrPpjYiFPe4hUog" target="_blank" class="btn btn-blue">CLICK HERE TO LEARN MORE</a> </div> </div> </div> </div> <!-- end WP25 birthday block --!> </html>}}<html> </html>{{#if:{{{share-text|}}}|<html> <div class="ty-share social-share mw-1120" style="display: none;"> <div class="share-cta"> <h2 class="h2"></html>{{{share-text}}}<html></h2> </div> <div class="link-list social-list"> <p id="ty-share-links" class="social-share-buttons"></p> </div> </div> </html>}}<html> <div class="primary-ctas"> </html>{{#if:{{{endowment-header|}}}|<html> <div class="endowment endowment-1 w-100p cta cta-primary img-left-content-right bg-img--pink btn-pink cta-support"> <div class="mw-1120 flex flex-medium flex-justify-center"> <div class="w-32p endowment-text card-content"> <h2 class="h2"></html>{{{endowment-header}}}<html></h2> <p class="cta-description"> </html>{{{endowment-text}}}<html> </p> </div> <a href="#" class="w-32p focus-block rounded shadow frb-dialog-link"> <div class="card"> <div class="card-content"> <h3 class="h3"></html>{{{legacy-header}}}<html></h3> <div class="mar-bottom"> <p></html>{{{legacy-text}}}<html></p> </div> <div class="btn btn-pink stick-to-bottom"> </html>{{{request-info}}}<html> </div> </div> </div> </a> <a href="https://www.freewill.com/Wikipedia?utm_source=TY_page" class="w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"></html>{{{will-header}}}<html></h3> <div class="mar-bottom"> <p></html>{{{will-text}}}<html></p> </div> <div class="btn btn-pink stick-to-bottom"> </html>{{{will-button}}}<html> </div> </div> </div> </a> </div> </div><!-- endowment --> <!-- endowment form pop up --> <dialog id="frb-dialog-legacy" class="frb frb-dialog"> <button class="frb-dialog-close"> <svg width="24px" height="24px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M5.29289 5.29289C5.68342 4.90237 6.31658 4.90237 6.70711 5.29289L12 10.5858L17.2929 5.29289C17.6834 4.90237 18.3166 4.90237 18.7071 5.29289C19.0976 5.68342 19.0976 6.31658 18.7071 6.70711L13.4142 12L18.7071 17.2929C19.0976 17.6834 19.0976 18.3166 18.7071 18.7071C18.3166 19.0976 17.6834 19.0976 17.2929 18.7071L12 13.4142L6.70711 18.7071C6.31658 19.0976 5.68342 19.0976 5.29289 18.7071C4.90237 18.3166 4.90237 17.6834 5.29289 17.2929L10.5858 12L5.29289 6.70711C4.90237 6.31658 4.90237 5.68342 5.29289 5.29289Z" fill="#0F1729"/> </svg> </button> <div class="frb-dialog-title"> Receive your Planned Giving Guide </div> <div class="frb-dialog-text"> <form method="post" action="https://lp.email.wikimedia.org/LegacyGivingSignup/Form/?sp_source=thankyoupage" id="lg-form" class="lg-form"> <input type="hidden" name="formSourceName" value="StandardForm" /> <!-- DO NOT REMOVE HIDDEN FIELD sp_exp --> <input type="hidden" name="sp_exp" value="yes" /> <input type="hidden" name="lg_source" value="thankyoupage" /> <input type="hidden" name="lg_submitDate" value="" /> <label class="lg-form-legend" for="lg-firstname">First Name</label> <input type="text" name="firstname" id="lg-firstname" dir="ltr" autocomplete="given-name" required="true" /> <label class="lg-form-legend" for="lg-lastname">Last Name</label> <input type="text" name="lastname" id="lg-lastname" dir="ltr" autocomplete="family-name" required="true" /> <label class="lg-form-legend" for="lg-email">Email</label> <input type="email" name="Email" id="lg-email" dir="ltr" autocomplete="email" required="true" /> <label class="lg-form-legend" for="lg-country">Country</label> <input type="text" name="country" id="lg-country" dir="ltr" autocomplete="country-name" /> <button class="lg-submit active btn btn-pink" id="lg-submit" type="submit">Download</button> </form> </div> </dialog><!-- end endowment form pop up --> </html>}}<html> </html>{{#if:{{{survey-code|}}}|<html> <div class="survey survey-1 w-100p cta cta-primary img-left-content-right bg-img--pink btn-pink cta-support"> <div class="mw-620"> <div class="card flex flex-medium flex-wrap"> <div class="card-content w-25p sm-img-container"> <a href="https://www.surveymonkey.com/r/</html>{{{survey-code}}}<html>" title="</html>{{{survey-header}}}<html>" class="ty-survey-link"> <svg class="sm-img" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 146 193"><g fill-rule="evenodd" clip-rule="evenodd" stroke="#54595d" stroke-width="2"><path d="M3.6 20h138.8c1.4 0 2.6 1.2 2.6 2.6v166.8c0 1.4-1.2 2.6-2.6 2.6H3.6c-1.4 0-2.6-1.2-2.6-2.6V22.6C1 21.2 2.2 20 3.6 20z" fill="#fff"></path><path d="M55.2 12.2C56.4 5.9 63.9 1 73 1c9 0 16.5 4.8 17.8 11.1L118 12c5 0 9 4 9 9 0 0 0 0 0 0v6.9c0 1.2-.9 2.1-2.1 2.1H21.1c-1.2 0-2.1-.9-2.1-2.1 0 0 0 0 0 0v-6.8c0-4.9 4-8.9 8.9-8.9h27.3z" fill="#eaecf0"></path></g><path d="M32 105.6L58.6 136l56.1-64.2" fill="none" stroke="#d40356" stroke-width="15" stroke-linecap="round" stroke-linejoin="round"></path></svg> </a> </div> <div class="card-content w-75p"> <h2 class="h2"><a href="https://www.surveymonkey.com/r/</html>{{{survey-code}}}<html>" class="ty-survey-link"> </html>{{{survey-header}}}<html> </a></h2> <div class="mar-bottom"> <p class="cta-description"></html>{{{survey-text}}}<html></p> <p class="small"></html>{{{survey-legal}}}<html></p> </div> <a class="btn btn-pink" href="https://www.surveymonkey.com/r/</html>{{{survey-code}}}<html>" class="ty-survey-link"> </html>{{{survey-button}}}<html> </a> </div> </div> </div> </div><!-- survey --> </html>}}{{#if:{{{survey-code-2|}}}|<html> <div class="survey survey-2 w-100p cta cta-primary img-left-content-right bg-img--pink btn-pink cta-support"> <div class="mw-620"> <div class="card flex flex-medium flex-wrap"> <div class="card-content w-25p sm-img-container"> <a href="https://www.surveymonkey.com/r/</html>{{{survey-code-2}}}<html>" title="</html>{{{survey-header}}}<html>" class="ty-survey-link"> <svg class="sm-img" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 146 193"><g fill-rule="evenodd" clip-rule="evenodd" stroke="#54595d" stroke-width="2"><path d="M3.6 20h138.8c1.4 0 2.6 1.2 2.6 2.6v166.8c0 1.4-1.2 2.6-2.6 2.6H3.6c-1.4 0-2.6-1.2-2.6-2.6V22.6C1 21.2 2.2 20 3.6 20z" fill="#fff"></path><path d="M55.2 12.2C56.4 5.9 63.9 1 73 1c9 0 16.5 4.8 17.8 11.1L118 12c5 0 9 4 9 9 0 0 0 0 0 0v6.9c0 1.2-.9 2.1-2.1 2.1H21.1c-1.2 0-2.1-.9-2.1-2.1 0 0 0 0 0 0v-6.8c0-4.9 4-8.9 8.9-8.9h27.3z" fill="#eaecf0"></path></g><path d="M32 105.6L58.6 136l56.1-64.2" fill="none" stroke="#d40356" stroke-width="15" stroke-linecap="round" stroke-linejoin="round"></path></svg> </a> </div> <div class="card-content w-75p"> <h2 class="h2"><a href="https://www.surveymonkey.com/r/</html>{{{survey-code-2}}}<html>" class="ty-survey-link"> </html>{{{survey-header}}}<html> </a></h2> <div class="mar-bottom"> <p class="cta-description"></html>{{{survey-text}}}<html></p> <p class="small"></html>{{{survey-legal}}}<html></p> </div> <a class="btn btn-pink" href="https://www.surveymonkey.com/r/</html>{{{survey-code-2}}}<html>" class="ty-survey-link"> </html>{{{survey-button}}}<html> </a> </div> </div> </div> </div><!-- survey 2 --> </html>}}<html> <div class="matching w-100p cta cta-primary img-left-content-right bg-img--pink btn-pink cta-support"> <div class="mw-620"> <div class="card flex flex-medium flex-wrap"> <div class="card-content w-25p sm-img-container"> <a href="https://donate.wikimedia.org/wiki/</html>{{{match-link|Matching_Gifts}}}<html>" title="</html>{{{match-button}}}<html>"> <svg class="sm-img" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M13.6 85.8h172.8v104.1c0 1.2-.9 2.1-2.1 2.1H15.7c-1.2 0-2.1-.9-2.1-2.1V85.8h0z" fill-rule="evenodd" clip-rule="evenodd" fill="#fff" stroke="#72777d" stroke-width="2"></path><path d="M3 85.9h194V57.6H3v28.3z" fill-rule="evenodd" clip-rule="evenodd" fill="#d40356" stroke="#72777d" stroke-width="2"></path><path d="M92 66.3l-28.7 29c-.4.4-1.1.4-1.5 0-.2-.2-.4-.6-.3-.9l.9-5.4c.2-1.2-.6-2.2-1.8-2.4h-.5l-6.3.6c-.6.1-1.1-.4-1.2-.9 0-.3.1-.6.3-.9l26.7-26.9c-19.9-.8-26.7-3.6-28.8-4.9C39 46.3 35.5 31 42.9 19.5 47.6 12.3 55.6 8 64.3 8c4.8 0 9.4 1.3 13.5 3.8 6.3 3.9 15 18.8 22.2 33.7 7.2-14.9 15.9-29.8 22.2-33.7 4-2.5 8.7-3.8 13.5-3.8 8.7 0 16.7 4.3 21.4 11.5 7.4 11.5 3.9 26.8-7.9 34.1-2.2 1.3-9.2 4.2-30.2 4.9l26.6 26.9c.4.4.4 1.1 0 1.5-.2.2-.5.3-.9.3l-6.3-.6c-1.2-.1-2.2.7-2.3 1.9v.5l.9 5.4c.1.6-.3 1.1-.9 1.2-.3.1-.7-.1-.9-.3L108 67.8V192H92V66.3zm55.7-40.1c-2.6-4-7-6.3-11.8-6.3-2.6 0-5.2.7-7.4 2.1-4.5 2.8-11.1 15.6-15.5 25.6 2.4.1 5.3.2 8.5.2 15.6 0 20.5-2 21.9-2.8 6.4-4.1 8.4-12.5 4.3-18.8zm-95.4 0C48.2 32.5 50.1 41 56.6 45c1.4.8 6.2 2.8 21.9 2.8 3.2 0 6.1-.1 8.5-.2-4.3-10-11-22.8-15.5-25.6-2.2-1.4-4.8-2.1-7.4-2.1-4.8-.1-9.2 2.3-11.8 6.3z" fill-rule="evenodd" clip-rule="evenodd" fill="#fc3" stroke="#72777d" stroke-width="2"></path></svg> </a> </div> <div class="card-content w-75p"> <h2 class="h2"><a href="https://donate.wikimedia.org/wiki/</html>{{{match-link|Matching_Gifts}}}<html>"> </html>{{{match-header}}}<html> </a></h2> <div class="mar-bottom"> <p class="cta-description"></html>{{{match-text}}}<html></p> </div> <a class="btn btn-pink" href="https://donate.wikimedia.org/wiki/</html>{{{match-link|Matching_Gifts}}}<html>"> </html>{{{match-button}}}<html> </a> </div> </div> </div> </div><!-- matching --> <div class="try-editing w-100p cta cta-primary img-left-content-right bg-img--pink btn-pink cta-support"> <div class="mw-620"> <div class="card flex flex-medium flex-wrap"> <div class="card-content w-25p sm-img-container"> <a href="#" title="</html>{{{editing-button}}}<html>"> <svg class="sm-img" role="img" width="115" height="119" viewBox="0 0 115 119" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M95.6 117.999H22.9C14.3 109.399 9.49999 104.599 0.899994 95.9992V3.29922C0.899994 2.09922 1.89999 1.19922 2.99999 1.19922H95.5C96.7 1.19922 97.6 2.19922 97.6 3.29922V115.899C97.7 117.099 96.7 117.999 95.6 117.999Z" fill="white" stroke="#6D6E70" stroke-width="1.0682" stroke-miterlimit="10"/> <path d="M77.9 47.1988C75.1 53.3988 66.4 73.3988 60.8 86.1988H59.3L50.5 65.3988C47 72.2988 43.1 79.3988 39.8 86.1988H38.2C33.1 74.3988 27.9 62.5988 22.8 50.7988C21.6 47.8988 17.5 43.2988 14.6 43.2988C14.6 42.9988 14.6 42.1988 14.6 41.7988H32.1V43.2988C30.1 43.3988 26.5 44.6988 27.4 46.9988C29.9 52.2988 38.6 72.8988 40.9 78.0988C42.5 74.8988 47.1 66.2988 49 62.6988C47.5 59.6988 42.6 48.2988 41.2 45.4988C40.1 43.5988 37.3 43.3988 35.2 43.3988C35.2 42.8988 35.2 42.4988 35.2 41.8988H50.5V43.2988C48.4 43.3988 46.5 44.0988 47.3 46.0988C49.4 50.3988 50.6 53.3988 52.5 57.3988C53.1 56.1988 56.2 49.8988 57.7 46.4988C58.6 44.2988 57.3 43.3988 53.5 43.2988C53.5 42.8988 53.5 42.1988 53.5 41.7988C58.3 41.7988 65.5 41.7988 66.8 41.7988V43.2988C64.4 43.3988 61.8 44.6988 60.5 46.6988L54.1 59.8988C54.8 61.6988 60.9 75.2988 61.6 76.7988L74.8 46.2988" stroke="#6D6E70" stroke-width="1.0682" stroke-miterlimit="10"/> <path d="M105.768 7.62696L77.6256 35.7695L86.6058 44.7497L114.748 16.6071L105.768 7.62696Z" fill="#D40356"/> <path d="M78.1 37.6988L84.7 44.2988L74.7 47.6988L78.1 37.6988ZM77.7 35.7988L73.6 47.9988C73.4 48.4988 73.8 48.9988 74.3 48.9988C74.4 48.9988 74.5 48.9988 74.5 48.9988L86.7 44.8988L77.7 35.7988Z" fill="#6D6E70"/> <path d="M76.3 43.1992L79.3 46.1992L74.6 47.7992L76.3 43.1992Z" fill="#6D6E70"/> <path d="M1.19998 96H21.1C22.3 96 23.2 97 23.2 98.1V118" stroke="#6D6E70" stroke-width="1.0682" stroke-miterlimit="10"/> </svg> </a> </div> <div class="card-content w-75p"> <h2 class="h2"><a href="#"> </html>{{{editing-header}}}<html> </a></h2> <div class="mar-bottom"> <p class="cta-description"></html>{{{editing-text}}}<html></p> </div> <a class="btn btn-pink" href="#"> </html>{{{editing-button}}}<html> </a> </div> </div> </div> </div><!-- try-editing --> </div> <div class="other-ctas"> <div class="mw-1120"> </html>{{#if:{{{cta-header|}}}|<h2 class="h2">{{{cta-header}}}</h2>}}<html> <div class="flex flex-medium flex-justify-center"> </html>{{#if:{{{survey-code|}}}|<html> <div class="survey survey-1 w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> <a href="https://www.surveymonkey.com/r/</html>{{{survey-code}}}<html>" class="ty-survey-link"> </html>{{{survey-header}}}<html> </a> </h3> <div class="mar-bottom"> <p></html>{{{survey-text}}}<html></p> <p class="small"></html>{{{survey-legal}}}<html></p> </div> <a href="https://www.surveymonkey.com/r/</html>{{{survey-code}}}<html>" class="btn btn-blue stick-to-bottom ty-survey-link"> </html>{{{survey-button}}}<html> </a> </div> </div> </div><!-- survey --> </html>}}{{#if:{{{survey-code-2|}}}|<html> <div class="survey survey-2 w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> <a href="https://www.surveymonkey.com/r/</html>{{{survey-code-2}}}<html>" class="ty-survey-link"> </html>{{{survey-header}}}<html> </a> </h3> <div class="mar-bottom"> <p></html>{{{survey-text}}}<html></p> <p class="small"></html>{{{survey-legal}}}<html></p> </div> <a href="https://www.surveymonkey.com/r/</html>{{{survey-code-2}}}<html>" class="btn btn-blue stick-to-bottom ty-survey-link"> </html>{{{survey-button}}}<html> </a> </div> </div> </div><!-- survey 2--> </html>}}<html> <div class="matching w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> <a href="https://donate.wikimedia.org/wiki/</html>{{{match-link|Matching_Gifts}}}<html>"> </html>{{{match-header}}}<html> </a> </h3> <div class="mar-bottom"> <p></html>{{{match-text}}}<html></p> </div> <a href="https://donate.wikimedia.org/wiki/</html>{{{match-link|Matching_Gifts}}}<html>" class="btn btn-blue stick-to-bottom"> </html>{{{match-button}}}<html> </a> </div> </div> </div><!-- matching --> <div class="store w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> <a href="https://</html>{{{store-link|store.wikimedia.org/}}}<html>"> </html>{{{store-header}}}<html> </a> </h3> <div class="mar-bottom"> <p></html>{{{store-text-new}}}<html></p> </div> <a href="https://</html>{{{store-link|store.wikimedia.org/}}}<html>" class="btn btn-blue stick-to-bottom"> </html>{{{store-button}}}<html> </a> </div> </div> </div><!-- store --> </html>{{#if:{{{will-header|}}}|<html> <div class="will-US w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{will-header}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{will-text}}}<html></p> </div> <a class="btn btn-blue stick-to-bottom" href="https://www.freewill.com/Wikipedia?utm_source=TY_page"> </html>{{{will-button}}}<html> </a> </div> </div> </div><!-- will-US --> </html>}}<html> </html>{{#if:{{{legacy-header|}}}|<html> <div class="will-notUS w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{legacy-header}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{legacy-text-2}}}<html></p> </div> <a class="btn btn-blue stick-to-bottom" href="https://wikimediaendowment.org/#request-more-info"> </html>{{{request-info}}}<html> </a> </div> </div> </div><!-- will-notUS --> </html>}}<html> </html>{{#if:{{{editing-header|}}}|<html> <div class="edit-6c w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> <a href="https://en.wikipedia.org/wiki/Special:CreateAccount?campaign=typage-6C-en-2023"> </html>{{{editing-header}}}<html> </a> </h3> <div class="mar-bottom"> <p></html>{{{editing-text}}}<html></p> </div> <a href="https://en.wikipedia.org/wiki/Special:CreateAccount?campaign=typage-6C-en-2023" class="btn btn-blue stick-to-bottom"> </html>{{{editing-button}}}<html> </a> </div> </div> </div><!-- edit cta 6c --> </html>}}<html> </html>{{#if:{{{chapter-AU-title|}}}|<html> <div class="chapter-message chapter-AU w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{chapter-AU-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{chapter-AU-text}}}<html></p> </div> </html>{{{chapter-AU-link}}}<html> </div> </div> </div><!-- chapter message cta --> </html>}}{{#if:{{{chapter-BE-title|}}}|<html> <div class="chapter-message chapter-BE w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{chapter-BE-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{chapter-BE-text}}}<html></p> </div> </html>{{{chapter-BE-link}}}<html> </div> </div> </div><!-- chapter message cta --> </html>}}{{#if:{{{chapter-CA-title|}}}|<html> <div class="chapter-message chapter-CA w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{chapter-CA-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{chapter-CA-text}}}<html></p> </div> </html>{{{chapter-CA-link}}}<html> </div> </div> </div><!-- chapter message cta --> </html>}}{{#if:{{{chapter-CZ-title|}}}|<html> <div class="chapter-message chapter-CZ w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{chapter-CZ-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{chapter-CZ-text}}}<html></p> </div> </html>{{{chapter-CZ-link}}}<html> </div> </div> </div><!-- chapter message cta --> </html>}}{{#if:{{{chapter-FR-title|}}}|<html> <div class="chapter-message chapter-FR w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{chapter-FR-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{chapter-FR-text}}}<html></p> </div> </html>{{{chapter-FR-link}}}<html> </div> </div> </div><!-- chapter message cta --> </html>}}{{#if:{{{chapter-GB-title|}}}|<html> <div class="chapter-message chapter-GB w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{chapter-GB-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{chapter-GB-text}}}<html></p> </div> </html>{{{chapter-GB-link}}}<html> </div> </div> </div><!-- chapter message cta --> </html>}}{{#if:{{{chapter-HU-title|}}}|<html> <div class="chapter-message chapter-HU w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{chapter-HU-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{chapter-HU-text}}}<html></p> </div> </html>{{{chapter-HU-link}}}<html> </div> </div> </div><!-- chapter message cta --> </html>}}{{#if:{{{chapter-IT-title|}}}|<html> <div class="chapter-message chapter-IT w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{chapter-IT-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{chapter-IT-text}}}<html></p> </div> </html>{{{chapter-IT-link}}}<html> </div> </div> </div><!-- chapter message cta --> </html>}}{{#if:{{{chapter-NL-title|}}}|<html> <div class="chapter-message chapter-NL w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{chapter-NL-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{chapter-NL-text}}}<html></p> </div> </html>{{{chapter-NL-link}}}<html> </div> </div> </div><!-- chapter message cta --> </html>}}{{#if:{{{chapter-NO-title|}}}|<html> <div class="chapter-message chapter-NO w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{chapter-NO-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{chapter-NO-text}}}<html></p> </div> </html>{{{chapter-NO-link}}}<html> </div> </div> </div><!-- chapter message cta --> </html>}}{{#if:{{{chapter-NZ-title|}}}|<html> <div class="chapter-message chapter-NZ w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{chapter-NZ-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{chapter-NZ-text}}}<html></p> </div> </html>{{{chapter-NZ-link}}}<html> </div> </div> </div><!-- chapter message cta --> </html>}}{{#if:{{{chapter-PL-title|}}}|<html> <div class="chapter-message chapter-PL w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{chapter-PL-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{chapter-PL-text}}}<html></p> </div> </html>{{{chapter-PL-link}}}<html> </div> </div> </div><!-- chapter message cta --> </html>}}{{#if:{{{chapter-SE-title|}}}|<html> <div class="chapter-message chapter-SE w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{chapter-SE-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{chapter-SE-text}}}<html></p> </div> </html>{{{chapter-SE-link}}}<html> </div> </div> </div><!-- chapter message cta --> </html>}}{{#if:{{{chapter-UY-title|}}}|<html> <div class="chapter-message chapter-UY w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{chapter-UY-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{chapter-UY-text}}}<html></p> </div> </html>{{{chapter-UY-link}}}<html> </div> </div> </div><!-- chapter message cta --> </html>}}{{#if:{{{chapter-MX-title|}}}|<html> <div class="chapter-message chapter-MX w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{chapter-MX-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{chapter-MX-text}}}<html></p> </div> </html>{{{chapter-MX-link}}}<html> </div> </div> </div><!-- chapter message cta --> </html>}}{{#if:{{{chapter-CO-title|}}}|<html> <div class="chapter-message chapter-CO w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{chapter-CO-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{chapter-CO-text}}}<html></p> </div> </html>{{{chapter-CO-link}}}<html> </div> </div> </div><!-- chapter message cta --> </html>}}{{#if:{{{chapter-BR-title|}}}|<html> <div class="chapter-message chapter-BR w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{chapter-BR-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{chapter-BR-text}}}<html></p> </div> </html>{{{chapter-BR-link}}}<html> </div> </div> </div><!-- chapter message cta --> </html>}}{{#if:{{{chapter-AT-title|}}}|<html> <div class="chapter-message chapter-AT w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{chapter-AT-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{chapter-AT-text}}}<html></p> </div> </html>{{{chapter-AT-link}}}<html> </div> </div> </div><!-- chapter message cta --> </html>}}{{#if:{{{wikiminute-LATAM-title|}}}|<html> <div class="wikiminute-LATAM w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{wikiminute-LATAM-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{wikiminute-LATAM-text}}}<html></p> </div> </div> </div> </div><!-- wikiminute cta --> </html>}}{{#if:{{{wikiminute-ES-title|}}}|<html> <div class="wikiminute-ES w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{wikiminute-ES-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{wikiminute-ES-text}}}<html></p> </div> </div> </div> </div><!-- wikiminute cta --> </html>}}{{#if:{{{wikiminute-ptBR-title|}}}|<html> <div class="wikiminute-ptBR w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{wikiminute-ptBR-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{wikiminute-ptBR-text}}}<html></p> </div> </div> </div> </div><!-- wikiminute cta --> </html>}}{{#if:{{{wikiminute-FR-title|}}}|<html> <div class="wikiminute-FR w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{wikiminute-FR-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{wikiminute-FR-text}}}<html></p> </div> </div> </div> </div><!-- wikiminute cta --> </html>}}{{#if:{{{wikiminute-IT-title|}}}|<html> <div class="wikiminute-IT w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{wikiminute-IT-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{wikiminute-IT-text}}}<html></p> </div> </div> </div> </div><!-- wikiminute cta --> </html>}}{{#if:{{{wikiminute-DE-title|}}}|<html> <div class="wikiminute-DE w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{wikiminute-DE-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{wikiminute-DE-text}}}<html></p> </div> </div> </div> </div><!-- wikiminute cta --> </html>}}{{#if:{{{wikiminute-NL-title|}}}|<html> <div class="wikiminute-NL w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{wikiminute-NL-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{wikiminute-NL-text}}}<html></p> </div> </div> </div> </div><!-- wikiminute cta --> </html>}}{{#if:{{{wikiminute-DK-title|}}}|<html> <div class="wikiminute-DK w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{wikiminute-DK-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{wikiminute-DK-text}}}<html></p> </div> </div> </div> </div><!-- wikiminute cta --> </html>}}{{#if:{{{wikiminute-SV-title|}}}|<html> <div class="wikiminute-SV w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{wikiminute-SV-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{wikiminute-SV-text}}}<html></p> </div> </div> </div> </div><!-- wikiminute cta --> </html>}}{{#if:{{{wikiminute-NB-title|}}}|<html> <div class="wikiminute-NB w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{wikiminute-NB-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{wikiminute-NB-text}}}<html></p> </div> </div> </div> </div><!-- wikiminute cta --> </html>}}{{#if:{{{wikiminute-JA-title|}}}|<html> <div class="wikiminute-JA w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{wikiminute-JA-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{wikiminute-JA-text}}}<html></p> </div> </div> </div> </div><!-- wikiminute cta --> </html>}}{{#if:{{{donor-badge-title|}}}|<html> <div class="donor-badge-cta w-32p focus-block rounded shadow"> <div class="card"> <div class="card-content"> <h3 class="h3"> </html>{{{donor-badge-title}}}<html> </h3> <div class="mar-bottom"> <p></html>{{{donor-badge-text}}}<html></p> </div> <button type="button" class="btn btn-blue stick-to-bottom getDonorBadge"></html>{{{donor-badge-link}}}<html></button> </div> </div> </div><!-- donor badge cta --> <!-- donor badge pop up --> <dialog id="frb-dialog-donor-badge" class="frb frb-dialog" closedby="any"> <button class="frb-dialog-close"> <svg width="24px" height="24px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M5.29289 5.29289C5.68342 4.90237 6.31658 4.90237 6.70711 5.29289L12 10.5858L17.2929 5.29289C17.6834 4.90237 18.3166 4.90237 18.7071 5.29289C19.0976 5.68342 19.0976 6.31658 18.7071 6.70711L13.4142 12L18.7071 17.2929C19.0976 17.6834 19.0976 18.3166 18.7071 18.7071C18.3166 19.0976 17.6834 19.0976 17.2929 18.7071L12 13.4142L6.70711 18.7071C6.31658 19.0976 5.68342 19.0976 5.29289 18.7071C4.90237 18.3166 4.90237 17.6834 5.29289 17.2929L10.5858 12L5.29289 6.70711C4.90237 6.31658 4.90237 5.68342 5.29289 5.29289Z" fill="#0F1729"/> </svg> </button> <div class="frb-dialog-title"> You're all set! </div> <div class="frb-dialog-text"> We’re initially introducing the Donor Badge for a limited trial period, so your badge will expire in a few weeks. But if you like it, please let us know so we can make it a more permanent feature! <br><br> Please click on your badge to give us feedback or to hide it if you’d prefer not to see it. Thank you again for supporting Wikipedia. </div> </dialog><!-- end donor badge pop up --> </html>}}<html> </div> </div> </div> </html>{{#if:{{{return|}}}|<html> <div class="ty-return" style="display: none;"> <div class="w-68p mw-640"> <a href="https://en.wikipedia.org" class="btn btn-lt-blue"></html>{{{return}}}<html></a> </div> </div> </html>}}<html> </main> <footer> </html>{{#if:{{{social-footer-wmf|}}}|<html> <div class="social-footer mw-1120" style="display: none;"> <div class="social-footer-col"> <div class="social-footer-logo"> <img src="https://upload.wikimedia.org/wikipedia/donate/b/b0/Wmf-logo-stacked-reverse.svg" alt="Wikimedia Foundation" style="width: auto; height: 80px;"> </div> <div class="social-footer-links"> <p></html>{{{social-footer-wmf}}}<html></p> <ul> <li><a href="https://www.instagram.com/wikimediafoundation/" class="" aria-label="</html>{{{social-footer-wmf-1-title}}}<html>" target="_blank"><svg width="24" height="24" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"><path d="M12,4.622c2.403,0,2.688,0.009,3.637,0.052c0.877,0.04,1.354,0.187,1.671,0.31c0.42,0.163,0.72,0.358,1.035,0.673 c0.315,0.315,0.51,0.615,0.673,1.035c0.123,0.317,0.27,0.794,0.31,1.671c0.043,0.949,0.052,1.234,0.052,3.637 s-0.009,2.688-0.052,3.637c-0.04,0.877-0.187,1.354-0.31,1.671c-0.163,0.42-0.358,0.72-0.673,1.035 c-0.315,0.315-0.615,0.51-1.035,0.673c-0.317,0.123-0.794,0.27-1.671,0.31c-0.949,0.043-1.233,0.052-3.637,0.052 s-2.688-0.009-3.637-0.052c-0.877-0.04-1.354-0.187-1.671-0.31c-0.42-0.163-0.72-0.358-1.035-0.673 c-0.315-0.315-0.51-0.615-0.673-1.035c-0.123-0.317-0.27-0.794-0.31-1.671C4.631,14.688,4.622,14.403,4.622,12 s0.009-2.688,0.052-3.637c0.04-0.877,0.187-1.354,0.31-1.671c0.163-0.42,0.358-0.72,0.673-1.035 c0.315-0.315,0.615-0.51,1.035-0.673c0.317-0.123,0.794-0.27,1.671-0.31C9.312,4.631,9.597,4.622,12,4.622 M12,3 C9.556,3,9.249,3.01,8.289,3.054C7.331,3.098,6.677,3.25,6.105,3.472C5.513,3.702,5.011,4.01,4.511,4.511 c-0.5,0.5-0.808,1.002-1.038,1.594C3.25,6.677,3.098,7.331,3.054,8.289C3.01,9.249,3,9.556,3,12c0,2.444,0.01,2.751,0.054,3.711 c0.044,0.958,0.196,1.612,0.418,2.185c0.23,0.592,0.538,1.094,1.038,1.594c0.5,0.5,1.002,0.808,1.594,1.038 c0.572,0.222,1.227,0.375,2.185,0.418C9.249,20.99,9.556,21,12,21s2.751-0.01,3.711-0.054c0.958-0.044,1.612-0.196,2.185-0.418 c0.592-0.23,1.094-0.538,1.594-1.038c0.5-0.5,0.808-1.002,1.038-1.594c0.222-0.572,0.375-1.227,0.418-2.185 C20.99,14.751,21,14.444,21,12s-0.01-2.751-0.054-3.711c-0.044-0.958-0.196-1.612-0.418-2.185c-0.23-0.592-0.538-1.094-1.038-1.594 c-0.5-0.5-1.002-0.808-1.594-1.038c-0.572-0.222-1.227-0.375-2.185-0.418C14.751,3.01,14.444,3,12,3L12,3z M12,7.378 c-2.552,0-4.622,2.069-4.622,4.622S9.448,16.622,12,16.622s4.622-2.069,4.622-4.622S14.552,7.378,12,7.378z M12,15 c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S13.657,15,12,15z M16.804,6.116c-0.596,0-1.08,0.484-1.08,1.08 s0.484,1.08,1.08,1.08c0.596,0,1.08-0.484,1.08-1.08S17.401,6.116,16.804,6.116z"></path></svg></a></li> <li><a href="https://bsky.app/profile/wikimediafoundation.org" class="" aria-label="</html>{{{social-footer-wmf-2-title}}}<html>" target="_blank"><svg width="24" height="24" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"><path d="M6.3,4.2c2.3,1.7,4.8,5.3,5.7,7.2.9-1.9,3.4-5.4,5.7-7.2,1.7-1.3,4.3-2.2,4.3.9s-.4,5.2-.6,5.9c-.7,2.6-3.3,3.2-5.6,2.8,4,.7,5.1,3,2.9,5.3-5,5.2-6.7-2.8-6.7-2.8,0,0-1.7,8-6.7,2.8-2.2-2.3-1.2-4.6,2.9-5.3-2.3.4-4.9-.3-5.6-2.8-.2-.7-.6-5.3-.6-5.9,0-3.1,2.7-2.1,4.3-.9h0Z"></path></svg></a></li> <li><a href="https://www.facebook.com/wikimediafoundation/" class="" aria-label="</html>{{{social-footer-wmf-3-title}}}<html>" target="_blank"><svg width="24" height="24" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"><path d="M12 2C6.5 2 2 6.5 2 12c0 5 3.7 9.1 8.4 9.9v-7H7.9V12h2.5V9.8c0-2.5 1.5-3.9 3.8-3.9 1.1 0 2.2.2 2.2.2v2.5h-1.3c-1.2 0-1.6.8-1.6 1.6V12h2.8l-.4 2.9h-2.3v7C18.3 21.1 22 17 22 12c0-5.5-4.5-10-10-10z"></path></svg></a></li> <li><a href="https://www.linkedin.com/company/wikimedia-foundation" class="" aria-label="</html>{{{social-footer-wmf-4-title}}}<html>" target="_blank"><svg width="24" height="24" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"><path d="M19.7,3H4.3C3.582,3,3,3.582,3,4.3v15.4C3,20.418,3.582,21,4.3,21h15.4c0.718,0,1.3-0.582,1.3-1.3V4.3 C21,3.582,20.418,3,19.7,3z M8.339,18.338H5.667v-8.59h2.672V18.338z M7.004,8.574c-0.857,0-1.549-0.694-1.549-1.548 c0-0.855,0.691-1.548,1.549-1.548c0.854,0,1.547,0.694,1.547,1.548C8.551,7.881,7.858,8.574,7.004,8.574z M18.339,18.338h-2.669 v-4.177c0-0.996-0.017-2.278-1.387-2.278c-1.389,0-1.601,1.086-1.601,2.206v4.249h-2.667v-8.59h2.559v1.174h0.037 c0.356-0.675,1.227-1.387,2.526-1.387c2.703,0,3.203,1.779,3.203,4.092V18.338z"></path></svg></a></li> </ul> </div> </div><!-- social-footer-col WMF --> <div class="social-footer-col"> <div class="social-footer-logo"> <img src="https://upload.wikimedia.org/wikipedia/donate/c/ca/Wikipedia-logo-stacked-reverse.svg" alt="Wikipedia - The Free Encyclopedia" style="width: auto; height: 80px;"> </div> <div class="social-footer-links"> <p></html>{{{social-footer-wiki}}}<html></p> <ul> <li><a href="https://www.tiktok.com/@wikipedia" class="" aria-label="</html>{{{social-footer-wiki-1-title}}}<html>" target="_blank"><svg width="24" height="24" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"><path d="M16.708 0.027c1.745-0.027 3.48-0.011 5.213-0.027 0.105 2.041 0.839 4.12 2.333 5.563 1.491 1.479 3.6 2.156 5.652 2.385v5.369c-1.923-0.063-3.855-0.463-5.6-1.291-0.76-0.344-1.468-0.787-2.161-1.24-0.009 3.896 0.016 7.787-0.025 11.667-0.104 1.864-0.719 3.719-1.803 5.255-1.744 2.557-4.771 4.224-7.88 4.276-1.907 0.109-3.812-0.411-5.437-1.369-2.693-1.588-4.588-4.495-4.864-7.615-0.032-0.667-0.043-1.333-0.016-1.984 0.24-2.537 1.495-4.964 3.443-6.615 2.208-1.923 5.301-2.839 8.197-2.297 0.027 1.975-0.052 3.948-0.052 5.923-1.323-0.428-2.869-0.308-4.025 0.495-0.844 0.547-1.485 1.385-1.819 2.333-0.276 0.676-0.197 1.427-0.181 2.145 0.317 2.188 2.421 4.027 4.667 3.828 1.489-0.016 2.916-0.88 3.692-2.145 0.251-0.443 0.532-0.896 0.547-1.417 0.131-2.385 0.079-4.76 0.095-7.145 0.011-5.375-0.016-10.735 0.025-16.093z"></path></svg></a></li> <li><a href="https://www.linkedin.com/company/wikipedia-the-free-encyclopedia/" class="" aria-label="</html>{{{social-footer-wiki-2-title}}}<html>" target="_blank"><svg width="24" height="24" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"><path d="M19.7,3H4.3C3.582,3,3,3.582,3,4.3v15.4C3,20.418,3.582,21,4.3,21h15.4c0.718,0,1.3-0.582,1.3-1.3V4.3 C21,3.582,20.418,3,19.7,3z M8.339,18.338H5.667v-8.59h2.672V18.338z M7.004,8.574c-0.857,0-1.549-0.694-1.549-1.548 c0-0.855,0.691-1.548,1.549-1.548c0.854,0,1.547,0.694,1.547,1.548C8.551,7.881,7.858,8.574,7.004,8.574z M18.339,18.338h-2.669 v-4.177c0-0.996-0.017-2.278-1.387-2.278c-1.389,0-1.601,1.086-1.601,2.206v4.249h-2.667v-8.59h2.559v1.174h0.037 c0.356-0.675,1.227-1.387,2.526-1.387c2.703,0,3.203,1.779,3.203,4.092V18.338z"></path></svg></a></li> <li><a href="https://www.instagram.com/wikipedia/" class="" aria-label="</html>{{{social-footer-wiki-3-title}}}<html>" target="_blank"><svg width="24" height="24" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"><path d="M12,4.622c2.403,0,2.688,0.009,3.637,0.052c0.877,0.04,1.354,0.187,1.671,0.31c0.42,0.163,0.72,0.358,1.035,0.673 c0.315,0.315,0.51,0.615,0.673,1.035c0.123,0.317,0.27,0.794,0.31,1.671c0.043,0.949,0.052,1.234,0.052,3.637 s-0.009,2.688-0.052,3.637c-0.04,0.877-0.187,1.354-0.31,1.671c-0.163,0.42-0.358,0.72-0.673,1.035 c-0.315,0.315-0.615,0.51-1.035,0.673c-0.317,0.123-0.794,0.27-1.671,0.31c-0.949,0.043-1.233,0.052-3.637,0.052 s-2.688-0.009-3.637-0.052c-0.877-0.04-1.354-0.187-1.671-0.31c-0.42-0.163-0.72-0.358-1.035-0.673 c-0.315-0.315-0.51-0.615-0.673-1.035c-0.123-0.317-0.27-0.794-0.31-1.671C4.631,14.688,4.622,14.403,4.622,12 s0.009-2.688,0.052-3.637c0.04-0.877,0.187-1.354,0.31-1.671c0.163-0.42,0.358-0.72,0.673-1.035 c0.315-0.315,0.615-0.51,1.035-0.673c0.317-0.123,0.794-0.27,1.671-0.31C9.312,4.631,9.597,4.622,12,4.622 M12,3 C9.556,3,9.249,3.01,8.289,3.054C7.331,3.098,6.677,3.25,6.105,3.472C5.513,3.702,5.011,4.01,4.511,4.511 c-0.5,0.5-0.808,1.002-1.038,1.594C3.25,6.677,3.098,7.331,3.054,8.289C3.01,9.249,3,9.556,3,12c0,2.444,0.01,2.751,0.054,3.711 c0.044,0.958,0.196,1.612,0.418,2.185c0.23,0.592,0.538,1.094,1.038,1.594c0.5,0.5,1.002,0.808,1.594,1.038 c0.572,0.222,1.227,0.375,2.185,0.418C9.249,20.99,9.556,21,12,21s2.751-0.01,3.711-0.054c0.958-0.044,1.612-0.196,2.185-0.418 c0.592-0.23,1.094-0.538,1.594-1.038c0.5-0.5,0.808-1.002,1.038-1.594c0.222-0.572,0.375-1.227,0.418-2.185 C20.99,14.751,21,14.444,21,12s-0.01-2.751-0.054-3.711c-0.044-0.958-0.196-1.612-0.418-2.185c-0.23-0.592-0.538-1.094-1.038-1.594 c-0.5-0.5-1.002-0.808-1.594-1.038c-0.572-0.222-1.227-0.375-2.185-0.418C14.751,3.01,14.444,3,12,3L12,3z M12,7.378 c-2.552,0-4.622,2.069-4.622,4.622S9.448,16.622,12,16.622s4.622-2.069,4.622-4.622S14.552,7.378,12,7.378z M12,15 c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S13.657,15,12,15z M16.804,6.116c-0.596,0-1.08,0.484-1.08,1.08 s0.484,1.08,1.08,1.08c0.596,0,1.08-0.484,1.08-1.08S17.401,6.116,16.804,6.116z"></path></svg></a></li> <li><a href="https://bsky.app/profile/wikipedia.org" class="" aria-label="</html>{{{social-footer-wiki-4-title}}}<html>" target="_blank"><svg width="24" height="24" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"><path d="M6.3,4.2c2.3,1.7,4.8,5.3,5.7,7.2.9-1.9,3.4-5.4,5.7-7.2,1.7-1.3,4.3-2.2,4.3.9s-.4,5.2-.6,5.9c-.7,2.6-3.3,3.2-5.6,2.8,4,.7,5.1,3,2.9,5.3-5,5.2-6.7-2.8-6.7-2.8,0,0-1.7,8-6.7,2.8-2.2-2.3-1.2-4.6,2.9-5.3-2.3.4-4.9-.3-5.6-2.8-.2-.7-.6-5.3-.6-5.9,0-3.1,2.7-2.1,4.3-.9h0Z"></path></svg></a></li> <li><a href="https://www.facebook.com/wikipedia" class="" aria-label="</html>{{{social-footer-wiki-5-title}}}<html>" target="_blank"><svg width="24" height="24" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"><path d="M12 2C6.5 2 2 6.5 2 12c0 5 3.7 9.1 8.4 9.9v-7H7.9V12h2.5V9.8c0-2.5 1.5-3.9 3.8-3.9 1.1 0 2.2.2 2.2.2v2.5h-1.3c-1.2 0-1.6.8-1.6 1.6V12h2.8l-.4 2.9h-2.3v7C18.3 21.1 22 17 22 12c0-5.5-4.5-10-10-10z"></path></svg></a></li> <li><a href="https://www.youtube.com/@wikipedia" class="" aria-label="</html>{{{social-footer-wiki-6-title}}}<html>" target="_blank"><svg width="24" height="24" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"><path d="M21.8,8.001c0,0-0.195-1.378-0.795-1.985c-0.76-0.797-1.613-0.801-2.004-0.847c-2.799-0.202-6.997-0.202-6.997-0.202 h-0.009c0,0-4.198,0-6.997,0.202C4.608,5.216,3.756,5.22,2.995,6.016C2.395,6.623,2.2,8.001,2.2,8.001S2,9.62,2,11.238v1.517 c0,1.618,0.2,3.237,0.2,3.237s0.195,1.378,0.795,1.985c0.761,0.797,1.76,0.771,2.205,0.855c1.6,0.153,6.8,0.201,6.8,0.201 s4.203-0.006,7.001-0.209c0.391-0.047,1.243-0.051,2.004-0.847c0.6-0.607,0.795-1.985,0.795-1.985s0.2-1.618,0.2-3.237v-1.517 C22,9.62,21.8,8.001,21.8,8.001z M9.935,14.594l-0.001-5.62l5.404,2.82L9.935,14.594z"></path></svg></a></li> </ul> </div> </div><!-- social-footer-col Wikipedia --> </div><!-- end social footer --></html>}}<html> <div class="footer-legal mw-620"> <p></html>{{{chapters}}}<html></p> <p></html>{{{questions}}}<html></p> <p></html>{{{terms}}}<html></p> </div><!-- End footer-legal --> </footer> </div> </html> <div style="display: none;" class="loggedinonly editor-tools"><!--edit page snippet--> [{{fullurl:{{FULLPAGENAME}}|action=edit}} Edit this page] · [{{fullurl:Template:Thank You 2021|action=edit}} Edit template] · [https://thankyou.wikipedia.org/wiki/Special:PrefixIndex?prefix=Thank+You&namespace=0 Other languages] </div> {{Hide banners}}<!-- Important - do not remove! --> {{TY share links.js}} __NOEDITSECTION__ __NOINDEX__ [[Category:Thank You page]] {{#if:{{{survey-code|}}}|[[Category:Thank You page with active survey]]}} lkhrg3xuuubcaeq5dlopiex9w1lo95x Template:TY share links.js 10 125 1404 1399 2026-04-02T15:09:21Z EHughes (WMF) 9 Removing twitter/x and adding linkedin 1404 wikitext text/x-wiki <html> <script> /* -- Social share links code. Adds links to an element with id=share-links -- */ document.addEventListener( 'DOMContentLoaded', function(event) { // hack to set language based on template const tyPage = document.querySelector( '.ty-page' ); if ( tyPage ) { document.documentElement.lang = tyPage.lang || 'en'; } const language = document.documentElement.lang || 'en'; const shareContainer = document.getElementById( 'ty-share-links' ); const donateUrl = 'https://donate.wikimedia.org/'; const messages = { emailButton: { en: 'Email' }, shareText: { en: `I support Wikipedia, where information is still human-created, fact-checked, and 100% free. Join me! https://donate.wikimedia.org/` }, shareSubject: { // used for email subject line en: `Thought you might care about this, too.` } } let shareText = messages.shareText[language] || messages.shareText.en, shareSubject = messages.shareSubject[language] || messages.shareSubject.en; encodedDonateUrl = encodeURIComponent( donateUrl ), encodedShareText = encodeURIComponent( shareText ), encodedShareSubject = encodeURIComponent( shareSubject ); /* Other share links */ let shareSites = [ { name: 'Facebook', url: `https://www.facebook.com/sharer.php?u=${encodedDonateUrl}&t=${encodedShareText}`, class: 'share-facebook btn btn-lt-blue' }, // { // name: 'X/Twitter', // url: `https://twitter.com/intent/tweet?text=${encodedShareText}`, // class: 'share-twitter btn btn-lt-blue' // }, { name: 'Bluesky', url: `https://bsky.app/intent/compose?text=${encodedShareText}`, class: 'share-bluesky btn btn-lt-blue' }, { name: 'LinkedIn', url: `https://www.linkedin.com/shareArticle?mini=true&url=${encodedDonateUrl}&summary=${encodedShareText}`, class: 'share-linkedin btn btn-lt-blue' }, { name: messages.emailButton[language] || messages.emailButton.en, url: `mailto:?subject=${encodedShareSubject}&body=${encodedShareText}`, class: 'share-email btn btn-lt-blue' } ]; for ( let i = 0; i < shareSites.length; i++ ) { let el = document.createElement('a'); el.target = '_blank'; el.href = shareSites[i].url; el.textContent = shareSites[i].name; el.className = shareSites[i].class; shareContainer.appendChild( el ); } }); </script> </html> q71u4hc8wkvvbku6inihsnslwzx9s97 1407 1404 2026-04-02T15:29:56Z EHughes (WMF) 9 Updating Linkedin URL 1407 wikitext text/x-wiki <html> <script> /* -- Social share links code. Adds links to an element with id=share-links -- */ document.addEventListener( 'DOMContentLoaded', function(event) { // hack to set language based on template const tyPage = document.querySelector( '.ty-page' ); if ( tyPage ) { document.documentElement.lang = tyPage.lang || 'en'; } const language = document.documentElement.lang || 'en'; const shareContainer = document.getElementById( 'ty-share-links' ); const donateUrl = 'https://donate.wikimedia.org/'; const messages = { emailButton: { en: 'Email' }, shareText: { en: `I support Wikipedia, where information is still human-created, fact-checked, and 100% free. Join me! https://donate.wikimedia.org/` }, shareSubject: { // used for email subject line en: `Thought you might care about this, too.` } } let shareText = messages.shareText[language] || messages.shareText.en, shareSubject = messages.shareSubject[language] || messages.shareSubject.en; encodedDonateUrl = encodeURIComponent( donateUrl ), encodedShareText = encodeURIComponent( shareText ), encodedShareSubject = encodeURIComponent( shareSubject ); /* Other share links */ let shareSites = [ { name: 'Facebook', url: `https://www.facebook.com/sharer.php?u=${encodedDonateUrl}&t=${encodedShareText}`, class: 'share-facebook btn btn-lt-blue' }, // { // name: 'X/Twitter', // url: `https://twitter.com/intent/tweet?text=${encodedShareText}`, // class: 'share-twitter btn btn-lt-blue' // }, { name: 'Bluesky', url: `https://bsky.app/intent/compose?text=${encodedShareText}`, class: 'share-bluesky btn btn-lt-blue' }, { name: 'LinkedIn', url: `https://www.linkedin.com/shareArticle?mini=true&url=${encodedDonateUrl}`, class: 'share-linkedin btn btn-lt-blue' }, { name: messages.emailButton[language] || messages.emailButton.en, url: `mailto:?subject=${encodedShareSubject}&body=${encodedShareText}`, class: 'share-email btn btn-lt-blue' } ]; for ( let i = 0; i < shareSites.length; i++ ) { let el = document.createElement('a'); el.target = '_blank'; el.href = shareSites[i].url; el.textContent = shareSites[i].name; el.className = shareSites[i].class; shareContainer.appendChild( el ); } }); </script> </html> 0sfnktso8zsqb69nj8vcgmp7gd55rsv