Merge pull request #6728 from bocoup/2021-annual-report
2021 annual report
|
@ -17,9 +17,17 @@ const TextAndMediaSnippet = props => (
|
||||||
<div className={classNames('text-and-media-snippet', props.className)}>
|
<div className={classNames('text-and-media-snippet', props.className)}>
|
||||||
<div className="half">
|
<div className="half">
|
||||||
<h4>{props.title}</h4>
|
<h4>{props.title}</h4>
|
||||||
<p>
|
{props.children.length > 0 ?
|
||||||
{props.children}
|
<div>
|
||||||
</p>
|
{/* eslint-disable */}
|
||||||
|
{props.children.map((paragraph, i) => {
|
||||||
|
return <p key={i}>{paragraph}</p>;
|
||||||
|
})}
|
||||||
|
</div> :
|
||||||
|
<p>
|
||||||
|
{props.children}
|
||||||
|
</p>
|
||||||
|
}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="half">
|
<div className="half">
|
||||||
|
|
|
@ -30,6 +30,14 @@
|
||||||
"title": "Annual Report 2020",
|
"title": "Annual Report 2020",
|
||||||
"viewportWidth": "device-width"
|
"viewportWidth": "device-width"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "annual-report-2021",
|
||||||
|
"pattern": "^/annual-report/2021/?(\\?.*)?$",
|
||||||
|
"routeAlias": "/annual-report/2021/?$",
|
||||||
|
"view": "annual-report/2021/annual-report",
|
||||||
|
"title": "Annual Report 2021",
|
||||||
|
"viewportWidth": "device-width"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "camp",
|
"name": "camp",
|
||||||
"pattern": "^/camp/?$",
|
"pattern": "^/camp/?$",
|
||||||
|
|
2155
src/views/annual-report/2021/annual-report.jsx
Normal file
2543
src/views/annual-report/2021/annual-report.scss
Normal file
59
src/views/annual-report/2021/country-blurb/country-blurb.jsx
Normal file
|
@ -0,0 +1,59 @@
|
||||||
|
const classNames = require('classnames');
|
||||||
|
const PropTypes = require('prop-types');
|
||||||
|
const React = require('react');
|
||||||
|
|
||||||
|
require('./country-blurb.scss');
|
||||||
|
|
||||||
|
// Class names regular and reverse indicate whether the image should
|
||||||
|
// be placed on the right of left of the text in wider layouts.
|
||||||
|
// At smaller widths, the image will always be stacked on top.
|
||||||
|
// Because the right column would typically stack under the left
|
||||||
|
// I've named this class reverse since it is using flexbox reverse
|
||||||
|
// column layout to get the image to always appear on top of the text.
|
||||||
|
|
||||||
|
const CountryBlurb = props => (
|
||||||
|
<div className={classNames('country-blurb', props.className)}>
|
||||||
|
<div className="half">
|
||||||
|
<div className="country-info">
|
||||||
|
<img
|
||||||
|
src={props.icon}
|
||||||
|
alt={props.iconAlt}
|
||||||
|
/>
|
||||||
|
<div className="country-text">
|
||||||
|
<h4>{props.title}</h4>
|
||||||
|
<div className="location">
|
||||||
|
<img
|
||||||
|
src={props.listIcon}
|
||||||
|
alt="location icon"
|
||||||
|
/>
|
||||||
|
<span>{props.country}</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<p>
|
||||||
|
{props.children}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div className="half">
|
||||||
|
<img
|
||||||
|
className="large"
|
||||||
|
src={props.largeImage}
|
||||||
|
alt={props.alt}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
|
||||||
|
CountryBlurb.propTypes = {
|
||||||
|
children: PropTypes.node,
|
||||||
|
icon: PropTypes.string,
|
||||||
|
title: PropTypes.string,
|
||||||
|
listIcon: PropTypes.string,
|
||||||
|
country: PropTypes.string,
|
||||||
|
className: PropTypes.string,
|
||||||
|
largeImage: PropTypes.string,
|
||||||
|
alt: PropTypes.string,
|
||||||
|
iconAlt: PropTypes.string
|
||||||
|
};
|
||||||
|
|
||||||
|
module.exports = CountryBlurb;
|
|
@ -0,0 +1,65 @@
|
||||||
|
@import "../../../../frameless";
|
||||||
|
|
||||||
|
.country-blurb{
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-around;
|
||||||
|
margin-bottom: 62px;
|
||||||
|
|
||||||
|
&.reverse {
|
||||||
|
flex-direction: row-reverse;
|
||||||
|
|
||||||
|
@media #{$intermediate-and-smaller} {
|
||||||
|
flex-direction: column-reverse;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media #{$intermediate-and-smaller} {
|
||||||
|
// If we want to support both image on top and image on bottom,
|
||||||
|
// we can use the regular & reverse classNames
|
||||||
|
flex-direction: column-reverse;
|
||||||
|
}
|
||||||
|
|
||||||
|
.half{
|
||||||
|
max-width: 460px;
|
||||||
|
|
||||||
|
img.large{
|
||||||
|
max-width: 380px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
p{
|
||||||
|
font-size: 1rem;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.country-info{
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
img{
|
||||||
|
width: 65px;
|
||||||
|
height: 65px;
|
||||||
|
margin-right: 15px;
|
||||||
|
}
|
||||||
|
.country-text{
|
||||||
|
h4{
|
||||||
|
margin: 0 0 5px 0;
|
||||||
|
}
|
||||||
|
.location{
|
||||||
|
display: flex;
|
||||||
|
justify-content: flex-start;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
font-size: 1.25rem;
|
||||||
|
line-height: 1.5rem;
|
||||||
|
|
||||||
|
img{
|
||||||
|
width: 18px;
|
||||||
|
height: 18px;
|
||||||
|
margin-right: 5px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
289
src/views/annual-report/2021/l10n.json
Normal file
|
@ -0,0 +1,289 @@
|
||||||
|
{
|
||||||
|
"annualReport.2021.subnavFoundersMessage": "Founder's Message",
|
||||||
|
"annualReport.2021.subnavMission": "Mission",
|
||||||
|
"annualReport.2021.subnavReach": "Reach",
|
||||||
|
"annualReport.2021.subnavThemes": "Themes",
|
||||||
|
"annualReport.2021.subnavDirectorsMessage": "Director's Message",
|
||||||
|
"annualReport.2021.subnavSupporters": "Supporters",
|
||||||
|
"annualReport.2021.subnavTeam": "Team",
|
||||||
|
"annualReport.2021.subnavDonate": "Donate",
|
||||||
|
|
||||||
|
"annualReport.2021.mastheadYear": "2021 Annual Report",
|
||||||
|
"annualReport.2021.mastheadTitle": "Building an Equitable Community Together",
|
||||||
|
"annualReport.2021.directorsMessageTitle": "A Message from Our Executive Director",
|
||||||
|
"annualReport.2021.directorsMessageP1": "In 2021, COVID-19 continued to disrupt our routines and shape the way we interact with one another. Even as we began to gather together, schools reopened, and there were calls for a “return to normal,” the most vulnerable in our society remained disproportionately impacted by the inequitable structures that COVID-19 exacerbated. The COVID-19 crisis shaped young people’s relationships to Scratch, and solidified Scratch as a more vital place than ever for them to create, learn, and connect. But as we moved into a new year, we did not leave behind our most vulnerable young people as they began to navigate “the new normal.”",
|
||||||
|
"annualReport.2021.directorsMessageP2": "One of the foundational values of Scratch has always been to empower young people to explore, create, play, and discover—opportunities that aren’t afforded equitably to all students.",
|
||||||
|
"annualReport.2021.directorsMessagePullquote": "We believe in the transformative power of self-expression and creativity, and in providing space for young people to use creative coding as a tool to raise their voice.",
|
||||||
|
"annualReport.2021.directorsMessageP3": "I’m proud to serve as the Executive Director of the Scratch Foundation during this pivotal moment in our history, and will continue to spread Scratch’s caring, collaborative approach to creative learning to kids around the world who need these opportunities the most.",
|
||||||
|
"annualReport.2021.directorsMessageP4": "Last year was an incredible year for the Scratch Foundation–we focused on growing our team with remarkable, diverse leaders and building a solid foundation for our continued transition to an independent organization. We developed a three-year Strategic Plan with the combined efforts of every team member at every level of our organization, codifying the work we’re embarking on together. As Scratch grows, we remain focused on equity and community-building, and keeping Scratch a safe space for kids to connect, create, and collaborate with their peers around the world.",
|
||||||
|
"annualReport.2021.directorsMessageP5": "LI can’t thank you enough for embarking on this journey with our team, and for your continued support of our mission. The compassion and creativity of the Scratch Community is endlessly inspiring to us, and we can’t wait for you to join us in the important work ahead of us.",
|
||||||
|
"annualReport.2021.directorsMessageP6": "Over the past decade, Scratch has had phenomenal success, engaging tens of millions of young people around the world. But we are just beginning. The challenge for the years ahead is to ensure that we can continue to spread and support not just our technology but also our creative, caring, collaborative learning approach, so that young people around the world have equitable opportunities to imagine, create, share, and learn. We look forward to working with all of you to make that happen!",
|
||||||
|
"annualReport.2021.EDTitle": "Executive Director, Scratch Foundation",
|
||||||
|
|
||||||
|
"annualReport.2021.watchVideo": "Watch Video",
|
||||||
|
|
||||||
|
"annualReport.2021.missionTitle": "Our Mission, Vision, & Values",
|
||||||
|
"annualReport.2021.missionP1": "We are committed to educational justice and prioritizing equity across all aspects of our work, with a particular focus on initiatives and approaches that support children, families, and educators who have been excluded from creative computing.",
|
||||||
|
"annualReport.2021.missionP2": "We’ve developed Scratch as a free, safe, playful learning environment that engages all children in thinking creatively, reasoning systematically, and working collaboratively—essential skills for everyone in today's society. We work with educators and families to support children in exploring, sharing, and learning.",
|
||||||
|
"annualReport.2021.missionHeader": "Mission",
|
||||||
|
"annualReport.2021.missionSubtitle": "Providing young people with digital tools and opportunities to imagine, create, share, and learn.",
|
||||||
|
"annualReport.2021.visionHeader": "Vision",
|
||||||
|
"annualReport.2021.visionSubtitle": "To spread creative, caring, collaborative, equitable approaches to coding and learning around the world.",
|
||||||
|
"annualReport.2021.valuesHeader": "Values",
|
||||||
|
"annualReport.2021.valuesSubtitle": "In this work, we are guided by our core values that define our principles as an organization and a community:",
|
||||||
|
"annualReport.2021.creativeExpressionTitle": "Creative Expression",
|
||||||
|
"annualReport.2021.progressiveImprovementTitle": "Progressive Improvement",
|
||||||
|
"annualReport.2021.EquitableOpportunitiesTitle": "Equitable Opportunities",
|
||||||
|
"annualReport.2021.playfulEngagementTitle": "Playful Engagement",
|
||||||
|
"annualReport.2021.creativeExpressionDescription": "We are building an educational movement inclusive of people from diverse backgrounds so we can reach children around the world who have been excluded from creative coding opportunities.",
|
||||||
|
"annualReport.2021.progressiveImprovementDescription": "We hold ourselves to a high standard and always strive to iterate, improve, and inspire one another to best serve young people around the world and the community that makes our work possible.",
|
||||||
|
"annualReport.2021.EquitableOpportunitiesDescription": "We are building an educational movement inclusive of people from diverse backgrounds so we can reach children around the world who have been excluded from creative coding opportunities.",
|
||||||
|
"annualReport.2021.playfulEngagementDescription": "At Scratch, play is an approach for making, sharing, learning, and engaging with the world. We encourage joyful exploration, experimentation, and collaboration.",
|
||||||
|
|
||||||
|
"annualReport.2021.reachTitle": "Reaching Children Around the World",
|
||||||
|
"annualReport.2021.reachSubtitle": "Scratch is the world’s largest coding community for children and teens, ages 8 and up.",
|
||||||
|
"annualReport.2021.reachMillion": "million",
|
||||||
|
"annualReport.2021.reachNewUsersNumber": "18 {million}",
|
||||||
|
"annualReport.2021.reachNewUsersIncrease": "22% from 2020",
|
||||||
|
"annualReport.2021.reachProjectsCreatedNumber": "113 {million}",
|
||||||
|
"annualReport.2021.reachProjectsCreatedIncrease": "39% from 2020",
|
||||||
|
"annualReport.2021.reachProjectCreatorsNumber": "42 {million}",
|
||||||
|
"annualReport.2021.reachProjectCreatorsIncrease": "44% from 2020",
|
||||||
|
"annualReport.2021.reachNewUsers": "New Users",
|
||||||
|
"annualReport.2021.reachProjectsCreated": "Projects Created",
|
||||||
|
"annualReport.2021.reachProjectCreators": "People Creating Projects",
|
||||||
|
"annualReport.2021.reachScratchAroundTheWorld": "Scratch is used around the world across more than 200 countries and territories",
|
||||||
|
"annualReport.2021.reachSaudiArabiaTitle": "Saudi Arabia",
|
||||||
|
"annualReport.2021.reachSaudiArabiaDescription": "We saw tremendous growth around the world in 2021, but we were amazed to see the growth in Saudi Arabia, where we saw twice as many new users as the year before.",
|
||||||
|
"annualReport.2021.reachTranslationTitle": "Scratch is Translated into 74 Languages",
|
||||||
|
"annualReport.2021.reachTranslationIncrease": "10 languages from 2020",
|
||||||
|
"annualReport.2021.reachTranslationBlurb": "Thanks to volunteer translators from around the world.",
|
||||||
|
"annualReport.2021.reachScratchJrBlurb": "ScratchJr is an introductory programming environment that enables young children (ages 5-7) to create their own interactive stories and games.",
|
||||||
|
"annualReport.2021.reachDownloadsMillion": "5 {million}",
|
||||||
|
"annualReport.2021.reachDownloads": "Downloads in 2021",
|
||||||
|
"annualReport.2021.reachDownloadsIncrease": "2 {million} from 2020",
|
||||||
|
|
||||||
|
"annualReport.2021.themesTitle": "Emerging Themes",
|
||||||
|
"annualReport.2021.themesDescription": "Amidst ongoing uncertainty from COVID-19, Scratch continued to serve as a key space for young people to connect and create together. In 2021, we focused our efforts on building a strong foundation to equitably support our growing global community and our growing Scratch Team. Our work was centered around three major themes: fostering community, increasing access and accessibility, and developing the Scratch Education Collaborative (SEC).",
|
||||||
|
|
||||||
|
"annualReport.2021.SECTitle": "Scratch Education Collaborative",
|
||||||
|
"annualReport.2021.SECIntro": "Community voices and partnerships are deeply woven into the fabric of Scratch’s history. They have, and continue to be, integral in helping us increase accessible and equitable coding opportunities worldwide. In 2021, we launched the Scratch Education Collaborative, an initiative committed to identifying and eliminating the barriers to access to creative coding that connects remarkable organizations around the world.",
|
||||||
|
"annualReport.2021.SECWhatIs": "What is SEC?",
|
||||||
|
"annualReport.2021.SECWhatIsP1": "The SEC supports and engages participating organizations in a two-year, collaborative cohort experience to strengthen their commitment to, and implementation of, equitable creative coding using Scratch and ScratchJr.",
|
||||||
|
"annualReport.2021.SECWhatIsP2": "By the end of the cohort experience, organizations will have formed new partnerships with each other and with Scratch, and will have established new models for equity-centered creative coding resources.",
|
||||||
|
"annualReport.2021.SECWhatIsP3": "Our work with the SEC is made possible thanks to a generous grant from Google.org. We’d like to extend our gratitude for their continued support of our mission.",
|
||||||
|
"annualReport.2021.SECOrgNumber": "41",
|
||||||
|
"annualReport.2021.SECOrgLabel": "organizations",
|
||||||
|
"annualReport.2021.SECCountryNumber": "13",
|
||||||
|
"annualReport.2021.SECCountryLabel": "countries",
|
||||||
|
"annualReport.2021.SECPartnerNumber": "7",
|
||||||
|
"annualReport.2021.SECPartnerLabel": "partners",
|
||||||
|
"annualReport.2021.SECMapParagraph": "Our first cohort included 41 organizations representing 13 countries around the world, united by their commitment to supporting learners from historically marginalized communities in developing their confidence with creative computing.",
|
||||||
|
|
||||||
|
"annualReport.2021.spotlightStory": "Spotlight Story",
|
||||||
|
|
||||||
|
"annualReport.2021.SECSpotlightTitle": "Bridges to Science Spotlight",
|
||||||
|
"annualReport.2021.SECSpotlightLocation": "Fulshear, Texas",
|
||||||
|
"annualReport.2021.SECSpotlightText1": "Bridges to Science; a Texas-based nonprofit providing math, coding, and robotics programs for underserved youth; was one of 41 exceptional organizations to join the Scratch Education Collaborative's first cohort.",
|
||||||
|
"annualReport.2021.SECSpotlightText2": "In 2021, we supported Bridges to Science in facilitating their first “Hour of Code” workshop with Code.org.",
|
||||||
|
|
||||||
|
"annualReport.2021.SECPullQuote": "One of the greatest joys that we have in teaching our students is that each one of them, no matter how quiet they are, all find a voice in computer science through Scratch.",
|
||||||
|
"annualReport.2021.SECPullQuoteAttr": "- Rosa Aristy, Bridges to Science Founder ",
|
||||||
|
|
||||||
|
"annualReport.2021.SECWorkshops": "SEC Workshops",
|
||||||
|
"annualReport.2021.SECWorkshopsText": "Last year, the Scratch Education Collaborative hosted a series of workshops that supported their inaugural cohort in defining and exploring unique pathways to equitable creative coding. Workshops were facilitated by Stanford d. School, Tinkering Studio, the Brazilian Creative Learning Network, and Chicago Public Schools CS4ALL. Together, workshop participants developed a shared understanding of creative coding and discussed strategies and practices that foster culturally sustaining communities through creative communication and collaboration.",
|
||||||
|
"annualReport.2021.SECWorkshopsSubtitle": "How can we creatively empower local community in exploring creative coding?",
|
||||||
|
|
||||||
|
"annualReport.2021.accessTitle": "Access",
|
||||||
|
"annualReport.2021.accessIntro": "As COVID-19 forced schools to close and pushed learning to virtual spaces, many students and teachers were discovering Scratch for the first time or adapting the way they taught and learned creative coding. From our own homes, the Scratch Team worked to support the changing needs of educators and the online community.",
|
||||||
|
|
||||||
|
"annualReport.2021.accessASL": "ASL Tutorial",
|
||||||
|
"annualReport.2021.accessASLText": "In 2021, we partnered with Deaf Kids Code to launch our first American Sign Language tutorial in the Scratch Editor.",
|
||||||
|
"annualReport.2021.accessASLText2": " Together, we were inspired to create an evergreen resource that would expand creative pathways for deaf Scratchers.",
|
||||||
|
"annualReport.2021.accessASLText3": "The video is a 13-minute remake of our original “Getting Started with Scratch” tutorial that introduces beginners to the Scratch platform.",
|
||||||
|
"annualReport.2021.accessPullQuote": "Being a good ally is a willingness to bend towards being accessible and really putting weight on the recommendations of organizations like mine … Asking, ‘What is it that we can do?’ and really letting us take the reins and go for it, with very little to no resistance; that is a very rare thing.",
|
||||||
|
"annualReport.2021.accessPullQuoteAttr": "- Shireen Hafeez, Founder of Deaf Kids Code ",
|
||||||
|
|
||||||
|
"annualReport.2021.accessDEICommittee": "DEI Committees at Scratch",
|
||||||
|
"annualReport.2021.accessDEICommitteeText": "In 2021, several committees at Scratch embarked on work to make Scratch more diverse, equitable, and inclusive for all users. We’re excited to share the progress each committee has made and the work still ahead.",
|
||||||
|
|
||||||
|
"annualReport.2021.accessDEICommitteeAccessibility": "Accessibility",
|
||||||
|
"annualReport.2021.accessDEICommitteeAccessibilityText": "The Accessibility Committee was created in response to one Scratch Team member’s own difficulty using Scratch’s coding blocks and a recognized need to better support Scratchers of all abilities.",
|
||||||
|
"annualReport.2021.accessDEICommitteeAccessibilityText2": "In October of 2021, the committee launched a project to make the color of our coding blocks accessible for Scratchers with vision impairments. The committee is excited to partner with teachers and community organizations specializing in accessibility so the coding blocks meet web accessibility guidelines, and more importantly, lower floors to make Scratch more accessible for all.",
|
||||||
|
|
||||||
|
"annualReport.2021.accessDEICommitteeG-JEDI": "G-JEDI",
|
||||||
|
"annualReport.2021.accessDEICommitteeG-JEDIText": "The Global, Justice, Equity, Diversity, and Inclusion (G-JEDI) Committee was formed to develop a shared language that defines what Diversity, Equity, and Inclusion (DEI) mean to the Scratch Team.",
|
||||||
|
"annualReport.2021.accessDEICommitteeG-JEDIText2": "In 2021, the committee began work on a DEI statement to outline the ways in which DEI has informed the Scratch Team and community’s past and present work, and how it will continue to inform new initiatives going forward.",
|
||||||
|
|
||||||
|
"annualReport.2021.accessDEICommitteeEquityXDesign": "Equity x Design",
|
||||||
|
"annualReport.2021.accessDEICommitteeEquityXDesignText": "The EquityXDesign Committee was created as a place for Scratch Team members and our collaborators in MIT’s Lifelong Kindergarten group to read and discuss ideas around equity-centered design practices.",
|
||||||
|
"annualReport.2021.accessDEICommitteeEquityXDesignText2": "The conversations are guided by Sasha Costanza-Chock’s “Design Justice: Community-Led Practices to Build the Worlds We Need,” and committee members discuss ways in which they can incorporate equity-centered design practices in the development of Scratch tools and resources.",
|
||||||
|
|
||||||
|
"annualReport.2021.access10NewLanguages": "10 New Languages",
|
||||||
|
"annualReport.2021.access10NewLanguagesText": "With huge thanks to our translation community, we were able to connect with Scratchers in 74 languages last year! In 2021, 10 new languages were added to Scratch, including isiXhosa (South Africa), Sepedi (South Africa), Setswana (South Africa), Afrikaans (South Africa), Kichwa (Peru), ଓଡ଼ିଆ/Odia (India), Kazakh (Kazakhstan), Aragonese (Spain), Western Frisian (the Netherlands), and Bengali (Bangladesh, India, and other regions).",
|
||||||
|
|
||||||
|
"annualReport.2021.accessSouthAfrica": "Zero-rated Scratch in South Africa",
|
||||||
|
"annualReport.2021.accessSouthAfricaText": "To improve the Scratch experience for young people in regions with low or no internet connectivity, we partnered with the National Education Collaboration Trust (NECT) of South Africa to host a zero-rated page for downloading Scratch. Downloads on zero-rated pages do not use up any data bandwidth, reducing a barrier to accessing Scratch due to data limits and costs. Just two months after its April 2021 launch, the page had more than 1300 visitors.",
|
||||||
|
|
||||||
|
"annualReport.2021.accessSnapshot": "Snapshots",
|
||||||
|
|
||||||
|
"annualReport.2021.communityTitle": "Community",
|
||||||
|
"annualReport.2021.communityIntro": "In 2021, the Scratch community continued to experience rapid growth as even more young people around the world created and connected alongside their peers. We also continued to develop partnerships with community members to improve the Scratch experience for our diverse community of users.",
|
||||||
|
|
||||||
|
"annualReport.2021.communityScratchConference": "Scratch Conference",
|
||||||
|
"annualReport.2021.communityScratchConferenceText1": "In July, educators in our global community came together to celebrate creative coding at the Scratch Conference. This free, virtual event was led by our collaborators at MIT’s Lifelong Kindergarten Group. The conference brought together more than 1,500 educators and Scratch enthusiasts, who spent the day connecting, collaborating, and learning from one another, even as COVID kept us apart.",
|
||||||
|
|
||||||
|
"annualReport.2021.communityVolunteerTranslators": "Volunteer Translators",
|
||||||
|
"annualReport.2021.communityVolunteerTranslatorsText": "Since Scratch was launched in 2007, we have been committed to supporting our users worldwide. Our language translation volunteers work closely with the Scratch Team to help translate and localize our platform and resources for the diverse communities that we serve.",
|
||||||
|
"annualReport.2021.communityVolunteerTranslatorsText2": "Thousands of translators have volunteered their time to translate Scratch into 74 languages and counting, and there are currently more than one thousand translators signed up to translate Scratch and ScratchJr. We’re grateful to our volunteers for helping us reach more Scratchers around the world!",
|
||||||
|
|
||||||
|
"annualReport.2021.communityScratchCommunity": "The Scratch Community in 2021",
|
||||||
|
"annualReport.2021.communityScratchCommunityIntro": "In 2021, more than 113 million projects were created on the Scratch site – almost a 39% increase from 2020 – and more than one million new studios were created! Throughout the year, the Scratch Team hosted numerous studios to celebrate important events and encourage Scratchers to participate in the online community.",
|
||||||
|
|
||||||
|
"annualReport.2021.yearInReview": "Year in Review",
|
||||||
|
"annualReport.2021.yearInReviewText": "2021 was a remarkable year in the online community. The Community Team highlighted and developed opportunities for young people to express their ideas and become engaged in positive ways, and incredible movements sprung up from Scratchers themselves. Here’s a look back at some of the highlights of the year:",
|
||||||
|
|
||||||
|
"annualReport.2021.yearInReviewCard1Date": "January",
|
||||||
|
"annualReport.2021.yearInReviewCard1Title": "Poetic Cafe",
|
||||||
|
"annualReport.2021.yearInReviewCard1Text": "We “opened” our very first Poetic Cafe where Scratchers were invited to write, share, or collaborate on poems to share with the community.",
|
||||||
|
|
||||||
|
"annualReport.2021.yearInReviewCard2Date": "February",
|
||||||
|
"annualReport.2021.yearInReviewCard2Title": "Black History Month Studio",
|
||||||
|
"annualReport.2021.yearInReviewCard2Text": "Scratchers shared interactive artwork, created poems, animated music videos, and more to celebrate influential people and events in Black history.",
|
||||||
|
|
||||||
|
"annualReport.2021.yearInReviewCard3Date": "April",
|
||||||
|
"annualReport.2021.yearInReviewCard3Title": "April Fool’s Day",
|
||||||
|
"annualReport.2021.yearInReviewCard3Text": "Scratchers were asked to imagine the “Secret life” of the Scratch Cat and went on a treasure hunt for fun and silly things hidden around the Scratch website.",
|
||||||
|
|
||||||
|
"annualReport.2021.yearInReviewCard4Date": "May",
|
||||||
|
"annualReport.2021.yearInReviewCard4Title": "Scratch Week",
|
||||||
|
"annualReport.2021.yearInReviewCard4Text": "Scratchers around the world shared more than 3,500 projects responding to themed prompts like “Cooking From Scratch” and “Ridiculous Inventions” to celebrate Scratch's birthday.",
|
||||||
|
|
||||||
|
"annualReport.2021.yearInReviewCard5Date": "June",
|
||||||
|
"annualReport.2021.yearInReviewCard5Title": "Pride Month",
|
||||||
|
"annualReport.2021.yearInReviewCard5Text": "Scratchers created projects using all the colors of the rainbow to celebrate the LGBTQ+ community in the Pride Month studio.",
|
||||||
|
|
||||||
|
"annualReport.2021.yearInReviewCard6Date": "August",
|
||||||
|
"annualReport.2021.yearInReviewCard6Title": "Scratch Camp",
|
||||||
|
"annualReport.2021.yearInReviewCard6Text": "During this annual three-week long event, Scratchers created more than 7,000 projects that moved and grooved, showcased creative do-it-yourself (DIY) ideas, and shared their discoveries about the natural world around them.",
|
||||||
|
|
||||||
|
"annualReport.2021.yearInReviewCard7Date": "October",
|
||||||
|
"annualReport.2021.yearInReviewCard7Title": "Scratchtober",
|
||||||
|
"annualReport.2021.yearInReviewCard7Text": "For two weeks, Scratchers created projects showcasing their interpretations of daily prompts in the Scratchtober studio. More than 3,500 projects were created around single-word themes like underwater, celebration, and creatures.",
|
||||||
|
|
||||||
|
"annualReport.2021.yearInReviewCard8Date": "December",
|
||||||
|
"annualReport.2021.yearInReviewCard8Title": "CSEdWeek",
|
||||||
|
"annualReport.2021.yearInReviewCard8Text": "Computer Science Education Week (CSEdWeek) occurred from December 6-12 to celebrate computer science around the world. Scratch participated in the week by encouraging community members to check out tutorials, studios, and a live event hosted in partnership with Makey Makey!",
|
||||||
|
|
||||||
|
"annualReport.2021.yearInReviewCard9Date": "December",
|
||||||
|
"annualReport.2021.yearInReviewCard9Title": "2021: A Scratch Year in Review Studio",
|
||||||
|
"annualReport.2021.yearInReviewCard9Text": "In 2021, Scratchers learned new skills, connected with friends around the world, and found creative ways to express themselves. More than 1,000 Scratchers shared their favorite Scratch memories and what Scratch meant to them in the 2021: A Scratch Year in Review studio.",
|
||||||
|
|
||||||
|
"annualReport.2021.communityScratchLabTitle": "Scratch Lab",
|
||||||
|
"annualReport.2021.communityScratchLabText": "With the launch of Scratch Lab in February, we’ve opened the doors of our development process directly to Scratchers around the world.",
|
||||||
|
"annualReport.2021.communityScratchLabText2": "Before we decide if we should introduce new blocks to the Scratch coding editor, it’s crucial to see the creative, innovative, and surprising ways Scratchers interact with them. Scratch Lab is a sandbox where everyone can try out these new features and, most importantly, share their thoughts and ideas directly with us.",
|
||||||
|
"annualReport.2021.communityScratchLabText3": "Over 500,000 Scratchers explored the Scratch Lab site in 2021, and they submitted more than 37,000 pieces of feedback.",
|
||||||
|
"annualReport.2021.communityScratchLabText4": "This feedback has been invaluable as we evaluate and develop Animated Text blocks, Face Sensing blocks, and more potential new features.",
|
||||||
|
|
||||||
|
"annualReport.2021.communitySnapshot2Title": "The Scratch Team on YouTube",
|
||||||
|
"annualReport.2021.communitySnapshot2Text": "The Scratch Team YouTube channel reached 100,000 subscribers in 2021— a nearly 500 percent increase from 2020! As students, educators, and families evolved in response to the pandemic, we knew we had to create resources that were reactive to their needs.",
|
||||||
|
"annualReport.2021.communitySnapshot2Text2": "These resources include a series of comprehensive Scratch tutorials that guide users through designing stories, games, and animations on Scratch. In 2021, these videos garnered nearly nine million views from viewers in 178 countries.",
|
||||||
|
|
||||||
|
"annualReport.2021.tutorial1": "How to Make an 'About Me'",
|
||||||
|
"annualReport.2021.tutorial2": "How to Make a Clicker Game",
|
||||||
|
"annualReport.2021.tutorial3": "How to Make a Mouse Trail",
|
||||||
|
|
||||||
|
"annualReport.2021.FounderMessageTitle": "A Message from Our Founder",
|
||||||
|
"annualReport.2021.FounderMessageSubTitle": "Support and Inspiration from a Founding Partner",
|
||||||
|
"annualReport.2021.FounderMessageText1": "As you read through this annual report, you’ll learn about many ways that Scratch is expanding creative computing opportunities for millions of young people around the world, especially those from marginalized communities. This global impact is possible because of the tireless work of the growing team of engineers, designers, educators, community moderators, and others at the Scratch Foundation.",
|
||||||
|
"annualReport.2021.FounderMessageText2": "To continue to grow our efforts and impact, we rely on the generous financial support of an incredible collection of companies, foundations, and individual donors who are aligned with our mission and vision. Here, I want to highlight the support and inspiration we’ve received from one of our Founding Partners: the LEGO Foundation.",
|
||||||
|
"annualReport.2021.FounderMessageText3": "My research group at the MIT Media Lab started collaborating with the LEGO company and LEGO Foundation more than 30 years ago. LEGO funding helped support our early work on Scratch, leading up to the public launch of Scratch in 2007. Then, when Scratch spun out of MIT into the Scratch Foundation in 2019, the LEGO Foundation provided important funding for the new organization, with a five-year $10 million grant to “support transformative educational change by developing and promoting playful, creative approaches to coding...in diverse economic and cultural contexts.” When the pandemic hit, the LEGO Foundation stepped up with an additional $5 million grant in 2021, to ensure that the Scratch Foundation could meet the needs of children and educators disrupted by the pandemic.",
|
||||||
|
"annualReport.2021.FounderMessageText4": "But the LEGO-Scratch connection goes far beyond financial support. The Scratch approach of creating animated stories and games by snapping together graphical programming blocks was inspired, in part, by the way children build LEGO houses and castles by snapping together plastic LEGO bricks. Scratch and LEGO also share the same project-based educational philosophy, encouraging children to iteratively refine their projects by trying out an idea, seeing what happens, then making revisions and trying again.",
|
||||||
|
"annualReport.2021.FounderMessageText5": "I’ve always loved the LEGO slogan “Joy of Building, Pride of Creation.” The LEGO Foundation’s deep partnership with the Scratch Foundation is helping to bring “Joy of Building, Pride of Creation” to children’s digital activities. The partnership serves as a model of how organizations with shared ideas and values can work together to catalyze transformational change in learning and education. As the Scratch Foundation continues to build its network of partners and supporters, I look forward to connecting with other organizations to expand creative computing opportunities for children around the world.",
|
||||||
|
|
||||||
|
"annualReport.2021.FounderTitle": "Founder, Scratch Foundation",
|
||||||
|
|
||||||
|
"annualReport.2021.lookingForward": "Looking Forward",
|
||||||
|
"annualReport.2021.lookingForwardText1": "In 2021, we outlined a Strategic Framework guiding our major priorities for the next 4 years. We’re focused on these major areas:",
|
||||||
|
"annualReport.2021.lookingForwardText2": "We would like to extend a huge thank you to the LEGO Foundation, whose generous COVID Recovery Grant will enable us to carry out this crucial work. We can’t wait to share more with you about the exciting projects we have planned, including updates to the Scratch experience for schools, updates to ScratchJr, and more.",
|
||||||
|
|
||||||
|
"annualReport.2021.LookingForward1": "Strengthening the Scratch Platform and Community Infrastructure",
|
||||||
|
"annualReport.2021.LookingForward2": "Expanding Pathways to Creative Learning",
|
||||||
|
"annualReport.2021.LookingForward3": "Building Organizational Capacity and Ensuring Fiscal Sustainability",
|
||||||
|
|
||||||
|
"annualReport.2021.supportersTitle": "Thank You to Our Supporters",
|
||||||
|
"annualReport.2021.supportersIntro": "Thank you to our generous supporters. Your contribution helps us expand creative learning opportunities for children of all ages, from all backgrounds, around the globe.",
|
||||||
|
|
||||||
|
"annualReport.2021.ourSupporters": "Our Supporters",
|
||||||
|
"annualReport.2021.ourSupportersText": "We want to thank all Scratch supporters who, throughout the years, have helped us create amazing learning experiences for millions of young people around the world. The following list is based on giving to Scratch Foundation from January 1, 2021 to December 31, 2021.",
|
||||||
|
|
||||||
|
"annualReport.2021.supportersFoundingTitle": "Founding Partners — $10,000,000+",
|
||||||
|
"annualReport.2021.supportersFoundingText": "We are especially grateful to our Founding Partners who have each provided at least $10,000,000 in cumulative support, since the start of Scratch in 2003.",
|
||||||
|
|
||||||
|
"annualReport.2021.supportersCatPartnersTitle": "Scratch Cat Partners — $1,000,000+",
|
||||||
|
"annualReport.2021.supportersCreativityTitle": "Creativity Circle — $250,000+",
|
||||||
|
"annualReport.2021.supportersCollaborationTitle": "Collaboration Circle — $100,000+",
|
||||||
|
"annualReport.2021.supportersImaginationTitle": "Imagination Circle — $50,000+",
|
||||||
|
"annualReport.2021.supportersInspirationTitle": "Inspiration Circle — $20,000+",
|
||||||
|
"annualReport.2021.supportersExplorationTitle": "Exploration Circle — $5,000+",
|
||||||
|
"annualReport.2021.supportersPlayTitle": "Play Circle — $1,000+",
|
||||||
|
"annualReport.2021.supportersInKindTitle": "In-Kind Supporters",
|
||||||
|
"annualReport.2021.leadershipTitle": "Our Team",
|
||||||
|
"annualReport.2021.leadershipBoard": "Board of Directors",
|
||||||
|
"annualReport.2021.leadershipChair": "Chair",
|
||||||
|
"annualReport.2021.leadershipProfessor": "Professor of Learning Research",
|
||||||
|
"annualReport.2021.leadershipViceChair": "Vice-Chair",
|
||||||
|
"annualReport.2021.leadershipCoFounder": "Co-Founder and Co-Chairman",
|
||||||
|
"annualReport.2021.leadershipBoardMember": "Board Member",
|
||||||
|
"annualReport.2021.leadershipPresidentCEO": "President and CEO",
|
||||||
|
"annualReport.2021.leadershipFormerPresident": "Former President",
|
||||||
|
"annualReport.2021.leadershipFounderCEO": "Founder and CEO",
|
||||||
|
"annualReport.2021.leadershipFormerChairCEO": "Former CEO and Chairwoman",
|
||||||
|
"annualReport.2021.leadershipBoardSecretaryTreasurer": "Board Secretary & Treasurer",
|
||||||
|
"annualReport.2021.leadershipBoardSecretary": "Board Secretary",
|
||||||
|
"annualReport.2021.leadershipBoardTreasurer": "Board Treasurer",
|
||||||
|
"annualReport.2021.leadershipScratchTeam": "2021 Scratch Team",
|
||||||
|
"annualReport.2021.leadershipED": "Executive Director",
|
||||||
|
|
||||||
|
"annualReport.2021.teamThankYou": "Thank you to Mitch Resnick, Natalie Rusk, Rupal Jain, and other collaborators at the Lifelong Kindergarten Group at the MIT Media Lab for your tireless support of Scratch.",
|
||||||
|
|
||||||
|
"annualReport.2021.donateTitle": "Support Us",
|
||||||
|
"annualReport.2021.donateMessage": "Your support enables us to create inspiring, creative, and memorable learning experiences for kids everywhere, especially those who have been systemically excluded from creative coding opportunities. Make a gift to Scratch today to help us keep our servers running, maintain our growing global community, and make creative coding possible for kids in every country around the world.",
|
||||||
|
"annualReport.2021.donateMessage2": "Thank you for your generosity.",
|
||||||
|
"annualReport.2021.donateButton": "Donate",
|
||||||
|
|
||||||
|
"annualReport.2021.projectBy": "project by",
|
||||||
|
|
||||||
|
"annualReport.2021.altMap": "A map of the world showing 41 SEC organizations",
|
||||||
|
"annualReport.2021.altSECSpotlightImage": "A child plays with a toy in front of an orange background",
|
||||||
|
"annualReport.2021.altAccessibility": "Two people use sign language in front of a green background.",
|
||||||
|
"annualReport.2021.altaccessDEICommittee": "A hand holds out a scratch component on a green background.",
|
||||||
|
"annualReport.2021.altaccessDEICommitteeAccessibility": "A hand paints scratch components on a blue background.",
|
||||||
|
"annualReport.2021.altaccessDEICommitteeG-JEDI": "Two hands reach toward a text bubble with a heart inside it.",
|
||||||
|
"annualReport.2021.altaccessDEICommitteeEquitXDesign": "Two hands work together to compile a list of scratch components.",
|
||||||
|
"annualReport.2021.altaccessSouthAfrica": "Two kids, one using a tablet and one using a laptop, work on a scratch project together.",
|
||||||
|
"annualReport.2021.altcommunityVolunteerTransators": "Four hands are raised with text bubbles resting on top of them in front of a purple background.",
|
||||||
|
"annualReport.2021.altcommunityThankYou": "A globe with a banner across it saying 'Thank you' surrounded by the words for thank you in various languages.",
|
||||||
|
"annualReport.2021.altAvatar": "user avatar",
|
||||||
|
"annualReport.2021.altDropdownArrow": "Arrow indicating dropdown menu.",
|
||||||
|
"annualReport.2021.altMastheadIllustration": "Three people interacting with physical scratch components.",
|
||||||
|
"annualReport.2021.altWave": "An emoji hand waving.",
|
||||||
|
"annualReport.2021.altMitchHeadshot": "Founder Mitch Resnick",
|
||||||
|
"annualReport.2021.altCalendar": "A calendar displaying the year 2021.",
|
||||||
|
"annualReport.2021.altWorldVisualization": "An illustrated version of the globe.",
|
||||||
|
"annualReport.2021.altSaudiArabiaVisualization": "",
|
||||||
|
|
||||||
|
"annualReport.2021.altSECVideoPreview": "",
|
||||||
|
|
||||||
|
"annualReport.2021.altCard1": "",
|
||||||
|
"annualReport.2021.altCard2": "",
|
||||||
|
"annualReport.2021.altCard3": "",
|
||||||
|
"annualReport.2021.altCard4": "",
|
||||||
|
"annualReport.2021.altCard5": "",
|
||||||
|
"annualReport.2021.altCard6": "",
|
||||||
|
"annualReport.2021.altCard7": "",
|
||||||
|
"annualReport.2021.altCard8": "",
|
||||||
|
"annualReport.2021.altCard9": "",
|
||||||
|
|
||||||
|
"annualReport.2021.altDonateIllustration": "Two hands form the shape of a heart with their fingers inside of a cut out heart shape."
|
||||||
|
}
|
207
src/views/annual-report/2021/orgs.json
Normal file
|
@ -0,0 +1,207 @@
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"name": "Alaska Native Science & Engineering Program",
|
||||||
|
"region": "AK",
|
||||||
|
"country": "USA"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Arkansas Regional Innovation Hub",
|
||||||
|
"region": "AR",
|
||||||
|
"country": "USA"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "BootUp PD",
|
||||||
|
"region": "UT",
|
||||||
|
"country": "USA"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Bridges to Science",
|
||||||
|
"region": "TX",
|
||||||
|
"country": "USA"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Center for Cyber Education at Mississippi State University",
|
||||||
|
"region": "MS",
|
||||||
|
"country": "USA"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Creative Community Learning Brasil Space Action Partners / Projeto Social Ação Parceiros",
|
||||||
|
"region": "Santa Bárbara",
|
||||||
|
"country": "Brazil"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Code Club Australia",
|
||||||
|
"region": "Sydney",
|
||||||
|
"country": "Australia"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "CodeCrew",
|
||||||
|
"region": "Memphis",
|
||||||
|
"country": "USA"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Deaf Kids Code",
|
||||||
|
"region": "New York City",
|
||||||
|
"country": "USA"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Deaf Technology Foundation",
|
||||||
|
"region": "Jos",
|
||||||
|
"country": "Nigeria"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Digital Harbor Foundation",
|
||||||
|
"region": "Baltimore",
|
||||||
|
"country": "USA"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Faculty of Education Team at University of Johannesburg",
|
||||||
|
"region": "Johannesburg",
|
||||||
|
"country": "South Africa"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Hayward Unified School District",
|
||||||
|
"region": "Hayward",
|
||||||
|
"country": "USA"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Humble Independent School District (ISD)",
|
||||||
|
"region": "Humble",
|
||||||
|
"country": "USA"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "iamtheCODE",
|
||||||
|
"region": "Guildford",
|
||||||
|
"country": "UK"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "ILCE Instituto Latino Americano de la Comunicación Educativa",
|
||||||
|
"region": "México City",
|
||||||
|
"country": "MX"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Kids Code Jeunesse",
|
||||||
|
"region": "Montréal",
|
||||||
|
"country": "Canada"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Lomie G. Heard Elementary School",
|
||||||
|
"region": "Clark County School District",
|
||||||
|
"country": "USA"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Lutacaga Elementary",
|
||||||
|
"region": "Othello School District",
|
||||||
|
"country": "USA"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Makerere Innovation Society",
|
||||||
|
"region": "Uganda",
|
||||||
|
"country": "Uganda"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Mouse",
|
||||||
|
"region": "NYC",
|
||||||
|
"country": "USA"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "National Society of Black Engineers",
|
||||||
|
"region": "VA",
|
||||||
|
"country": "USA"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "NEFSTEM Center",
|
||||||
|
"region": "University of North Florida",
|
||||||
|
"country": "USA"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "New York City Department of Education",
|
||||||
|
"region": "CSforAllNYC",
|
||||||
|
"country": "USA"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "New York Hall of Science",
|
||||||
|
"region": "New York City",
|
||||||
|
"country": "USA"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Odyssey Educational Foundation",
|
||||||
|
"region": "Nigeria",
|
||||||
|
"country": "Nigeria"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Play Pattern",
|
||||||
|
"region": "Princeton",
|
||||||
|
"country": "USA"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Quest Alliance",
|
||||||
|
"region": "Bengaluru",
|
||||||
|
"country": "India"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Schoolnet South Africa",
|
||||||
|
"region": "Johannesburg",
|
||||||
|
"country": "South Africa"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Sistema THEAD",
|
||||||
|
"region": "Barcelona",
|
||||||
|
"country": "Spain"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Sisters of Code",
|
||||||
|
"region": "Phnom Penh",
|
||||||
|
"country": "Cambodia"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "STEAMLabs Africa",
|
||||||
|
"region": "Nairobi",
|
||||||
|
"country": "Kenya"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "STEM Coding Lab",
|
||||||
|
"region": "Pittsburgh",
|
||||||
|
"country": "USA"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "STEM Impact Center Kenya",
|
||||||
|
"region": "Nairobi",
|
||||||
|
"country": "Kenya"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Streetlight Schools",
|
||||||
|
"region": "Johannesburg",
|
||||||
|
"country": "South Africa"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Tanner Elementary",
|
||||||
|
"region": "Chicago Public Schools",
|
||||||
|
"country": "USA"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Teachathon Foundation",
|
||||||
|
"region": "Lagos",
|
||||||
|
"country": "Nigeria"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "UdiGitalEdu",
|
||||||
|
"region": "Girona",
|
||||||
|
"country": "Spain"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Ulnooweg Education Centre",
|
||||||
|
"region": "Halifax",
|
||||||
|
"country": "Nova Scotia"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "WeTeach_CS",
|
||||||
|
"region": "Center for Cyber Education at University of Texas Austin",
|
||||||
|
"country": "USA"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Youth for Technology Foundation (also in Kenya)",
|
||||||
|
"region": "Nigeria and Kenya",
|
||||||
|
"country": "Nigeria"
|
||||||
|
}
|
||||||
|
]
|
357
src/views/annual-report/2021/people.json
Normal file
|
@ -0,0 +1,357 @@
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"userName": "cosmosaura",
|
||||||
|
"userId": 61436283,
|
||||||
|
"name": "Achal"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "themorningsun",
|
||||||
|
"userId": 79849553,
|
||||||
|
"name": "Addae"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "LeopardFlash",
|
||||||
|
"userId": 71683519,
|
||||||
|
"name": "Aishat"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "RulerOfTheQueendom",
|
||||||
|
"userId": 82775985,
|
||||||
|
"name": "Alexis"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "originalwow",
|
||||||
|
"userId": 56182496,
|
||||||
|
"name": "Amielle"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "amylaser",
|
||||||
|
"userId": 17462181,
|
||||||
|
"name": "Amy"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "amyms",
|
||||||
|
"userId": 85130279,
|
||||||
|
"name": "Amy"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "achouse",
|
||||||
|
"userId": 4747093,
|
||||||
|
"name": "Anne"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "carpeediem",
|
||||||
|
"userId": 85830206,
|
||||||
|
"name": "Ashlee"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "wheelsonfire",
|
||||||
|
"userId": 10001044,
|
||||||
|
"name": "Ben"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "digital-gig",
|
||||||
|
"userId": 79596311,
|
||||||
|
"name": "Bob"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "beezy333",
|
||||||
|
"userId": 79626299,
|
||||||
|
"name": "Breanna"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "BrycedTea",
|
||||||
|
"userId": 2029640,
|
||||||
|
"name": "Bryce"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "cariiina",
|
||||||
|
"userId": 80766027,
|
||||||
|
"name": "Carina"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "designerd",
|
||||||
|
"userId": 3581881,
|
||||||
|
"name": "Carl"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "Champ99",
|
||||||
|
"userId": 900283,
|
||||||
|
"name": "Champika"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "cwillisf",
|
||||||
|
"userId": 3532363,
|
||||||
|
"name": "Chris"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "chrisg",
|
||||||
|
"userId": 1494,
|
||||||
|
"name": "Chris"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "ceebee",
|
||||||
|
"userId": 2755634,
|
||||||
|
"name": "Christan"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "floralsunset",
|
||||||
|
"userId": 64635632,
|
||||||
|
"name": "Cindy"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "codubee",
|
||||||
|
"userId": 10866958,
|
||||||
|
"name": "Colby"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "spectre_specs",
|
||||||
|
"userId": 79615865,
|
||||||
|
"name": "Courtney"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "noncanonical",
|
||||||
|
"userId": 55851826,
|
||||||
|
"name": "Craig"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "Ohsohpy",
|
||||||
|
"userId": 85652763,
|
||||||
|
"name": "Crystal"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "dsquare",
|
||||||
|
"userId": 527836,
|
||||||
|
"name": "DD"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "BlueWillow78",
|
||||||
|
"userId": 86427896,
|
||||||
|
"name": "Deborah"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "epa85",
|
||||||
|
"userId": 83956975,
|
||||||
|
"name": "Elaine"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "SunnyDay4aBlueJay",
|
||||||
|
"userId": 24164779,
|
||||||
|
"name": "Ellen"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "ericr",
|
||||||
|
"userId": 159,
|
||||||
|
"name": "Eric"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "speakvisually",
|
||||||
|
"userId": 3484484,
|
||||||
|
"name": "Eric"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "scratcher-erik",
|
||||||
|
"userId": 82778056,
|
||||||
|
"name": "Erik"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "cheddargirl",
|
||||||
|
"userId": 159139,
|
||||||
|
"name": "Fran"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "fcoCCT",
|
||||||
|
"userId": 721727,
|
||||||
|
"name": "Francisco"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "bluecrazie",
|
||||||
|
"userId": 50257624,
|
||||||
|
"name": "JT"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "pixelmoth",
|
||||||
|
"userId": 2408962,
|
||||||
|
"name": "Jacy"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "GourdVibesOnly",
|
||||||
|
"userId": 83196398,
|
||||||
|
"name": "Jo"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "Mos20",
|
||||||
|
"userId": 52545208,
|
||||||
|
"name": "Joan"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "FredDog",
|
||||||
|
"userId": 2496866,
|
||||||
|
"name": "Jolie"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "Class12321",
|
||||||
|
"userId": 2871308,
|
||||||
|
"name": "Joshua"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "MunchtheCat",
|
||||||
|
"userId": 59383434,
|
||||||
|
"name": "Kaitlyn"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "kittyloaf",
|
||||||
|
"userId": 27383273,
|
||||||
|
"name": "Karishma"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "dinopickles",
|
||||||
|
"userId": 34607790,
|
||||||
|
"name": "Katelyn"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "Roxie916",
|
||||||
|
"userId": 86101613,
|
||||||
|
"name": "Kathryn"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "pondermake",
|
||||||
|
"userId": 26779669,
|
||||||
|
"name": "Kathy"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "KayOh",
|
||||||
|
"userId": 3018280,
|
||||||
|
"name": "Kristin"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "lamatchalattei",
|
||||||
|
"userId": 61415372,
|
||||||
|
"name": "Lamar"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "JumpingRabbits",
|
||||||
|
"userId": 3948118,
|
||||||
|
"name": "Linda"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "ItzLinz",
|
||||||
|
"userId": 80082947,
|
||||||
|
"name": "Lindsay"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "algorithmar",
|
||||||
|
"userId": 43013126,
|
||||||
|
"name": "Maren"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "soutoam",
|
||||||
|
"userId": 79824929,
|
||||||
|
"name": "Mariana"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "dietbacon",
|
||||||
|
"userId": 24137617,
|
||||||
|
"name": "Mark"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "Paddle2See",
|
||||||
|
"userId": 49156,
|
||||||
|
"name": "Mark"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "deism902",
|
||||||
|
"userId": 78735197,
|
||||||
|
"name": "Melodie"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "pamimus",
|
||||||
|
"userId": 74474548,
|
||||||
|
"name": "Mimi"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "sgcc_",
|
||||||
|
"userId": 21986973,
|
||||||
|
"name": "Paul"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "raimondious",
|
||||||
|
"userId": 2584924,
|
||||||
|
"name": "Ray"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "rtrvmwe",
|
||||||
|
"userId": 61342326,
|
||||||
|
"name": "Retro"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "binnieb",
|
||||||
|
"userId": 53715539,
|
||||||
|
"name": "Robyn"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "RupaLax",
|
||||||
|
"userId": 58005604,
|
||||||
|
"name": "Rupa"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "Rhyolyte",
|
||||||
|
"userId": 80776012,
|
||||||
|
"name": "Ryan"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "scmb1",
|
||||||
|
"userId": 246290,
|
||||||
|
"name": "Sarah"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "Onyx45",
|
||||||
|
"userId": 63526043,
|
||||||
|
"name": "Shawna"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "RagingAvocado",
|
||||||
|
"userId": 79263979,
|
||||||
|
"name": "Shen"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "sgste735",
|
||||||
|
"userId": 69368419,
|
||||||
|
"name": "Stephanie"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "LT7845",
|
||||||
|
"userId": 68837085,
|
||||||
|
"name": "Tasha"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "cardboardbee",
|
||||||
|
"userId": 83142859,
|
||||||
|
"name": "Tom"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "passiflora296",
|
||||||
|
"userId": 84104816,
|
||||||
|
"name": "Valerie"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "ninja11013",
|
||||||
|
"userId": 85158705,
|
||||||
|
"name": "Vicki"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "starry_sky7",
|
||||||
|
"userId": 61374093,
|
||||||
|
"name": "Yulia"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "Za-Chary",
|
||||||
|
"userId": 974363,
|
||||||
|
"name": "Zachary"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"userName": "Zinnea",
|
||||||
|
"userId": 35911243,
|
||||||
|
"name": "Zo\u00eb"
|
||||||
|
}
|
||||||
|
]
|
90
src/views/annual-report/2021/supporters.json
Normal file
|
@ -0,0 +1,90 @@
|
||||||
|
{
|
||||||
|
"founding": [
|
||||||
|
"Massachusetts Institute of Technology",
|
||||||
|
"National Science Foundation",
|
||||||
|
"Siegel Family Endowment",
|
||||||
|
"LEGO Foundation"
|
||||||
|
],
|
||||||
|
"catPartners": [
|
||||||
|
"Google.org",
|
||||||
|
"Siegel Family Endowment",
|
||||||
|
"LEGO Foundation",
|
||||||
|
"Fastly"
|
||||||
|
],
|
||||||
|
"creativity": [
|
||||||
|
"Amazon Web Services",
|
||||||
|
"Little Bluebridge Foundation",
|
||||||
|
"TAL Education"
|
||||||
|
],
|
||||||
|
"collaboration": [
|
||||||
|
"David and Rhonda Cohen",
|
||||||
|
"FWD Media (BrainPOP)",
|
||||||
|
"LEGO Education",
|
||||||
|
"Vista Equity Partners"
|
||||||
|
],
|
||||||
|
"imagination": [
|
||||||
|
"Alex & Ginsburg",
|
||||||
|
"AT&T Aspire",
|
||||||
|
"James Hill",
|
||||||
|
"Inversoft/CleanSpeak",
|
||||||
|
"Paul T. Jones",
|
||||||
|
"Kahn-Rowe Family Fund",
|
||||||
|
"Wilson, Sonsini, Goodrich & Rosati"
|
||||||
|
],
|
||||||
|
"inspiration": [
|
||||||
|
"Evan and Cindy Goldberg",
|
||||||
|
"Massachusetts Institute of Technology",
|
||||||
|
"New Relic",
|
||||||
|
"Overdeck Family Foundation",
|
||||||
|
"Rapid7",
|
||||||
|
"Transifex",
|
||||||
|
"Two Sigma",
|
||||||
|
"Christos Zoulas"
|
||||||
|
],
|
||||||
|
"exploration": [
|
||||||
|
"Best Buy Foundation",
|
||||||
|
"Steve Conine",
|
||||||
|
"Peter Desmond",
|
||||||
|
"Elizabeth DeStephens",
|
||||||
|
"Berry Dunn",
|
||||||
|
"Mark Fitzgerald",
|
||||||
|
"GitHub",
|
||||||
|
"James Goldstein",
|
||||||
|
"Humble Bundle",
|
||||||
|
"Huron Foundation",
|
||||||
|
"Dan Huttenlocher/MacArthur Foundation",
|
||||||
|
"Mitch Resnick",
|
||||||
|
"Sentry",
|
||||||
|
"Wilson Sonsini Foundation",
|
||||||
|
"Wistia"
|
||||||
|
],
|
||||||
|
"play": [
|
||||||
|
"Eric Dahm",
|
||||||
|
"Pavel Frolov",
|
||||||
|
"Fundación Cruzando",
|
||||||
|
"Guillaume Lefebvre",
|
||||||
|
"Andres Monroy-Hernandez",
|
||||||
|
"Sun Shil Park",
|
||||||
|
"Pingdom",
|
||||||
|
"William Sharpe",
|
||||||
|
"Travis-CI",
|
||||||
|
"Sheri Vammen",
|
||||||
|
"Shawna Young"
|
||||||
|
],
|
||||||
|
"inKind": [
|
||||||
|
"Fastly",
|
||||||
|
"Amazon Web Services",
|
||||||
|
"Wilson, Sonsini, Goodrich & Rosati",
|
||||||
|
"Inversoft/CleanSpeak",
|
||||||
|
"Massachusetts Institute of Technology",
|
||||||
|
"New Relic",
|
||||||
|
"Rapid7",
|
||||||
|
"Transifex",
|
||||||
|
"Berry Dunn",
|
||||||
|
"GitHub",
|
||||||
|
"Sentry",
|
||||||
|
"Wistia",
|
||||||
|
"Pingdom",
|
||||||
|
"Travis-CI"
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,3 @@
|
||||||
|
<svg width="31" height="31" viewBox="0 0 31 31" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M24.1754 9.37696V18.5866C24.1534 19.3213 23.7179 19.9475 23.0638 20.2056C22.4112 20.4652 21.6956 20.3127 21.1926 19.8097L19.446 18.063L12.1472 23.5815C11.0385 24.435 9.43856 24.3279 8.434 23.3234C8.34748 23.2369 8.26536 23.143 8.1891 23.0462C7.42505 21.9977 7.43238 20.5913 8.19203 19.6117L13.6797 12.2968L12.0093 10.6264C11.5005 10.1175 11.3465 9.36523 11.6163 8.71117C11.8891 8.05418 12.5079 7.64355 13.2324 7.64355L22.442 7.64355C22.8981 7.64502 23.3322 7.82687 23.6622 8.15683C23.9921 8.48679 24.174 8.92088 24.1754 9.37696Z" fill="white"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 697 B |
11
static/images/annual-report/2021/0_Data Section/Calendar.svg
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
<svg width="88" height="82" viewBox="0 0 88 82" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M0 14.9995C0 10.5812 3.58172 6.99951 8 6.99951H79.9932C84.4115 6.99951 87.9932 10.579 87.9932 14.9973C87.9932 29.4202 87.9932 58.694 87.9932 62.9897C87.9932 65.2697 85.7967 66.6861 83.1501 67.5652C78.5399 69.0966 75.1054 73.7603 72.5477 77.8903C71.135 80.1714 68.5857 81.9949 64.0449 81.9949C54.8887 81.9949 23.034 81.9949 7.98773 81.9949C3.56945 81.9949 0 78.4132 0 73.9949V14.9995Z" fill="white"/>
|
||||||
|
<path d="M15.1128 51.6536H18.3768C18.3768 51.2056 18.4168 50.7576 18.4968 50.3096C18.5928 49.8456 18.7448 49.4296 18.9528 49.0616C19.1608 48.6776 19.4328 48.3736 19.7688 48.1496C20.1208 47.9096 20.5448 47.7896 21.0408 47.7896C21.7768 47.7896 22.3768 48.0216 22.8408 48.4856C23.3208 48.9336 23.5608 49.5656 23.5608 50.3816C23.5608 50.8936 23.4408 51.3496 23.2008 51.7496C22.9768 52.1496 22.6888 52.5096 22.3368 52.8296C22.0008 53.1496 21.6248 53.4456 21.2088 53.7176C20.7928 53.9736 20.4008 54.2296 20.0328 54.4856C19.3128 54.9816 18.6248 55.4696 17.9688 55.9496C17.3288 56.4296 16.7688 56.9576 16.2888 57.5336C15.8088 58.0936 15.4248 58.7336 15.1368 59.4536C14.8648 60.1736 14.7288 61.0216 14.7288 61.9976H27.0648V59.0696H19.1208C19.5368 58.4936 20.0168 57.9896 20.5608 57.5576C21.1048 57.1256 21.6648 56.7256 22.2408 56.3576C22.8168 55.9736 23.3848 55.5896 23.9448 55.2056C24.5208 54.8216 25.0328 54.3976 25.4808 53.9336C25.9288 53.4536 26.2888 52.9096 26.5608 52.3016C26.8328 51.6936 26.9688 50.9656 26.9688 50.1176C26.9688 49.3016 26.8088 48.5656 26.4888 47.9096C26.1848 47.2536 25.7688 46.7016 25.2408 46.2536C24.7128 45.8056 24.0968 45.4616 23.3928 45.2216C22.7048 44.9816 21.9768 44.8616 21.2088 44.8616C20.2008 44.8616 19.3048 45.0376 18.5208 45.3896C17.7528 45.7256 17.1128 46.2056 16.6008 46.8296C16.0888 47.4376 15.7048 48.1576 15.4488 48.9896C15.1928 49.8056 15.0808 50.6936 15.1128 51.6536ZM33.8727 53.5256C33.8727 53.2376 33.8727 52.8936 33.8727 52.4936C33.8887 52.0776 33.9207 51.6536 33.9687 51.2216C34.0167 50.7896 34.0967 50.3656 34.2087 49.9496C34.3207 49.5176 34.4727 49.1336 34.6647 48.7976C34.8727 48.4616 35.1287 48.1896 35.4327 47.9816C35.7527 47.7736 36.1447 47.6696 36.6087 47.6696C37.0727 47.6696 37.4647 47.7736 37.7847 47.9816C38.1047 48.1896 38.3687 48.4616 38.5767 48.7976C38.7847 49.1336 38.9367 49.5176 39.0327 49.9496C39.1447 50.3656 39.2247 50.7896 39.2727 51.2216C39.3367 51.6536 39.3687 52.0776 39.3687 52.4936C39.3847 52.8936 39.3927 53.2376 39.3927 53.5256C39.3927 54.0056 39.3767 54.5896 39.3447 55.2776C39.3127 55.9496 39.2087 56.6056 39.0327 57.2456C38.8727 57.8696 38.6007 58.4056 38.2167 58.8536C37.8487 59.3016 37.3127 59.5256 36.6087 59.5256C35.9207 59.5256 35.3927 59.3016 35.0247 58.8536C34.6567 58.4056 34.3847 57.8696 34.2087 57.2456C34.0487 56.6056 33.9527 55.9496 33.9207 55.2776C33.8887 54.5896 33.8727 54.0056 33.8727 53.5256ZM30.4647 53.5256C30.4647 55.2056 30.6247 56.6136 30.9447 57.7496C31.2807 58.8696 31.7287 59.7656 32.2887 60.4376C32.8487 61.1096 33.4967 61.5896 34.2327 61.8776C34.9847 62.1656 35.7767 62.3096 36.6087 62.3096C37.4567 62.3096 38.2487 62.1656 38.9847 61.8776C39.7367 61.5896 40.3927 61.1096 40.9527 60.4376C41.5287 59.7656 41.9767 58.8696 42.2967 57.7496C42.6327 56.6136 42.8007 55.2056 42.8007 53.5256C42.8007 51.8936 42.6327 50.5256 42.2967 49.4216C41.9767 48.3016 41.5287 47.4056 40.9527 46.7336C40.3927 46.0616 39.7367 45.5816 38.9847 45.2936C38.2487 45.0056 37.4567 44.8616 36.6087 44.8616C35.7767 44.8616 34.9847 45.0056 34.2327 45.2936C33.4967 45.5816 32.8487 46.0616 32.2887 46.7336C31.7287 47.4056 31.2807 48.3016 30.9447 49.4216C30.6247 50.5256 30.4647 51.8936 30.4647 53.5256ZM46.5847 51.6536H49.8487C49.8487 51.2056 49.8887 50.7576 49.9687 50.3096C50.0647 49.8456 50.2167 49.4296 50.4247 49.0616C50.6327 48.6776 50.9047 48.3736 51.2407 48.1496C51.5927 47.9096 52.0167 47.7896 52.5127 47.7896C53.2487 47.7896 53.8487 48.0216 54.3127 48.4856C54.7927 48.9336 55.0327 49.5656 55.0327 50.3816C55.0327 50.8936 54.9127 51.3496 54.6727 51.7496C54.4487 52.1496 54.1607 52.5096 53.8087 52.8296C53.4727 53.1496 53.0967 53.4456 52.6807 53.7176C52.2647 53.9736 51.8727 54.2296 51.5047 54.4856C50.7847 54.9816 50.0967 55.4696 49.4407 55.9496C48.8007 56.4296 48.2407 56.9576 47.7607 57.5336C47.2807 58.0936 46.8967 58.7336 46.6087 59.4536C46.3367 60.1736 46.2007 61.0216 46.2007 61.9976H58.5367V59.0696H50.5927C51.0087 58.4936 51.4887 57.9896 52.0327 57.5576C52.5767 57.1256 53.1367 56.7256 53.7127 56.3576C54.2887 55.9736 54.8567 55.5896 55.4167 55.2056C55.9927 54.8216 56.5047 54.3976 56.9527 53.9336C57.4007 53.4536 57.7607 52.9096 58.0327 52.3016C58.3047 51.6936 58.4407 50.9656 58.4407 50.1176C58.4407 49.3016 58.2807 48.5656 57.9607 47.9096C57.6567 47.2536 57.2407 46.7016 56.7127 46.2536C56.1847 45.8056 55.5687 45.4616 54.8647 45.2216C54.1767 44.9816 53.4487 44.8616 52.6807 44.8616C51.6727 44.8616 50.7767 45.0376 49.9927 45.3896C49.2247 45.7256 48.5847 46.2056 48.0727 46.8296C47.5607 47.4376 47.1767 48.1576 46.9207 48.9896C46.6647 49.8056 46.5527 50.6936 46.5847 51.6536ZM70.8406 61.9976V45.1976H68.1286C68.0326 45.8376 67.8326 46.3736 67.5286 46.8056C67.2246 47.2376 66.8486 47.5896 66.4006 47.8616C65.9686 48.1176 65.4726 48.3016 64.9126 48.4136C64.3686 48.5096 63.8006 48.5496 63.2086 48.5336V51.1016H67.4326V61.9976H70.8406Z" fill="#575E75"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M87.9933 62.9897C87.9933 65.7603 83.5852 65.7143 78.7201 66.572C75.4013 67.1572 72.461 71.1034 71.8837 74.4236C71.0659 79.127 69.9994 81.9949 64.0449 81.9949C64.0449 81.9949 72.4212 82.1955 80.3246 74.4236C88.2279 66.6517 87.9933 62.9897 87.9933 62.9897Z" fill="#E6E6E6"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M0 26.9983H87.9932V30.9983H44.1953H0V26.9983Z" fill="black" fill-opacity="0.1"/>
|
||||||
|
<path d="M0 14.9995C0 10.5812 3.58172 6.99951 8 6.99951H79.9932C84.4115 6.99951 87.9932 10.5812 87.9932 14.9995V26.9983H0V14.9995Z" fill="#0DA57A"/>
|
||||||
|
<circle cx="18.999" cy="15.9993" r="6" fill="black" fill-opacity="0.15"/>
|
||||||
|
<circle cx="68.9951" cy="15.9993" r="6" fill="black" fill-opacity="0.15"/>
|
||||||
|
<rect x="14.9988" width="8" height="19.9988" rx="4" fill="white"/>
|
||||||
|
<rect x="64.9951" width="8" height="19.9988" rx="4" fill="white"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 6.1 KiB |
After Width: | Height: | Size: 42 KiB |
|
@ -0,0 +1,3 @@
|
||||||
|
<svg width="88" height="88" viewBox="0 0 88 88" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.8431 8.12264C16.3775 5.97912 18.5485 4.6747 20.692 5.20914L75.0285 18.7568C77.1721 19.2912 78.4765 21.4621 77.942 23.6056L76.0067 31.368L75.4398 33.6415C75.1831 34.6709 75.3459 35.76 75.8923 36.6694L80.0126 43.5267C80.559 44.4361 80.7218 45.5252 80.4651 46.5546L77.396 58.864C77.1394 59.8934 76.4843 60.7786 75.575 61.325L68.7177 65.4453C67.8083 65.9917 67.1533 66.8769 66.8966 67.9063L66.3298 70.1798L64.3944 77.9422C63.86 80.0857 61.6891 81.3901 59.5455 80.8557L5.20897 67.3081C3.06545 66.7736 1.76104 64.6027 2.29548 62.4592L4.23085 54.6968L4.79771 52.4233C5.05436 51.3939 5.7094 50.5087 6.61874 49.9623L13.4761 45.842C14.3854 45.2956 15.0405 44.4104 15.2971 43.381L18.3662 31.0716C18.6228 30.0422 18.4601 28.9531 17.9137 28.0437L13.7934 21.1864C13.247 20.277 13.0842 19.1879 13.3409 18.1585L13.9077 15.885L15.8431 8.12264Z" fill="#FFBF00"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1,001 B |
|
@ -0,0 +1,21 @@
|
||||||
|
<svg width="212" height="58" viewBox="0 0 212 58" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<mask id="mask0_365_11823" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="1" width="211" height="57">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.5 1H210.516V57.5801H0.5V1Z" fill="white"/>
|
||||||
|
</mask>
|
||||||
|
<g mask="url(#mask0_365_11823)">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M182.213 0.999023C175.692 0.999023 169.692 3.20907 164.906 6.91248C163.432 5.44211 160.995 3.44297 158.54 3.32602C157.682 3.28504 156.229 3.26505 154.223 3.26505C150.844 3.26505 146.972 3.32202 146.934 3.32402L146.655 3.32802L146.389 3.40799C145.719 3.6089 142.641 4.59148 140.745 6.19179H133.413C131.525 6.19179 128.883 7.85507 124.67 10.9247C124.51 11.0417 124.346 11.1606 124.187 11.2756C123.963 11.0337 123.721 10.7568 123.516 10.5199C122.159 8.96659 120.47 7.03442 118.412 6.51964L118.172 6.45967H92.0978C90.6648 5.13824 87.4208 2.4564 84.6848 2.4564C84.3908 2.4564 84.0038 2.4374 83.5408 2.41441C82.7758 2.37943 81.8218 2.33345 80.7328 2.33345C74.1138 2.33345 69.1318 4.18265 65.9218 7.83008C65.6938 8.011 65.6068 8.011 65.4898 8.011C65.1828 8.011 64.6618 7.89805 64.0588 7.76911C62.7118 7.48023 60.6778 7.04342 57.5288 7.04342L47.1738 7.10639L46.7168 7.37028C45.4698 8.08597 39.2338 11.7374 37.2238 14.3093C37.0998 14.3393 36.6448 14.3583 36.2338 14.3003C35.5998 10.1691 32.7568 4.2906 25.0748 4.2906C21.7248 4.2906 19.3428 5.55106 18.1508 6.36971C17.7738 6.32273 17.3088 6.28575 16.7728 6.28575C13.7768 6.28575 6.42379 7.5562 2.83379 19.3191L2.74579 19.606V29.2439C1.93979 30.3254 0.628788 32.6104 0.544788 36.1699C0.472788 39.2225 0.503788 41.6925 0.526788 43.4947C0.534788 44.1994 0.544788 44.8081 0.544788 45.3259C0.544788 51.1144 6.87479 57.2348 12.8588 57.2348H13.1138L13.3608 57.1718C13.5508 57.1218 18.0478 55.9413 21.0668 53.6173C21.7398 53.0976 22.5178 52.8337 23.3728 52.8337C24.1798 52.8337 24.7788 53.0666 24.7788 53.0666L25.7808 53.4994L26.7428 52.8597C28.9538 54.341 33.8888 57.2348 38.6928 57.2348C43.0198 57.2348 46.2008 55.4985 48.1018 54.46C48.5458 54.2181 49.0898 53.9212 49.3358 53.8313C51.4678 53.8283 57.6488 53.7183 60.4268 52.6398C60.6078 52.7367 60.8688 52.9047 61.0768 53.0356C62.4838 53.9272 64.8318 55.4166 69.3518 55.4346C69.4568 55.4406 69.6308 55.4496 69.8658 55.4496C71.7598 55.4496 77.9608 54.8758 81.9148 47.8758C83.8788 48.6365 85.9878 48.8044 86.2638 48.8244L89.9548 48.8284C91.0288 50.6086 93.4788 53.6823 97.5838 53.6823H112.214L112.606 53.5064C113.627 53.0486 114.369 52.6118 114.908 52.213C116.334 53.2835 118.619 54.9338 121.147 54.9338H129.783L130.091 54.8308C130.726 54.6189 132.121 54.1301 133.065 53.6223C133.344 53.6034 133.877 53.5834 134.855 53.5834C136.262 53.5834 137.936 53.6243 138.932 53.6543C140.113 54.9388 142.601 57.2348 145.277 57.2348C148.408 57.2348 151.724 57.0938 154.753 56.0613C155.366 55.8524 156.197 55.7914 157.078 55.7254C159.46 55.5505 162.646 55.3066 165.359 52.018C170.068 55.5105 175.898 57.5796 182.213 57.5796C197.844 57.5796 210.516 44.9141 210.516 29.2898C210.516 13.6656 197.844 0.999023 182.213 0.999023Z" fill="#2BA4D9"/>
|
||||||
|
</g>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M182.188 4.60742C175.342 4.60742 169.148 7.39322 164.675 11.8913L160.831 8.63868L160.717 8.54872L160.63 8.66867C159.796 8.02395 158.96 7.54016 158.349 7.51017C157.553 7.47319 156.165 7.45419 154.222 7.45419C151.407 7.45419 148.242 7.49518 147.283 7.50817C145.878 7.96397 143.738 8.89657 143.089 9.66724L142.49 10.3819H133.413C132.287 10.5149 128.329 13.3986 127.028 14.3452C126.062 15.0499 125.583 15.3978 125.232 15.5887C124.888 15.7786 124.496 15.8776 124.101 15.8776C122.716 15.8776 121.785 14.814 120.498 13.3387C119.723 12.452 118.462 11.0077 117.615 10.6498H90.4624L89.8764 10.0621C88.2214 8.41278 85.7384 6.64554 84.6844 6.64554C84.3434 6.64554 83.8914 6.62455 83.3514 6.59856C82.6284 6.56558 81.7264 6.5236 80.7324 6.5236C75.1794 6.5236 71.2934 7.907 68.8474 10.7508L68.6404 10.9597C67.6664 11.8053 66.6644 12.2001 65.4904 12.2001C64.7564 12.2001 64.0434 12.0462 63.2164 11.8683C61.9644 11.6004 60.2514 11.2336 57.5414 11.2336L48.2584 11.2905C45.5704 12.8679 41.4024 15.5817 40.3794 16.9571C39.8824 17.6588 38.8364 18.5364 36.8284 18.5364C35.3084 18.5364 33.8534 18.0256 33.6914 17.9667L32.4044 17.5009L32.3714 16.1335C32.3454 15.3588 31.9214 8.48075 25.0754 8.48075C21.8924 8.48075 20.1094 10.0741 20.0354 10.142L19.2144 10.8917L18.1254 10.6068C18.1244 10.6068 17.5914 10.4759 16.7724 10.4759C14.1874 10.4759 9.47438 11.7723 6.75138 20.3936V31L6.14538 31.5918C6.10538 31.6338 4.62638 33.2041 4.54838 36.4507C4.47838 39.4304 4.50938 41.8574 4.53138 43.6296C4.54238 44.3533 4.54838 44.981 4.54838 45.5118C4.54838 49.0533 8.85838 53.2315 12.6094 53.4114C13.5054 53.1525 16.6084 52.1819 18.6214 50.6316C19.9934 49.574 21.6354 49.0163 23.3734 49.0163C24.1014 49.0163 24.7444 49.1142 25.2484 49.2302L26.8654 48.1516L28.0034 49.0323C28.0594 49.0743 33.7524 53.4184 38.6934 53.4184C41.9984 53.4184 44.4164 52.0989 46.1814 51.1334C47.3714 50.4836 48.2304 50.0158 49.2054 50.0158C53.1254 50.0158 58.0174 49.632 59.0544 49.0613L59.2594 48.9493L59.4834 48.8873C59.7824 48.8044 60.0864 48.7624 60.3924 48.7624C61.5224 48.7624 62.3864 49.3111 63.2224 49.8409C64.4704 50.6326 66.0234 51.6162 69.4314 51.6162L69.6254 51.6262C69.6384 51.6262 69.7284 51.6322 69.8664 51.6322C71.2774 51.6322 76.1054 51.1544 78.9844 45.014C79.3734 44.1864 80.2484 43.6936 81.3234 43.6936C81.6824 43.6936 82.2164 43.7525 82.7144 44.0294C83.8714 44.6781 85.7634 44.951 86.4804 45.011H92.4904L93.0054 46.2385C93.0174 46.2655 94.6054 49.8649 97.5844 49.8649H111.334C111.902 49.582 112.468 49.2422 112.709 49.0393C113.072 48.3186 113.804 47.8568 114.63 47.8568C115.529 47.8568 116.178 48.3446 117.161 49.0842C118.171 49.8439 119.863 51.1164 121.146 51.1164H129.125C130.055 50.7915 131.003 50.4017 131.251 50.2338L131.587 50.0098L132.027 49.9019C132.374 49.8339 132.98 49.766 134.854 49.766C137.074 49.766 139.826 49.8629 139.942 49.8659L140.858 49.8989L141.432 50.6136C142.382 51.7871 144.25 53.4184 145.277 53.4184C147.153 53.4184 150.641 53.4184 153.459 52.4578C154.56 52.083 155.69 52.001 156.783 51.919C158.942 51.7611 160.685 51.6262 162.322 49.597C162.319 49.594 162.317 49.591 162.314 49.588L162.542 49.3261L164.507 46.5134C168.993 51.1124 175.254 53.9731 182.188 53.9731C184.546 53.9731 186.826 53.6423 188.986 53.0246C197.403 50.6206 203.982 43.8635 206.13 35.3442C206.621 33.407 206.88 31.3789 206.88 29.2898C206.88 15.6587 195.826 4.60742 182.188 4.60742Z" fill="#FEFEFE"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M179.324 20.1937L179.332 20.1477L179.303 20.0408C178.964 18.7793 178.687 18.4385 177.39 18.4385H173.592C173.065 18.4385 172.472 18.4955 172.064 18.9193C171.777 19.2181 171.641 19.645 171.662 20.1907C171.692 20.9724 172.052 21.904 173.592 21.904H176.38C176.683 23.9691 177.024 27.7954 177.107 31.3769C177.169 34.0218 176.666 37.4313 175.07 39.0636C174.44 39.7083 173.707 40.0212 172.83 40.0212C171.383 40.0212 171.063 39.0296 170.933 37.9571C170.922 37.8601 170.912 37.7811 170.901 37.7252C170.659 36.4737 170.023 35.866 169.065 35.9329C168.553 35.9639 168.123 36.1658 167.824 36.5177C167.487 36.9135 167.344 37.4673 167.41 38.119L167.425 38.2849C167.527 39.4814 167.84 43.1238 172.783 43.1238C174.54 43.1238 176.07 42.4671 177.332 41.1697C179.668 38.7687 180.412 34.8634 180.34 32.2495C180.219 27.8254 179.8 22.1159 179.324 20.1937Z" fill="#F9A738"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M174.297 17.8461C174.514 17.8931 174.741 17.9171 174.975 17.9171C175.457 17.9171 175.963 17.8161 176.45 17.6172C177.172 17.3234 177.776 16.8466 178.15 16.2758C178.562 15.6461 178.655 14.9754 178.414 14.3856C177.938 13.2181 176.328 12.8063 174.748 13.45C174.027 13.7439 173.425 14.2217 173.051 14.7924C172.645 15.4132 172.549 16.1019 172.786 16.6816C173.023 17.2624 173.573 17.6872 174.297 17.8461Z" fill="#F9A738"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M199.464 23.1056C199.388 22.7388 198.783 20.5637 195.192 20.5637C193.178 20.5637 191.769 21.2144 190.943 21.7282C190.682 21.0115 189.985 20.5187 189.17 20.5667L184.572 20.8526C183.602 20.9135 182.86 21.7532 182.918 22.7268C182.98 23.6983 183.808 24.431 184.792 24.3811L187.466 24.2141L187.696 34.4877L186.776 34.5157C186.309 34.5317 185.875 34.7276 185.556 35.0684C185.235 35.4093 185.068 35.8541 185.082 36.3189C185.096 36.7877 185.291 37.2215 185.632 37.5414C185.959 37.8492 186.382 38.0162 186.826 38.0162C186.847 38.0162 186.866 38.0152 186.887 38.0152L193.092 37.8223C193.56 37.8073 193.994 37.6113 194.315 37.2695C194.635 36.9286 194.803 36.4828 194.788 36.016C194.759 35.0515 193.943 34.3188 192.983 34.3218L191.609 34.3647L191.246 26.5651C191.886 24.7509 193.817 23.8893 195.004 23.8573C195.576 23.8013 195.833 24.1871 196.186 24.7999C196.531 25.4036 197.046 26.3162 198.335 25.9484C198.811 25.8124 199.176 25.5256 199.39 25.1177C199.807 24.3241 199.534 23.3305 199.464 23.1056Z" fill="#F9A738"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.4824 28.6557C19.3104 28.6197 19.1834 28.5937 19.1124 28.5737C17.1284 28.0309 16.7464 27.2613 16.6354 26.6535C16.5584 26.2187 16.6544 22.1954 16.7554 21.6467C16.8094 21.3558 17.0404 20.3762 17.7394 20.0304C18.2314 19.7865 18.9044 19.8764 19.7434 20.3013C22.3174 21.6027 22.3494 24.2865 22.3644 25.576C22.3664 25.7319 22.3684 25.8689 22.3734 25.9818C22.4394 27.4632 23.3514 28.3118 24.8754 28.3118C26.3024 28.3118 26.7854 27.2303 26.8434 26.6335L27.3804 15.1035L27.3724 15.0505C27.2774 14.4968 26.6764 13.4492 25.0754 13.4492C23.4444 13.4492 22.9224 14.5238 22.8734 15.1345V16.9277C22.0304 16.1581 20.5164 15.3514 17.8654 15.3514C15.6184 15.3514 12.8594 16.379 12.4734 21.2728L12.4614 21.4128C12.3624 22.5533 12.3254 26.9264 12.5024 28.6277C12.8144 31.6244 15.6044 32.3081 16.7954 32.6C18.4464 33.0068 20.2874 33.5086 21.5324 33.8484L22.6444 34.1503C23.5694 34.3932 24.5254 34.6441 24.5254 36.6182C24.5254 39.0052 22.8184 40.3736 19.8434 40.3736C16.5194 40.3736 15.1124 38.0086 15.1124 37.069L15.1134 36.8431C15.1204 35.4048 15.1364 32.411 13.1454 32.2661C12.4824 32.2201 11.9274 32.3921 11.5074 32.7829C10.7814 33.4566 10.7584 34.5001 10.7574 34.6181V45.9762C10.7574 47.0267 11.9534 47.6765 13.0604 47.6765C14.1814 47.6765 14.9624 46.8778 14.9624 46.1621C14.9624 45.8942 14.9474 44.3039 14.9374 43.2744C16.2444 43.9271 18.6374 44.7757 20.3694 44.7757C24.3184 44.7757 28.9294 42.5347 28.9294 36.2184C28.9294 32.528 25.7514 29.9831 19.4824 28.6557Z" fill="#F9A738"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M45.8017 34.8173C44.3237 34.8173 43.9337 36.2137 43.9337 36.9534V40.086C43.9317 40.2319 43.8447 43.6595 39.1267 43.6595C37.0847 43.6595 35.6857 43.0527 34.9687 41.8572C34.3857 40.8827 34.3857 39.7651 34.3867 39.1884L34.3847 30.6061C34.3957 30.4801 34.6807 27.5434 37.6577 27.5434C40.5267 27.5434 41.5267 29.2327 42.2577 30.4672L42.5337 30.93C42.7657 31.3368 43.2497 32.1814 44.4997 32.1814C45.4587 32.1814 46.6027 31.7706 46.6027 29.8134L46.5977 22.8065C46.5087 22.1487 45.9547 20.9053 44.4997 20.9053C43.0417 20.9053 42.4897 22.2407 42.3987 23.0084V24.7346C41.5327 23.964 39.9817 23.1083 37.3577 23.1083C32.4737 23.1083 30.2487 26.7917 30.2487 30.2143V40.055C30.2487 42.6919 31.9997 47.6767 38.6257 47.6767C45.6427 47.6767 48.0037 42.8328 48.0037 40.6228V37.0523C48.0037 35.6319 47.2007 34.8173 45.8017 34.8173Z" fill="#F9A738"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M64.125 22.4575C64.125 25.2253 58.922 26.5517 56.314 26.9306V20.6893C58.3 20.5463 62.454 20.5103 63.764 21.6978C64.01 21.9217 64.125 22.1626 64.125 22.4575ZM72.285 38.3187L72.159 38.3167C71.741 38.3127 71.034 38.2927 70.54 38.7745C70.237 39.0713 70.083 39.4912 70.083 40.0219C70.083 40.6327 69.96 41.0505 69.719 41.2624C69.51 41.4473 69.161 41.5093 68.698 41.4533C67.015 41.2264 67.022 36.2536 67.028 32.963V32.3652C67.028 30.7459 66.508 29.4915 65.436 28.6009C65.793 28.4079 66.166 28.1141 66.535 27.7282C67.67 26.5407 68.844 24.3807 68.73 21.8838C68.526 17.4826 63.361 16.5071 60.67 16.604H49.999C49.205 16.618 47.704 17.0718 47.704 18.6881C47.704 20.2844 49.175 20.8022 49.986 20.8542H51.86V27.3864C50.523 27.5243 49.957 28.208 49.73 28.6328C49.357 29.3335 49.42 30.2362 49.889 30.9329C50.349 31.6146 51.101 31.9734 51.857 31.8904C51.934 31.8904 52.001 31.8894 52.076 31.8874V40.0029L49.814 40.2558C48.619 40.3868 48.141 41.1994 48.309 42.8087C48.39 43.5904 48.752 44.0032 49.041 44.2121C49.706 44.6929 50.523 44.534 50.549 44.523C50.869 44.497 58.391 43.8723 59.686 43.5314C60.639 43.2805 60.946 42.11 60.757 41.0835C60.538 39.889 59.763 39.1573 58.827 39.2543L56.314 39.5301V31.2777L56.574 31.2277C58.308 30.8959 60.103 30.55 61.171 30.591C61.87 30.615 62.109 30.9578 62.252 31.2907C62.937 32.874 62.985 36.6184 63.011 38.6295L63.024 39.4822C63.059 41.0535 63.591 46.1763 68.98 46.1763C74.126 46.1763 74.387 41.3414 74.387 40.3718C74.387 38.8654 73.13 38.3187 72.285 38.3187Z" fill="#F9A738"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M133.58 35.5513C133.58 34.1309 132.777 33.3173 131.378 33.3173C129.9 33.3173 129.51 34.7137 129.51 35.4513V38.584C129.508 38.7309 129.421 42.1574 124.701 42.1574C122.66 42.1574 121.261 41.5517 120.545 40.3562C119.961 39.3826 119.962 38.2641 119.963 37.6874L119.961 29.1061C119.972 28.9801 120.257 26.0414 123.233 26.0414C126.103 26.0414 127.103 27.7337 127.834 28.9681L128.109 29.4289C128.341 29.8348 128.824 30.6804 130.076 30.6804C131.035 30.6804 132.178 30.2696 132.178 28.3124L132.173 21.3054C132.083 20.6477 131.529 19.4062 130.076 19.4062C128.618 19.4062 128.066 20.7397 127.975 21.5063V23.2326C127.109 22.4609 125.558 21.6063 122.934 21.6063C118.05 21.6063 115.825 25.2897 115.825 28.7122V38.554C115.825 41.1909 117.576 46.1757 124.201 46.1757C131.218 46.1757 133.58 41.3308 133.58 39.1208V35.5513Z" fill="#F9A738"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M85.3237 28.03L81.3817 28.3709L82.7967 22.6344L85.3237 28.03ZM97.7327 32.5861C97.1067 31.2437 96.1197 30.8458 95.4637 31.1507L92.5647 32.5021L84.3057 14.0561C84.2827 12.4997 83.5877 11.79 82.9407 11.79C82.5337 11.792 73.9917 11.819 73.9087 11.827C73.8497 11.837 72.4527 12.0989 72.4607 14.16C72.4657 16.1652 73.5077 16.453 73.6267 16.479L73.6807 16.491L79.1387 16.473L75.8207 33.7006L70.5117 33.7056C69.9657 33.7846 68.9317 34.3563 68.9317 35.9596C68.9317 37.9428 70.1357 38.2007 70.2827 38.2196H80.6467C81.2767 38.2196 81.9477 37.427 81.9477 35.9596C81.9477 34.4763 81.2177 33.7006 80.4957 33.7006H80.0657L80.3497 32.5511L86.9077 31.4156L88.3397 34.4723L86.4157 35.3739C85.9537 35.6757 85.2597 36.6313 85.9377 38.0837C86.5487 39.3931 87.3497 39.6021 87.7947 39.6021C87.9607 39.6021 88.0767 39.5731 88.1157 39.5611L97.5117 35.182C98.0807 34.9151 98.3517 33.9145 97.7327 32.5861Z" fill="#F9A738"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M116.424 23.9522L116.435 23.5993C116.464 22.7507 116.541 20.4947 116.541 18.2027C116.541 17.1391 116.266 16.3515 115.724 15.8607C115.159 15.3509 114.516 15.3589 114.365 15.3689L93.4358 15.7647C92.6308 15.7797 92.1818 16.1336 91.9478 16.4284C91.3128 17.2261 91.5358 18.3986 91.5568 18.4945C91.5968 18.7844 92.5218 25.6095 92.7408 26.5721C93.0328 27.8485 93.8618 28.3253 95.5148 28.1584C96.2698 28.0834 96.6538 27.7356 96.8428 27.4577C97.2718 26.8249 97.0718 26.0593 97.0638 26.0593L96.4668 20.0858L101.974 19.9029V40.1222H99.3108C98.0828 40.1222 97.0838 41.1208 97.0838 42.3473C97.0838 43.5757 98.0828 44.5743 99.3108 44.5743H109.006C110.235 44.5743 111.235 43.5757 111.235 42.3473C111.235 41.1208 110.235 40.1222 109.006 40.1222H106.763L106.55 19.75L111.938 19.5711C111.943 20.6516 111.953 23.1125 111.953 23.7323C111.953 24.1181 112.099 24.467 112.373 24.7398C112.774 25.1377 113.446 25.3646 114.221 25.3646H114.244C115.53 25.3556 116.409 24.6269 116.424 23.9522Z" fill="#F9A738"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M157.603 42.7013C157.205 42.3964 156.721 42.2655 156.244 42.3255L154.819 42.5114L154.51 16.9004H156.576C157.624 16.9004 158.476 15.9588 158.476 14.8003C158.476 13.6418 157.624 12.6992 156.576 12.6992H148.031C146.982 12.6992 146.128 13.6418 146.128 14.8003C146.128 15.9588 146.982 16.9004 148.031 16.9004H150.186L150.213 27.081L141.51 28.7813L141.608 19.7042H143.892C144.941 19.7042 145.793 18.8516 145.793 17.803C145.793 16.7545 144.941 15.9008 143.892 15.9008H135.348C134.299 15.9008 133.447 16.7545 133.447 17.803C133.447 18.8516 134.299 19.7042 135.348 19.7042H137.368V40.4922L135.091 40.5192C134.032 40.5332 133.18 41.4848 133.193 42.6433C133.2 43.2311 133.433 43.7948 133.835 44.1856C134.19 44.5325 134.645 44.7214 135.121 44.7214H135.143L143.827 44.6175C144.888 44.6035 145.741 43.6519 145.728 42.4934C145.712 41.3439 144.849 40.4163 143.799 40.4163H143.777L141.386 40.4453L141.462 33.3143L150.226 31.6241L150.256 43.1071L147.631 43.45C146.58 43.5869 145.845 44.6335 145.994 45.784C146.135 46.8475 146.986 47.6322 147.947 47.6322C148.022 47.6322 148.099 47.6272 148.175 47.6172L156.789 46.4927C157.84 46.3537 158.574 45.3072 158.424 44.1587C158.348 43.5749 158.048 43.0441 157.603 42.7013Z" fill="#F9A738"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M193.74 41.7244L189.192 42.0403C188.976 42.0403 188.721 42.0403 188.44 42.0383C187.031 42.0253 184.883 41.9133 182.783 41.0667C182.574 40.9827 181.851 41.1567 181.699 41.3316C176.359 47.431 171.345 46.8622 171.345 46.8622C168.474 46.8622 162.867 43.4247 162.967 38.121C163.068 32.8163 166.205 32.0156 168.875 31.9156C170.545 31.8537 171.456 32.4684 171.906 32.9382C172.176 33.2201 172.426 33.496 172.488 32.7633C172.535 32.2345 172.538 31.2989 172.412 29.6476C172.112 25.7103 171.078 24.7767 171.078 24.7767C169.976 24.109 166.605 23.7752 167.273 17.3029C168.021 10.0531 174.281 9.2974 174.281 9.2974C181.496 8.71865 182.213 14.1133 182.213 16.0195C182.213 16.6352 182.842 16.6462 182.842 16.6462L195.926 16.1694C198.428 16.1694 202.785 18.9382 202.785 23.6422C202.785 29.2478 197.482 29.6686 195.177 29.5907C194.477 29.5677 194.529 29.6856 194.926 29.9735C195.889 30.6762 197.432 32.1725 197.979 34.4126C198.105 34.9303 198.178 35.4891 198.178 36.0859C198.178 40.324 193.74 41.7244 193.74 41.7244ZM182.188 4.60742C168.551 4.60742 157.495 15.6587 157.495 29.2908C157.495 42.9229 168.551 53.9731 182.188 53.9731C184.547 53.9731 186.826 53.6423 188.986 53.0256C197.403 50.6206 203.982 43.8645 206.131 35.3442C206.621 33.408 206.881 31.3789 206.881 29.2908C206.881 15.6587 195.826 4.60742 182.188 4.60742Z" fill="#F9A738"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M193.74 41.7244L189.192 42.0403C188.976 42.0403 188.721 42.0403 188.44 42.0383C187.031 42.0253 184.883 41.9133 182.783 41.0667C182.574 40.9827 181.851 41.1567 181.699 41.3316C176.359 47.431 171.345 46.8622 171.345 46.8622C168.474 46.8622 162.867 43.4247 162.967 38.121C163.068 32.8163 166.205 32.0156 168.875 31.9156C170.545 31.8537 171.456 32.4684 171.906 32.9382C172.176 33.2201 172.426 33.496 172.488 32.7633C172.535 32.2345 172.538 31.2989 172.412 29.6476C172.112 25.7103 171.078 24.7767 171.078 24.7767C169.976 24.109 166.605 23.7752 167.273 17.3029C168.021 10.0531 174.281 9.2974 174.281 9.2974C181.496 8.71865 182.213 14.1133 182.213 16.0195C182.213 16.6352 182.842 16.6462 182.842 16.6462L195.926 16.1694C198.428 16.1694 202.785 18.9382 202.785 23.6422C202.785 29.2478 197.482 29.6686 195.177 29.5907C194.477 29.5677 194.529 29.6856 194.926 29.9735C195.889 30.6762 197.432 32.1725 197.979 34.4126C198.105 34.9303 198.178 35.4891 198.178 36.0859C198.178 40.324 193.74 41.7244 193.74 41.7244ZM182.188 4.60742C168.551 4.60742 157.495 15.6587 157.495 29.2908C157.495 42.9229 168.551 53.9731 182.188 53.9731C184.547 53.9731 186.826 53.6423 188.986 53.0256C197.403 50.6206 203.982 43.8645 206.131 35.3442C206.621 33.408 206.881 31.3789 206.881 29.2908C206.881 15.6587 195.826 4.60742 182.188 4.60742Z" fill="#F9A738"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 19 KiB |
|
@ -0,0 +1,3 @@
|
||||||
|
<svg width="144" height="120" viewBox="0 0 144 120" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.14129 38.3063C4.00743 38.878 2.7411 41.0714 3.31286 43.2053L8.48924 62.5238L9.0957 64.7871C9.37027 65.8118 10.0407 66.6855 10.9594 67.2159L17.8876 71.2159C18.8063 71.7463 19.4767 72.62 19.7513 73.6447L23.0348 85.8987C23.3093 86.9235 23.1656 88.0153 22.6352 88.934L18.6352 95.8622C18.1047 96.781 17.961 97.8728 18.2356 98.8975L18.842 101.161L20.9126 108.888C21.4843 111.022 23.6777 112.288 25.8115 111.717L41.2664 107.576C43.4002 107.004 44.6665 104.81 44.0948 102.677L42.0242 94.9491L41.4178 92.6858C41.1432 91.6611 41.2869 90.5693 41.8174 89.6506L45.8174 82.7224C46.3478 81.8036 46.4916 80.7118 46.217 79.6871L42.9335 67.4331C42.659 66.4084 41.9886 65.5347 41.0698 65.0042L34.1416 61.0042C33.2229 60.4738 32.5525 59.6001 32.2779 58.5754L31.6715 56.3121L29.6009 48.5847C29.0291 46.4508 30.2955 44.2575 32.4293 43.6857L36.293 42.6505L44.0204 40.5799L45.9523 40.0623L55.6116 37.4741L59.4753 36.4388C61.6091 35.867 63.8025 37.1334 64.3742 39.2672L66.4448 46.9946L67.0512 49.2579C67.3258 50.2827 67.9962 51.1563 68.9149 51.6868L75.8432 55.6868C76.7619 56.2172 77.4323 57.0909 77.7069 58.1156L80.9903 70.3696C81.2649 71.3943 81.1211 72.4861 80.5907 73.4049L76.5907 80.3331C76.0603 81.2518 75.9165 82.3436 76.1911 83.3684L76.7976 85.6317L78.8681 93.3591C79.4399 95.4929 81.6332 96.7593 83.7671 96.1875L137.859 81.6936C139.993 81.1219 141.259 78.9285 140.687 76.7946L123.088 11.1117C122.516 8.97783 120.323 7.7115 118.189 8.28327L52.5057 25.883L42.8465 28.4712L40.9146 28.9888L33.1872 31.0593L6.14129 38.3063Z" fill="#FFAB19"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 108 KiB |
18
static/images/annual-report/2021/0_Data Section/World.svg
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
<svg width="227" height="227" viewBox="0 0 227 227" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<g clip-path="url(#clip0_476_14141)">
|
||||||
|
<path d="M220.798 150.413C214.148 169.756 202.782 186.149 188.444 198.722L188.424 198.742C183.977 202.651 179.241 206.18 174.286 209.321C151.244 223.929 123.117 230.151 95.0396 225.474C93.7534 225.265 92.4572 225.036 91.171 224.766H91.161C86.2854 223.789 81.4297 222.463 76.604 220.808C54.0505 213.05 35.5252 198.902 22.3342 181.073C20.6392 178.78 19.0239 176.427 17.5084 174.014C-0.16943 145.946 -5.42392 110.409 6.20176 76.6072C10.6387 63.6947 17.1794 52.1084 25.3054 42.0776C25.435 41.8881 25.5846 41.7087 25.7441 41.5292C25.8438 41.4195 25.9335 41.3198 26.0133 41.2201C28.3364 38.3883 30.8091 35.6662 33.4015 33.1037H33.4115C42.5944 23.9603 53.233 16.5119 64.8088 11.0279C76.265 5.56375 88.6385 2.02404 101.401 0.648043C106.625 0.0896664 111.94 -0.109754 117.264 0.0597534C123.107 0.259174 128.989 0.907289 134.872 2.04398C140.057 3.05106 145.241 4.42706 150.396 6.19192C209.661 26.5826 241.178 91.1449 220.798 150.403V150.413Z" fill="#E5F0FF"/>
|
||||||
|
<path d="M204.227 144.709C198.604 161.062 188.992 174.921 176.868 185.56L176.848 185.58C173.089 188.881 169.091 191.872 164.893 194.524C145.411 206.878 121.631 212.133 97.891 208.185C96.8042 208.005 95.7074 207.816 94.6206 207.586C90.5028 206.759 86.3949 205.632 82.307 204.236C63.2432 197.675 47.5695 185.71 36.4224 170.634C34.9866 168.689 33.6207 166.705 32.3444 164.661C17.3986 140.93 12.9517 110.888 22.7827 82.3007C26.5316 71.3824 32.0653 61.5809 38.935 53.1055C39.0447 52.946 39.1643 52.7964 39.3039 52.6369C39.3837 52.5472 39.4634 52.4574 39.5233 52.3777C41.4875 49.9846 43.5813 47.6813 45.7748 45.5076C53.5319 37.7701 62.5353 31.4784 72.3165 26.8419C81.9979 22.2353 92.467 19.244 103.255 18.0774C107.672 17.5988 112.159 17.4293 116.666 17.5788C121.611 17.7483 126.576 18.2967 131.552 19.254C135.939 20.1015 140.316 21.2681 144.673 22.7638C194.785 40.0036 221.426 94.5849 204.197 144.699L204.227 144.709Z" fill="#47A8D1"/>
|
||||||
|
<path d="M116.686 17.5888C114.811 19.9719 112.707 21.9163 110.484 23.4717C94.7901 34.4498 72.3364 26.8519 72.3364 26.8519C82.0179 22.2453 92.4869 19.254 103.275 18.0874C107.692 17.6088 112.179 17.4393 116.686 17.5888Z" fill="#0B8E69"/>
|
||||||
|
<path d="M92.6066 159.716C94.6007 162.916 90.5526 164.94 90.5526 164.94C90.5526 164.94 86.4747 164.641 80.2929 163.345C69.7042 161.131 52.9437 155.996 39.9919 144.43C19.4824 126.113 45.1267 98.9921 39.9919 90.2076C34.867 81.4132 22.7727 82.3106 22.7727 82.3106C26.5216 71.3923 32.0553 61.5908 38.925 53.1155C34.2488 60.0254 66.045 65.4596 83.9621 72.6287C102.268 79.9475 99.3467 108.534 83.2243 118.057C67.1019 127.579 84.6899 153.224 90.5526 157.622C91.5298 158.369 92.1878 159.067 92.5966 159.716H92.6066Z" fill="#0B8E69"/>
|
||||||
|
<path d="M164.893 194.524C145.411 206.878 121.631 212.133 97.891 208.185C92.0981 202.042 85.6371 195.691 80.3029 191.693C67.1118 181.801 80.3029 163.355 80.3029 163.355L90.5626 157.632C90.6224 157.721 91.1808 158.549 92.6066 159.726C96.3455 162.856 105.997 168.51 127.912 170.075C158.682 172.279 125.709 184.733 145.49 183.995C157.216 183.566 162.5 189.559 164.873 194.524H164.893Z" fill="#0B8E69"/>
|
||||||
|
<path d="M204.227 144.709C188.394 140.841 191.246 99.3412 188.623 116.621C186.001 133.911 152.48 128.147 156 113.51C159.519 98.8626 167.675 88.8517 176.05 74.1943C184.436 59.517 170.297 61.1024 164.534 64.7617C158.771 68.4311 153.008 78.3821 156 87.8147C158.991 97.2473 156.149 93.0594 144.623 98.2942C133.107 103.539 135.729 68.9595 130.485 54.8206C125.24 40.6718 110.494 23.4917 110.494 23.4917L103.285 18.0974C107.702 17.6188 112.189 17.4493 116.696 17.5989C121.641 17.7684 126.606 18.3168 131.582 19.274C135.969 20.1215 140.346 21.2881 144.703 22.7838C194.815 40.0237 221.456 94.605 204.227 144.719V144.709Z" fill="#0B8E69"/>
|
||||||
|
<path d="M86.9133 60.3145C86.9133 60.3145 102.896 68.2115 103.275 74.5331C103.654 80.8548 116.297 63.4753 101.131 58.7391C85.9661 54.0028 86.9133 60.3145 86.9133 60.3145Z" fill="#0B8E69"/>
|
||||||
|
<path d="M105.867 147.202C105.867 147.202 111.391 153.833 116.685 152.885C121.98 151.938 115.659 144.669 105.867 147.202Z" fill="#0B8E69"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M137.515 106.958C136.087 123.099 117.805 135.794 113.168 135.794C108.53 135.794 90.2449 123.099 88.8203 106.958C88.7792 106.431 88.738 105.904 88.738 105.378C88.738 97.5513 95.1295 91.1848 102.99 91.1848C106.979 91.1848 110.603 92.8056 113.168 95.4827C115.732 92.8056 119.356 91.1848 123.345 91.1848C131.202 91.1848 137.594 97.5513 137.594 105.378C137.594 105.904 137.553 106.431 137.515 106.958Z" fill="#EC5858"/>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<clipPath id="clip0_476_14141">
|
||||||
|
<rect width="227" height="227" fill="white"/>
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 4.6 KiB |
After Width: | Height: | Size: 10 MiB |
|
@ -0,0 +1,4 @@
|
||||||
|
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.2426 2.54682C14.5858 4.87617 14.5858 8.65279 12.2426 10.9821L9.41003 13.7981C8.62995 14.5736 7.37005 14.5736 6.58997 13.7981L3.75736 10.9821C1.41421 8.65279 1.41421 4.87617 3.75736 2.54682C6.10051 0.217467 9.8995 0.217467 12.2426 2.54682Z" fill="#4C97FF"/>
|
||||||
|
<ellipse cx="7.99999" cy="6.79961" rx="3.2" ry="3.2" fill="#3373CC"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 483 B |
288
static/images/annual-report/2021/1_SEC Section/Map.svg
Normal file
After Width: | Height: | Size: 214 KiB |
After Width: | Height: | Size: 6.2 KiB |
|
@ -0,0 +1,3 @@
|
||||||
|
<svg width="114" height="94" viewBox="0 0 114 94" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path opacity="0.15" d="M33.6175 94C40.2449 94 45.6175 88.6274 45.6175 82V58.5384C45.6175 52.6872 40.8742 47.9439 35.023 47.9439V47.9439C29.1719 47.9439 24.1999 43.1174 25.6342 37.4448C26.3823 34.4858 27.4787 31.8048 28.9232 29.4019C30.9382 25.916 34.1146 23.0161 38.4524 20.7022C42.5321 18.5261 45.6175 14.5989 45.6175 9.97511V9.97511C45.6175 3.60619 39.9829 -1.42053 33.9696 0.677915C31.58 1.51182 29.2557 2.51326 26.9969 3.68224C21.4322 6.47352 16.6165 10.0623 12.5499 14.4486C8.48336 18.8349 5.27291 23.919 2.91859 29.7009C0.778289 35.4829 -0.184844 41.6635 0.0291858 48.243V82C0.0291858 88.6274 5.40177 94 12.0292 94H33.6175ZM102 94C108.627 94 114 88.6274 114 82V58.5384C114 52.6872 109.257 47.9439 103.406 47.9439V47.9439C97.5544 47.9439 92.5824 43.1174 94.0167 37.4448C94.7648 34.4858 95.8611 31.8048 97.3057 29.4019C99.3207 25.916 102.497 23.0161 106.835 20.7022C110.915 18.5261 114 14.5989 114 9.97511V9.97511C114 3.60619 108.365 -1.42053 102.352 0.677916C99.9624 1.51182 97.6382 2.51326 95.3794 3.68224C89.8146 6.47352 84.999 10.0623 80.9324 14.4486C76.8658 18.8349 73.6554 23.919 71.3011 29.7009C69.1608 35.4829 68.1976 41.6635 68.4117 48.243V82C68.4117 88.6274 73.7843 94 80.4117 94H102Z" fill="#4C97FF"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 232 KiB |
After Width: | Height: | Size: 46 KiB |
After Width: | Height: | Size: 20 KiB |
After Width: | Height: | Size: 324 KiB |
|
@ -0,0 +1,34 @@
|
||||||
|
<svg width="300" height="300" viewBox="0 0 300 300" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path opacity="0.15" d="M287 156.231C287 230.079 241.438 300.51 143.5 289.943C45.5627 279.377 9.50027 272.731 2.50038 154C-4.49951 35.2688 61.3179 44.0592 143.5 22.5189C225.683 0.97858 287 82.384 287 156.231Z" fill="#CF63CF"/>
|
||||||
|
<mask id="mask0_236_7021" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="1" y="0" width="287" height="291">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.0002 79.5C8.3335 57.5 2.20017 12.1 15.0002 6.50002C31.0002 -0.49998 68.5002 1.50002 74.0002 8.00002C78.4002 13.2 163.5 4.83334 205.5 0L210.405 27.7918C256.81 48.8747 287 104.414 287 156.231C287 230.079 241.438 300.51 143.5 289.943C45.5627 279.377 9.50027 272.731 2.50038 154C0.488668 119.878 4.49124 96.2877 13.1681 79.4835L13.0002 79.5Z" fill="#C4C4C4"/>
|
||||||
|
</mask>
|
||||||
|
<g mask="url(#mask0_236_7021)">
|
||||||
|
<path d="M58.2784 68.737C65.6877 59.3135 68.1336 59.9609 73.5287 56.1484C83.5996 49.0988 75.9743 45.3582 71.5863 46.5091C64.9683 48.2356 61.3715 53.4149 58.566 53.5587C53.099 53.8465 51.4447 44.2791 54.1063 40.9701C57.2714 37.0137 61.9469 33.0573 63.8892 32.9854C66.4788 32.8415 68.2774 36.1505 71.2986 40.1069C73.8883 43.5598 80.8659 42.6246 77.7008 37.2295C73.2408 29.7483 68.3492 24.2093 65.0402 24.0654C62.3786 23.9935 59.3575 24.7848 55.545 27.5903C50.6534 31.1151 48.711 33.2012 47.7758 33.2731C45.6897 33.5608 48.7109 22.1232 52.7393 11.9804C55.5447 4.93079 47.7041 2.05342 44.7548 9.75044C39.1439 24.2093 38.9278 36.6541 37.6329 36.5821C36.6978 36.5102 35.3312 27.3745 37.1296 14.1385C37.9209 8.16786 29.6483 6.58528 29.0728 14.9297C28.2815 26.0077 29.5046 38.5244 27.8501 38.956C26.6991 39.2437 24.613 27.7341 23.462 22.9864C21.6636 15.5771 15.0456 18.7423 16.1965 23.8497C20.8003 43.9914 21.9513 45.0704 21.5916 56.7239C21.0881 73.1969 47.4162 82.4046 58.2784 68.737Z" fill="#825331"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M66.6952 34.5274C66.4142 32.5904 67.7568 30.7925 69.6937 30.5116L78.7626 29.1964C79.6928 29.0615 80.6385 29.3016 81.3916 29.8639L87.0708 34.1046C87.824 34.6669 88.7696 34.907 89.6998 34.7722L67.2038 38.0346L66.6952 34.5274ZM100.823 33.159C101.753 33.0241 102.592 32.5252 103.154 31.7721L107.395 26.0928C107.957 25.3397 108.796 24.8408 109.726 24.7059L110.027 24.6623L111.044 31.6767L100.823 33.159ZM110.027 24.6623L199.461 11.6922C201.398 11.4113 203.196 12.7538 203.476 14.6908L203.985 18.198L208.563 49.7629C208.844 51.6998 207.501 53.4977 205.564 53.7786L116.13 66.7488L115.622 63.2416L115.622 63.2416L116.13 66.7488L115.829 66.7925C114.899 66.9274 114.061 67.4262 113.498 68.1794L109.258 73.8586C108.695 74.6117 107.857 75.1106 106.927 75.2455L95.8034 76.8587C94.8732 76.9936 93.9276 76.7534 93.1745 76.1911L87.4952 71.9505C86.7421 71.3881 85.7964 71.148 84.8663 71.2829L75.7974 72.5981C73.8604 72.879 72.0624 71.5365 71.7815 69.5995L71.7815 69.5995L67.2039 38.0346L111.044 31.6768L110.027 24.6623Z" fill="#C94FC9"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M65.5086 26.3439C65.2277 24.4069 66.5702 22.6089 68.5072 22.328L77.5761 21.0128C78.5063 20.8779 79.4519 21.1181 80.2051 21.6804L85.8843 25.921C86.6374 26.4834 87.5831 26.7235 88.5133 26.5886L66.0173 29.8511L65.5086 26.3439ZM99.6366 24.9754C100.567 24.8406 101.405 24.3417 101.968 23.5886L106.208 17.9093C106.771 17.1562 107.609 16.6573 108.539 16.5224L108.84 16.4788L198.274 3.50866C200.211 3.22775 202.009 4.57026 202.29 6.50724L202.798 10.0144L207.376 41.5793C207.657 43.5163 206.315 45.3142 204.378 45.5952L114.944 58.5653L114.643 58.6089C113.713 58.7438 112.874 59.2427 112.312 59.9958L108.071 65.6751C107.509 66.4282 106.67 66.9271 105.74 67.0619L94.6169 68.6751C93.6867 68.81 92.7411 68.5699 91.9879 68.0075L86.3087 63.7669C85.5556 63.2046 84.6099 62.9644 83.6797 63.0993L74.6108 64.4145C72.6739 64.6954 70.8759 63.3529 70.595 61.416L70.595 61.416L66.0173 29.8511L100.713 24.8194L99.6366 24.9754Z" fill="#CF63CF"/>
|
||||||
|
<path d="M63.8892 32.9133C66.4788 32.7694 68.2774 36.0784 71.2987 40.0348C73.8883 43.4877 80.8659 42.5526 77.7008 37.1574C73.2408 29.6762 68.3492 24.1373 65.0402 23.9934" fill="#825331"/>
|
||||||
|
<path d="M21.5915 56.5799C16.1964 91.4683 -17.9728 121.177 -31.0649 128.083C-30.1298 149.016 -28.3312 171.604 -28.3312 171.604C-4.27991 158.546 15.8367 146.352 29.5043 121.534C43.3143 101.109 54.2831 72.6944 58.2062 68.7369" fill="#825331"/>
|
||||||
|
<path d="M-32 128.802L-24.0872 123.695C-21.8572 141.463 -4.59291 153.404 22.2388 115.71C37.7048 93.9141 49.862 60.5363 65.9753 56.2202V60.896C65.9753 60.896 58.9255 67.0104 55.6885 72.1178C52.3795 77.2252 39.5751 112.114 16.1243 139.808C2.6725 155.706 -28.2592 171.604 -28.2592 171.604C-29.9138 148.369 -32 128.802 -32 128.802Z" fill="black" fill-opacity="0.1"/>
|
||||||
|
<path d="M52.9551 44.1352C53.2428 40.9701 56.2641 35.2153 59.8609 32.9853C63.4576 30.7553 66.1192 29.4605 69.9318 34.9995C74.7514 41.8333 78.4199 39.891 78.4199 39.891C78.4199 39.891 78.5638 41.9052 75.5425 42.0491C69.0684 42.4087 67.4857 31.4027 63.1696 33.0572C57.4868 35.2872 52.9551 44.1352 52.9551 44.1352Z" fill="black" fill-opacity="0.1"/>
|
||||||
|
<path d="M18.1387 18.8142C19.7932 18.8861 20.7282 20.109 21.5914 23.0583C22.3827 25.5761 23.9653 38.884 27.7779 38.884C28.9288 38.884 27.7779 38.884 27.7779 38.884C27.7779 38.884 27.0584 39.5314 25.5478 32.6976C24.0372 25.8638 23.5336 21.8355 22.2387 20.181C20.9439 18.5265 19.6493 18.1668 18.1387 18.8142Z" fill="black" fill-opacity="0.1"/>
|
||||||
|
<path d="M33.3169 9.03093C35.1872 9.03093 33.6047 16.728 33.7486 22.6985C33.8924 28.6691 34.8997 36.1503 37.5613 36.4381C37.5613 36.4381 36.0504 33.3449 36.1943 24.7127C36.3382 16.0805 38.3525 12.5557 36.3383 10.3977C34.8277 8.74316 33.3169 9.03093 33.3169 9.03093Z" fill="black" fill-opacity="0.1"/>
|
||||||
|
<path d="M47.0563 6.15367C49.4302 5.07465 52.1638 7.01685 50.0057 12.0523C47.8477 17.0877 44.1069 30.3237 47.344 33.0573C47.344 33.0573 46.9845 29.1009 49.3584 21.3319C52.02 12.5558 53.9621 10.1101 53.1708 7.80816C52.4514 5.57818 50.3653 3.70788 47.0563 6.15367Z" fill="black" fill-opacity="0.1"/>
|
||||||
|
</g>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M79.3977 100.803C79.5996 98.8558 81.3414 97.4412 83.2882 97.6431L92.4031 98.588C93.338 98.685 94.1961 99.1493 94.7886 99.8789L99.2569 105.381C99.8494 106.11 100.708 106.575 101.642 106.672L79.0323 104.328L79.3977 100.803ZM112.822 107.831C113.757 107.928 114.692 107.649 115.422 107.057L120.924 102.588C121.653 101.996 122.588 101.717 123.523 101.814L123.826 101.846L123.095 108.896L112.822 107.831ZM123.826 101.846L213.714 111.165C215.66 111.367 217.075 113.108 216.873 115.055L216.508 118.58L213.219 150.305C213.017 152.252 211.275 153.667 209.328 153.465L119.44 144.146L119.806 140.621L119.806 140.621L119.44 144.146L119.138 144.114C118.203 144.018 117.268 144.296 116.538 144.889L111.036 149.357C110.307 149.949 109.372 150.228 108.437 150.131L97.2571 148.972C96.3222 148.875 95.4641 148.411 94.8715 147.681L90.4032 142.179C89.8107 141.449 88.9526 140.985 88.0177 140.888L78.9028 139.943C76.956 139.741 75.5414 138 75.7433 136.053L75.7433 136.053L79.0323 104.328L123.095 108.896L123.826 101.846Z" fill="#855CD6"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M80.2503 92.5776C80.4521 90.6308 82.1939 89.2162 84.1407 89.418L93.2557 90.363C94.1905 90.4599 95.0486 90.9242 95.6412 91.6538L100.109 97.1558C100.7 97.8828 101.554 98.3465 102.485 98.4456L113.685 99.6067C114.616 99.7007 115.547 99.4221 116.274 98.8317L121.776 94.3634C122.506 93.7709 123.441 93.4924 124.376 93.5893L124.678 93.6207L214.566 102.94C216.513 103.142 217.927 104.883 217.726 106.83L217.36 110.355L214.071 142.08L76.5958 127.828L79.8848 96.1026L79.8848 96.1026L80.2503 92.5776ZM210.181 145.24C212.127 145.442 213.869 144.027 214.071 142.08L120.658 132.396L76.5958 127.828C76.3939 129.774 77.8085 131.516 79.7553 131.718L88.8702 132.663C89.8051 132.76 90.6632 133.224 91.2557 133.954L95.724 139.456C96.3166 140.185 97.1747 140.65 98.1095 140.747L109.289 141.906C110.224 142.003 111.159 141.724 111.889 141.132L117.391 136.663C118.121 136.071 119.056 135.793 119.99 135.889L120.293 135.921L210.181 145.24Z" fill="#9966FF"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M78.5708 180.411C78.3826 178.463 79.8093 176.731 81.7575 176.543L90.8787 175.662C91.8143 175.571 92.7474 175.856 93.4729 176.454L98.9435 180.96C99.6689 181.558 100.602 181.843 101.538 181.753L112.725 180.672C113.661 180.581 114.522 180.123 115.12 179.397L119.626 173.927C120.224 173.201 121.085 172.743 122.021 172.653L122.323 172.623L123.005 179.678L123.005 179.678L122.323 172.623L238.315 161.416C240.263 161.228 241.995 162.655 242.183 164.603L242.524 168.13L245.592 199.878C245.78 201.826 244.353 203.558 242.405 203.746L126.413 214.953L126.073 211.426L126.072 211.426L126.413 214.953L126.111 214.982C125.175 215.073 124.314 215.531 123.716 216.256L119.21 221.727C118.612 222.453 117.751 222.911 116.815 223.001L105.628 224.082C104.692 224.173 103.759 223.888 103.033 223.29L97.5628 218.783C96.8374 218.186 95.9042 217.901 94.9687 217.991L85.8474 218.873C83.8992 219.061 82.1673 217.634 81.9791 215.686L78.9116 183.939L78.5708 180.411Z" fill="#EC9C13"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M77.7754 172.18C77.5872 170.232 79.0139 168.5 80.962 168.312L90.0833 167.431C91.0189 167.34 91.952 167.625 92.6775 168.223L98.1481 172.73C98.8735 173.327 99.8067 173.612 100.742 173.522L111.93 172.441C112.865 172.35 113.727 171.892 114.324 171.167L118.831 165.696C119.429 164.971 120.29 164.512 121.225 164.422L121.528 164.393L121.528 164.393L237.52 153.185C239.468 152.997 241.2 154.424 241.388 156.372L241.729 159.9L244.796 191.647C244.985 193.595 243.558 195.327 241.61 195.515L125.618 206.722L125.277 203.195L125.618 206.722L125.315 206.751C124.38 206.842 123.518 207.3 122.921 208.026L118.414 213.496C117.817 214.222 116.955 214.68 116.02 214.77L104.832 215.851C103.897 215.942 102.963 215.657 102.238 215.059L96.7674 210.553C96.0419 209.955 95.1088 209.67 94.1733 209.76L85.052 210.642C83.1038 210.83 81.3719 209.403 81.1837 207.455L78.1162 175.708L77.7754 172.18Z" fill="#FFAB19"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M83.27 226.171C83.0818 224.222 84.5085 222.49 86.4567 222.302L95.578 221.421C96.5135 221.331 97.4466 221.615 98.1721 222.213L103.643 226.72C104.368 227.317 105.301 227.602 106.237 227.512L117.424 226.431C118.36 226.34 119.221 225.882 119.819 225.157L124.326 219.686C124.923 218.961 125.784 218.502 126.72 218.412L127.023 218.383L127.704 225.438L127.704 225.438L127.023 218.383L200.114 211.321C202.062 211.132 203.794 212.559 203.982 214.507L204.323 218.035L207.39 249.782L207.39 249.782C207.579 251.73 206.152 253.462 204.204 253.65L131.113 260.712L130.772 257.185L130.772 257.185L131.113 260.712L130.81 260.742C129.874 260.832 129.013 261.29 128.415 262.016L123.909 267.486C123.311 268.212 122.45 268.67 121.514 268.761L110.327 269.842C109.391 269.932 108.458 269.647 107.733 269.049L102.262 264.543C101.537 263.945 100.603 263.66 99.6679 263.751L90.5466 264.632C88.5984 264.82 86.8665 263.393 86.6783 261.445L83.6109 229.698L83.27 226.171Z" fill="#47A8D1"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M82.4746 217.94C82.2864 215.992 83.7131 214.26 85.6613 214.071L94.7826 213.19C95.7181 213.1 96.6512 213.385 97.3767 213.982L102.847 218.489C103.573 219.086 104.506 219.371 105.441 219.281L116.629 218.2C117.565 218.11 118.426 217.651 119.024 216.926L123.53 211.455C124.128 210.73 124.989 210.272 125.925 210.181L126.227 210.152L126.227 210.152L199.318 203.09C201.267 202.902 202.998 204.328 203.187 206.276L203.528 209.804L206.595 241.551C206.783 243.499 205.357 245.231 203.408 245.419L130.317 252.482L130.015 252.511C129.079 252.601 128.218 253.06 127.62 253.785L123.113 259.256C122.516 259.981 121.655 260.439 120.719 260.53L109.531 261.611C108.596 261.701 107.663 261.416 106.937 260.819L101.467 256.312C100.741 255.714 99.808 255.429 98.8725 255.52L89.7512 256.401C87.803 256.589 86.0711 255.163 85.8829 253.214L82.8154 221.467L82.4746 217.94Z" fill="#5CB1D6"/>
|
||||||
|
<path d="M134.45 158.015C132.545 150.756 136.884 143.327 144.143 141.422L178.314 132.45C185.572 130.545 193.001 134.884 194.907 142.143C196.812 149.401 192.473 156.83 185.215 158.736L151.044 167.707C143.785 169.613 136.356 165.273 134.45 158.015Z" fill="#5CB1D6"/>
|
||||||
|
<path d="M144.315 142.079L178.486 133.108L178.141 131.793L143.97 140.764L144.315 142.079ZM185.042 158.079L150.871 167.05L151.216 168.364L185.387 159.393L185.042 158.079ZM150.871 167.05C143.975 168.86 136.918 164.738 135.108 157.842L133.793 158.187C135.794 165.809 143.595 170.365 151.216 168.364L150.871 167.05ZM194.25 142.315C196.06 149.211 191.938 156.268 185.042 158.079L185.387 159.393C193.008 157.392 197.565 149.592 195.564 141.97L194.25 142.315ZM178.486 133.108C185.382 131.297 192.439 135.42 194.25 142.315L195.564 141.97C193.563 134.349 185.763 129.792 178.141 131.793L178.486 133.108ZM143.97 140.764C136.349 142.765 131.792 150.566 133.793 158.187L135.108 157.842C133.297 150.947 137.42 143.889 144.315 142.079L143.97 140.764Z" fill="#47A8D1"/>
|
||||||
|
<mask id="mask1_236_7021" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="1" y="19" width="287" height="272">
|
||||||
|
<path d="M287 156.231C287 230.079 241.438 300.51 143.5 289.943C45.5627 279.377 9.50027 272.731 2.50038 154C-4.49951 35.2688 61.3179 44.0592 143.5 22.5189C225.683 0.97858 287 82.384 287 156.231Z" fill="#59C059"/>
|
||||||
|
</mask>
|
||||||
|
<g mask="url(#mask1_236_7021)">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M301.517 227.699C283.85 222.409 270.778 218.33 260.382 217.028C259.315 217.068 258.246 216.995 257.195 216.808C248.912 215.384 233.643 228.322 211.775 218.587C203.156 214.756 207.076 206.311 205.621 205.46C196.529 200.18 204.806 191.591 204.118 190.839C197.939 184.248 201.516 178.78 203.137 176.32C203.137 176.32 203.153 176.294 203.16 176.277C203.642 175.552 203.952 175.102 203.744 174.972C199.546 172.287 195.134 169.952 190.552 167.989C185.103 165.59 179.74 163.647 172.909 160.265C166.079 156.883 164.858 151.487 167.223 148.388C167.284 148.299 167.351 148.214 167.422 148.132C167.502 148.032 167.593 147.94 167.692 147.857C167.849 147.703 168.013 147.557 168.176 147.413C168.871 146.845 169.688 146.443 170.563 146.24C171.588 145.968 172.656 145.896 173.709 146.026L174.159 146.083C174.588 146.139 175.014 146.218 175.435 146.32C175.503 146.333 175.579 146.359 175.646 146.369C176.27 146.553 176.884 146.768 177.485 147.015L179.822 148L179.829 148.013L181.066 148.519C181.368 148.652 181.681 148.774 182.013 148.907C182.188 148.977 182.386 149.064 182.587 149.15C185.674 150.421 189.619 152.01 193.693 153.642C197.307 155.088 201.045 156.563 204.424 157.856C205.1 158.111 205.801 158.386 206.482 158.656C208.845 159.535 210.933 160.304 212.582 160.885L212.638 160.905C213.899 161.337 214.872 161.648 215.528 161.819C215.798 161.888 216.067 161.956 216.347 162.019C217.115 162.213 217.916 162.392 218.743 162.526C219.882 162.736 220.887 162.878 221.776 162.964C221.97 162.993 222.166 163.01 222.362 163.014C223.976 163.141 225.455 163.061 226.618 162.7C227.013 162.619 227.39 162.463 227.727 162.241C230.111 160.786 229.883 157.156 223.591 149.497C214.096 137.911 215.227 128.92 219.596 126.678C219.866 126.543 220.148 126.435 220.439 126.355C222.247 125.811 224.486 126.317 226.728 128.086C226.817 128.166 226.916 128.24 227.022 128.328C227.422 128.667 227.802 129.031 228.158 129.416C228.726 130.023 229.306 130.685 229.894 131.39C229.911 131.407 229.923 131.429 229.928 131.452C233.366 135.588 237.194 141.324 242.025 147.028C242.218 147.261 242.436 147.508 242.647 147.748C244.227 149.594 245.911 151.409 247.736 153.15C247.784 153.214 247.843 153.269 247.91 153.312C249.808 155.156 251.827 156.87 253.954 158.445L254.324 158.713C255.792 159.774 257.991 161.267 260.376 162.981C260.403 163.012 260.437 163.038 260.475 163.055C265.041 166.309 270.239 170.277 272.172 173.244C272.2 173.287 272.225 173.332 272.247 173.379L275.725 173.951C287.195 175.815 299.907 177.918 312.035 179.853C312.029 179.903 312.037 179.947 312.031 179.998L312.149 180.014L311.918 181.841C310.773 198.147 307.344 213.7 301.517 227.699Z" fill="#4C2F19"/>
|
||||||
|
</g>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M26.194 168.519L26.194 168.519L13.5191 174.156L19.1561 186.831L19.1561 186.831L43.4755 196.178L56.1505 190.541L50.5135 177.866L26.194 168.519Z" fill="#59C059"/>
|
||||||
|
<path d="M200.504 78.0238C200.893 72.7915 205.451 68.8658 210.683 69.2554L235.614 71.1116C240.846 71.5011 244.772 76.0585 244.382 81.2907C243.993 86.5229 239.435 90.4487 234.203 90.0591L209.272 88.2029C204.04 87.8133 200.114 83.256 200.504 78.0238Z" fill="#4C97FF"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 16 KiB |
|
@ -0,0 +1,29 @@
|
||||||
|
<svg width="300" height="300" viewBox="0 0 300 300" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path opacity="0.3" d="M0 151.358C0 232.807 47.6261 310.489 150 298.835C252.374 287.18 300 232.807 300 151.358C300 69.9088 235.905 27.6388 150 3.88113C64.095 -19.8766 0 69.9088 0 151.358Z" fill="#5CB1D6"/>
|
||||||
|
<mask id="mask0_236_7020" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="300" height="300">
|
||||||
|
<path d="M0 151.358C0 232.807 47.6261 310.489 150 298.835C252.374 287.18 300 232.807 300 151.358C300 69.9088 235.905 27.6388 150 3.88113C64.095 -19.8766 0 69.9088 0 151.358Z" fill="#59C059"/>
|
||||||
|
</mask>
|
||||||
|
<g mask="url(#mask0_236_7020)">
|
||||||
|
<path d="M222.423 228.27C214.292 219.096 217.428 208.233 216.669 203.056C215.413 193.958 202.167 202.294 205.897 218.985C207.972 228.527 198.647 227.006 192.576 223.876C184.59 219.786 173.59 215.176 167.05 212.357C159.691 209.093 155.889 218.845 162.415 221.889C171.241 226.086 186.979 231.603 186.142 234.259C185.292 237.14 165.851 227.566 153.343 223.654C144.265 220.851 141.198 229.631 149.851 233.875C160.143 239.006 177.331 242.919 176.977 245.04C176.564 247.215 160.825 242.656 151.297 239.826C143.487 237.495 141.225 246.944 148.315 249.063C158.947 252.298 178.053 255.255 177.766 257.211C177.379 259.895 165.768 256.995 159.516 255.942C151.923 254.694 151.045 262.705 157.276 264.096C168.127 266.498 194.846 271.324 202.275 272.505C219.696 275.36 237.628 245.427 222.423 228.27Z" fill="#B68554"/>
|
||||||
|
<path d="M208.333 270.219C247.048 285.58 264.714 302.152 288.206 321.218C308.152 337.364 326.62 298.554 313.916 288.541C282.103 263.447 238.017 246.465 225.583 241.317C213.87 236.382 208.333 270.219 208.333 270.219Z" fill="#B68554"/>
|
||||||
|
<path d="M153.046 259.442C152.798 261.683 154.653 263.656 157.825 264.355C160.997 265.053 197.008 271.961 201.198 272.609C205.388 273.256 209.507 272.264 211.082 271.4C211.082 271.4 237.372 280.542 267.236 304.278C297.1 328.014 296.11 336.018 308.871 320.773C308.871 320.773 261.458 282.276 226.428 269.393C218.539 266.493 221.418 264.58 221.537 259.794C221.657 255.009 215.45 268.168 205.342 268.404C195.294 268.587 158.708 261.87 156.455 260.889C154.202 259.907 153.803 257.176 154.445 256.82C154.61 256.887 153.26 257.764 153.046 259.442Z" fill="black" fill-opacity="0.1"/>
|
||||||
|
<path d="M223.841 229.991C225.45 233.246 227.859 240.045 225.901 245.396C223.584 252.023 227.199 248.181 229.397 246.34C231.832 244.288 239.344 246.884 240.771 247.534L228.781 242.525C228.834 242.585 227.934 234.129 223.841 229.991Z" fill="black" fill-opacity="0.1"/>
|
||||||
|
<path d="M144.577 241.846C144.044 245.084 147.518 247.324 150.208 247.599C152.891 247.986 177.342 253.013 177.706 257.264C177.706 257.264 176.941 255.921 169.21 254.158C159.529 251.995 150.818 250.568 148.116 249.559C145.136 248.477 142.675 245.34 144.577 241.846Z" fill="black" fill-opacity="0.1"/>
|
||||||
|
<path d="M144.964 226.081C144.01 227.884 145.484 232.427 148.992 234.105C152.499 235.783 162.767 239.447 168.918 241.228C175.07 243.008 177.078 244.313 176.911 245.205C176.911 245.205 177.787 242.834 168.703 239.185C159.619 235.535 151.252 234.016 148.408 230.687C145.564 227.357 145.786 224.608 146.428 224.252C146.435 224.139 145.919 224.277 144.964 226.081Z" fill="black" fill-opacity="0.1"/>
|
||||||
|
<path d="M160.578 213.094C159.068 214.751 160.285 218.884 164.421 220.431C168.557 221.977 187.65 229.839 186.142 234.259C186.142 234.259 186.263 233.195 181.342 230.642C175.767 227.712 163.169 222.498 161.326 221.259C159.484 220.02 158.482 217.93 158.868 216.205C159.247 214.593 160.578 213.094 160.578 213.094Z" fill="black" fill-opacity="0.1"/>
|
||||||
|
<path d="M79.9444 128.478C77.7126 122.795 77.3966 117.76 67.2402 112.077C44.3302 99.3329 46.2474 55.7874 86.0327 59.9768C91.8122 60.6069 111.707 57.8761 122.251 53.4682C130.069 50.0954 133.217 57.467 125.775 61.0088C119.905 63.715 103.854 65.4081 104.965 66.0137C106.093 66.5208 124.564 67.1922 138.875 59.9042C148.157 55.1684 153.027 64.2711 144.586 68.8528C133.464 74.7826 111.919 75.3885 113.191 76.2263C114.544 77.1801 133.482 78.6464 151.471 71.8148C162.042 67.8182 164.888 79.7074 153.807 83.7141C133.065 91.1695 112.579 85.8697 113.442 87.8532C114.161 89.5062 133.206 94.3443 156.106 87.8855C165.197 85.3505 166.105 98.416 154.95 101.698C139.621 106.162 126.512 103.913 111.357 102.312C100.88 101.246 85.6319 101.864 90.8449 112.45C103.24 137.939 83.7868 138.209 79.9444 128.478Z" fill="#FDDBB4"/>
|
||||||
|
<path d="M76.0869 59.9201C55.2455 59.4332 -27.4553 28.8533 -36.2051 -46.9824L-49.9395 29.5957C-49.9395 29.5957 -0.621695 92.7946 66.9753 94.8603" fill="#FDDBB4"/>
|
||||||
|
<path d="M-49.9574 29.694C-49.9574 29.694 -7.13437 84.9212 53.3591 93.7389C53.3591 93.7389 55.1903 103.922 62.4467 108.779C69.7032 113.637 74.388 116.407 77.5687 122.464C80.7495 128.521 78.7126 129.679 84.3562 133.333C89.9998 136.987 94.4791 132.405 94.5594 128.559C94.5594 128.559 86.8619 130.125 83.9433 121.474C81.007 112.921 75.8757 106.413 70.7975 103.572C65.7193 100.731 58.3406 89.7557 58.1405 84.6401C57.948 78.9162 54.0515 80.2492 52.323 83.0887C50.4785 86.009 -41.5398 52.4373 -45.0771 1.91938L-50.0554 29.6764L-49.9574 29.694Z" fill="black" fill-opacity="0.1"/>
|
||||||
|
<path d="M90.1147 106.325C91.7319 101.84 93.543 96.2726 99.706 96.4636C105.869 96.6546 157.678 105.744 162.898 93.0659C162.898 93.0659 162.859 102.914 146.584 104.16C130.308 105.406 107.465 101.919 100.721 102.132C91.6257 102.431 90.1147 106.325 90.1147 106.325Z" fill="black" fill-opacity="0.1"/>
|
||||||
|
<path d="M113.129 87.8989C113.601 86.9676 128.264 88.48 137.206 87.3406C146.049 86.1836 158.539 83.9534 160.206 78.0551C160.206 78.0551 146.233 84.591 132.915 84.6407C119.615 84.592 113.545 86.1448 113.129 87.8989Z" fill="black" fill-opacity="0.1"/>
|
||||||
|
<path d="M148.63 62.1618C148.83 63.3151 149.93 67.3733 140.601 70.6781C131.271 73.9829 114.414 75.6331 113.985 75.7593C113.458 75.8679 112.948 75.8781 112.913 76.0749C112.913 76.0749 113.231 74.3033 115.636 73.9219C131.184 71.6308 140.247 68.6842 145.231 65.8191C147.383 64.5796 148.63 62.1618 148.63 62.1618Z" fill="black" fill-opacity="0.1"/>
|
||||||
|
<path d="M104.785 65.88C105.249 65.5569 113.636 64.1148 114.476 63.9607C115.415 63.8243 128.649 62.5404 129.842 56.4554C129.842 56.4554 128.684 58.3812 122.875 60.1839C117.065 61.9867 105.423 63.4546 104.785 65.88Z" fill="black" fill-opacity="0.1"/>
|
||||||
|
</g>
|
||||||
|
<path opacity="0.6" d="M194.414 194.964C194.758 198.201 194.807 205.127 190.379 211.596C189.585 212.736 187.907 212.402 187.504 211.166C186.486 207.573 184.44 201.792 180.699 198.384C179.849 197.714 178.769 197.428 177.748 197.647C169.351 199.786 127.718 208.603 116.072 177.278C103.102 142.436 127.842 121.537 158.794 117.085C190.153 112.564 201.848 129.448 209.452 149.817C218.305 173.395 201.29 187.989 195.857 191.969C194.796 192.687 194.31 193.752 194.414 194.964Z" fill="white"/>
|
||||||
|
<path opacity="0.6" d="M104.701 128.522C103.159 125.655 100.495 119.262 102.149 111.599C102.452 110.243 104.132 109.918 104.973 110.91C107.273 113.851 111.353 118.429 116.105 120.17C117.145 120.469 118.254 120.326 119.116 119.737C126.08 114.582 161.289 90.678 183.914 115.275C209.095 142.626 194.093 171.328 167.122 187.153C139.8 203.194 122.591 191.985 107.849 176.003C90.7386 157.522 100.973 137.579 104.498 131.84C105.208 130.774 105.256 129.605 104.701 128.522Z" fill="white"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M169.724 152.242C167.03 163.505 152.779 170.574 149.5 170.09C146.221 169.606 134.617 158.722 135.294 147.16C135.32 146.784 135.345 146.407 135.4 146.035C136.217 140.501 141.401 136.667 146.958 137.487C149.779 137.903 152.172 139.428 153.706 141.588C155.799 139.963 158.531 139.195 161.351 139.611C166.906 140.431 170.761 145.599 169.945 151.133C169.89 151.505 169.806 151.873 169.724 152.242Z" fill="#FF6680"/>
|
||||||
|
<g opacity="0.5">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M81.6519 215.84C81.5987 216.463 81.2178 217.005 80.6522 217.271L79.3673 217.876C78.7601 218.159 78.9208 219.065 79.5886 219.124L81.0028 219.248C81.6251 219.301 82.1701 219.684 82.4337 220.247L83.0388 221.532C83.3218 222.142 84.2279 221.981 84.2864 221.311L84.41 219.897C84.4637 219.277 84.8463 218.729 85.4124 218.465L86.6978 217.863C87.3045 217.578 87.1437 216.672 86.4764 216.615L85.0618 216.489C84.439 216.433 83.8922 216.056 83.6282 215.49L83.0257 214.204C82.7406 213.598 81.8345 213.758 81.7781 214.426L81.6519 215.84ZM68.1966 228.099C69.7517 227.372 70.8007 225.87 70.949 224.16L71.2885 220.271C71.4512 218.432 73.9407 217.99 74.7232 219.661L76.3825 223.196C77.1102 224.751 78.6116 225.8 80.3193 225.949L84.2083 226.288C86.0472 226.451 86.4888 228.94 84.8181 229.726L81.2832 231.382C79.7309 232.109 78.6819 233.611 78.5331 235.319L78.1908 239.208C78.0309 241.046 75.5414 241.488 74.7561 239.817L73.0996 236.282C72.3724 234.73 70.871 233.681 69.1605 233.533L65.2715 233.193C63.4326 233.031 62.991 230.541 64.6617 229.756L68.1966 228.099ZM64.0662 241.013C64.6316 240.746 65.0146 240.201 65.0678 239.579L65.1913 238.165C65.2476 237.498 66.1534 237.337 66.4411 237.944L67.0407 239.229C67.3073 239.794 67.8517 240.175 68.4743 240.231L69.8907 240.354C70.5578 240.41 70.7185 241.316 70.1124 241.603L68.8243 242.203C68.2589 242.47 67.8786 243.014 67.8227 243.637L67.7019 245.05C67.6407 245.721 66.7348 245.882 66.452 245.272L65.8498 243.987C65.5858 243.421 65.0388 243.041 64.4162 242.985L63.0029 242.865C62.3349 242.803 62.1742 241.897 62.7812 241.615L64.0662 241.013Z" fill="white"/>
|
||||||
|
</g>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M227.736 91.3357C229.45 91.222 230.972 90.2036 231.731 88.6635L233.458 85.1628C234.277 83.5083 236.757 84.0001 236.88 85.8414L237.144 89.737C237.257 91.4501 238.276 92.9725 239.813 93.7309L243.314 95.4584C244.968 96.2774 244.477 98.7574 242.635 98.8829L238.74 99.1437C237.029 99.258 235.507 100.276 234.749 101.814L233.018 105.314C232.202 106.969 229.722 106.477 229.596 104.635L229.336 100.74C229.221 99.0299 228.203 97.5076 226.663 96.7486L223.162 95.021C221.508 94.2021 221.999 91.7221 223.841 91.5966L227.736 91.3357Z" fill="white" fill-opacity="0.6"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 9.7 KiB |
|
@ -0,0 +1,3 @@
|
||||||
|
<svg width="115" height="94" viewBox="0 0 115 94" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path opacity="0.15" d="M34.5326 94C41.16 94 46.5326 88.6274 46.5326 82V58.5384C46.5326 52.6872 41.7892 47.9439 35.9381 47.9439V47.9439C30.0869 47.9439 25.115 43.1174 26.5492 37.4448C27.2973 34.4858 28.3937 31.8048 29.8382 29.4019C31.8532 25.916 35.0296 23.0161 39.3674 20.7022C43.4472 18.5261 46.5326 14.5989 46.5326 9.97511V9.97511C46.5326 3.60619 40.8979 -1.42053 34.8846 0.677915C32.495 1.51182 30.1708 2.51326 27.912 3.68224C22.3472 6.47352 17.5315 10.0623 13.465 14.4486C9.3984 18.8349 6.18795 23.919 3.83362 29.7009C1.69333 35.4829 0.730196 41.6635 0.944225 48.243V82C0.944225 88.6274 6.31681 94 12.9442 94H34.5326ZM102.915 94C109.542 94 114.915 88.6274 114.915 82V58.5384C114.915 52.6872 110.172 47.9439 104.321 47.9439V47.9439C98.4694 47.9439 93.4974 43.1174 94.9317 37.4448C95.6798 34.4858 96.7762 31.8048 98.2207 29.4019C100.236 25.916 103.412 23.0161 107.75 20.7022C111.83 18.5261 114.915 14.5989 114.915 9.97511V9.97511C114.915 3.60619 109.28 -1.42053 103.267 0.677916C100.877 1.51182 98.5533 2.51326 96.2945 3.68224C90.7297 6.47352 85.914 10.0623 81.8475 14.4486C77.7809 18.8349 74.5704 23.919 72.2161 29.7009C70.0758 35.4829 69.1127 41.6635 69.3267 48.243V82C69.3267 88.6274 74.6993 94 81.3267 94H102.915Z" fill="#59C059"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.3 KiB |
|
@ -0,0 +1,116 @@
|
||||||
|
<svg width="337" height="333" viewBox="0 0 337 333" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<g clip-path="url(#clip0_236_7029)">
|
||||||
|
<path opacity="0.3" d="M316.219 141.271C328.001 131.388 324.098 98.5447 305.814 85.5392C287.53 72.5336 264.524 55.715 252.742 65.5984C240.96 75.4817 233.143 100.735 263.147 121.33C293.15 141.925 304.436 151.154 316.219 141.271Z" fill="#59C059"/>
|
||||||
|
<path d="M128.724 149.997C109.759 172.474 113.944 196.824 118.627 206.628L155.064 205.311C151.698 198.141 146.986 184.415 155.064 178.093C165.161 170.191 187.989 166.679 188.428 146.924C188.867 127.169 175.697 126.73 173.941 112.243C172.185 97.7564 194.574 62.1976 167.795 54.7347C141.016 47.2717 114.676 57.8077 113.798 90.2935C112.92 122.779 152.43 121.901 128.724 149.997Z" fill="#E5F0FF"/>
|
||||||
|
<path opacity="0.3" d="M328.326 227.7C319.546 292.228 263.115 254.04 161.068 279.501C59.0203 304.963 -4.43468 286.077 10.0522 207.94C24.5392 129.803 87.7548 118.389 161.068 118.389C259.018 118.389 337.105 163.172 328.326 227.7Z" fill="#59C059"/>
|
||||||
|
<mask id="mask0_236_7029" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="8" y="118" width="321" height="173">
|
||||||
|
<path d="M328.326 227.7C319.546 292.228 263.115 254.04 161.068 279.501C59.0203 304.963 -4.43468 286.077 10.0522 207.94C24.5392 129.803 87.7548 118.389 161.068 118.389C259.018 118.389 337.105 163.172 328.326 227.7Z" fill="#C4C4C4"/>
|
||||||
|
</mask>
|
||||||
|
<g mask="url(#mask0_236_7029)">
|
||||||
|
<path d="M120.48 217.25C120.48 217.25 111.691 249.358 111.805 260.07C111.963 274.969 106.432 294.866 106.432 294.866L18.6323 286.849C18.6323 286.849 20.9063 271.212 24.3305 253.38C30.7048 220.2 38.9667 205.081 41.8465 201.156C47.5886 193.316 120.471 217.25 120.471 217.25H120.48Z" fill="#0DA57A"/>
|
||||||
|
<path d="M128.724 149.997C109.759 172.474 113.944 196.824 118.627 206.628L155.064 205.311C151.698 198.141 146.986 184.415 155.064 178.093C165.161 170.191 187.989 166.679 188.428 146.924C188.867 127.169 175.697 126.73 173.941 112.243C172.185 97.7565 194.574 62.1977 167.795 54.7347C141.016 47.2718 114.676 57.8077 113.798 90.2935C112.92 122.779 152.43 121.901 128.724 149.997Z" fill="white" fill-opacity="0.5"/>
|
||||||
|
</g>
|
||||||
|
<path d="M135.292 250.386C135.292 250.386 155.451 289.922 142.298 291.853C129.146 293.785 113.685 255.785 113.685 255.785L135.292 250.386Z" fill="#E0B585"/>
|
||||||
|
<path d="M110.348 255.417L114.509 264.223C115.08 265.426 116.388 266.093 117.696 265.839C120.726 265.25 126.002 264.17 128.11 263.363C130.217 262.555 134.809 259.851 137.539 258.2C138.786 257.445 139.278 255.891 138.707 254.556L133.509 242.493L110.356 255.417H110.348Z" fill="#0DA57A"/>
|
||||||
|
<path d="M208.183 134.139C208.183 134.139 197.524 129.828 201.466 143.929C205.417 158.038 212.283 150.944 212.283 150.944C212.283 150.944 212.95 144.666 212.371 142.401C211.862 140.408 208.174 134.13 208.174 134.13L208.183 134.139Z" fill="#6B3D1F"/>
|
||||||
|
<path d="M201.106 127.659C201.106 105.92 217.2 88.2901 237.051 88.2901C256.903 88.2901 267.21 105.911 267.21 127.659C267.21 142.067 256.139 158.898 251.52 164.114C250.239 165.562 246.876 168.188 245.374 169.101C241.362 171.533 237.947 174.246 226.252 173.236C214.557 172.226 204.987 157.415 204.767 149.557C204.697 147.125 204.1 144.297 203.731 142.77C202.045 137.985 201.106 132.84 201.106 127.659Z" fill="#6B3D1F"/>
|
||||||
|
<path d="M237.137 142.629C238.262 142.589 239.134 141.442 239.086 140.066C239.038 138.689 238.088 137.605 236.963 137.645C235.839 137.684 234.967 138.831 235.015 140.208C235.063 141.584 236.013 142.668 237.137 142.629Z" fill="black"/>
|
||||||
|
<path d="M213.44 143.455C214.564 143.416 215.436 142.268 215.388 140.892C215.34 139.516 214.39 138.432 213.266 138.471C212.141 138.51 211.269 139.658 211.317 141.034C211.365 142.411 212.315 143.494 213.44 143.455Z" fill="black"/>
|
||||||
|
<path d="M224.233 139.504C224.233 139.504 225.076 141.971 224.083 143.762C223.091 145.553 215.33 147.871 225.506 153.244" stroke="black" stroke-width="0.87" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M231.581 130.794C231.3 131.022 231.546 131.426 231.932 131.382C234.768 131.092 238.517 131.075 243.899 132.594C247.798 133.691 238.052 125.535 231.581 130.794Z" fill="black"/>
|
||||||
|
<path d="M216.954 131.224C217.217 131.435 217.033 131.847 216.682 131.83C214.135 131.689 212.204 132.374 207.515 134.157C204.118 135.447 210.782 126.316 216.945 131.224H216.954Z" fill="black"/>
|
||||||
|
<path d="M262.311 132.646C262.311 132.646 272.97 128.335 269.028 142.436C265.077 156.545 258.211 149.451 258.211 149.451C258.211 149.451 257.544 143.174 258.123 140.908C258.633 138.915 262.32 132.638 262.32 132.638L262.311 132.646Z" fill="#6B3D1F"/>
|
||||||
|
<path d="M222.064 161.216C221.809 159.961 221.976 156.528 225.506 157.415C229.035 158.301 229.351 160.075 229.29 161.532C229.228 162.99 223.354 167.45 222.073 161.216H222.064Z" fill="#352012"/>
|
||||||
|
<path d="M222.187 158.934C222.187 158.934 223.416 160.409 228.263 158.723C228.263 158.723 226.63 157.178 224.083 157.292C224.083 157.292 222.74 157.274 222.187 158.934Z" fill="white"/>
|
||||||
|
<path d="M210.536 103.576C210.536 103.576 206.962 104.498 202.098 118.423C202.098 118.423 203.959 108.502 208.894 103.19C213.828 97.8779 210.536 103.576 210.536 103.576Z" fill="black"/>
|
||||||
|
<path d="M220.668 92.6011C220.668 92.6011 220.703 91.2314 222.064 90.5817C223.425 89.932 224.048 90.7134 224.048 90.7134C224.048 90.7134 223.495 89.7388 225.708 88.5711C227.92 87.4033 229.202 88.694 229.202 88.694C229.202 88.694 230.308 86.7185 233.039 86.9731C234.409 87.1048 234.69 87.5877 235.137 87.6228C235.585 87.6579 235.453 87.4999 236.849 86.9643C238.553 86.3146 239.694 87.6053 239.694 87.6053C239.694 87.6053 240.669 86.8239 242.267 87.2541C243.865 87.6843 244.075 88.492 244.075 88.492C244.075 88.492 244.655 87.9389 245.989 88.2989C247.324 88.6589 247.28 89.7827 247.28 89.7827C247.28 89.7827 248.255 89.1066 249.756 90.1427C251.257 91.1787 251.108 91.5475 251.108 91.5475C251.108 91.5475 251.731 91.3367 252.408 91.8109C253.084 92.285 253.031 92.6098 253.031 92.6098C253.031 92.6098 253.294 93.5581 254.787 93.9005C256.279 94.2429 256.341 95.7267 256.341 95.7267C256.341 95.7267 257.052 96.6398 258.167 96.8769C259.282 97.114 259.186 98.87 259.186 98.87C259.186 98.87 261.504 98.7031 261.029 101.056C261.029 101.056 261.381 101.197 261.89 101.337C262.364 101.469 263.04 102.083 262.425 103.269C261.811 104.454 263.295 103.585 263.435 104.937C263.576 106.289 263.268 106.588 263.268 106.588L220.668 92.6011Z" fill="black"/>
|
||||||
|
<path d="M208.894 103.19C208.894 103.19 225.383 107.632 240.318 103.19C255.252 98.7471 262.75 123.296 261.53 129.758C260.309 136.22 260.906 137.001 260.906 137.001C260.906 137.001 261.205 131.075 266.517 132.102C266.517 132.102 271.478 102.97 249.247 90.9417C227.016 78.9132 208.903 103.19 208.903 103.19H208.894Z" fill="black"/>
|
||||||
|
<path d="M202.239 117.764C202.239 117.764 200.957 115.842 202.239 114.911C203.521 113.98 202.054 112.813 203.283 111.645C204.513 110.477 203.398 109.371 204.39 108.326C205.382 107.281 205.882 107.562 205.882 107.562C205.882 107.562 205.487 105.06 207.234 103.207C208.982 101.355 209.983 101.802 209.983 101.802C209.983 101.802 209.956 99.7304 212.099 98.1237C214.241 96.5169 214.592 96.8506 214.592 96.8506C214.592 96.8506 214.469 94.5327 216.497 94.1727C218.525 93.8127 217.867 93.9356 218.455 93.163C219.043 92.3904 220.668 92.6011 220.668 92.6011C220.668 92.6011 204.346 107.281 202.239 117.764Z" fill="black"/>
|
||||||
|
<path d="M221.976 105.077C220.44 105.745 219.017 104.867 219.017 104.867C216.524 106.763 214.785 104.357 214.785 104.357C211.423 104.858 210.536 103.585 210.536 103.585C210.536 103.585 209.535 105.025 209.254 104.867C209.254 104.867 208.288 106.93 207.762 106.851C207.762 106.851 207.621 107.799 207.033 107.887C206.445 107.975 207.805 103.488 209.755 103.234C211.704 102.979 221.976 105.086 221.976 105.086V105.077Z" fill="black"/>
|
||||||
|
<path d="M221.976 105.077C221.976 105.077 222.942 106.14 224.47 105.165C224.47 105.165 225.128 105.771 226.348 105.174C226.348 105.174 227.068 106.43 229.184 105.069C229.184 105.069 229.685 105.841 231.09 104.928C231.09 104.928 231.959 105.446 233.276 105.174C234.593 104.902 234.101 104.349 235.172 104.621C236.243 104.893 236.621 104.401 236.928 104.059C236.928 104.059 238.043 104.586 239.343 103.479C239.343 103.479 240.238 103.822 242.065 103.067C243.891 102.312 243.303 103.33 244.576 103.515C245.849 103.699 246.455 102.988 246.455 102.988L241.573 100.529L221.976 105.095V105.077Z" fill="black"/>
|
||||||
|
<path d="M263.268 106.579C263.268 106.579 265.577 107.65 265.402 109.669C265.226 111.689 265.129 111.592 265.568 112.119C266.007 112.646 266.604 112.663 265.911 114.481C265.911 114.481 267.412 115.587 266.982 116.939C266.552 118.291 266.587 118.572 266.587 118.572C266.587 118.572 267.386 119.029 267.201 120.978L267.017 122.927C267.017 122.927 268.246 123.612 267.597 125.245C266.947 126.878 267.201 126.764 267.201 126.764C267.201 126.764 268.106 127.089 267.597 128.634L267.087 130.188C267.087 130.188 268.194 131.733 266.859 132.172C265.525 132.611 264.085 123.524 264.085 123.524L263.259 106.579H263.268Z" fill="black"/>
|
||||||
|
<path d="M246.463 102.97C246.463 102.97 247.429 104.033 248.588 103.716C248.588 103.716 248.842 104.981 250.115 104.559C250.115 104.559 250.194 105.42 250.87 105.077C250.87 105.077 251.055 105.815 251.792 106.149C252.53 106.482 251.713 106.561 252.916 107.466C254.119 108.37 254.259 108.352 254.259 108.352C254.259 108.352 254.119 109.318 255.102 109.45C255.102 109.45 254.716 110.231 255.726 110.345C255.726 110.345 255.954 111.917 257.131 112.663C257.131 112.663 257.034 113.532 257.455 113.813C257.877 114.094 257.49 114.156 257.912 114.849C258.333 115.543 258.535 115.517 258.535 115.517C258.535 115.517 258.026 116.474 258.825 117.764C259.624 119.055 259.835 118.871 259.835 118.871C259.835 118.871 259.255 120.284 259.835 121.303C260.414 122.321 260.836 122.33 260.836 122.33C260.836 122.33 260.186 123.805 260.836 124.165C261.485 124.525 261.222 125.183 261.002 125.359C260.783 125.535 261.002 126.035 261.345 126.421C261.687 126.808 261.099 127.317 261.345 128.283C261.591 129.249 261.591 130.39 261.591 130.39L263.891 119.784L258.527 109.213L250.993 102.566L246.568 101.662L246.437 102.97H246.463Z" fill="black"/>
|
||||||
|
<path d="M230.106 172.99L234.382 189.786L265.534 184.913L257.078 151.479L230.106 172.99Z" fill="#6B3D1F"/>
|
||||||
|
<path d="M219.079 193.026C219.079 193.026 244.804 165.097 274.208 183.834C304.253 202.974 301.725 210.393 278.133 210.051C268.466 209.91 244.11 221.456 231.459 219.682C213.249 217.136 214.812 199.813 219.07 193.026H219.079Z" fill="#6B3D1F"/>
|
||||||
|
<path d="M295.236 201.2C295.236 201.2 309.108 228.33 297.975 272.906L274.146 270.483C274.146 270.483 274.954 213.65 281.012 205.318C287.071 196.986 295.236 201.2 295.236 201.2Z" fill="#6B3D1F"/>
|
||||||
|
<path d="M225.225 187.653C225.225 187.653 197.542 204.844 189.025 239.604C180.509 274.364 186.365 279.798 186.365 279.798L213.355 274.961L225.234 210.05V187.653H225.225Z" fill="#6B3D1F"/>
|
||||||
|
<path d="M301.795 250.386C301.795 250.386 299.345 293.847 287.308 295.357C275.271 296.867 217.077 286.849 217.077 286.849L226.761 268.841L274.235 266.251L301.804 250.386H301.795Z" fill="#6B3D1F"/>
|
||||||
|
<path d="M232.267 272.581C232.267 272.581 211.985 256.338 204.118 268.314C196.251 280.29 201.651 281.879 212.301 285.497C222.951 289.114 232.275 272.581 232.275 272.581H232.267Z" fill="#6B3D1F"/>
|
||||||
|
<path d="M126.266 277.805C126.266 277.805 136.196 234.555 147.531 241.527C158.857 248.498 146.301 287.542 146.301 287.542L126.266 277.805Z" fill="#E0B585"/>
|
||||||
|
<path d="M63.981 256.962L77.4933 283.109C77.4933 283.109 69.9075 304.813 58.5286 294.408C47.1498 284.004 40.0117 272.116 40.0117 272.116L52.4354 253.388L63.981 256.971V256.962Z" fill="#E0B585"/>
|
||||||
|
<path d="M63.9807 181.279C63.9807 181.279 40.2133 191.665 32.7591 221.886C25.305 252.107 40.3801 279.14 42.9878 279.509C45.5954 279.878 48.0099 255.812 71.1714 256.181C94.333 256.549 120.102 226.188 120.48 217.233C120.857 208.277 95.4392 182.657 63.9894 181.27L63.9807 181.279Z" fill="#0DA57A"/>
|
||||||
|
<path d="M102.121 246.847C102.121 246.847 109.119 233.423 112.236 232.413C115.352 231.403 110.567 243.23 110.567 243.23L102.121 246.847Z" fill="#E0B585"/>
|
||||||
|
<path d="M108.575 152.726C108.575 152.726 118.276 148.802 114.685 161.629C111.094 174.457 104.843 168.012 104.843 168.012C104.843 168.012 104.229 162.305 104.755 160.242C105.221 158.424 108.566 152.726 108.566 152.726H108.575Z" fill="#E0B585"/>
|
||||||
|
<path d="M53.2256 160.277C53.2256 160.277 60.0388 172.797 62.4445 174.448C64.8502 176.098 63.981 174.931 63.981 174.931H65.7897L60.9168 166.59L53.2344 160.277H53.2256Z" fill="#CF8B17"/>
|
||||||
|
<path d="M61.8652 188.285C61.8652 188.285 68.4941 204.8 88.6441 208.137C98.7498 209.814 88.6441 192.93 88.6441 192.93L61.8652 188.294V188.285Z" fill="#E0B585"/>
|
||||||
|
<path d="M92.4107 185.036C92.4107 185.036 89.8206 187.468 88.6353 192.921C88.0558 195.616 84.5965 197.381 81.866 197.759C78.0028 198.285 72.7436 198.479 69.2492 196.45C63.1559 192.921 61.8564 188.285 61.8564 188.285C62.392 182.912 67.502 174.316 67.502 174.316L92.4107 185.028V185.036Z" fill="#E0B585"/>
|
||||||
|
<path d="M112.613 164.43L113.052 165.685C113.122 165.896 113.298 166.045 113.509 166.107L114.799 166.458L113.737 167.266C113.561 167.398 113.465 167.608 113.473 167.828L113.535 169.162L112.437 168.398C112.262 168.276 112.025 168.249 111.823 168.319L110.576 168.794L110.962 167.512C111.024 167.301 110.98 167.073 110.848 166.906L110.014 165.87L111.349 165.844C111.568 165.844 111.77 165.729 111.893 165.545L112.622 164.43H112.613Z" fill="#0DA57A"/>
|
||||||
|
<path d="M57.1943 183.497C55.8002 184.366 55.0857 185.999 55.5112 187.586C56.6501 191.833 59.4744 200.261 65.0432 205.88C70.996 211.877 79.9252 214.897 84.9473 217.25L91.8659 207.873C91.8659 207.873 79.1701 198.558 75.4211 195.011C71.672 191.464 64.5 179 64.5 179C64.5 179 62.3076 180.309 57.1943 183.497Z" fill="#1E2128"/>
|
||||||
|
<path d="M68.6342 179.242C70.9082 181.472 72.4535 182.403 73.3402 183.158C76.141 185.546 84.2625 188.347 92.1469 188.294C103.148 188.215 111.48 173.904 111.682 166.757C111.744 164.544 112.288 161.972 112.622 160.584C114.149 156.23 115.01 151.55 115.01 146.835C115.01 127.063 100.374 111.03 82.3221 111.03C64.2705 111.03 54.8936 127.063 54.8936 146.835C54.8936 159.944 60.5566 171.305 68.6342 179.242Z" fill="#E0B585"/>
|
||||||
|
<path d="M63.0676 149.636C63.0676 149.636 64.0509 157.626 63.9807 161.621C63.9807 161.621 62.2159 155.194 60.9165 153.789L61.3906 150.022L63.0676 149.636Z" fill="#CF8B17"/>
|
||||||
|
<path d="M84.1648 160.201C84.2084 158.951 83.4149 157.909 82.3924 157.873C81.3698 157.837 80.5055 158.822 80.4619 160.072C80.4182 161.322 81.2117 162.365 82.2343 162.401C83.2568 162.436 84.1211 161.452 84.1648 160.201Z" fill="#3373CC"/>
|
||||||
|
<path d="M105.725 160.952C105.769 159.702 104.975 158.659 103.953 158.624C102.93 158.588 102.066 159.572 102.022 160.823C101.979 162.073 102.772 163.115 103.795 163.151C104.817 163.187 105.682 162.202 105.725 160.952Z" fill="#3373CC"/>
|
||||||
|
<path d="M95.72 159.338C95.72 159.338 94.9474 161.585 95.8517 163.21C96.756 164.834 105.422 167.398 95.0439 170.848" stroke="#BF8C5C" stroke-width="0.87" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M85.6672 152.068C85.8603 152.252 85.7989 152.621 85.5794 152.612C83.9814 152.533 79.6968 152.507 77.0277 154.201C75.0961 155.422 81.1806 147.801 85.6672 152.068Z" fill="#CF8B17"/>
|
||||||
|
<path d="M101.155 152.498C100.962 152.683 101.024 153.051 101.243 153.042C102.841 152.963 107.126 152.937 109.795 154.632C111.726 155.852 105.642 148.231 101.155 152.498Z" fill="#CF8B17"/>
|
||||||
|
<path d="M93.8678 176.072C92.4191 176.064 89.0827 174.158 87.116 176.16C86.2731 177.021 89.6007 179.558 93.183 179.646C96.7652 179.734 100.584 177.345 99.7416 176.116C98.5299 174.351 95.5974 176.09 93.8766 176.072H93.8678Z" fill="white"/>
|
||||||
|
<path d="M87.1072 176.16C86.2643 177.02 89.5919 179.558 93.1742 179.646C96.7564 179.733 100.576 177.345 99.7328 176.116C99.6362 175.984 99.5221 175.835 99.3904 175.739C99.3026 175.677 99.048 175.949 98.9075 176.046C97.8012 176.775 95.3165 178.135 93.2444 178.118C91.1723 178.1 89.3812 176.494 88.1696 176.055C88.0291 176.002 87.6867 175.703 87.5813 175.774C87.4145 175.879 87.2916 175.984 87.1248 176.16H87.1072Z" fill="#482D18"/>
|
||||||
|
<path d="M88.4243 129.731C88.4243 129.731 68.5553 147.107 63.2083 150.803C57.8613 154.5 71.6195 132.515 71.6195 132.515L81.734 128.213L88.4243 129.731Z" fill="#CF8B17"/>
|
||||||
|
<path d="M78.1169 111.32C78.1169 111.32 66.1937 112.417 58.8186 118.186C51.4346 123.954 50.2318 121.312 49.9947 122.76C49.7576 124.209 56.369 124.323 56.369 124.323C56.369 124.323 50.7147 131.777 49.3977 142.006C48.0719 152.226 50.1176 155.632 50.1176 155.632L51.979 152.919C51.979 152.919 50.3547 156.835 51.1976 160.909C52.0404 164.983 59.3366 151.383 59.3366 151.383L78.1169 111.329V111.32Z" fill="#CF8B17"/>
|
||||||
|
<path d="M59.3365 151.374C59.3365 151.374 49.6346 147.45 53.2256 160.277C56.8166 173.105 63.068 166.66 63.068 166.66C63.068 166.66 63.6825 160.953 63.1558 158.89C62.6904 157.072 59.3453 151.374 59.3453 151.374H59.3365Z" fill="#E0B585"/>
|
||||||
|
<path d="M58.2742 164.878L59.038 165.975C59.1609 166.151 59.3716 166.265 59.5824 166.265H60.9169L60.1092 167.319C59.9775 167.494 59.9423 167.722 60.0038 167.924L60.4165 169.189L59.1609 168.75C58.9502 168.679 58.7219 168.715 58.5463 168.837L57.4664 169.628L57.4927 168.293C57.4927 168.074 57.3962 167.872 57.2206 167.74L56.1406 166.959L57.4225 166.572C57.6332 166.511 57.8 166.344 57.8615 166.142L58.2742 164.869V164.878Z" fill="#0DA57A"/>
|
||||||
|
<path d="M58.09 128.52C58.09 128.52 54.183 138.292 54.8941 150.804C54.8941 150.804 58.1076 149.091 60.9172 153.78C60.9172 153.78 73.332 130.1 90.532 129.459C90.532 129.459 88.5389 114.955 78.8722 111.241C78.8722 111.241 71.7955 111.636 66.0886 116.816C60.3816 121.997 58.09 128.52 58.09 128.52Z" fill="#CF8B17"/>
|
||||||
|
<path d="M90.5233 129.459C90.5233 129.459 112.851 129.521 114.975 145.404C114.975 145.404 115.002 123.331 95.6683 114.156C95.6683 114.156 89.8296 110.24 79.7151 111.153L78.1084 111.32L90.5145 129.459H90.5233Z" fill="#CF8B17"/>
|
||||||
|
<path d="M90.5229 129.459C90.5229 129.459 110.787 132.603 114.466 153.341C114.466 153.341 115.212 148.055 114.975 145.404C114.738 142.752 111.902 131.848 106.494 131.075C101.085 130.302 90.5229 128.757 90.5229 128.757V129.468V129.459Z" fill="#CF8B17"/>
|
||||||
|
<path d="M88.8725 129.161C88.8725 129.161 84.0347 137.721 81.0671 141.734C78.0995 145.746 74.6577 148.872 75.1933 147.09C75.7289 145.307 75.2635 141.049 75.2635 141.049C75.2635 141.049 74.4734 145 71.6023 148.723C68.7313 152.445 63.674 155.624 63.674 155.624L61.9619 145.755L88.8637 129.152L88.8725 129.161Z" fill="#CF8B17"/>
|
||||||
|
<path d="M82.3145 111.039C82.3145 111.039 96.0024 108.502 108.356 118.932L104.905 119.204C104.905 119.204 114.001 125.825 115.476 137.44C116.951 149.065 114.976 145.413 114.976 145.413L82.3145 111.039Z" fill="#CF8B17"/>
|
||||||
|
<path d="M85.4397 108.993C85.4397 108.993 79.3816 112.382 74.4033 113.032" stroke="#CF8B17" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M90.2244 188.285L88.6353 192.921C88.6353 192.921 91.7697 205.099 91.8575 207.864C91.8575 207.864 97.4415 205.933 100.093 207.074C102.156 207.97 104.053 210.024 105.027 210.042C108.785 210.103 90.2244 188.285 90.2244 188.285Z" fill="#1E2128"/>
|
||||||
|
<path d="M100.102 270.193C111.252 257.84 114.773 248.015 103.21 252.625C100.954 253.52 102.121 249.824 100.409 251.597C97.2572 254.855 92.4897 254.846 80.2153 265.171C68.5643 274.97 58.5376 294.417 58.5376 294.417C58.5376 294.417 65.5089 300.976 73.3845 298.105C81.2601 295.234 91.7785 279.43 100.111 270.202L100.102 270.193Z" fill="#E0B585"/>
|
||||||
|
<path d="M164.221 249.718L115.247 251.352C113.201 251.422 111.489 249.815 111.419 247.769L107.257 210.946C107.187 208.9 108.794 207.188 110.839 207.118L165.187 205.309C167.233 205.239 168.945 206.846 169.015 208.892L167.804 245.89C167.874 247.936 166.267 249.648 164.221 249.718Z" fill="#575E75"/>
|
||||||
|
<path opacity="0.2" d="M139.699 233.713C142.899 233.713 145.494 232.018 145.494 229.929C145.494 227.839 142.899 226.144 139.699 226.144C136.499 226.144 133.904 227.839 133.904 229.929C133.904 232.018 136.499 233.713 139.699 233.713Z" fill="black"/>
|
||||||
|
<path d="M103.605 245.346C106.503 242.879 114.062 242.326 118.856 244.064C125.652 246.522 128.531 255.873 115.967 260.579C113.052 261.668 106.327 262.871 104.106 263.74C98.2845 266.04 100.172 258.015 99.4434 255.004C98.4689 250.991 101.674 246.988 103.605 245.337V245.346Z" fill="#E0B585"/>
|
||||||
|
<path d="M80.154 166.792C80.3043 166.792 80.4262 166.67 80.4262 166.519C80.4262 166.369 80.3043 166.247 80.154 166.247C80.0037 166.247 79.8818 166.369 79.8818 166.519C79.8818 166.67 80.0037 166.792 80.154 166.792Z" fill="#BF8C5C"/>
|
||||||
|
<path d="M85.3777 164.202C85.4989 164.202 85.5972 164.103 85.5972 163.982C85.5972 163.861 85.4989 163.763 85.3777 163.763C85.2565 163.763 85.1582 163.861 85.1582 163.982C85.1582 164.103 85.2565 164.202 85.3777 164.202Z" fill="#BF8C5C"/>
|
||||||
|
<path d="M85.5799 166.792C85.6914 166.792 85.7818 166.701 85.7818 166.59C85.7818 166.478 85.6914 166.388 85.5799 166.388C85.4683 166.388 85.3779 166.478 85.3779 166.59C85.3779 166.701 85.4683 166.792 85.5799 166.792Z" fill="#BF8C5C"/>
|
||||||
|
<path d="M85.1583 180.322C85.3813 180.322 85.5622 180.141 85.5622 179.918C85.5622 179.695 85.3813 179.514 85.1583 179.514C84.9352 179.514 84.7544 179.695 84.7544 179.918C84.7544 180.141 84.9352 180.322 85.1583 180.322Z" fill="#BF8C5C"/>
|
||||||
|
<path d="M88.9074 164.746C89.0578 164.746 89.1796 164.624 89.1796 164.474C89.1796 164.323 89.0578 164.202 88.9074 164.202C88.7571 164.202 88.6353 164.323 88.6353 164.474C88.6353 164.624 88.7571 164.746 88.9074 164.746Z" fill="#BF8C5C"/>
|
||||||
|
<path d="M93.7102 149.126C93.8605 149.126 93.9823 149.005 93.9823 148.854C93.9823 148.704 93.8605 148.582 93.7102 148.582C93.5599 148.582 93.438 148.704 93.438 148.854C93.438 149.005 93.5599 149.126 93.7102 149.126Z" fill="#BF8C5C"/>
|
||||||
|
<path d="M96.8181 150.759C96.9684 150.759 97.0903 150.638 97.0903 150.487C97.0903 150.337 96.9684 150.215 96.8181 150.215C96.6678 150.215 96.5459 150.337 96.5459 150.487C96.5459 150.638 96.6678 150.759 96.8181 150.759Z" fill="#BF8C5C"/>
|
||||||
|
<path d="M104.764 164.886C104.89 164.886 104.992 164.784 104.992 164.658C104.992 164.532 104.89 164.43 104.764 164.43C104.638 164.43 104.536 164.532 104.536 164.658C104.536 164.784 104.638 164.886 104.764 164.886Z" fill="#BF8C5C"/>
|
||||||
|
<path d="M104.325 167.696C104.446 167.696 104.544 167.598 104.544 167.477C104.544 167.355 104.446 167.257 104.325 167.257C104.204 167.257 104.105 167.355 104.105 167.477C104.105 167.598 104.204 167.696 104.325 167.696Z" fill="#BF8C5C"/>
|
||||||
|
<path d="M101.674 168.864C101.834 168.864 101.963 168.734 101.963 168.574C101.963 168.414 101.834 168.284 101.674 168.284C101.514 168.284 101.384 168.414 101.384 168.574C101.384 168.734 101.514 168.864 101.674 168.864Z" fill="#BF8C5C"/>
|
||||||
|
<path d="M93.4118 161.243C93.6009 161.243 93.7542 161.09 93.7542 160.9C93.7542 160.711 93.6009 160.558 93.4118 160.558C93.2226 160.558 93.0693 160.711 93.0693 160.9C93.0693 161.09 93.2226 161.243 93.4118 161.243Z" fill="#BF8C5C"/>
|
||||||
|
<path d="M94.2458 152.164C94.3913 152.164 94.5092 152.046 94.5092 151.901C94.5092 151.755 94.3913 151.638 94.2458 151.638C94.1004 151.638 93.9824 151.755 93.9824 151.901C93.9824 152.046 94.1004 152.164 94.2458 152.164Z" fill="#BF8C5C"/>
|
||||||
|
<path d="M104.878 170.628C105.062 170.628 105.212 170.479 105.212 170.295C105.212 170.111 105.062 169.961 104.878 169.961C104.694 169.961 104.544 170.111 104.544 170.295C104.544 170.479 104.694 170.628 104.878 170.628Z" fill="#BF8C5C"/>
|
||||||
|
<path d="M107.776 167.591C107.96 167.591 108.109 167.441 108.109 167.257C108.109 167.073 107.96 166.923 107.776 166.923C107.591 166.923 107.442 167.073 107.442 167.257C107.442 167.441 107.591 167.591 107.776 167.591Z" fill="#BF8C5C"/>
|
||||||
|
<path d="M77.2125 164.649C77.3968 164.649 77.5462 164.5 77.5462 164.316C77.5462 164.131 77.3968 163.982 77.2125 163.982C77.0283 163.982 76.8789 164.131 76.8789 164.316C76.8789 164.5 77.0283 164.649 77.2125 164.649Z" fill="#BF8C5C"/>
|
||||||
|
<path d="M113.685 243.089L122.974 240.482C122.974 240.482 130.156 233.124 131.385 233.739C133.343 234.722 128.953 240.455 127.311 242.326C125.432 244.459 120.489 247.146 120.489 247.146L113.693 243.089H113.685Z" fill="#E0B585"/>
|
||||||
|
<path d="M122.28 250.386C122.28 250.386 131.244 248.489 133.501 242.484C135.757 236.478 137.25 233.607 135.889 233.212C134.089 232.694 128.347 242.44 128.347 242.44L119.795 246.206L122.28 250.377V250.386Z" fill="#E0B585"/>
|
||||||
|
<path d="M122.815 253.564C122.815 253.564 131.859 250.851 135.292 245.443C138.435 240.482 139.506 236.461 137.768 237.163C136.029 237.865 130.682 244.837 130.682 244.837L120.331 249.402L122.815 253.573V253.564Z" fill="#E0B585"/>
|
||||||
|
<path d="M117.231 260.061C117.231 260.061 130.665 254.556 132.245 251.729C133.826 248.902 135.283 245.434 135.283 245.434L124.194 251.975L117.223 260.061H117.231Z" fill="#E0B585"/>
|
||||||
|
<path d="M42.9878 279.518C42.9878 279.518 33.0138 273.293 28.3955 255.794C28.3955 255.794 24.4533 282.845 42.9878 279.518Z" fill="#0B8E69"/>
|
||||||
|
<path d="M228.263 185.511C228.263 185.511 225.541 192.824 228.263 200.138C230.984 207.452 250.748 182.929 269.897 181.41C269.897 181.41 293.357 190.032 298.458 204.063C298.458 204.063 323.876 264.223 293.717 289.588C293.717 289.588 295.71 274.013 274.226 266.26L245.12 267.849L187.682 245.337C187.682 245.337 190.403 204.572 228.254 185.519L228.263 185.511Z" fill="#3373CC"/>
|
||||||
|
<path d="M200.377 243.054C200.377 243.054 201.87 237.356 202.581 235.486C203.082 234.187 204.811 230.394 204.811 230.394C204.811 230.394 263.453 230.323 272.531 232.352C278.668 233.721 275.894 234.915 275.025 245.399C274.63 250.166 274.068 259.201 274.234 266.251L200.377 247.146V243.054Z" fill="#E64D00"/>
|
||||||
|
<path d="M228.263 185.511C228.263 185.511 228.263 200.138 229.299 201.332C230.905 203.193 249.484 183.676 269.906 181.402L276.456 184.299C276.456 184.299 236.358 206.293 228.263 213.018C220.168 219.744 215.514 196.099 218.473 191.42C218.473 191.42 222.477 188.197 228.263 185.511Z" fill="#FFAB1A"/>
|
||||||
|
<path d="M269.906 265.136C269.906 265.136 274.507 256.786 274.63 255.601C274.753 254.416 308.801 258.657 302.77 278.271C302.77 278.271 296.492 293.32 290.952 293.443C290.952 293.443 288.16 276.287 269.897 265.145L269.906 265.136Z" fill="#FFAB1A"/>
|
||||||
|
<path d="M241.125 300.01L176.68 297.596L190.948 289.272C191.123 289.176 191.325 289.132 191.536 289.132L251.099 291.213C252.267 291.256 252.627 292.811 251.6 293.364L241.125 300.01Z" fill="#4D5466"/>
|
||||||
|
<path d="M238.667 300.756L177.69 297.701C175.267 297.701 173.3 295.734 173.3 293.311L171.482 243.994C171.482 241.571 173.449 239.604 175.872 239.604L240.721 242.659C243.144 242.659 245.111 244.626 245.111 247.049L243.057 296.366C243.057 298.79 241.09 300.756 238.667 300.756Z" fill="#4E5466"/>
|
||||||
|
<path opacity="0.2" d="M204.873 277.112C208.466 277.112 211.379 274.69 211.379 271.703C211.379 268.716 208.466 266.295 204.873 266.295C201.28 266.295 198.367 268.716 198.367 271.703C198.367 274.69 201.28 277.112 204.873 277.112Z" fill="black"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M125.396 150.375C125.469 149.682 126.091 149.179 126.785 149.252L130.033 149.596C130.366 149.631 130.672 149.797 130.882 150.057L132.471 152.022C132.681 152.282 132.987 152.448 133.32 152.484L137.304 152.905C137.637 152.94 137.971 152.842 138.231 152.631L140.195 151.043C140.456 150.832 140.789 150.733 141.122 150.769L141.23 150.78L167.284 153.536C167.978 153.609 168.481 154.231 168.407 154.925L168.275 156.181L167.306 165.34L139.996 162.452L139.996 162.452L167.306 165.34C167.232 166.034 166.61 166.537 165.917 166.464L139.863 163.708L139.863 163.708L139.755 163.696C139.422 163.661 139.088 163.76 138.828 163.97L136.864 165.559C136.603 165.769 136.27 165.868 135.936 165.833L131.953 165.411C131.619 165.376 131.314 165.21 131.103 164.95L129.515 162.985C129.304 162.725 128.999 162.559 128.666 162.523L125.417 162.18C124.724 162.106 124.221 161.485 124.294 160.791L125.263 151.631L125.396 150.375Z" fill="#9966FF"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M146.563 111.415C146.563 111.415 152.019 107.02 163.652 109.504C175.285 111.989 178.471 118.229 178.471 118.229L189.882 120.666C190.616 120.823 191.084 121.545 190.928 122.28L190.644 123.609L188.089 135.575L188.089 135.575C187.932 136.309 187.209 136.777 186.475 136.62L159.774 130.918L160.058 129.589L160.058 129.589L159.774 130.918L159.66 130.894C159.308 130.819 158.94 130.887 158.637 131.083L156.355 132.561C156.053 132.757 155.685 132.825 155.332 132.75L151.115 131.849C150.763 131.774 150.455 131.562 150.258 131.259L148.78 128.978C148.584 128.675 148.275 128.463 147.923 128.387L144.485 127.653C143.751 127.496 143.283 126.774 143.439 126.04L145.995 114.074L146.563 111.415Z" fill="#FFBF00"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M180.288 33.5676L144.644 46.3365L144.508 46.3851C144.088 46.5357 143.744 46.847 143.554 47.2505L142.116 50.2938C141.925 50.6973 141.582 51.0086 141.162 51.1591L136.137 52.9592C135.717 53.1097 135.254 53.0872 134.85 52.8965L131.807 51.4585C131.404 51.2679 130.941 51.2453 130.521 51.3958L126.424 52.8634C125.549 53.1769 125.094 54.1403 125.407 55.0153L125.975 56.5996L131.083 70.8587L132.785 75.6117L139.123 73.3414L138.555 71.7571C138.242 70.8821 138.697 69.9186 139.572 69.6052L143.669 68.1376C144.089 67.9871 144.552 68.0096 144.955 68.2003L147.998 69.6382C148.402 69.8289 148.865 69.8515 149.285 69.701L154.31 67.9009C154.73 67.7504 155.073 67.4391 155.264 67.0355L156.702 63.9923C156.892 63.5887 157.236 63.2774 157.656 63.1269L157.792 63.0782L157.224 61.4939L157.224 61.4939L157.792 63.0782L187.098 52.5796C187.973 52.2661 188.429 51.3027 188.115 50.4277L183.007 36.1687L141.162 51.1591L145.779 49.5051L183.007 36.1687L182.44 34.5843C182.126 33.7093 181.163 33.2541 180.288 33.5676ZM139.46 74.2828L139.123 73.3414L132.785 75.6117L133.123 76.5531L133.69 78.1374L134.258 79.7217L134.258 79.7218L137.663 89.2278L194.696 68.7968L191.29 59.2908L190.723 57.7065C190.409 56.8315 189.446 56.3762 188.571 56.6897L159.264 67.1883L159.128 67.237C158.708 67.3875 158.365 67.6988 158.174 68.1024L156.736 71.1456C156.546 71.5475 156.205 71.8578 155.787 72.0091L150.752 73.8129C150.333 73.9614 149.873 73.9382 149.471 73.7483L146.428 72.3104C146.024 72.1197 145.561 72.0972 145.141 72.2477L139.46 74.2828ZM193.679 70.9487C194.554 70.6353 195.009 69.6718 194.696 68.7968L157.467 82.1333L137.663 89.2278C137.976 90.1028 138.94 90.558 139.815 90.2446L143.912 88.777C144.332 88.6264 144.795 88.649 145.198 88.8397L148.241 90.2776C148.645 90.4683 149.108 90.4909 149.528 90.3403L154.553 88.5403C154.973 88.3897 155.316 88.0785 155.507 87.6749L156.945 84.6317C157.135 84.2281 157.479 83.9168 157.899 83.7663L158.035 83.7176L193.679 70.9487Z" fill="#FFAB19"/>
|
||||||
|
<path d="M132.37 191.08C131.613 187.888 133.587 184.687 136.779 183.931L151.805 180.37C154.997 179.613 158.198 181.587 158.954 184.779C159.71 187.971 157.736 191.172 154.544 191.928L139.519 195.489C136.327 196.246 133.126 194.271 132.37 191.08Z" fill="#5CB1D6"/>
|
||||||
|
<rect x="141.874" y="50.3332" width="43.3422" height="3" rx="1" transform="rotate(-20.718 141.874 50.3332)" fill="#FFAB19"/>
|
||||||
|
<rect x="155" y="60.5649" width="4.42352" height="3" rx="1" transform="rotate(-20.718 155 60.5649)" fill="#FFAB19"/>
|
||||||
|
<rect x="132.447" y="74.1522" width="6.31243" height="3" rx="1" transform="rotate(-20.718 132.447 74.1522)" fill="#FFAB19"/>
|
||||||
|
<rect x="137.118" y="86.9597" width="60.1467" height="3.39425" rx="1" transform="rotate(-19.631 137.118 86.9597)" fill="#FFAB19"/>
|
||||||
|
<rect x="159.359" y="129" width="3" height="1.69146" transform="rotate(10.3535 159.359 129)" fill="#FFBF00"/>
|
||||||
|
<rect x="139.142" y="160.957" width="28.3299" height="1.89831" rx="0.949155" transform="rotate(6.37279 139.142 160.957)" fill="#9966FF"/>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<clipPath id="clip0_236_7029">
|
||||||
|
<rect width="337" height="333" fill="white"/>
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 31 KiB |
|
@ -0,0 +1,26 @@
|
||||||
|
<svg width="1188" height="271" viewBox="0 0 1188 271" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M55.0632 150.727C56.1849 150.412 57.3756 150.444 58.4792 150.817C59.5827 151.191 60.5477 151.889 61.2475 152.821L120.891 232.134C121.456 232.885 121.829 233.763 121.977 234.69C122.126 235.618 122.047 236.568 121.746 237.458C121.445 238.349 120.931 239.152 120.249 239.799C119.568 240.446 118.739 240.917 117.834 241.171L107.517 244.07C106.395 244.385 105.204 244.353 104.101 243.98C102.997 243.606 102.032 242.908 101.332 241.977L92.5248 230.269L49.8624 242.255L48.4413 256.837C48.3291 257.997 47.869 259.095 47.1215 259.989C46.3739 260.883 45.3738 261.53 44.2522 261.845L33.9344 264.744C33.0298 264.998 32.0768 265.028 31.1581 264.83C30.2394 264.633 29.3827 264.215 28.6621 263.612C27.9414 263.009 27.3787 262.239 27.0225 261.369C26.6664 260.5 26.5276 259.557 26.6181 258.621L36.2266 159.85C36.3389 158.691 36.799 157.592 37.5465 156.699C38.294 155.805 39.2942 155.158 40.4158 154.843L55.0632 150.727ZM55.7811 181.406L52.2618 217.563L77.6166 210.44L55.7811 181.406Z" fill="#9966FF"/>
|
||||||
|
<path d="M54.2819 147.945L54.2814 147.945L39.634 152.06L39.6335 152.06C37.9511 152.533 36.4509 153.504 35.3296 154.844C34.2086 156.184 33.5185 157.832 33.3499 159.571C33.3499 159.571 33.3498 159.572 33.3498 159.572L23.7414 258.342L23.7412 258.343C23.6054 259.746 23.8136 261.161 24.3479 262.465C24.8821 263.769 25.7263 264.924 26.8072 265.828L28.6621 263.612L26.8072 265.828C27.8881 266.733 29.1732 267.36 30.5513 267.656L31.1568 264.837L30.5513 267.656C31.9293 267.952 33.3588 267.908 34.7158 267.527L34.7163 267.526L45.034 264.628L45.0345 264.627C46.7169 264.154 48.2171 263.184 49.3384 261.844L47.1215 259.989L49.3384 261.844C50.4593 260.504 51.1493 258.856 51.318 257.117C51.318 257.117 51.3181 257.117 51.3181 257.116C51.3181 257.116 51.3182 257.116 51.3182 257.116L52.5474 244.503L91.4035 233.586L99.0215 243.713C100.071 245.11 101.519 246.157 103.174 246.718C104.829 247.278 106.615 247.325 108.298 246.853L108.298 246.852L118.616 243.953L118.617 243.953C119.974 243.572 121.217 242.865 122.239 241.895L120.249 239.799L122.239 241.895C123.262 240.925 124.032 239.72 124.484 238.385C124.935 237.049 125.055 235.624 124.831 234.233C124.608 232.841 124.049 231.525 123.202 230.398L123.202 230.397L63.5583 151.084C63.5581 151.084 63.5578 151.084 63.5575 151.083C62.5079 149.687 61.0608 148.64 59.4058 148.079C57.7505 147.519 55.9644 147.472 54.2819 147.945ZM72.7669 208.8L55.5479 213.638L57.9379 189.083L72.7669 208.8Z" stroke="black" stroke-opacity="0.3" stroke-width="5.78062"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M119.518 128.052C120.772 127.728 122.094 127.791 123.312 128.231C124.529 128.672 125.586 129.47 126.342 130.522L190.78 220.036C191.39 220.884 191.784 221.868 191.928 222.902C192.072 223.937 191.961 224.991 191.606 225.973C191.251 226.955 190.661 227.836 189.889 228.539C189.117 229.242 188.185 229.746 187.174 230.007L175.641 232.99C174.388 233.314 173.065 233.251 171.848 232.811C170.63 232.37 169.574 231.572 168.818 230.52L159.302 217.307L111.618 229.637L109.701 245.808C109.55 247.094 109.013 248.304 108.162 249.28C107.31 250.255 106.184 250.951 104.93 251.275L93.398 254.258C92.3868 254.519 91.3272 254.53 90.3109 254.289C89.2947 254.049 88.3523 253.564 87.5655 252.877C86.7788 252.191 86.1713 251.322 85.7957 250.348C85.42 249.373 85.2877 248.322 85.4099 247.285L98.3755 137.753C98.5272 136.467 99.0638 135.257 99.9152 134.282C100.767 133.306 101.893 132.61 103.147 132.286L119.518 128.052ZM119.605 162.159L114.857 202.255L143.196 194.927L119.605 162.159Z" fill="#CF63CF"/>
|
||||||
|
<path d="M118.714 124.942L118.714 124.942L102.342 129.176L102.342 129.176C100.461 129.663 98.7718 130.706 97.4947 132.17C96.2177 133.633 95.4127 135.448 95.1852 137.377L82.2198 246.907L82.2196 246.909C82.0362 248.465 82.2348 250.042 82.7982 251.503C83.3616 252.965 84.2729 254.267 85.453 255.298C86.6332 256.328 88.0467 257.055 89.5711 257.415C91.0956 257.776 92.685 257.76 94.2017 257.368L94.2022 257.368L105.734 254.386L105.735 254.385C107.615 253.899 109.305 252.855 110.582 251.392C111.859 249.928 112.664 248.113 112.892 246.184L114.55 232.198L157.979 220.967L166.21 232.396C166.21 232.396 166.211 232.397 166.211 232.398C167.345 233.974 168.929 235.171 170.755 235.831C172.581 236.492 174.565 236.586 176.445 236.1L176.446 236.1L187.978 233.118L187.979 233.117C189.495 232.725 190.893 231.969 192.052 230.914C193.21 229.86 194.094 228.539 194.627 227.065C195.16 225.592 195.325 224.011 195.109 222.46C194.894 220.908 194.303 219.433 193.388 218.161L193.387 218.16L128.95 128.646C128.949 128.646 128.949 128.645 128.949 128.645C127.815 127.068 126.231 125.871 124.405 125.211C122.579 124.55 120.595 124.456 118.714 124.942ZM137.845 192.993L118.599 197.97L121.824 170.739L137.845 192.993Z" stroke="black" stroke-opacity="0.3" stroke-width="6.42482"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M197.757 96.4821C199.179 96.2298 200.645 96.4133 201.961 97.0083C203.277 97.6033 204.383 98.5821 205.133 99.8165L269.081 204.923C269.686 205.919 270.039 207.047 270.11 208.21C270.181 209.372 269.967 210.535 269.488 211.597C269.008 212.658 268.277 213.587 267.357 214.302C266.438 215.017 265.358 215.498 264.211 215.702L251.128 218.024C249.706 218.276 248.241 218.093 246.925 217.498C245.608 216.903 244.503 215.924 243.752 214.69L234.309 199.174L180.215 208.777L176.689 226.596C176.41 228.013 175.708 229.312 174.678 230.324C173.647 231.336 172.334 232.012 170.912 232.265L157.829 234.588C156.682 234.791 155.503 234.712 154.394 234.357C153.284 234.002 152.278 233.381 151.462 232.55C150.646 231.718 150.045 230.7 149.712 229.584C149.378 228.468 149.321 227.287 149.547 226.144L173.408 105.449C173.687 104.032 174.388 102.732 175.419 101.72C176.45 100.709 177.763 100.032 179.185 99.7792L197.757 96.4821ZM194.914 134.421L186.177 178.604L218.325 172.897L194.914 134.421Z" fill="#FF6680"/>
|
||||||
|
<path d="M197.131 92.9538L197.131 92.9539L178.559 96.2511L178.558 96.2512C176.425 96.6303 174.456 97.6451 172.909 99.1627C171.363 100.68 170.312 102.629 169.892 104.754C169.892 104.754 169.892 104.755 169.892 104.755L146.031 225.449L146.031 225.451C145.693 227.166 145.778 228.936 146.279 230.611C146.779 232.285 147.68 233.812 148.904 235.059L151.435 232.576L148.904 235.059C150.128 236.307 151.637 237.237 153.301 237.77C154.966 238.302 156.735 238.421 158.455 238.116L158.456 238.116L171.538 235.793L171.539 235.793C173.672 235.414 175.641 234.399 177.187 232.882C178.734 231.364 179.786 229.415 180.205 227.289L183.254 211.877L232.522 203.13L240.69 216.551C240.691 216.551 240.691 216.552 240.691 216.552C240.691 216.552 240.691 216.552 240.692 216.553C241.817 218.403 243.475 219.871 245.448 220.763C247.423 221.656 249.621 221.931 251.754 221.552L251.755 221.552L264.837 219.23L264.838 219.23C266.558 218.924 268.178 218.203 269.557 217.13C270.937 216.057 272.033 214.664 272.753 213.072C273.473 211.48 273.793 209.736 273.687 207.992C273.581 206.247 273.051 204.555 272.143 203.062L272.142 203.061L208.195 97.9554C207.07 96.1039 205.411 94.6356 203.437 93.7431L201.961 97.0083L203.437 93.7431C201.463 92.8506 199.265 92.5754 197.131 92.9538ZM212.541 170.284L190.708 174.16L196.642 144.155L212.541 170.284Z" stroke="black" stroke-opacity="0.3" stroke-width="7.16667"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M278.493 76.3593C279.95 76.0826 281.458 76.2529 282.817 76.8478C284.176 77.4427 285.324 78.4344 286.11 79.693L353.096 186.863C353.729 187.878 354.106 189.032 354.193 190.225C354.281 191.419 354.076 192.616 353.596 193.712C353.116 194.808 352.377 195.771 351.441 196.517C350.506 197.263 349.402 197.77 348.227 197.994L334.818 200.541C333.36 200.818 331.853 200.648 330.493 200.053C329.134 199.458 327.986 198.466 327.2 197.208L317.308 181.387L261.864 191.921L258.463 210.267C258.194 211.726 257.489 213.07 256.443 214.122C255.397 215.174 254.057 215.885 252.599 216.162L239.19 218.71C238.015 218.933 236.802 218.866 235.658 218.515C234.514 218.164 233.473 217.539 232.625 216.695C231.776 215.851 231.147 214.813 230.79 213.671C230.433 212.528 230.361 211.316 230.578 210.14L253.593 85.8709C253.862 84.4118 254.566 83.0682 255.613 82.0163C256.659 80.9644 257.999 80.2532 259.457 79.976L278.493 76.3593ZM276.042 115.364L267.614 160.855L300.565 154.594L276.042 115.364Z" fill="#FFAB19"/>
|
||||||
|
<path d="M277.806 72.743L277.806 72.7431L258.77 76.3597L258.769 76.3599C256.583 76.7757 254.573 77.8425 253.003 79.4204C251.434 80.9983 250.377 83.0137 249.973 85.2023L226.959 209.469L226.958 209.471C226.632 211.236 226.741 213.054 227.276 214.768C227.811 216.481 228.756 218.038 230.028 219.304C231.301 220.571 232.862 221.507 234.578 222.034C236.295 222.56 238.113 222.661 239.877 222.326L239.877 222.326L253.286 219.778L253.287 219.778C255.473 219.362 257.483 218.296 259.053 216.718C260.622 215.14 261.679 213.124 262.083 210.936L265.024 195.068L315.522 185.474L324.078 199.157C324.078 199.158 324.079 199.159 324.079 199.159C325.258 201.046 326.979 202.533 329.017 203.425L330.493 200.053L329.018 203.425C331.056 204.317 333.317 204.573 335.504 204.158L335.505 204.158L348.914 201.61L348.914 201.61C350.678 201.275 352.333 200.514 353.736 199.395C355.14 198.276 356.249 196.832 356.968 195.187C357.688 193.543 357.995 191.747 357.865 189.957C357.734 188.167 357.169 186.436 356.218 184.913L356.217 184.912L289.232 77.7434C288.053 75.8556 286.332 74.368 284.293 73.4757C282.254 72.5833 279.993 72.328 277.806 72.743ZM294.592 151.983L272.214 156.234L277.937 125.34L294.592 151.983Z" stroke="black" stroke-opacity="0.3" stroke-width="7.36182"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M368.438 58.7329C369.933 58.5449 371.451 58.8132 372.791 59.5026C374.132 60.1921 375.232 61.2705 375.949 62.5965L437.065 175.511C437.643 176.58 437.952 177.774 437.964 178.99C437.977 180.205 437.693 181.406 437.137 182.487C436.581 183.568 435.77 184.498 434.774 185.195C433.778 185.892 432.627 186.336 431.421 186.488L417.664 188.22C416.168 188.408 414.651 188.139 413.31 187.45C411.97 186.76 410.869 185.682 410.152 184.356L401.126 167.687L344.242 174.848L339.629 193.234C339.263 194.696 338.464 196.014 337.336 197.014C336.208 198.014 334.804 198.65 333.309 198.839L319.552 200.57C318.345 200.722 317.12 200.577 315.983 200.149C314.845 199.72 313.829 199.021 313.022 198.111C312.216 197.202 311.643 196.109 311.354 194.928C311.065 193.747 311.068 192.514 311.363 191.334L342.587 66.7963C342.953 65.334 343.752 64.0164 344.88 63.0162C346.008 62.016 347.412 61.38 348.907 61.1915L368.438 58.7329ZM363.476 98.1252L352.044 143.714L385.851 139.458L363.476 98.1252Z" fill="#FFBF00"/>
|
||||||
|
<path d="M367.971 55.0226L367.97 55.0227L348.44 57.4813L348.439 57.4814C346.196 57.7642 344.091 58.7182 342.399 60.2185C340.708 61.7183 339.509 63.6941 338.96 65.8869C338.96 65.8874 338.96 65.888 338.96 65.8886L307.736 190.425L307.736 190.427C307.293 192.196 307.288 194.046 307.722 195.817C308.156 197.589 309.015 199.227 310.224 200.592C311.434 201.957 312.958 203.006 314.665 203.648C316.371 204.291 318.209 204.508 320.018 204.281L320.019 204.281L333.776 202.549L333.777 202.549C336.02 202.266 338.125 201.312 339.817 199.812C341.508 198.312 342.707 196.336 343.256 194.144C343.256 194.144 343.256 194.143 343.256 194.143C343.256 194.143 343.256 194.142 343.256 194.141L347.246 178.239L399.056 171.717L406.863 186.134C407.938 188.123 409.589 189.741 411.6 190.775C413.611 191.809 415.887 192.212 418.13 191.93L418.131 191.93L431.888 190.198L431.889 190.198C433.698 189.97 435.425 189.304 436.919 188.258C438.413 187.213 439.629 185.819 440.463 184.197C441.297 182.575 441.723 180.774 441.704 178.951C441.685 177.128 441.222 175.336 440.354 173.732L440.353 173.731L379.239 60.818C378.163 58.829 376.512 57.2114 374.501 56.1772L372.791 59.5026L374.501 56.1772C372.491 55.143 370.215 54.7406 367.971 55.0226ZM379.96 136.431L357.001 139.321L364.765 108.361L379.96 136.431Z" stroke="black" stroke-opacity="0.3" stroke-width="7.47895"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M458.893 48.827C460.481 48.7606 462.053 49.1757 463.401 50.018C464.75 50.8603 465.812 52.0904 466.45 53.5471L520.789 177.598C521.303 178.773 521.523 180.055 521.43 181.334C521.336 182.613 520.933 183.85 520.253 184.938C519.574 186.025 518.64 186.931 517.532 187.577C516.424 188.222 515.175 188.588 513.894 188.642L499.281 189.256C497.692 189.322 496.121 188.907 494.772 188.065C493.424 187.222 492.361 185.992 491.724 184.535L483.698 166.223L423.275 168.761L416.814 187.682C416.301 189.187 415.345 190.502 414.072 191.455C412.799 192.407 411.268 192.953 409.679 193.02L395.066 193.634C393.785 193.687 392.51 193.428 391.352 192.877C390.193 192.327 389.187 191.503 388.419 190.476C387.651 189.449 387.145 188.25 386.944 186.984C386.744 185.717 386.855 184.421 387.269 183.207L431.013 55.0358C431.525 53.5308 432.481 52.2159 433.754 51.2635C435.027 50.311 436.559 49.7656 438.147 49.6986L458.893 48.827ZM450.223 89.7996L434.207 136.718L470.117 135.21L450.223 89.7996Z" fill="white"/>
|
||||||
|
<path d="M458.728 44.886L458.727 44.8861L437.982 45.7576L437.981 45.7576C435.598 45.8581 433.301 46.6764 431.392 48.105C429.482 49.5333 428.049 51.505 427.28 53.7618C427.279 53.7624 427.279 53.7629 427.279 53.7635L383.536 181.933L383.535 181.935C382.915 183.755 382.748 185.7 383.048 187.6C383.349 189.5 384.108 191.298 385.26 192.838C386.412 194.379 387.922 195.615 389.659 196.44C391.397 197.266 393.309 197.655 395.231 197.575L395.232 197.575L409.845 196.961L409.845 196.961C412.228 196.86 414.525 196.042 416.435 194.613C418.345 193.185 419.778 191.212 420.547 188.955L426.136 172.589L481.168 170.277L488.11 186.116C489.066 188.301 490.66 190.147 492.683 191.41C494.706 192.674 497.063 193.296 499.446 193.197L499.447 193.197L514.06 192.583L514.06 192.583C515.982 192.502 517.855 191.953 519.517 190.985C521.18 190.017 522.581 188.658 523.599 187.027C524.618 185.395 525.224 183.54 525.364 181.621C525.504 179.703 525.174 177.779 524.403 176.017L524.402 176.015L470.064 51.9662C469.108 49.7811 467.514 47.9359 465.491 46.6725C463.468 45.4091 461.111 44.7864 458.728 44.886ZM464.19 131.511L439.803 132.535L450.68 100.672L464.19 131.511Z" stroke="black" stroke-opacity="0.3" stroke-width="7.88889"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M713.063 110.727C714.185 110.412 715.376 110.444 716.479 110.817C717.583 111.191 718.548 111.889 719.247 112.821L778.891 192.134C779.456 192.885 779.829 193.763 779.977 194.69C780.126 195.618 780.047 196.568 779.746 197.458C779.445 198.349 778.931 199.152 778.249 199.799C777.568 200.446 776.739 200.917 775.834 201.171L765.517 204.07C764.395 204.385 763.204 204.353 762.101 203.98C760.997 203.606 760.032 202.908 759.332 201.977L750.525 190.269L707.862 202.255L706.441 216.837C706.329 217.997 705.869 219.095 705.121 219.989C704.374 220.883 703.374 221.53 702.252 221.845L691.934 224.744C691.03 224.998 690.077 225.028 689.158 224.83C688.239 224.633 687.383 224.215 686.662 223.612C685.941 223.009 685.379 222.239 685.023 221.369C684.666 220.5 684.528 219.557 684.618 218.621L694.227 119.85C694.339 118.691 694.799 117.592 695.547 116.699C696.294 115.805 697.294 115.158 698.416 114.843L713.063 110.727ZM713.781 141.406L710.262 177.563L735.617 170.44L713.781 141.406Z" fill="#9966FF"/>
|
||||||
|
<path d="M712.282 107.945L712.281 107.945L697.634 112.06L697.633 112.06C695.951 112.533 694.451 113.504 693.33 114.844C692.209 116.184 691.519 117.832 691.35 119.571C691.35 119.571 691.35 119.572 691.35 119.572L681.741 218.342L681.741 218.343C681.605 219.746 681.814 221.161 682.348 222.465C682.882 223.769 683.726 224.924 684.807 225.828L686.662 223.612L684.807 225.828C685.888 226.733 687.173 227.36 688.551 227.656L689.157 224.837L688.551 227.656C689.929 227.952 691.359 227.908 692.716 227.527L692.716 227.526L703.034 224.628L703.035 224.627C704.717 224.154 706.217 223.184 707.338 221.844L705.121 219.989L707.338 221.844C708.459 220.504 709.149 218.856 709.318 217.117C709.318 217.117 709.318 217.117 709.318 217.116C709.318 217.116 709.318 217.116 709.318 217.116L710.547 204.503L749.403 193.586L757.022 203.713C758.071 205.11 759.519 206.157 761.174 206.718C762.829 207.278 764.615 207.325 766.298 206.853L766.298 206.852L776.616 203.953L776.617 203.953C777.974 203.572 779.217 202.865 780.239 201.895L778.249 199.799L780.239 201.895C781.262 200.925 782.032 199.72 782.484 198.385C782.935 197.049 783.055 195.624 782.831 194.233C782.608 192.841 782.049 191.525 781.202 190.398L781.202 190.397L721.558 111.084C721.558 111.084 721.558 111.084 721.558 111.083C720.508 109.687 719.061 108.64 717.406 108.079C715.75 107.519 713.964 107.472 712.282 107.945ZM730.767 168.8L713.548 173.638L715.938 149.083L730.767 168.8Z" stroke="black" stroke-opacity="0.3" stroke-width="5.78062"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M777.518 88.0522C778.772 87.7282 780.094 87.7906 781.312 88.2313C782.529 88.6719 783.586 89.4702 784.342 90.5215L848.78 180.036C849.39 180.884 849.784 181.868 849.928 182.902C850.072 183.937 849.961 184.991 849.606 185.973C849.251 186.955 848.661 187.836 847.889 188.539C847.117 189.242 846.185 189.746 845.174 190.007L833.641 192.99C832.388 193.314 831.065 193.251 829.848 192.811C828.63 192.37 827.574 191.572 826.818 190.52L817.302 177.307L769.618 189.637L767.701 205.808C767.55 207.094 767.013 208.304 766.162 209.28C765.31 210.255 764.184 210.951 762.93 211.275L751.398 214.258C750.387 214.519 749.327 214.53 748.311 214.289C747.295 214.049 746.352 213.564 745.566 212.877C744.779 212.191 744.171 211.322 743.796 210.348C743.42 209.373 743.288 208.322 743.41 207.285L756.376 97.7535C756.527 96.4675 757.064 95.2573 757.915 94.2816C758.767 93.3059 759.893 92.6102 761.147 92.2858L777.518 88.0522ZM777.605 122.159L772.857 162.255L801.196 154.927L777.605 122.159Z" fill="#CF63CF"/>
|
||||||
|
<path d="M776.714 84.9419L776.714 84.9421L760.342 89.1757L760.342 89.1759C758.461 89.6625 756.772 90.706 755.495 92.1695C754.218 93.633 753.413 95.4483 753.185 97.3773L740.22 206.907L740.22 206.909C740.036 208.465 740.235 210.042 740.798 211.503C741.362 212.965 742.273 214.267 743.453 215.298C744.633 216.328 746.047 217.055 747.571 217.415C749.096 217.776 750.685 217.76 752.202 217.368L752.202 217.368L763.734 214.386L763.735 214.385C765.615 213.899 767.305 212.855 768.582 211.392C769.859 209.928 770.664 208.113 770.892 206.184L772.55 192.198L815.979 180.967L824.21 192.396C824.21 192.396 824.211 192.397 824.211 192.398C825.345 193.974 826.929 195.171 828.755 195.831C830.581 196.492 832.565 196.586 834.445 196.1L834.446 196.1L845.978 193.118L845.979 193.117C847.495 192.725 848.893 191.969 850.052 190.914C851.21 189.86 852.094 188.539 852.627 187.065C853.16 185.592 853.325 184.011 853.109 182.46C852.894 180.908 852.303 179.433 851.388 178.161L851.387 178.16L786.95 88.6459C786.949 88.6455 786.949 88.6451 786.949 88.6447C785.815 87.0684 784.231 85.8714 782.405 85.2106C780.579 84.5496 778.595 84.456 776.714 84.9419ZM795.845 152.993L776.599 157.97L779.824 130.739L795.845 152.993Z" stroke="black" stroke-opacity="0.3" stroke-width="6.42482"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M855.757 56.4821C857.179 56.2298 858.645 56.4133 859.961 57.0083C861.277 57.6033 862.383 58.5821 863.133 59.8165L927.081 164.923C927.686 165.919 928.039 167.047 928.11 168.21C928.181 169.372 927.967 170.535 927.488 171.597C927.008 172.658 926.277 173.587 925.357 174.302C924.438 175.017 923.358 175.498 922.211 175.702L909.128 178.024C907.706 178.276 906.241 178.093 904.925 177.498C903.608 176.903 902.503 175.924 901.752 174.69L892.309 159.174L838.215 168.777L834.689 186.596C834.41 188.013 833.708 189.312 832.678 190.324C831.647 191.336 830.334 192.012 828.912 192.265L815.829 194.588C814.682 194.791 813.503 194.712 812.394 194.357C811.284 194.002 810.278 193.381 809.462 192.55C808.646 191.718 808.045 190.7 807.712 189.584C807.378 188.468 807.321 187.287 807.547 186.144L831.408 65.4487C831.687 64.0316 832.388 62.732 833.419 61.7202C834.45 60.7085 835.763 60.032 837.185 59.7792L855.757 56.4821ZM852.914 94.4214L844.177 138.604L876.325 132.897L852.914 94.4214Z" fill="#FF6680"/>
|
||||||
|
<path d="M855.131 52.9538L855.131 52.9539L836.559 56.2511L836.558 56.2512C834.425 56.6303 832.456 57.6451 830.909 59.1627C829.363 60.6799 828.312 62.6287 827.892 64.7538C827.892 64.7543 827.892 64.7548 827.892 64.7554L804.031 185.449L804.031 185.451C803.693 187.166 803.778 188.936 804.279 190.611C804.779 192.285 805.68 193.812 806.904 195.059L809.435 192.576L806.904 195.059C808.128 196.307 809.637 197.237 811.301 197.77C812.966 198.302 814.735 198.421 816.455 198.116L816.456 198.116L829.538 195.793L829.539 195.793C831.672 195.414 833.641 194.399 835.187 192.882C836.734 191.364 837.786 189.415 838.205 187.289L841.254 171.877L890.522 163.13L898.69 176.551C898.691 176.551 898.691 176.552 898.691 176.552C898.691 176.552 898.691 176.552 898.692 176.553C899.817 178.403 901.475 179.871 903.448 180.763C905.423 181.656 907.621 181.931 909.754 181.552L909.755 181.552L922.837 179.23L922.838 179.23C924.558 178.924 926.178 178.203 927.557 177.13C928.937 176.057 930.033 174.664 930.753 173.072C931.473 171.48 931.793 169.736 931.687 167.992C931.581 166.247 931.051 164.555 930.143 163.062L930.142 163.061L866.195 57.9554C865.07 56.1039 863.411 54.6356 861.437 53.7431L859.961 57.0083L861.437 53.7431C859.463 52.8506 857.265 52.5754 855.131 52.9538ZM870.541 130.284L848.708 134.16L854.642 104.155L870.541 130.284Z" stroke="black" stroke-opacity="0.3" stroke-width="7.16667"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M936.493 36.3593C937.95 36.0826 939.458 36.2529 940.817 36.8478C942.176 37.4427 943.324 38.4344 944.11 39.693L1011.1 146.863C1011.73 147.878 1012.11 149.032 1012.19 150.225C1012.28 151.419 1012.08 152.616 1011.6 153.712C1011.12 154.808 1010.38 155.771 1009.44 156.517C1008.51 157.263 1007.4 157.77 1006.23 157.994L992.818 160.541C991.36 160.818 989.853 160.648 988.493 160.053C987.134 159.458 985.986 158.466 985.2 157.208L975.308 141.387L919.864 151.921L916.463 170.267C916.194 171.726 915.489 173.07 914.443 174.122C913.397 175.174 912.057 175.885 910.599 176.162L897.19 178.71C896.015 178.933 894.802 178.866 893.658 178.515C892.514 178.164 891.473 177.539 890.625 176.695C889.776 175.851 889.147 174.813 888.79 173.671C888.433 172.528 888.361 171.316 888.578 170.14L911.593 45.8709C911.862 44.4118 912.566 43.0682 913.613 42.0163C914.659 40.9644 915.999 40.2532 917.457 39.976L936.493 36.3593ZM934.042 75.3641L925.614 120.855L958.565 114.594L934.042 75.3641Z" fill="#FFAB19"/>
|
||||||
|
<path d="M935.806 32.743L935.806 32.7431L916.77 36.3597L916.769 36.3599C914.583 36.7757 912.573 37.8425 911.003 39.4204C909.434 40.9983 908.377 43.0137 907.973 45.2023L884.959 169.469L884.958 169.471C884.632 171.236 884.741 173.054 885.276 174.768C885.811 176.481 886.756 178.038 888.028 179.304C889.301 180.571 890.862 181.507 892.578 182.034C894.295 182.56 896.113 182.661 897.877 182.326L897.877 182.326L911.286 179.778L911.287 179.778C913.473 179.362 915.483 178.296 917.053 176.718C918.622 175.14 919.679 173.124 920.083 170.936L923.024 155.068L973.522 145.474L982.078 159.157C982.078 159.158 982.079 159.159 982.079 159.159C983.258 161.046 984.979 162.533 987.017 163.425L988.493 160.053L987.018 163.425C989.056 164.317 991.317 164.573 993.504 164.158L993.505 164.158L1006.91 161.61L1006.91 161.61C1008.68 161.275 1010.33 160.514 1011.74 159.395C1013.14 158.276 1014.25 156.832 1014.97 155.187C1015.69 153.543 1016 151.747 1015.86 149.957C1015.73 148.167 1015.17 146.436 1014.22 144.913L1014.22 144.912L947.232 37.7434C946.053 35.8556 944.332 34.368 942.293 33.4757C940.254 32.5833 937.993 32.328 935.806 32.743ZM952.592 111.983L930.214 116.234L935.937 85.3403L952.592 111.983Z" stroke="black" stroke-opacity="0.3" stroke-width="7.36182"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M1026.44 18.7329C1027.93 18.5449 1029.45 18.8132 1030.79 19.5026C1032.13 20.1921 1033.23 21.2705 1033.95 22.5965L1095.06 135.511C1095.64 136.58 1095.95 137.774 1095.96 138.99C1095.98 140.205 1095.69 141.406 1095.14 142.487C1094.58 143.568 1093.77 144.498 1092.77 145.195C1091.78 145.892 1090.63 146.336 1089.42 146.488L1075.66 148.22C1074.17 148.408 1072.65 148.139 1071.31 147.45C1069.97 146.76 1068.87 145.682 1068.15 144.356L1059.13 127.687L1002.24 134.848L997.629 153.234C997.263 154.696 996.463 156.014 995.336 157.014C994.208 158.014 992.804 158.65 991.309 158.839L977.551 160.57C976.345 160.722 975.12 160.577 973.982 160.149C972.845 159.72 971.829 159.021 971.022 158.111C970.216 157.202 969.643 156.109 969.354 154.928C969.065 153.747 969.068 152.514 969.363 151.334L1000.59 26.7963C1000.95 25.334 1001.75 24.0164 1002.88 23.0162C1004.01 22.016 1005.41 21.38 1006.91 21.1915L1026.44 18.7329ZM1021.48 58.1252L1010.04 103.714L1043.85 99.4585L1021.48 58.1252Z" fill="#FFBF00"/>
|
||||||
|
<path d="M1025.97 15.0226L1025.97 15.0227L1006.44 17.4813L1006.44 17.4814C1004.2 17.7642 1002.09 18.7182 1000.4 20.2185C998.707 21.7183 997.509 23.6941 996.96 25.8869C996.96 25.8874 996.959 25.888 996.959 25.8886L965.736 150.425L965.736 150.427C965.293 152.196 965.288 154.046 965.722 155.817C966.155 157.589 967.014 159.227 968.224 160.592C969.434 161.957 970.958 163.006 972.664 163.648C974.371 164.291 976.208 164.508 978.018 164.281L978.018 164.281L991.776 162.549L991.776 162.549C994.02 162.266 996.125 161.312 997.817 159.812C999.508 158.312 1000.71 156.336 1001.26 154.144C1001.26 154.144 1001.26 154.143 1001.26 154.143C1001.26 154.143 1001.26 154.142 1001.26 154.141L1005.25 138.239L1057.06 131.717L1064.86 146.134C1065.94 148.123 1067.59 149.741 1069.6 150.775C1071.61 151.809 1073.89 152.212 1076.13 151.93L1076.13 151.93L1089.89 150.198L1089.89 150.198C1091.7 149.97 1093.42 149.304 1094.92 148.258C1096.41 147.213 1097.63 145.819 1098.46 144.197C1099.3 142.575 1099.72 140.774 1099.7 138.951C1099.68 137.128 1099.22 135.336 1098.35 133.732L1098.35 133.731L1037.24 20.818C1036.16 18.829 1034.51 17.2114 1032.5 16.1772L1030.79 19.5026L1032.5 16.1772C1030.49 15.143 1028.21 14.7406 1025.97 15.0226ZM1037.96 96.4311L1015 99.3213L1022.76 68.3606L1037.96 96.4311Z" stroke="black" stroke-opacity="0.3" stroke-width="7.47895"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M1116.89 8.82704C1118.48 8.76059 1120.05 9.17572 1121.4 10.018C1122.75 10.8603 1123.81 12.0904 1124.45 13.5471L1178.79 137.598C1179.3 138.773 1179.52 140.055 1179.43 141.334C1179.34 142.613 1178.93 143.85 1178.25 144.938C1177.57 146.025 1176.64 146.931 1175.53 147.577C1174.42 148.222 1173.18 148.588 1171.89 148.642L1157.28 149.256C1155.69 149.322 1154.12 148.907 1152.77 148.065C1151.42 147.222 1150.36 145.992 1149.72 144.535L1141.7 126.223L1081.28 128.761L1074.81 147.682C1074.3 149.187 1073.35 150.502 1072.07 151.455C1070.8 152.407 1069.27 152.953 1067.68 153.02L1053.07 153.634C1051.78 153.687 1050.51 153.428 1049.35 152.877C1048.19 152.327 1047.19 151.503 1046.42 150.476C1045.65 149.449 1045.14 148.25 1044.94 146.984C1044.74 145.717 1044.86 144.421 1045.27 143.207L1089.01 15.0358C1089.53 13.5308 1090.48 12.2159 1091.75 11.2635C1093.03 10.311 1094.56 9.76557 1096.15 9.69855L1116.89 8.82704ZM1108.22 49.7996L1092.21 96.7184L1128.12 95.2098L1108.22 49.7996Z" fill="white"/>
|
||||||
|
<path d="M1116.73 4.88604L1116.73 4.88607L1095.98 5.75758L1095.98 5.75761C1093.6 5.85814 1091.3 6.67636 1089.39 8.105C1087.48 9.53327 1086.05 11.505 1085.28 13.7618C1085.28 13.7624 1085.28 13.7629 1085.28 13.7635L1041.54 141.933L1041.54 141.935C1040.92 143.755 1040.75 145.7 1041.05 147.6C1041.35 149.5 1042.11 151.298 1043.26 152.838C1044.41 154.379 1045.92 155.615 1047.66 156.44C1049.4 157.266 1051.31 157.655 1053.23 157.575L1053.23 157.575L1067.84 156.961L1067.85 156.961C1070.23 156.86 1072.53 156.042 1074.43 154.613C1076.34 153.185 1077.78 151.212 1078.55 148.955L1084.14 132.589L1139.17 130.277L1146.11 146.116C1147.07 148.301 1148.66 150.147 1150.68 151.41C1152.71 152.674 1155.06 153.296 1157.45 153.197L1157.45 153.197L1172.06 152.583L1172.06 152.583C1173.98 152.502 1175.86 151.953 1177.52 150.985C1179.18 150.017 1180.58 148.658 1181.6 147.027C1182.62 145.395 1183.22 143.54 1183.36 141.621C1183.5 139.703 1183.17 137.779 1182.4 136.017L1182.4 136.015L1128.06 11.9662C1127.11 9.7811 1125.51 7.93591 1123.49 6.67248C1121.47 5.40905 1119.11 4.78636 1116.73 4.88604ZM1122.19 91.5109L1097.8 92.5354L1108.68 60.6717L1122.19 91.5109Z" stroke="black" stroke-opacity="0.3" stroke-width="7.88889"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 11 KiB |
After Width: | Height: | Size: 371 KiB |
After Width: | Height: | Size: 113 KiB |
After Width: | Height: | Size: 476 KiB |
After Width: | Height: | Size: 51 KiB |
After Width: | Height: | Size: 980 KiB |
After Width: | Height: | Size: 11 KiB |
After Width: | Height: | Size: 233 KiB |
After Width: | Height: | Size: 11 KiB |
After Width: | Height: | Size: 112 KiB |
|
@ -0,0 +1,4 @@
|
||||||
|
<svg width="67" height="68" viewBox="0 0 67 68" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<circle cx="33.5" cy="34.0291" r="33.5" fill="#9966FF"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M30.6584 53.0945L18.2429 40.6789C17.282 39.6588 17.025 38.2275 17.5588 36.9978C18.0887 35.7681 19.259 35.0089 20.6153 35.0089H25.3245L27.7245 17.73C28.0685 15.0848 30.3697 13.0722 33.0782 13.0722C33.3115 13.0722 33.5488 13.088 33.782 13.1157C36.2256 13.4992 38.1117 15.405 38.4082 17.7498L40.8715 35.0089H45.3751C46.7472 35.0089 47.9689 35.8155 48.4869 37.061C49.0049 38.3144 48.7242 39.7023 47.7475 40.6789L35.332 53.0945C34.7152 53.7073 33.8848 54.0474 32.9952 54.0474C32.1055 54.0474 31.2752 53.7073 30.6584 53.0945Z" fill="white"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 745 B |
After Width: | Height: | Size: 11 KiB |
|
@ -0,0 +1,4 @@
|
||||||
|
<svg width="67" height="68" viewBox="0 0 67 68" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.70796 14.5947C10.211 13.8672 12.1659 11.7492 12.8374 9.03723L14.3673 2.87197C15.094 -0.0426081 18.9103 -0.0426081 19.6327 2.87197L21.1669 9.03723C21.8383 11.7492 23.7932 13.8672 26.292 14.5947L31.9824 16.2523C34.6725 17.0396 34.6725 21.1744 31.9824 21.9617L26.292 23.6193C23.7932 24.3468 21.8383 26.4648 21.1669 29.1722L19.6327 35.3375C18.9103 38.252 15.094 38.252 14.3673 35.3375L12.8374 29.1722C12.1659 26.4648 10.211 24.3468 7.70796 23.6193L2.01756 21.9617C-0.67252 21.1744 -0.67252 17.0396 2.01756 16.2523L7.70796 14.5947Z" fill="white"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M51.5341 54.3725C53.0065 53.9446 54.1564 52.6987 54.5514 51.1034L55.4513 47.4768C55.8788 45.7623 58.1237 45.7623 58.5487 47.4768L59.4511 51.1034C59.8461 52.6987 60.996 53.9446 62.4659 54.3725L65.8132 55.3475C67.3956 55.8107 67.3956 58.2429 65.8132 58.706L62.4659 59.6811C60.996 60.109 59.8461 61.3549 59.4511 62.9475L58.5487 66.5741C58.1237 68.2886 55.8788 68.2886 55.4513 66.5741L54.5514 62.9475C54.1564 61.3549 53.0065 60.109 51.5341 59.6811L48.1868 58.706C46.6044 58.2429 46.6044 55.8107 48.1868 55.3475L51.5341 54.3725Z" fill="white"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 11 KiB |
After Width: | Height: | Size: 91 KiB |
After Width: | Height: | Size: 175 KiB |
|
@ -0,0 +1,4 @@
|
||||||
|
<svg width="70" height="119" viewBox="0 0 70 119" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.70796 95.2637C10.211 94.5362 12.1659 92.4182 12.8374 89.7062L14.3673 83.5409C15.094 80.6263 18.9103 80.6263 19.6327 83.5409L21.1669 89.7062C21.8383 92.4182 23.7932 94.5362 26.292 95.2637L31.9824 96.9212C34.6725 97.7086 34.6725 101.843 31.9824 102.631L26.292 104.288C23.7932 105.016 21.8383 107.134 21.1669 109.841L19.6327 116.006C18.9103 118.921 15.094 118.921 14.3673 116.006L12.8374 109.841C12.1659 107.134 10.211 105.016 7.70796 104.288L2.01756 102.631C-0.67252 101.843 -0.67252 97.7086 2.01756 96.9212L7.70796 95.2637Z" fill="white"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M29.0153 21.7773C32.9172 20.6432 35.9645 17.3416 37.0112 13.1141L39.3961 3.50355C40.5289 -1.03976 46.4778 -1.03976 47.6039 3.50355L49.9954 13.1141C51.0421 17.3416 54.0894 20.6432 57.9847 21.7773L66.855 24.3611C71.0483 25.5885 71.0483 32.0338 66.855 33.2611L57.9847 35.845C54.0894 36.979 51.0421 40.2806 49.9954 44.501L47.6039 54.1115C46.4778 58.6548 40.5289 58.6548 39.3961 54.1115L37.0112 44.501C35.9645 40.2806 32.9172 36.979 29.0153 35.845L20.145 33.2611C15.9517 32.0338 15.9517 25.5885 20.145 24.3611L29.0153 21.7773Z" fill="white"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 84 KiB |
After Width: | Height: | Size: 68 KiB |
|
@ -0,0 +1,5 @@
|
||||||
|
<svg width="1288" height="5056" viewBox="0 0 1288 5056" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M644.003 215.638C344.103 219.425 87.3706 73.6326 0 0V325.035H1285V0C1193.95 70.477 943.904 211.852 644.003 215.638Z" fill="#F7F3FF"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M0 129.753V236.242H2V4949.77C2 4949.77 388.137 5042.11 639.491 5042.56C893.947 5043.01 1285 4949.77 1285 4949.77V235.282H1283.5V129.753C1281.67 130.368 1279.75 131.016 1277.73 131.696C1202.48 157.048 996.891 226.316 707.555 235.282H583.393C297.988 226.453 90.5876 159.145 9.67074 132.885C6.21524 131.763 2.9904 130.717 0 129.753Z" fill="#F0E8FF"/>
|
||||||
|
<path d="M2 4952.09V4520.87C39 4639.33 221.9 4876.9 657.5 4879.5C1093.1 4882.1 1259.33 4641.5 1288 4520.87V4952.09C1205.17 4985.31 957.4 5052.52 629 5055.56C300.6 5058.59 74.1667 4987.84 2 4952.09Z" fill="#F7F3FF"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 867 B |
After Width: | Height: | Size: 197 KiB |
|
@ -0,0 +1,3 @@
|
||||||
|
<svg width="489" height="169" viewBox="0 0 489 169" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M3 3.81836L3 55.7908C3 69.0456 13.7452 79.7908 27 79.7908H462C475.255 79.7908 486 90.5359 486 103.791V165.818" stroke="#9966FF" stroke-width="6" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 16"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 334 B |
|
@ -0,0 +1,3 @@
|
||||||
|
<svg width="246" height="188" viewBox="0 0 246 188" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M3 184.818L3 123.936C3 110.681 13.7452 99.9356 27 99.9356H219C232.255 99.9356 243 89.1904 243 75.9356V3.81836" stroke="#9966FF" stroke-width="6" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 16"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 334 B |
|
@ -0,0 +1,3 @@
|
||||||
|
<svg width="551" height="143" viewBox="0 0 551 143" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M547.5 3.31153V43.0908C547.5 56.3457 536.755 67.0908 523.5 67.0908H27.5C14.2451 67.0908 3.49997 77.836 3.49997 91.0908V139.312" stroke="#9966FF" stroke-width="6" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 16"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 351 B |
|
@ -0,0 +1,3 @@
|
||||||
|
<svg width="248" height="160" viewBox="0 0 248 160" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M3 3.81836L3 51.5701C3 64.8249 13.7452 75.5701 27 75.5701H221C234.255 75.5701 245 86.3153 245 99.5701V156.818" stroke="#9966FF" stroke-width="6" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 16"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 334 B |
|
@ -0,0 +1,5 @@
|
||||||
|
<svg width="281" height="276" viewBox="0 0 281 276" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path opacity="0.1" d="M130.302 99.6788C130.302 130.664 109.693 160.217 65.3932 155.783C21.0933 151.349 0.484131 130.664 0.484131 99.6788C0.484131 68.6933 28.2198 52.6127 65.3932 43.5746C102.567 34.5366 130.302 68.6933 130.302 99.6788Z" fill="#9966FF"/>
|
||||||
|
<path opacity="0.1" d="M281 69.9451C281 31.8302 258.62 -4.52187 210.513 0.932043C162.406 6.38595 140.026 31.8302 140.026 69.9451C140.026 108.06 170.145 127.841 210.513 138.958C250.881 150.076 281 108.06 281 69.9451Z" fill="#9966FF"/>
|
||||||
|
<path opacity="0.1" d="M88.2676 205.655C88.2676 243.769 110.648 280.121 158.755 274.668C206.862 269.214 229.242 243.769 229.242 205.655C229.242 167.54 199.123 147.759 158.755 136.641C118.387 125.524 88.2676 167.54 88.2676 205.655Z" fill="#9966FF"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 844 B |
After Width: | Height: | Size: 1.2 MiB |
After Width: | Height: | Size: 106 KiB |
After Width: | Height: | Size: 99 KiB |
After Width: | Height: | Size: 129 KiB |
|
@ -0,0 +1,3 @@
|
||||||
|
<svg width="940" height="503" viewBox="0 0 940 503" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path opacity="0.5" d="M797.855 20.727C687.843 77.1299 626.235 4.14452 515.956 4.14453C443.026 4.14454 406.118 0.519978 345.119 56.6445C284.12 112.769 145.689 -52.2729 81.7495 20.7271C26.9242 83.3217 110.109 131.056 81.7495 187.645C53.3902 244.233 -29.3979 278.941 10.8195 354.228C70.8986 466.695 178.232 350.517 315.748 354.228C453.264 357.939 360.16 480.392 493.93 501.265C627.7 522.138 595.06 297.639 728.83 402.931C862.6 508.223 963.73 406.642 907.012 329.644C850.293 252.647 837.987 203.016 907.012 143.181C976.037 83.3453 935.371 -49.7766 797.855 20.727Z" fill="#9966FF"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 686 B |
After Width: | Height: | Size: 10 KiB |
After Width: | Height: | Size: 10 KiB |
After Width: | Height: | Size: 10 KiB |
|
@ -0,0 +1,4 @@
|
||||||
|
<svg width="262" height="206" viewBox="0 0 262 206" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M139 29.9978C109.269 73 101.757 61.1639 61.7119 57.8485C21.6668 54.5331 -19.4883 104.011 10.0394 145.722C35.5293 181.728 69.5702 135.799 109.269 187.977C135.986 223.094 156.826 200.462 175.574 174.532C194.323 148.603 262 178.854 262 130.836C262 82.8182 191.579 107.787 205.755 57.8485C219.93 7.90994 162.242 -3.61795 139 29.9978Z" fill="#9966FF" fill-opacity="0.3"/>
|
||||||
|
<path d="M112 23.2258C112 35.7472 109.404 47.206 89.5 45.8978C69.5962 44.5896 67 35.7472 67 23.2258C67 10.7043 76.0865 -2.93397 89.5 0.553719C102.913 4.04141 112 10.7043 112 23.2258Z" fill="#9966FF" fill-opacity="0.3"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 703 B |
38
static/images/annual-report/2021/Donate Illustration.svg
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
<svg width="300" height="300" viewBox="0 0 300 300" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<g id="Donate Illustration">
|
||||||
|
<g id="Donate">
|
||||||
|
<g id="Group 3">
|
||||||
|
<mask id="mask0_2_7122" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="12" y="24" width="276" height="252">
|
||||||
|
<path id="Clip 2" fill-rule="evenodd" clip-rule="evenodd" d="M12 24H288V275.999H12V24Z" fill="white"/>
|
||||||
|
</mask>
|
||||||
|
<g mask="url(#mask0_2_7122)">
|
||||||
|
<path id="Fill 1" fill-rule="evenodd" clip-rule="evenodd" d="M287.553 113.1C279.488 204.285 176.208 275.999 150.009 275.999C123.81 275.999 20.5129 204.285 12.4649 113.1C12.2329 110.125 11.9999 107.151 11.9999 104.176C11.9999 59.9644 48.1079 23.9994 92.5129 23.9994C112.404 23.9994 130.692 31.1344 144.671 43.2094C147.733 45.8534 152.285 45.8534 155.347 43.2094C169.326 31.1344 187.615 23.9994 207.505 23.9994C251.893 23.9994 288 59.9644 288 104.176C288 107.151 287.768 110.125 287.553 113.1Z" fill="#0DA57A"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<path id="Fill 4" fill-rule="evenodd" clip-rule="evenodd" d="M158.114 176.005C144.837 182.109 149.718 164.979 163.039 160.724C172.852 157.589 184.781 152.322 187.449 137.41C188.558 131.218 186.985 124.104 180.544 120.16C173.961 116.129 166.767 118.403 160.996 122.916C152.774 129.345 145.553 121.152 154.752 113.796C175.284 97.3785 191.893 112.796 195.431 118.794C193.339 110.651 186.197 95.1355 185.114 80.2925C184.455 71.2515 196.461 64.6425 196.474 76.8415C196.478 81.8345 197.217 84.0263 197.217 84.0263C197.217 84.0263 205.376 80.2673 209.617 92.6113C213.456 92.6533 218.359 97.2363 218.238 102.155C217.358 137.839 237.122 154.005 236.046 173.798C234.872 195.391 202.626 194.113 192.747 176.47C185.947 164.327 166.978 171.93 158.114 176.005Z" fill="#ECC293"/>
|
||||||
|
<path id="Fill 6" fill-rule="evenodd" clip-rule="evenodd" d="M192.747 176.47C201.4 192.965 225.779 226.43 227.49 226.864C227.49 226.864 244.885 209.544 258.33 189.852C258.33 189.852 239.361 172.214 233.185 158.598L192.747 176.47Z" fill="#ECC293"/>
|
||||||
|
<g id="Group 12">
|
||||||
|
<path id="Fill 8" opacity="0.1" fill-rule="evenodd" clip-rule="evenodd" d="M231.17 223.363L227.64 226.723C227.54 226.813 227.49 226.863 227.49 226.863L227.27 226.733C224.27 224.353 201.13 192.443 192.75 176.473C185.95 164.324 166.98 171.933 158.11 176.004C153.38 178.183 150.96 177.403 150.4 175.313V175.293C153.81 179.254 176.99 161.403 189.25 166.763C192.4 168.134 195.06 170.733 197.69 174.293C200.33 177.863 202.95 182.403 206 187.664C211.76 197.563 219.11 210.023 231.17 223.363Z" fill="#231F20"/>
|
||||||
|
<path id="Fill 10" fill-rule="evenodd" clip-rule="evenodd" d="M227.49 226.863C227.44 226.853 227.36 226.803 227.27 226.733L227.49 226.863Z" fill="#231F20"/>
|
||||||
|
</g>
|
||||||
|
<path id="Fill 13" opacity="0.1" fill-rule="evenodd" clip-rule="evenodd" d="M187.78 133.643C187.74 128.523 185.7 123.324 180.54 120.164C173.96 116.133 166.77 118.403 161 122.914C156.24 126.633 151.82 125.463 150.72 122.383V122.372C153.61 123.813 156.33 123.542 159.13 121.153C161.92 118.773 168.87 113.933 177.79 116.324C186.2 118.563 187.82 128.613 187.78 133.643Z" fill="#231F20"/>
|
||||||
|
<path id="Fill 15" opacity="0.1" fill-rule="evenodd" clip-rule="evenodd" d="M195.43 118.795L200.197 125.089L190.707 104.522L195.43 118.795Z" fill="#231F20"/>
|
||||||
|
<path id="Fill 17" fill-rule="evenodd" clip-rule="evenodd" d="M141.892 176.005C155.169 182.109 150.288 164.979 136.967 160.724C127.154 157.589 115.225 152.322 112.557 137.41C111.448 131.218 113.021 124.104 119.461 120.16C126.045 116.129 133.239 118.403 139.01 122.916C147.231 129.345 154.453 121.152 145.253 113.796C124.722 97.3785 108.113 112.796 104.575 118.794C106.667 110.651 113.809 95.1355 114.892 80.2925C115.551 71.2515 103.545 64.6425 103.532 76.8415C103.527 81.8345 102.776 83.1352 102.776 83.1352C102.776 83.1352 94.6169 79.3762 90.3759 91.7202C86.5369 91.7622 81.6329 96.3452 81.7549 101.264C82.6349 136.948 62.8839 154.005 63.9599 173.798C65.1339 195.391 97.3789 194.113 107.259 176.47C114.059 164.327 133.028 171.93 141.892 176.005Z" fill="#755135"/>
|
||||||
|
<path id="Fill 19" fill-rule="evenodd" clip-rule="evenodd" d="M107.259 176.47C98.6059 192.965 74.2269 226.43 72.5159 226.864C72.5159 226.864 55.9059 210.696 42.4619 191.003C42.4619 191.003 60.6449 172.214 66.8209 158.598L107.259 176.47Z" fill="#755135"/>
|
||||||
|
<g id="Group 25">
|
||||||
|
<path id="Fill 21" opacity="0.1" fill-rule="evenodd" clip-rule="evenodd" d="M68.8356 223.363L72.3656 226.723C72.4656 226.813 72.5156 226.863 72.5156 226.863L72.7356 226.733C75.7356 224.353 98.8756 192.443 107.256 176.473C114.056 164.324 133.026 171.933 141.896 176.004C146.626 178.183 149.046 177.403 149.606 175.313V175.294C146.196 179.254 123.016 161.403 110.756 166.763C107.606 168.134 104.946 170.733 102.316 174.294C99.6756 177.863 97.0556 182.403 94.0056 187.663C88.2456 197.563 80.8956 210.023 68.8356 223.363Z" fill="#231F20"/>
|
||||||
|
<path id="Fill 23" fill-rule="evenodd" clip-rule="evenodd" d="M72.5157 226.863C72.5657 226.853 72.6457 226.803 72.7357 226.733L72.5157 226.863Z" fill="#231F20"/>
|
||||||
|
</g>
|
||||||
|
<path id="Fill 26" opacity="0.1" fill-rule="evenodd" clip-rule="evenodd" d="M112.226 133.643C112.266 128.523 114.306 123.324 119.466 120.164C126.046 116.133 133.236 118.403 139.006 122.914C143.766 126.633 148.186 125.463 149.286 122.383V122.373C146.396 123.813 143.676 123.543 140.876 121.153C138.086 118.773 131.136 113.933 122.216 116.324C113.806 118.563 112.186 128.613 112.226 133.643Z" fill="#231F20"/>
|
||||||
|
<path id="Fill 28" opacity="0.1" fill-rule="evenodd" clip-rule="evenodd" d="M104.575 118.795L99.8083 125.089L109.298 104.522L104.575 118.795Z" fill="#231F20"/>
|
||||||
|
<g id="Group 32">
|
||||||
|
<mask id="mask1_2_7122" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="12" y="24" width="276" height="90">
|
||||||
|
<path id="Clip 31" fill-rule="evenodd" clip-rule="evenodd" d="M12.0001 24.0036H288V113.344H12.0001V24.0036Z" fill="white"/>
|
||||||
|
</mask>
|
||||||
|
<g mask="url(#mask1_2_7122)">
|
||||||
|
<path id="Fill 30" fill-rule="evenodd" clip-rule="evenodd" d="M288 104.174C288 107.153 287.77 110.123 287.55 113.104C287.506 113.104 287.526 113.104 287.482 113.105C282.947 73.1476 248.813 42.0036 207.51 42.0036C187.79 42.0036 169.646 49.0076 155.718 60.8926C152.426 63.7006 147.592 63.7016 144.3 60.8936C130.367 49.0076 112.23 42.0036 92.5101 42.0036C51.1101 42.0036 16.9101 73.2736 12.4901 113.344H12.4891C12.2431 110.283 12.0001 107.234 12.0001 104.174C12.0001 59.9636 48.1101 24.0036 92.5101 24.0036C112.23 24.0036 130.367 31.0076 144.3 42.8936C147.592 45.7016 152.426 45.7006 155.718 42.8926C169.646 31.0076 187.79 24.0036 207.51 24.0036C251.89 24.0036 288 59.9636 288 104.174Z" fill="#231F20" fill-opacity="0.1"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 6.4 KiB |
5
static/images/annual-report/2021/Emerging Themes.svg
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
<svg width="781" height="168" viewBox="0 0 781 168" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M780 76.6963C786.5 135.196 753.5 177.196 656 165.696C558.5 154.196 534.5 110.879 534.5 66.6963C534.5 22.5135 567.621 1.19629 635 1.19629C702.379 1.19629 773.5 18.1963 780 76.6963Z" fill="#774DCB"/>
|
||||||
|
<path d="M512.08 77.496C494.452 127.296 454.08 166.696 390.08 157.496C326.08 148.296 268.58 137.879 268.58 93.696C268.58 49.5132 290.106 14.7016 356.58 3.69598C432.08 -8.80402 529.709 27.696 512.08 77.496Z" fill="#2B732B"/>
|
||||||
|
<path d="M244.5 76.6961C230 136.696 190.5 170.696 122.5 156.696C54.5 142.696 0.5 120.879 0.5 76.6961C0.5 32.5133 49.5 14.1961 122.5 2.69606C195.5 -8.80394 259 16.6961 244.5 76.6961Z" fill="#3373CC"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 738 B |
|
@ -0,0 +1,3 @@
|
||||||
|
<svg width="263" height="152" viewBox="0 0 263 152" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M128.951 15.2153C78.4024 28.3501 85.0846 -11.2433 40.9101 3.23415C-3.2644 17.7116 -11.6443 70.6373 17.8551 112.282C38.2313 141.047 49.6188 160.986 97.0731 141.047C128.12 128.003 133.54 152 165.507 152C197.476 152 239.464 149.294 256.756 104.575C265.249 82.6092 266.704 68.5133 244.388 39.6768C218.067 5.66568 178.903 2.23536 128.951 15.2153Z" fill="#4C97FF" fill-opacity="0.25"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 496 B |
|
@ -0,0 +1,3 @@
|
||||||
|
<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.915 17.3999C10.9332 17.3999 9.31504 15.7817 9.31504 13.7999C9.31504 11.8037 10.9332 10.1999 12.915 10.1999C14.9112 10.1999 16.515 11.8037 16.515 13.7999C16.515 15.7817 14.9112 17.3999 12.915 17.3999ZM20.115 7.4999H18.855C18.5112 7.4999 18.225 7.3199 18.0612 7.0319L16.8552 4.8377C16.533 4.2599 15.939 3.8999 15.273 3.8999H10.575C9.90904 3.8999 9.31504 4.2599 8.98924 4.8377L7.76704 7.0319C7.60504 7.3199 7.31704 7.4999 6.99304 7.4999H5.71504C4.72504 7.4999 3.91504 8.3099 3.91504 9.2999V18.2999C3.91504 19.2917 4.72504 20.0999 5.71504 20.0999H20.115C21.105 20.0999 21.915 19.2917 21.915 18.2999V9.2999C21.915 8.3099 21.105 7.4999 20.115 7.4999Z" fill="white"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 817 B |
|
@ -0,0 +1,3 @@
|
||||||
|
<svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.1846 1.45411V2.68935C11.1846 3.14524 11.532 3.51429 11.9879 3.51429C12.4437 3.51429 12.8128 3.14524 12.8128 2.68935V1.45411C12.8128 0.998223 12.4437 0.650879 11.9879 0.650879C11.532 0.650879 11.1846 0.998223 11.1846 1.45411ZM4.34738 3.79868C4.04128 4.12214 4.04128 4.64316 4.34738 4.94709L5.23528 5.83715C5.38724 5.98912 5.60433 6.07812 5.82359 6.07812C6.01897 6.07812 6.23606 5.98912 6.38585 5.83715C6.71366 5.51369 6.71366 4.99267 6.38585 4.68658L5.51966 3.79868C5.19403 3.47088 4.67084 3.47088 4.34738 3.79868ZM19.6307 4.94643C19.9346 4.64468 19.9346 4.12149 19.6307 3.79803C19.3051 3.47239 18.7819 3.47239 18.4801 3.79803L17.5901 4.68593C17.2861 4.99202 17.2861 5.51304 17.5901 5.8365C17.7637 5.99064 17.957 6.07747 18.1762 6.07747C18.3716 6.07747 18.5887 5.99064 18.7407 5.8365L19.6307 4.94643ZM22.8 11.4387C22.8 11.8946 22.4288 12.242 21.9751 12.242H20.7377C20.2818 12.242 19.9127 11.8946 19.9127 11.4387C19.9127 10.9828 20.2818 10.6138 20.7377 10.6138H21.9751C22.4288 10.6138 22.8 10.9828 22.8 11.4387ZM6.38694 17.0399C6.71257 17.3655 6.71257 17.8648 6.38694 18.1904L5.52075 19.0805C5.34708 19.2325 5.1517 19.3193 4.93244 19.3193C4.71535 19.3193 4.51997 19.2325 4.34847 19.0805C4.04237 18.7549 4.04237 18.2339 4.34847 17.9299L5.23636 17.0399C5.562 16.7142 6.08301 16.7142 6.38694 17.0399ZM14.8966 20.86C15.1159 22.2515 14.3105 23.4238 11.9876 23.4238C9.66695 23.4238 8.86155 22.2515 9.07863 20.86C9.1328 20.5567 9.30643 20.6107 9.74169 20.746C10.1787 20.8819 10.8794 21.0998 11.9876 21.1205C13.1419 21.1205 13.8565 20.8891 14.2897 20.7488C14.6958 20.6174 14.8546 20.5659 14.8966 20.86ZM4.0656 11.4387C4.0656 11.8946 3.69654 12.242 3.26237 12.242H2.00324C1.56906 12.242 1.20001 11.8946 1.20001 11.4387C1.20001 10.9828 1.56906 10.6138 2.00324 10.6138H3.26237C3.69654 10.6138 4.0656 10.9828 4.0656 11.4387ZM18.0025 10.614C18.1523 12.2422 17.6769 13.7618 16.7651 14.9102C16.5697 15.1656 16.3905 15.3749 16.2302 15.5621C15.694 16.1882 15.3686 16.5682 15.3519 17.6043C15.3519 18.299 15.0045 18.8634 14.4401 19.1239H14.4206C12.8792 19.8837 11.0969 19.862 9.55558 19.1239C9.01286 18.8634 8.66551 18.299 8.66551 17.6911C8.66551 16.6102 8.33433 16.2299 7.78906 15.6038C7.62248 15.4125 7.43592 15.1982 7.23272 14.9341C6.43166 13.9138 5.95189 12.6112 5.95189 11.2218C5.95189 7.63987 9.05845 4.8177 12.7056 5.23017C15.4843 5.55581 17.742 7.83525 18.0025 10.614ZM19.6307 19.0807C19.9346 18.7551 19.9346 18.2341 19.6307 17.9301L18.7407 17.0401C18.4346 16.7123 17.9157 16.7123 17.5901 17.0401C17.2861 17.3657 17.2861 17.865 17.5901 18.1906L18.4801 19.0807C18.6299 19.2327 18.8492 19.3195 19.0424 19.3195C19.2617 19.3195 19.4788 19.2327 19.6307 19.0807Z" fill="white"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 2.8 KiB |
|
@ -0,0 +1,3 @@
|
||||||
|
<svg width="77" height="60" viewBox="0 0 77 60" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M54.0484 1.58101L69.5715 3.51246C71.7962 3.78927 73.5748 5.49451 73.945 7.70554L75.5035 17.0135C76.9484 25.6431 76.9484 34.4528 75.5035 43.0824L73.945 52.3904C73.5748 54.6014 71.7962 56.3067 69.5715 56.5835L54.0484 58.5149C43.6572 59.8078 33.1458 59.8078 22.7546 58.5149L7.23151 56.5835C5.00685 56.3067 3.22821 54.6014 2.858 52.3904L1.29951 43.0824C-0.145411 34.4528 -0.145411 25.6431 1.29951 17.0135L2.858 7.70554C3.22821 5.49451 5.00685 3.78927 7.23151 3.51246L22.7546 1.58101C33.1458 0.2881 43.6572 0.2881 54.0484 1.58101ZM33.9195 19.91C31.4957 19.91 29.5308 21.8662 29.5308 24.2793V37.0833C29.5308 37.906 29.7641 38.7119 30.2038 39.4084C31.4936 41.4514 34.2028 42.0666 36.2549 40.7825L46.4857 34.3805C47.0435 34.0314 47.5152 33.5618 47.8658 33.0064C49.1557 30.9634 48.5378 28.2662 46.4857 26.9821L36.2549 20.58C35.5553 20.1423 34.7458 19.91 33.9195 19.91Z" fill="white"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1 KiB |
17
static/images/annual-report/2021/Masthead Illustration.svg
Normal file
After Width: | Height: | Size: 19 MiB |
BIN
static/images/annual-report/2021/Masthead_Illo_screenshot.png
Normal file
After Width: | Height: | Size: 1.4 MiB |
|
@ -0,0 +1,5 @@
|
||||||
|
<svg width="259" height="185" viewBox="0 0 259 185" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M124.489 17.0272C93.0033 58.9867 75.7742 39.47 55.1233 32.6398C34.4724 25.8095 52.0987 67.8023 39.7675 84.3541C27.2563 101.148 21.2347 103.87 5.87889 120.458C-16.7272 144.877 36.8748 119.509 74.7151 173.148C88.4824 192.663 107.974 164.337 124.489 163.91C145.804 163.358 178.133 188.986 186.442 173.148C201.797 143.876 254.258 140.948 257.396 125.336C260.044 112.164 211.143 96.4908 226.155 47.7631C233.708 23.2483 182.957 48.5657 166.32 43.8601C149.888 39.2124 142.794 -7.36708 124.489 17.0272Z" fill="#0FBD8C" fill-opacity="0.3"/>
|
||||||
|
<path d="M96.6555 10.5C103.194 18 90.8004 21 83.5778 21C76.3551 21 70.5 16.299 70.5 10.5C70.5 4.70101 76.3551 0 83.5778 0C90.8004 0 90.1166 3 96.6555 10.5Z" fill="#0FBD8C" fill-opacity="0.3"/>
|
||||||
|
<path d="M251.534 153.091C261.5 153.091 251.637 165.053 244.344 171.884C237.05 178.716 228.443 181.378 225.12 177.83C221.798 174.282 225.017 165.868 232.311 159.037C239.605 152.206 241.568 153.091 251.534 153.091Z" fill="#0FBD8C" fill-opacity="0.3"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
|
@ -0,0 +1,3 @@
|
||||||
|
<svg width="256" height="151" viewBox="0 0 256 151" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M140.007 20.2571C91.7541 33.097 72.2309 25.4032 47.4114 33.7329C22.5919 42.0627 -10.3693 71.3468 3.5 119.269C9.49999 140 57.7003 162.991 103 143.5C132.637 130.748 161.985 134 192.5 134C202 134 236.193 124.799 246.5 97.5C254.608 76.0277 264.104 36.6717 238.331 12.7151C209.693 -13.904 187.691 7.56857 140.007 20.2571Z" fill="#FF8C1A" fill-opacity="0.3"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 470 B |
11
static/images/annual-report/2021/Wave Icon.svg
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
<svg width="141" height="141" viewBox="0 0 141 141" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.5299 59.118C4.09587 49.539 23.4809 46.307 33.9619 65.077C39.9529 75.806 47.4989 66.568 50.5959 58.6C54.6719 48.113 61.2059 34.629 64.9679 26.454C69.2169 17.223 80.8339 23.259 77.2779 31.589C72.4369 42.927 62.2769 61.184 65.2849 62.993C68.5279 64.944 78.7549 39.745 87.3249 25.737C93.5709 15.526 103.693 21.27 99.1699 32.423C93.7549 45.776 80.8319 63.782 83.0039 65.519C85.1899 67.266 96.2049 49.848 102.776 39.196C108.129 30.52 118.156 37.52 113.285 45.446C105.951 57.378 90.4799 75.999 92.4289 77.674C94.9919 79.875 103.488 67.459 108.532 61.259C114.638 53.752 122.122 60.594 117.444 67.03C109.198 78.374 88.1299 105.083 82.1219 112.407C67.9449 129.685 26.1389 116.422 26.1459 87.615C26.1509 72.198 14.1899 64.57 10.5299 59.118Z" fill="#825331"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M39.2769 29.084C35.4959 31.686 33.4309 36.139 33.8879 40.705Z" fill="#825331"/>
|
||||||
|
<path d="M39.2769 29.084C35.4959 31.686 33.4309 36.139 33.8879 40.705" stroke="#FEFEFE" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M32.0345 20.0059C25.1905 24.7149 21.4535 32.7759 22.2805 41.0419Z" fill="#825331"/>
|
||||||
|
<path d="M32.0345 20.0059C25.1905 24.7149 21.4535 32.7759 22.2805 41.0419" stroke="#FEFEFE" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M111.028 102.443C115.432 100.804 118.594 96.898 119.281 92.25Z" fill="#825331"/>
|
||||||
|
<path d="M111.028 102.443C115.432 100.804 118.594 96.898 119.281 92.25" stroke="#FEFEFE" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M115.952 113.264C123.924 110.297 129.648 103.226 130.89 94.8125Z" fill="#825331"/>
|
||||||
|
<path d="M115.952 113.264C123.924 110.297 129.648 103.226 130.89 94.8125" stroke="#FEFEFE" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 2 KiB |
BIN
static/images/annual-report/2021/mitch_headshot.jpg
Normal file
After Width: | Height: | Size: 56 KiB |
10
static/images/annual-report/2021/quote (white).svg
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
<svg width="124" height="113" viewBox="0 0 124 113" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<g clip-path="url(#clip0_444_14717)">
|
||||||
|
<path opacity="0.4" d="M123.25 17.5378C123.25 20.8506 121.167 23.7496 118.25 25.3216C113.051 28.1245 108.897 31.8643 105.787 36.541C103.238 40.6292 101.545 45.2544 100.708 50.4166C100 54.7778 103.674 58.3849 108.092 58.3849H115.25C119.668 58.3849 123.25 61.9667 123.25 66.3849V104.002C123.25 108.42 119.668 112.002 115.25 112.002H83.7962C79.3779 112.002 75.7962 108.42 75.7962 104.002V58.3849C75.7962 50.9712 77.0616 44.0871 79.5925 37.7325C82.1233 31.3778 85.54 25.8176 89.8425 21.0516C94.145 16.0209 99.0801 11.7845 104.648 8.3424C107.356 6.74109 110.146 5.28303 113.019 3.96823C117.952 1.70997 123.25 5.55569 123.25 10.9815V17.5378ZM47.7036 17.5378C47.7036 20.8506 45.6202 23.7496 42.7042 25.3216C37.5049 28.1245 33.3504 31.8643 30.2406 36.541C27.6921 40.6292 25.999 45.2544 25.1614 50.4166C24.4537 54.7778 28.1279 58.3849 32.5462 58.3849H39.7036C44.1219 58.3849 47.7036 61.9667 47.7036 66.3849V104.002C47.7036 108.42 44.1219 112.002 39.7036 112.002H8.24987C3.83159 112.002 0.249878 108.42 0.249878 104.002V58.3849C0.249878 50.9712 1.51531 44.0871 4.04617 37.7325C6.57704 31.3778 9.99371 25.8176 14.2962 21.0516C18.5986 16.0209 23.5338 11.7845 29.1017 8.3424C31.8098 6.74109 34.5999 5.28303 37.4723 3.96823C42.4058 1.70997 47.7036 5.55569 47.7036 10.9815V17.5378Z" fill="white" fill-opacity="0.25"/>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<clipPath id="clip0_444_14717">
|
||||||
|
<rect width="123" height="112" fill="white" transform="translate(0.249878 0.00195312)"/>
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.6 KiB |
BIN
static/images/annual-report/2021/shawna_headshot.jpg
Normal file
After Width: | Height: | Size: 39 KiB |