Down Deep - Scratch Camp 2017 Page (#1409)
* Add files via upload * Create downdeep.jsx * Delete downdeep.jsx * Delete downdeep.scss * Delete l10n.json * Delete downdeep.jsx * Create dd.jsx * Rename dd.jsx to filler.jsx * Add files via upload * Delete dd.jsx * Delete filler.jsx * Create filler.jsx * Add files via upload * Delete filler.jsx * Update routes.json * whoops * travis * Update downdeep.jsx * Update downdeep.scss * Update downdeep.scss * Update _colors.scss * what i get for rushing * Update downdeep.jsx * Update l10n.json * thisandagain's changes * Carl's Changes * carl's changes * carl's changes * Update downdeep.jsx * Rename downdeep.jsx to camp.jsx * Rename downdeep.scss to camp.scss * Rename src/views/downdeep/camp.jsx to src/views/camp/camp.jsx * Rename src/views/downdeep/camp.scss to src/views/camp/camp.scss * Rename src/views/downdeep/l10n.json to src/views/camp/l10n.json * Update camp.jsx * Add files via upload * Update camp.jsx * Update camp.scss * Update l10n.json * Create filler * Add files via upload * Delete bubbles.svg * Delete dolphin.svg * Delete fish-divider.svg * Delete fish-divider2.svg * Delete map.svg * Delete ocean-bottom.svg * Delete ocean-top.svg * Delete treasure.svg * Update camp.scss * Update camp.scss * Update camp.scss * Update camp.jsx * whoops * Update camp.scss * Update l10n.json * Update camp.scss * Update camp.jsx * Update _colors.scss * Update camp.scss * Update camp.scss * Update camp.scss * Update camp.scss * Update _colors.scss * Update camp.scss * Update camp.scss
|
@ -34,3 +34,6 @@ $link-blue: $ui-blue;
|
|||
$splash-green: #9c0;
|
||||
$splash-pink: #c2479d;
|
||||
$splash-blue: #199ed7;
|
||||
|
||||
/* Down Deep */
|
||||
$dd-darkblue: hsla(195, 72.4, 17.1, 1);
|
||||
|
|
|
@ -97,6 +97,13 @@
|
|||
"view": "dmca/dmca",
|
||||
"title": "DMCA"
|
||||
},
|
||||
{
|
||||
"name": "camp",
|
||||
"pattern": "^/camp/?$",
|
||||
"routeAlias": "/camp/?$",
|
||||
"view": "camp/camp",
|
||||
"title": "Down Deep"
|
||||
},
|
||||
{
|
||||
"name": "educator-landing",
|
||||
"pattern": "^/educators/?$",
|
||||
|
|
138
src/views/camp/camp.jsx
Normal file
|
@ -0,0 +1,138 @@
|
|||
var React = require('react');
|
||||
var injectIntl = require('react-intl').injectIntl;
|
||||
var FormattedMessage = require('react-intl').FormattedMessage;
|
||||
var FormattedHTMLMessage = require('react-intl').FormattedHTMLMessage;
|
||||
var render = require('../../lib/render.jsx');
|
||||
var TitleBanner = require('../../components/title-banner/title-banner.jsx');
|
||||
var FlexRow = require('../../components/flex-row/flex-row.jsx');
|
||||
|
||||
var Page = require('../../components/page/www/page.jsx');
|
||||
|
||||
require('./camp.scss');
|
||||
|
||||
var Camp = injectIntl(React.createClass({
|
||||
type: 'Camp',
|
||||
render: function () {
|
||||
return (
|
||||
<div>
|
||||
<TitleBanner className="masthead mod-blue-bg">
|
||||
<img src="/images/camp/ocean-top.svg" alt="Top" className="topImg"/>
|
||||
<div className="inner">
|
||||
<div className="title-content">
|
||||
<h1 className="title-banner-h1">
|
||||
<FormattedMessage id='camp.title' />
|
||||
</h1>
|
||||
<h4 className="intro title-banner-p">
|
||||
<FormattedMessage id='camp.dates' />
|
||||
</h4>
|
||||
<img src="/images/camp/bubbles.svg" alt="Bubbles" className="bubbles"/>
|
||||
</div>
|
||||
</div>
|
||||
</TitleBanner>
|
||||
<div className="gradient1">
|
||||
<section id="particpate">
|
||||
<div className="inner">
|
||||
<center>
|
||||
<h2><FormattedMessage id='camp.welcome' /></h2>
|
||||
<p id="intro">
|
||||
<FormattedHTMLMessage id='camp.welcomeIntro' />
|
||||
</p>
|
||||
</center>
|
||||
<center>
|
||||
<img src="/images/camp/fish-divider.svg" className="fishDivider" />
|
||||
</center>
|
||||
<h2>
|
||||
<center><FormattedMessage id='camp.part1Dates' /></center>
|
||||
</h2>
|
||||
<center>
|
||||
<FlexRow className="sidebar-row">
|
||||
<div className="body-copy column">
|
||||
<h3><FormattedMessage id='camp.detailsTitle' /></h3>
|
||||
<p>
|
||||
<FormattedMessage id='camp.part1Details' />
|
||||
</p>
|
||||
</div>
|
||||
<div className="sidebar column">
|
||||
<h3><FormattedMessage id='camp.particpateTitle' /></h3>
|
||||
<p>
|
||||
<FormattedHTMLMessage id='camp.part1Particpate' />
|
||||
</p>
|
||||
</div>
|
||||
</FlexRow>
|
||||
<center>
|
||||
<img src="/images/camp/fish-divider2.svg" className="fishDivider" />
|
||||
</center>
|
||||
<h2>
|
||||
<center><FormattedMessage id='camp.part2Dates' /></center>
|
||||
</h2>
|
||||
<FlexRow className="sidebar-row">
|
||||
<div className="body-copy column">
|
||||
<h3><FormattedMessage id='camp.detailsTitle' /></h3>
|
||||
<p>
|
||||
<FormattedMessage id='camp.part2Details' />
|
||||
</p>
|
||||
</div>
|
||||
<div className="sidebar column">
|
||||
<h3><FormattedMessage id='camp.particpateTitle' /></h3>
|
||||
<p>
|
||||
<FormattedHTMLMessage id='camp.part2Particpate' />
|
||||
</p>
|
||||
</div>
|
||||
</FlexRow>
|
||||
<center>
|
||||
<img src="/images/camp/fish-divider.svg" className="fishDivider" />
|
||||
</center>
|
||||
<h2>
|
||||
<center><FormattedMessage id='camp.part3Dates' /></center>
|
||||
</h2>
|
||||
<FlexRow className="sidebar-row">
|
||||
<div className="body-copy column">
|
||||
<h3><FormattedMessage id='camp.detailsTitle' /></h3>
|
||||
<p>
|
||||
<FormattedMessage id='camp.part3Details' />
|
||||
</p>
|
||||
</div>
|
||||
<div className="sidebar column">
|
||||
<h3><FormattedMessage id='camp.particpateTitle' /></h3>
|
||||
<p>
|
||||
<FormattedHTMLMessage id='camp.part3Particpate' />
|
||||
</p>
|
||||
</div>
|
||||
</FlexRow>
|
||||
</center>
|
||||
</div>
|
||||
</section>
|
||||
<img src="/images/camp/bubbles.svg" alt="Bubbles" className="bubbles"/>
|
||||
<section id="info">
|
||||
<div className="inner">
|
||||
<center><h2><FormattedMessage id='camp.helpfulInfo' /></h2></center>
|
||||
<FlexRow className="info-content">
|
||||
<div>
|
||||
<img src="/images/camp/dolphin.svg" alt="Dolphin" className="infoImg" />
|
||||
<p>
|
||||
<FormattedHTMLMessage id='camp.infoCounselors' />
|
||||
</p>
|
||||
</div>
|
||||
<div>
|
||||
<img src="/images/camp/treasure.svg" className="infoImg" />
|
||||
<p>
|
||||
<FormattedMessage id='camp.infoPart3' />
|
||||
</p>
|
||||
</div>
|
||||
<div>
|
||||
<img src="/images/camp/map.svg" className="infoImg" />
|
||||
<p>
|
||||
<FormattedMessage id='camp.infoTime' />
|
||||
</p>
|
||||
</div>
|
||||
</FlexRow>
|
||||
</div>
|
||||
</section>
|
||||
<img src="/images/camp/ocean-bottom.svg" alt="Top" className="bottomImg"/>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}));
|
||||
|
||||
render(<Page><Camp /></Page>, document.getElementById('app'));
|
90
src/views/camp/camp.scss
Normal file
|
@ -0,0 +1,90 @@
|
|||
@import "../../colors";
|
||||
@import "../../frameless";
|
||||
|
||||
#view {
|
||||
padding: 0;
|
||||
}
|
||||
.topImg {
|
||||
margin-top: -10px;
|
||||
padding: 0;
|
||||
width: 100%;
|
||||
}
|
||||
.bubbles {
|
||||
display: block;
|
||||
margin: 0 auto;
|
||||
margin-top: .938em;
|
||||
width: 45%;
|
||||
}
|
||||
.inner a {
|
||||
text-decoration: underline;
|
||||
}
|
||||
.inner a:hover {
|
||||
text-decoration: underline;
|
||||
color: $ui-light-gray;
|
||||
}
|
||||
h3 {
|
||||
border-bottom: 1px solid $ui-border;
|
||||
}
|
||||
.flex-row {
|
||||
&.sidebar-row {
|
||||
align-items: flex-start;
|
||||
|
||||
.body-copy {
|
||||
width: $cols5;
|
||||
}
|
||||
|
||||
.sidebar {
|
||||
width: $cols5;
|
||||
}
|
||||
}
|
||||
}
|
||||
#particpate {
|
||||
position: relative;
|
||||
|
||||
h2, h3, p {
|
||||
color: $ui-white;
|
||||
}
|
||||
}
|
||||
#info {
|
||||
h2, p {
|
||||
color: $ui-white;
|
||||
}
|
||||
}
|
||||
.info-content {
|
||||
div {
|
||||
max-width: $cols4;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
.infoImg {
|
||||
transform: scale(.8);
|
||||
height: 120px;
|
||||
-webkit-transform: scale(.8); /* Saf3.1+, Chrome */
|
||||
-moz-transform: scale(.8); /* FF3.5+ */
|
||||
-ms-transform: scale(.8); /* IE9 */
|
||||
-o-transform: scale(.8); /* Opera 10.5+ */
|
||||
}
|
||||
.bottomImg {
|
||||
margin-bottom: -5px;
|
||||
margin-left: -4px;
|
||||
padding: 0;
|
||||
width: 102%;
|
||||
}
|
||||
.title-banner {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
.fishDivider {
|
||||
margin: .875em 0;
|
||||
}
|
||||
.gradient1 {
|
||||
position: relative;
|
||||
background: $ui-blue; /* For browsers that do not support gradients */
|
||||
background: -webkit-linear-gradient($ui-blue, $dd-darkblue); /* For Safari 5.1 to 6.0 */
|
||||
background: -o-linear-gradient($ui-blue, $dd-darkblue); /* For Opera 11.1 to 12.0 */
|
||||
background: -moz-linear-gradient($ui-blue, $dd-darkblue); /* For Firefox 3.6 to 15 */
|
||||
background: linear-gradient($ui-blue, $dd-darkblue);
|
||||
.intro {
|
||||
max-width: $cols9;
|
||||
}
|
||||
}
|
21
src/views/camp/l10n.json
Normal file
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"camp.title": "Scratch Camp: Down Deep",
|
||||
"camp.dates": "July 24th - August 13th",
|
||||
"camp.welcome": "Welcome to Scratch Camp 2017!",
|
||||
"camp.welcomeIntro": "Come take a dive into the ocean with us and design your very own creation. Your creation can be anything you might find in the ocean - real or made up! <br /> In this year’s camp, dive down deep with us in these three parts:",
|
||||
"camp.part1Dates":"Part 1 (July 24th - July 30th)",
|
||||
"camp.detailsTitle": "Details:",
|
||||
"camp.part1Details": "Create a project introducing us to a character, real or imagined, that lives in the ocean. You could create a monster from the depths, a cute little starfish, a taco eating shark, or anything else you can imagine.",
|
||||
"camp.particpateTitle": "How to Particpate:",
|
||||
"camp.part1Particpate": "Part 1 of camp will take place in the <a href=\"https://scratch.mit.edu/studios/4160302/\">Main Camp Cabin studio</a>. Here you can ask questions, view other Scratchers' creations, and submit your own. Go to the studio to learn more!",
|
||||
"camp.part2Dates": "Part 2 (July 31st - August 6th)",
|
||||
"camp.part2Details": "Now make your character interactive! Does your character have questions to ask us? What happens when you click on it? Does it have any special powers? And more!",
|
||||
"camp.part2Particpate":"Part 2 of camp will also take place in the <a href=\"https://scratch.mit.edu/studios/4160302/\">Main Camp Cabin studio</a>. Here you can ask questions, view other Scratchers' creations, and submit your own. Go to the studio to learn more!",
|
||||
"camp.part3Dates": "Part 3 (August 7th - August 13th)",
|
||||
"camp.part3Details": "Create a project using your own creation along with other Scratchers’ creations. It could be a game, story, animation, or anything you come up with!",
|
||||
"camp.part3Particpate":"The <a href=\"https://scratch.mit.edu/studios/4160301/\">Final Projects Camp Cabin studio</a> will hold part 3 of this year's Scratch Camp. Here you can submit your final project, give feedback to others, and celebrate Scratch Camp! Swim on over to the studio when part 3 comes out!",
|
||||
"camp.helpfulInfo": "Helpful Information",
|
||||
"camp.infoCounselors": "The <a href=\"https://scratch.mit.edu/studios/4160300//\">Camp Counselors studio</a> offers a variety of examples for your ocean creation. You can also directly communicate with the Counselors there.",
|
||||
"camp.infoPart3":"Remember, in part 3, you must use some other creations made for this Scratch Camp. Use their part 2 project to learn about the character's personality!",
|
||||
"camp.infoTime":"Don't worry if you aren't around the whole time, you can always participate in whatever part you are available for! Just have fun and dive deep!"
|
||||
}
|
59
static/images/camp/bubbles.svg
Normal file
|
@ -0,0 +1,59 @@
|
|||
<svg version="1.1" width="360" height="35" viewBox="0 3 360 35" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Exported by Scratch - http://scratch.mit.edu/ -->
|
||||
<g id="ID0.24890166614204645" transform="matrix(1, 0, 0, 1, 0, -7)">
|
||||
<path id="ID0.5602954248897731" fill="#96D4FF" stroke="#4F7E83" stroke-width="2" d="M 157 285 C 160.862 285 164.362 286.569 166.897 289.103 C 169.431 291.638 171 295.138 171 299 C 171 302.862 169.431 306.362 166.897 308.897 C 164.362 311.431 160.862 313 157 313 C 153.138 313 149.638 311.431 147.103 308.897 C 144.569 306.362 143 302.862 143 299 C 143 295.138 144.569 291.638 147.103 289.103 C 149.638 286.569 153.138 285 157 285 Z " transform="matrix(0.1124344989657402, 0.3958204686641693, -0.3958204686641693, 0.1124344989657402, 321.35, -65.4)"/>
|
||||
<path id="ID0.026205711532384157" fill="#FFFFFF" stroke="none" d="M 157.875 290.250 C 159.220 290.250 160.439 290.656 161.321 291.312 C 162.204 291.969 162.750 292.875 162.750 293.875 C 162.750 294.875 162.204 295.781 161.321 296.438 C 160.439 297.094 159.220 297.500 157.875 297.500 C 156.530 297.500 155.311 297.094 154.429 296.438 C 153.546 295.781 153 294.875 153 293.875 C 153 292.875 153.546 291.969 154.429 291.312 C 155.311 290.656 156.530 290.250 157.875 290.250 Z " transform="matrix(0.12684917449951172, 0.4465666711330414, -0.4465666711330414, 0.12684917449951172, 334.3, -78.85)"/>
|
||||
</g>
|
||||
<g id="ID0.24890166614204645">
|
||||
<path id="ID0.5602954248897731" fill="#96D4FF" stroke="#4F7E83" stroke-width="2" d="M 157 285 C 160.862 285 164.362 286.569 166.897 289.103 C 169.431 291.638 171 295.138 171 299 C 171 302.862 169.431 306.362 166.897 308.897 C 164.362 311.431 160.862 313 157 313 C 153.138 313 149.638 311.431 147.103 308.897 C 144.569 306.362 143 302.862 143 299 C 143 295.138 144.569 291.638 147.103 289.103 C 149.638 286.569 153.138 285 157 285 Z " transform="matrix(-0.1124344989657402, 0.3958204686641693, 0.3958204686641693, 0.1124344989657402, 148.85, -82.6)"/>
|
||||
<path id="ID0.026205711532384157" fill="#FFFFFF" stroke="none" d="M 157.875 290.250 C 159.220 290.250 160.439 290.656 161.321 291.312 C 162.204 291.969 162.750 292.875 162.750 293.875 C 162.750 294.875 162.204 295.781 161.321 296.438 C 160.439 297.094 159.220 297.500 157.875 297.500 C 156.530 297.500 155.311 297.094 154.429 296.438 C 153.546 295.781 153 294.875 153 293.875 C 153 292.875 153.546 291.969 154.429 291.312 C 155.311 290.656 156.530 290.250 157.875 290.250 Z " transform="matrix(-0.12684917449951172, 0.4465666711330414, 0.4465666711330414, 0.12684917449951172, 135.9, -96.05)"/>
|
||||
</g>
|
||||
<g id="ID0.24890166614204645" transform="matrix(1, 0, 0, 1, 0, -2)">
|
||||
<path id="ID0.5602954248897731" fill="#96D4FF" stroke="#4F7E83" stroke-width="2" d="M 157 285 C 160.862 285 164.362 286.569 166.897 289.103 C 169.431 291.638 171 295.138 171 299 C 171 302.862 169.431 306.362 166.897 308.897 C 164.362 311.431 160.862 313 157 313 C 153.138 313 149.638 311.431 147.103 308.897 C 144.569 306.362 143 302.862 143 299 C 143 295.138 144.569 291.638 147.103 289.103 C 149.638 286.569 153.138 285 157 285 Z " transform="matrix(0.13655994832515717, 0.36841848492622375, 0.36841848492622375, -0.13655994832515717, 144.15, 1)"/>
|
||||
<path id="ID0.026205711532384157" fill="#FFFFFF" stroke="none" d="M 157.875 290.250 C 159.220 290.250 160.439 290.656 161.321 291.312 C 162.204 291.969 162.750 292.875 162.750 293.875 C 162.750 294.875 162.204 295.781 161.321 296.438 C 160.439 297.094 159.220 297.500 157.875 297.500 C 156.530 297.500 155.311 297.094 154.429 296.438 C 153.546 295.781 153 294.875 153 293.875 C 153 292.875 153.546 291.969 154.429 291.312 C 155.311 290.656 156.530 290.250 157.875 290.250 Z " transform="matrix(0.15406763553619385, 0.4156516194343567, 0.4156516194343567, -0.15406763553619385, 126.55, -2)"/>
|
||||
</g>
|
||||
<g id="ID0.24890166614204645" transform="matrix(1, 0, 0, 1, 4, -5)">
|
||||
<path id="ID0.5602954248897731" fill="#96D4FF" stroke="#4F7E83" stroke-width="2" d="M 157 285 C 160.862 285 164.362 286.569 166.897 289.103 C 169.431 291.638 171 295.138 171 299 C 171 302.862 169.431 306.362 166.897 308.897 C 164.362 311.431 160.862 313 157 313 C 153.138 313 149.638 311.431 147.103 308.897 C 144.569 306.362 143 302.862 143 299 C 143 295.138 144.569 291.638 147.103 289.103 C 149.638 286.569 153.138 285 157 285 Z " transform="matrix(0.429103821516037, 0.4236290454864502, 0.4236290454864502, -0.429103821516037, 99.7, 88.45)"/>
|
||||
<path id="ID0.026205711532384157" fill="#FFFFFF" stroke="none" d="M 157.875 290.250 C 159.220 290.250 160.439 290.656 161.321 291.312 C 162.204 291.969 162.750 292.875 162.750 293.875 C 162.750 294.875 162.204 295.781 161.321 296.438 C 160.439 297.094 159.220 297.500 157.875 297.500 C 156.530 297.500 155.311 297.094 154.429 296.438 C 153.546 295.781 153 294.875 153 293.875 C 153 292.875 153.546 291.969 154.429 291.312 C 155.311 290.656 156.530 290.250 157.875 290.250 Z " transform="matrix(0.4841171205043793, 0.47794046998023987, 0.47794046998023987, -0.4841171205043793, 73.25, 95.65)"/>
|
||||
</g>
|
||||
<g id="ID0.24890166614204645" transform="matrix(1, 0, 0, 1, 0, -4)">
|
||||
<path id="ID0.5602954248897731" fill="#96D4FF" stroke="#4F7E83" stroke-width="2" d="M 157 285 C 160.862 285 164.362 286.569 166.897 289.103 C 169.431 291.638 171 295.138 171 299 C 171 302.862 169.431 306.362 166.897 308.897 C 164.362 311.431 160.862 313 157 313 C 153.138 313 149.638 311.431 147.103 308.897 C 144.569 306.362 143 302.862 143 299 C 143 295.138 144.569 291.638 147.103 289.103 C 149.638 286.569 153.138 285 157 285 Z " transform="matrix(-0.12975932657718658, -0.45681169629096985, 0.45681169629096985, -0.12975932657718658, 210.85, 130.7)"/>
|
||||
<path id="ID0.026205711532384157" fill="#FFFFFF" stroke="none" d="M 157.875 290.250 C 159.220 290.250 160.439 290.656 161.321 291.312 C 162.204 291.969 162.750 292.875 162.750 293.875 C 162.750 294.875 162.204 295.781 161.321 296.438 C 160.439 297.094 159.220 297.500 157.875 297.500 C 156.530 297.500 155.311 297.094 154.429 296.438 C 153.546 295.781 153 294.875 153 293.875 C 153 292.875 153.546 291.969 154.429 291.312 C 155.311 290.656 156.530 290.250 157.875 290.250 Z " transform="matrix(-0.14639513194561005, -0.5153772830963135, 0.5153772830963135, -0.14639513194561005, 195.85, 146.25)"/>
|
||||
</g>
|
||||
<g id="ID0.24890166614204645" transform="matrix(1, 0, 0, 1, 2, 2)">
|
||||
<path id="ID0.5602954248897731" fill="#96D4FF" stroke="#4F7E83" stroke-width="2" d="M 157 285 C 160.862 285 164.362 286.569 166.897 289.103 C 169.431 291.638 171 295.138 171 299 C 171 302.862 169.431 306.362 166.897 308.897 C 164.362 311.431 160.862 313 157 313 C 153.138 313 149.638 311.431 147.103 308.897 C 144.569 306.362 143 302.862 143 299 C 143 295.138 144.569 291.638 147.103 289.103 C 149.638 286.569 153.138 285 157 285 Z " transform="matrix(-0.5274384021759033, 0.37245088815689087, -0.37245088815689087, -0.5274384021759033, 542.9, 113.6)"/>
|
||||
<path id="ID0.026205711532384157" fill="#FFFFFF" stroke="none" d="M 157.875 290.250 C 159.220 290.250 160.439 290.656 161.321 291.312 C 162.204 291.969 162.750 292.875 162.750 293.875 C 162.750 294.875 162.204 295.781 161.321 296.438 C 160.439 297.094 159.220 297.500 157.875 297.500 C 156.530 297.500 155.311 297.094 154.429 296.438 C 153.546 295.781 153 294.875 153 293.875 C 153 292.875 153.546 291.969 154.429 291.312 C 155.311 290.656 156.530 290.250 157.875 290.250 Z " transform="matrix(-0.5950586795806885, 0.42020100355148315, -0.42020100355148315, -0.5950586795806885, 569.65, 125.8)"/>
|
||||
</g>
|
||||
<g id="ID0.24890166614204645" transform="matrix(1, 0, 0, 1, 0, -3)">
|
||||
<path id="ID0.5602954248897731" fill="#96D4FF" stroke="#4F7E83" stroke-width="2" d="M 157 285 C 160.862 285 164.362 286.569 166.897 289.103 C 169.431 291.638 171 295.138 171 299 C 171 302.862 169.431 306.362 166.897 308.897 C 164.362 311.431 160.862 313 157 313 C 153.138 313 149.638 311.431 147.103 308.897 C 144.569 306.362 143 302.862 143 299 C 143 295.138 144.569 291.638 147.103 289.103 C 149.638 286.569 153.138 285 157 285 Z " transform="matrix(0.13655994832515717, -0.36841848492622375, 0.36841848492622375, 0.13655994832515717, -123.9, 43)"/>
|
||||
<path id="ID0.026205711532384157" fill="#FFFFFF" stroke="none" d="M 157.875 290.250 C 159.220 290.250 160.439 290.656 161.321 291.312 C 162.204 291.969 162.750 292.875 162.750 293.875 C 162.750 294.875 162.204 295.781 161.321 296.438 C 160.439 297.094 159.220 297.500 157.875 297.500 C 156.530 297.500 155.311 297.094 154.429 296.438 C 153.546 295.781 153 294.875 153 293.875 C 153 292.875 153.546 291.969 154.429 291.312 C 155.311 290.656 156.530 290.250 157.875 290.250 Z " transform="matrix(0.15406763553619385, -0.4156516194343567, 0.4156516194343567, 0.15406763553619385, -141.5, 46.05)"/>
|
||||
</g>
|
||||
<g id="ID0.24890166614204645" transform="matrix(1, 0, 0, 1, 7, -4)">
|
||||
<path id="ID0.5602954248897731" fill="#96D4FF" stroke="#4F7E83" stroke-width="2" d="M 157 285 C 160.862 285 164.362 286.569 166.897 289.103 C 169.431 291.638 171 295.138 171 299 C 171 302.862 169.431 306.362 166.897 308.897 C 164.362 311.431 160.862 313 157 313 C 153.138 313 149.638 311.431 147.103 308.897 C 144.569 306.362 143 302.862 143 299 C 143 295.138 144.569 291.638 147.103 289.103 C 149.638 286.569 153.138 285 157 285 Z " transform="matrix(0.429103821516037, -0.4236290454864502, 0.4236290454864502, 0.429103821516037, -168.25, -44.45)"/>
|
||||
<path id="ID0.026205711532384157" fill="#FFFFFF" stroke="none" d="M 157.875 290.250 C 159.220 290.250 160.439 290.656 161.321 291.312 C 162.204 291.969 162.750 292.875 162.750 293.875 C 162.750 294.875 162.204 295.781 161.321 296.438 C 160.439 297.094 159.220 297.500 157.875 297.500 C 156.530 297.500 155.311 297.094 154.429 296.438 C 153.546 295.781 153 294.875 153 293.875 C 153 292.875 153.546 291.969 154.429 291.312 C 155.311 290.656 156.530 290.250 157.875 290.250 Z " transform="matrix(0.4841171205043793, -0.47794046998023987, 0.47794046998023987, 0.4841171205043793, -194.75, -51.65)"/>
|
||||
</g>
|
||||
<g id="ID0.24890166614204645" transform="matrix(1, 0, 0, 1, 0, -3)">
|
||||
<path id="ID0.5602954248897731" fill="#96D4FF" stroke="#4F7E83" stroke-width="2" d="M 157 285 C 160.862 285 164.362 286.569 166.897 289.103 C 169.431 291.638 171 295.138 171 299 C 171 302.862 169.431 306.362 166.897 308.897 C 164.362 311.431 160.862 313 157 313 C 153.138 313 149.638 311.431 147.103 308.897 C 144.569 306.362 143 302.862 143 299 C 143 295.138 144.569 291.638 147.103 289.103 C 149.638 286.569 153.138 285 157 285 Z " transform="matrix(-0.1124344989657402, 0.3958204686641693, 0.3958204686641693, 0.1124344989657402, -28.75, -82.1)"/>
|
||||
<path id="ID0.026205711532384157" fill="#FFFFFF" stroke="none" d="M 157.875 290.250 C 159.220 290.250 160.439 290.656 161.321 291.312 C 162.204 291.969 162.750 292.875 162.750 293.875 C 162.750 294.875 162.204 295.781 161.321 296.438 C 160.439 297.094 159.220 297.500 157.875 297.500 C 156.530 297.500 155.311 297.094 154.429 296.438 C 153.546 295.781 153 294.875 153 293.875 C 153 292.875 153.546 291.969 154.429 291.312 C 155.311 290.656 156.530 290.250 157.875 290.250 Z " transform="matrix(-0.12684917449951172, 0.4465666711330414, 0.4465666711330414, 0.12684917449951172, -41.7, -95.55)"/>
|
||||
</g>
|
||||
<g id="ID0.24890166614204645" transform="matrix(1, 0, 0, 1, 0, -3)">
|
||||
<path id="ID0.5602954248897731" fill="#96D4FF" stroke="#4F7E83" stroke-width="2" d="M 157 285 C 160.862 285 164.362 286.569 166.897 289.103 C 169.431 291.638 171 295.138 171 299 C 171 302.862 169.431 306.362 166.897 308.897 C 164.362 311.431 160.862 313 157 313 C 153.138 313 149.638 311.431 147.103 308.897 C 144.569 306.362 143 302.862 143 299 C 143 295.138 144.569 291.638 147.103 289.103 C 149.638 286.569 153.138 285 157 285 Z " transform="matrix(0.13655994832515717, 0.36841848492622375, 0.36841848492622375, -0.13655994832515717, -33.5, 1.5)"/>
|
||||
<path id="ID0.026205711532384157" fill="#FFFFFF" stroke="none" d="M 157.875 290.250 C 159.220 290.250 160.439 290.656 161.321 291.312 C 162.204 291.969 162.750 292.875 162.750 293.875 C 162.750 294.875 162.204 295.781 161.321 296.438 C 160.439 297.094 159.220 297.500 157.875 297.500 C 156.530 297.500 155.311 297.094 154.429 296.438 C 153.546 295.781 153 294.875 153 293.875 C 153 292.875 153.546 291.969 154.429 291.312 C 155.311 290.656 156.530 290.250 157.875 290.250 Z " transform="matrix(0.15406763553619385, 0.4156516194343567, 0.4156516194343567, -0.15406763553619385, -51.1, -1.5)"/>
|
||||
</g>
|
||||
<g id="ID0.24890166614204645" transform="matrix(1, 0, 0, 1, 2, -7)">
|
||||
<path id="ID0.5602954248897731" fill="#96D4FF" stroke="#4F7E83" stroke-width="2" d="M 157 285 C 160.862 285 164.362 286.569 166.897 289.103 C 169.431 291.638 171 295.138 171 299 C 171 302.862 169.431 306.362 166.897 308.897 C 164.362 311.431 160.862 313 157 313 C 153.138 313 149.638 311.431 147.103 308.897 C 144.569 306.362 143 302.862 143 299 C 143 295.138 144.569 291.638 147.103 289.103 C 149.638 286.569 153.138 285 157 285 Z " transform="matrix(0.429103821516037, 0.4236290454864502, 0.4236290454864502, -0.429103821516037, -77.9, 88.95)"/>
|
||||
<path id="ID0.026205711532384157" fill="#FFFFFF" stroke="none" d="M 157.875 290.250 C 159.220 290.250 160.439 290.656 161.321 291.312 C 162.204 291.969 162.750 292.875 162.750 293.875 C 162.750 294.875 162.204 295.781 161.321 296.438 C 160.439 297.094 159.220 297.500 157.875 297.500 C 156.530 297.500 155.311 297.094 154.429 296.438 C 153.546 295.781 153 294.875 153 293.875 C 153 292.875 153.546 291.969 154.429 291.312 C 155.311 290.656 156.530 290.250 157.875 290.250 Z " transform="matrix(0.4841171205043793, 0.47794046998023987, 0.47794046998023987, -0.4841171205043793, -104.35, 96.15)"/>
|
||||
</g>
|
||||
<g id="ID0.24890166614204645" transform="matrix(1, 0, 0, 1, 6, -3)">
|
||||
<path id="ID0.5602954248897731" fill="#96D4FF" stroke="#4F7E83" stroke-width="2" d="M 157 285 C 160.862 285 164.362 286.569 166.897 289.103 C 169.431 291.638 171 295.138 171 299 C 171 302.862 169.431 306.362 166.897 308.897 C 164.362 311.431 160.862 313 157 313 C 153.138 313 149.638 311.431 147.103 308.897 C 144.569 306.362 143 302.862 143 299 C 143 295.138 144.569 291.638 147.103 289.103 C 149.638 286.569 153.138 285 157 285 Z " transform="matrix(0.1124344989657402, -0.3958204686641693, -0.3958204686641693, -0.1124344989657402, 234.1, 109.4)"/>
|
||||
<path id="ID0.026205711532384157" fill="#FFFFFF" stroke="none" d="M 157.875 290.250 C 159.220 290.250 160.439 290.656 161.321 291.312 C 162.204 291.969 162.750 292.875 162.750 293.875 C 162.750 294.875 162.204 295.781 161.321 296.438 C 160.439 297.094 159.220 297.500 157.875 297.500 C 156.530 297.500 155.311 297.094 154.429 296.438 C 153.546 295.781 153 294.875 153 293.875 C 153 292.875 153.546 291.969 154.429 291.312 C 155.311 290.656 156.530 290.250 157.875 290.250 Z " transform="matrix(0.12684917449951172, -0.4465666711330414, -0.4465666711330414, -0.12684917449951172, 247.05, 122.85)"/>
|
||||
</g>
|
||||
<g id="ID0.24890166614204645" transform="matrix(1, 0, 0, 1, 21, 1)">
|
||||
<path id="ID0.5602954248897731" fill="#96D4FF" stroke="#4F7E83" stroke-width="2" d="M 157 285 C 160.862 285 164.362 286.569 166.897 289.103 C 169.431 291.638 171 295.138 171 299 C 171 302.862 169.431 306.362 166.897 308.897 C 164.362 311.431 160.862 313 157 313 C 153.138 313 149.638 311.431 147.103 308.897 C 144.569 306.362 143 302.862 143 299 C 143 295.138 144.569 291.638 147.103 289.103 C 149.638 286.569 153.138 285 157 285 Z " transform="matrix(-0.5274384021759033, 0.37245088815689087, -0.37245088815689087, -0.5274384021759033, 365.3, 114.1)"/>
|
||||
<path id="ID0.026205711532384157" fill="#FFFFFF" stroke="none" d="M 157.875 290.250 C 159.220 290.250 160.439 290.656 161.321 291.312 C 162.204 291.969 162.750 292.875 162.750 293.875 C 162.750 294.875 162.204 295.781 161.321 296.438 C 160.439 297.094 159.220 297.500 157.875 297.500 C 156.530 297.500 155.311 297.094 154.429 296.438 C 153.546 295.781 153 294.875 153 293.875 C 153 292.875 153.546 291.969 154.429 291.312 C 155.311 290.656 156.530 290.250 157.875 290.250 Z " transform="matrix(-0.5950586795806885, 0.42020100355148315, -0.42020100355148315, -0.5950586795806885, 392, 126.3)"/>
|
||||
</g>
|
||||
<g id="ID0.24890166614204645" transform="matrix(1, 0, 0, 1, 0, -7)">
|
||||
<path id="ID0.5602954248897731" fill="#96D4FF" stroke="#4F7E83" stroke-width="2" d="M 157 285 C 160.862 285 164.362 286.569 166.897 289.103 C 169.431 291.638 171 295.138 171 299 C 171 302.862 169.431 306.362 166.897 308.897 C 164.362 311.431 160.862 313 157 313 C 153.138 313 149.638 311.431 147.103 308.897 C 144.569 306.362 143 302.862 143 299 C 143 295.138 144.569 291.638 147.103 289.103 C 149.638 286.569 153.138 285 157 285 Z " transform="matrix(-0.1124344989657402, -0.3958204686641693, 0.3958204686641693, -0.1124344989657402, 61.6, 126.6)"/>
|
||||
<path id="ID0.026205711532384157" fill="#FFFFFF" stroke="none" d="M 157.875 290.250 C 159.220 290.250 160.439 290.656 161.321 291.312 C 162.204 291.969 162.750 292.875 162.750 293.875 C 162.750 294.875 162.204 295.781 161.321 296.438 C 160.439 297.094 159.220 297.500 157.875 297.500 C 156.530 297.500 155.311 297.094 154.429 296.438 C 153.546 295.781 153 294.875 153 293.875 C 153 292.875 153.546 291.969 154.429 291.312 C 155.311 290.656 156.530 290.250 157.875 290.250 Z " transform="matrix(-0.12684917449951172, -0.4465666711330414, 0.4465666711330414, -0.12684917449951172, 48.65, 140.05)"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 17 KiB |
33
static/images/camp/dolphin.svg
Normal file
|
@ -0,0 +1,33 @@
|
|||
<svg version="1.1" width="209" height="131" viewBox="1 4 209 131" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Exported by Scratch - http://scratch.mit.edu/ -->
|
||||
<g id="ID0.3197706500068307" transform="matrix(0.9889600276947021, 0, 0, 0.9889600276947021, 0.4, -0.4)">
|
||||
<g id="ID0.24890166614204645">
|
||||
<path id="ID0.5602954248897731" fill="#96D4FF" stroke="#4F7E83" stroke-width="2" d="M 157 285 C 160.862 285 164.362 286.569 166.897 289.103 C 169.431 291.638 171 295.138 171 299 C 171 302.862 169.431 306.362 166.897 308.897 C 164.362 311.431 160.862 313 157 313 C 153.138 313 149.638 311.431 147.103 308.897 C 144.569 306.362 143 302.862 143 299 C 143 295.138 144.569 291.638 147.103 289.103 C 149.638 286.569 153.138 285 157 285 Z " transform="matrix(0.34718596935272217, 0.39651766419410706, -0.39651766419410706, 0.34718596935272217, 151.35, -131.6)"/>
|
||||
<path id="ID0.026205711532384157" fill="#FFFFFF" stroke="none" d="M 157.875 290.250 C 159.220 290.250 160.439 290.656 161.321 291.312 C 162.204 291.969 162.750 292.875 162.750 293.875 C 162.750 294.875 162.204 295.781 161.321 296.438 C 160.439 297.094 159.220 297.500 157.875 297.500 C 156.530 297.500 155.311 297.094 154.429 296.438 C 153.546 295.781 153 294.875 153 293.875 C 153 292.875 153.546 291.969 154.429 291.312 C 155.311 290.656 156.530 290.250 157.875 290.250 Z " transform="matrix(0.3916969895362854, 0.4473532736301422, -0.4473532736301422, 0.3916969895362854, 159, -154.55)"/>
|
||||
</g>
|
||||
<g id="ID0.13005974842235446">
|
||||
<path id="ID0.042643893510103226" fill="#0074B4" stroke="none" stroke-linecap="round" d="M 345.500 43.500 C 352.226 40.920 364.285 37.186 367 41 C 369.641 44.721 359.934 52.951 357 58.750 C 356.240 60.259 356.356 62.300 355.315 63.522 C 354.274 64.744 352.836 65.500 351.250 65.500 C 349.664 65.500 348.226 64.744 347.185 63.522 C 346.144 62.300 346.457 60.133 345.500 58.750 C 343.657 56.129 338.232 54.934 338 51.500 C 338.232 47.912 342.204 44.763 345.500 43.500 Z " transform="matrix(1.0197949409484863, 0.4661940932273865, -0.4661940932273865, 1.0197949409484863, -210.65, -162.35)"/>
|
||||
<path id="ID0.2613167092204094" fill="#0084C9" stroke="none" stroke-linecap="round" d="M 331.500 58 C 340.311 58.032 349.029 59.803 357.500 62 C 362.281 63.275 365.981 65.969 370.500 67 C 377.140 68.536 383.821 69.391 390.500 69 C 394.861 68.748 398.933 66.835 402.500 64.500 C 406.907 61.595 414.259 49.896 414 52.500 C 413.607 57.068 406.879 72.390 401 81 C 398.213 85.071 393.472 87.202 389.500 90 C 384.456 93.045 379.690 97.290 374 98.500 C 364.068 100.616 353.576 99.708 343.500 99 C 336.495 98.501 330.107 94.690 323 94 C 317.366 93.448 312.435 92.811 306 94.500 C 297.405 96.586 289.223 100.280 281 103.500 C 276.539 105.248 272.143 107.884 267.500 108.500 C 265.141 108.817 262.298 107.412 261 105.500 C 259.797 103.705 260.835 100.810 262 99 C 263.311 96.993 265.622 96.206 268 95 C 271.622 93.188 275.736 92.491 279.500 91 C 282.122 89.969 284.940 89.188 286.500 87 C 290.451 82.471 291.701 76.148 295.500 71.500 C 298.871 67.379 303.008 63.674 308.172 61.737 C 315.215 59.103 323.241 57.971 331.500 58 Z " transform="matrix(1.0197949409484863, 0.4661940932273865, -0.4661940932273865, 1.0197949409484863, -214.6, -174)"/>
|
||||
<path id="ID0.2703171642497182" fill="#0084C9" stroke="none" stroke-linecap="round" d="M 402 11 C 403.979 11.181 402.002 18.582 403.250 22 C 404.314 25.262 407.082 27.571 408.750 30.500 C 409.510 31.851 408.932 33.874 410 35 C 411.060 36.113 413.210 35.527 414.750 36.250 C 416.348 37.139 417.679 38.552 419.250 39.750 C 421.646 41.579 423.648 44.040 426.250 45.500 C 428.623 47.076 434.615 47.495 434 48.750 C 433.250 50.288 426.954 52.513 423.250 52 C 416.053 51.002 407.785 49.418 402.750 44 C 397.201 38.286 394.443 29.644 394.250 21.500 C 394.148 17.156 399.740 10.797 402 11 Z " transform="matrix(1.0197949409484863, 0.4661940932273865, -0.4661940932273865, 1.0197949409484863, -210.65, -162.35)"/>
|
||||
<path id="ID0.23363662092015147" fill="#0084C9" stroke="none" stroke-linecap="round" d="M 307.500 93 C 313.403 90.529 320.479 92.813 326.750 92.750 C 328.416 92.733 330.398 91.938 331.750 92.900 C 333.256 93.980 333.414 96.219 334.500 97.750 C 336.083 100.422 337.077 103.815 339.750 105.500 C 343.355 107.777 349.277 106.663 352 109.250 C 353.261 110.451 349.368 112.456 347.500 113.250 C 343.730 114.855 339.599 116.125 335.500 116 C 330.373 115.845 325.149 114.261 320.500 112.500 C 317.694 111.436 315.228 109.616 313 107.500 C 310.995 105.590 309.505 103.098 308.500 100.500 C 307.596 98.150 305.232 93.951 307.500 93 Z " transform="matrix(1.0197949409484863, 0.4661940932273865, -0.4661940932273865, 1.0197949409484863, -179.1, -149.15)"/>
|
||||
<path id="ID0.8955960888415575" fill="#B9DFF5" stroke="none" stroke-linecap="round" d="M 348.500 94.900 C 356.828 94.074 364.724 90.502 372.500 87.400 C 376.682 85.723 379.988 83.161 383.500 80.750 C 386.324 78.993 389.383 77.500 391.500 74.900 C 395.721 69.694 398.543 63.542 401.750 57.750 C 403.789 54.415 406.633 44.911 407.250 47.500 C 408.660 53.743 409.066 66.843 406.250 75.750 C 403.404 84.750 398.305 93.835 390.750 99.500 C 379.373 108.022 365.480 112.541 352 116.750 C 344.690 119.030 337.034 119.506 329.500 119.250 C 324.033 119.065 318.555 117.327 313.250 115.750 C 307.591 114.069 301.808 112.016 296.250 109.750 C 292.977 108.418 289.993 106.012 286.500 105.250 C 282.117 104.219 278.641 105.941 274.750 105.750 C 266.381 104.854 264.327 102.788 264.500 100.400 C 265.089 97.425 269.799 95.466 273 93.900 C 277.344 91.790 282.608 90.777 287.500 89.400 C 292.113 88.108 295.629 86.648 299.750 85.750 C 302.836 85.308 305.215 85.260 309 85.400 C 315.030 85.720 321.085 86.643 327 87.900 C 330.872 88.727 333.830 89.999 337.250 91 C 340.991 92.330 344.181 95.296 348.500 94.900 Z " transform="matrix(1.0197949409484863, 0.4661940932273865, -0.4661940932273865, 1.0197949409484863, -210.65, -162.35)"/>
|
||||
<path id="ID0.20290940441191196" fill="#006CA8" stroke="none" stroke-linecap="round" d="M 313.250 105.500 C 315.749 104.614 320.363 107.191 323.750 107.750 C 325.565 108.048 327.412 108.249 329.250 108.250 C 330.819 108.246 332.742 106.764 334.250 107.500 C 335.557 108.150 335.324 110.181 336.250 111.250 C 338.053 113.334 340.371 114.872 342.500 116.500 C 343.703 117.623 347.044 118.488 346.250 119.500 C 344.815 121.315 341.196 121.780 338.500 122.250 C 336.824 122.543 335.027 122.256 333.250 122 C 331.258 121.586 329.170 121.154 327.250 120.250 C 325.037 119.207 323.110 117.572 321.250 116 C 319.341 114.138 317.694 112.065 316 110 C 314.891 108.642 311.923 105.985 313.250 105.500 Z " transform="matrix(1.0197949409484863, 0.4661940932273865, -0.4661940932273865, 1.0197949409484863, -213.7, -149.55)"/>
|
||||
<path id="ID0.2685543983243406" fill="#720402" stroke="none" stroke-linecap="round" d="M 262.500 111.500 C 266.045 110.482 269.759 110.083 273.250 109 C 275.819 108.203 278.469 107.443 280.750 106 C 282.626 104.898 283.891 101.399 285.500 101.500 C 286.710 101.604 287.072 105.331 286.250 106.750 C 285.368 108.256 283.169 108.481 281.500 109 C 278.612 109.897 275.645 110.605 272.750 111.500 C 269.605 112.473 266.389 113.190 263.350 114.350 C 259.377 116.028 254.644 120.035 251.750 120 C 250.335 119.982 253.099 115.774 254.750 114.500 C 256.953 112.800 259.871 112.318 262.500 111.500 Z " transform="matrix(1.0197949409484863, 0.4661940932273865, -0.4661940932273865, 1.0197949409484863, -190.85, -177.7)"/>
|
||||
<path id="ID0.020179532933980227" fill="#FFFFFF" stroke="none" d="M 327.750 102.500 C 327.750 102.500 327.750 102.514 327.750 102.537 C 327.750 102.559 327.750 102.591 327.750 102.625 C 327.750 102.659 327.750 102.691 327.750 102.713 C 327.750 102.736 327.750 102.750 327.750 102.750 C 327.750 102.750 327.750 102.736 327.750 102.713 C 327.750 102.691 327.750 102.659 327.750 102.625 C 327.750 102.591 327.750 102.559 327.750 102.537 C 327.750 102.514 327.750 102.500 327.750 102.500 Z " transform="matrix(1.0197949409484863, 0.4661940932273865, -0.4661940932273865, 1.0197949409484863, -228.8, -250.8)"/>
|
||||
<g id="ID0.01900169951841235">
|
||||
<path id="ID0.1263936124742031" fill="#FFFFFF" stroke="none" d="M 287.875 89.750 C 288.944 89.750 289.913 90.184 290.614 90.886 C 291.316 91.587 291.750 92.556 291.750 93.625 C 291.750 94.694 291.316 95.663 290.614 96.364 C 289.913 97.066 288.944 97.500 287.875 97.500 C 286.806 97.500 285.837 97.066 285.136 96.364 C 284.434 95.663 284 94.694 284 93.625 C 284 92.556 284.434 91.587 285.136 90.886 C 285.837 90.184 286.806 89.750 287.875 89.750 Z " transform="matrix(1.0197949409484863, 0.4661940932273865, -0.4661940932273865, 1.0197949409484863, -190.25, -177.35)"/>
|
||||
<path id="ID0.3772318004630506" fill="#612C2F" stroke="none" d="M 288.375 91.250 C 289.168 91.250 289.887 91.572 290.407 92.093 C 290.928 92.613 291.250 93.332 291.250 94.125 C 291.250 94.918 290.928 95.637 290.407 96.157 C 289.887 96.678 289.168 97 288.375 97 C 287.582 97 286.863 96.678 286.343 96.157 C 285.822 95.637 285.500 94.918 285.500 94.125 C 285.500 93.332 285.822 92.613 286.343 92.093 C 286.863 91.572 287.582 91.250 288.375 91.250 Z " transform="matrix(1.1971505880355835, 0.5472713112831116, -0.5472713112831116, 1.1971505880355835, -233.85, -217.65)"/>
|
||||
<path id="ID0.5327137666754425" fill="#FFFFFF" stroke="none" d="M 297.125 91 C 297.435 91 297.717 91.126 297.920 91.330 C 298.124 91.533 298.250 91.815 298.250 92.125 C 298.250 92.435 298.124 92.717 297.920 92.920 C 297.717 93.124 297.435 93.250 297.125 93.250 C 296.815 93.250 296.533 93.124 296.330 92.920 C 296.126 92.717 296 92.435 296 92.125 C 296 91.815 296.126 91.533 296.330 91.330 C 296.533 91.126 296.815 91 297.125 91 Z " transform="matrix(1.0197949409484863, 0.4661940932273865, -0.4661940932273865, 1.0197949409484863, -200.4, -180.75)"/>
|
||||
<path id="ID0.5327137666754425" fill="#FFFFFF" stroke="none" d="M 297.125 91 C 297.435 91 297.717 91.126 297.920 91.330 C 298.124 91.533 298.250 91.815 298.250 92.125 C 298.250 92.435 298.124 92.717 297.920 92.920 C 297.717 93.124 297.435 93.250 297.125 93.250 C 296.815 93.250 296.533 93.124 296.330 92.920 C 296.126 92.717 296 92.435 296 92.125 C 296 91.815 296.126 91.533 296.330 91.330 C 296.533 91.126 296.815 91 297.125 91 Z " transform="matrix(0.6207447052001953, 0.28377029299736023, -0.28377029299736023, 0.6207447052001953, -98.25, -88.75)"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ID0.24890166614204645">
|
||||
<path id="ID0.5602954248897731" fill="#96D4FF" stroke="#4F7E83" stroke-width="2" d="M 157 285 C 160.862 285 164.362 286.569 166.897 289.103 C 169.431 291.638 171 295.138 171 299 C 171 302.862 169.431 306.362 166.897 308.897 C 164.362 311.431 160.862 313 157 313 C 153.138 313 149.638 311.431 147.103 308.897 C 144.569 306.362 143 302.862 143 299 C 143 295.138 144.569 291.638 147.103 289.103 C 149.638 286.569 153.138 285 157 285 Z " transform="matrix(-0.243867889046669, -0.2785191237926483, 0.2785191237926483, -0.243867889046669, 60.8, 144)"/>
|
||||
<path id="ID0.026205711532384157" fill="#FFFFFF" stroke="none" d="M 157.875 290.250 C 159.220 290.250 160.439 290.656 161.321 291.312 C 162.204 291.969 162.750 292.875 162.750 293.875 C 162.750 294.875 162.204 295.781 161.321 296.438 C 160.439 297.094 159.220 297.500 157.875 297.500 C 156.530 297.500 155.311 297.094 154.429 296.438 C 153.546 295.781 153 294.875 153 293.875 C 153 292.875 153.546 291.969 154.429 291.312 C 155.311 290.656 156.530 290.250 157.875 290.250 Z " transform="matrix(-0.2751329839229584, -0.3142266869544983, 0.3142266869544983, -0.2751329839229584, 55.4, 160.05)"/>
|
||||
</g>
|
||||
<g id="ID0.24890166614204645">
|
||||
<path id="ID0.5602954248897731" fill="#96D4FF" stroke="#4F7E83" stroke-width="2" d="M 157 285 C 160.862 285 164.362 286.569 166.897 289.103 C 169.431 291.638 171 295.138 171 299 C 171 302.862 169.431 306.362 166.897 308.897 C 164.362 311.431 160.862 313 157 313 C 153.138 313 149.638 311.431 147.103 308.897 C 144.569 306.362 143 302.862 143 299 C 143 295.138 144.569 291.638 147.103 289.103 C 149.638 286.569 153.138 285 157 285 Z " transform="matrix(0.3110176622867584, -0.3120478689670563, 0.3120478689670563, 0.3110176622867584, -45.9, -31.85)"/>
|
||||
<path id="ID0.026205711532384157" fill="#FFFFFF" stroke="none" d="M 157.875 290.250 C 159.220 290.250 160.439 290.656 161.321 291.312 C 162.204 291.969 162.750 292.875 162.750 293.875 C 162.750 294.875 162.204 295.781 161.321 296.438 C 160.439 297.094 159.220 297.500 157.875 297.500 C 156.530 297.500 155.311 297.094 154.429 296.438 C 153.546 295.781 153 294.875 153 293.875 C 153 292.875 153.546 291.969 154.429 291.312 C 155.311 290.656 156.530 290.250 157.875 290.250 Z " transform="matrix(0.35089173913002014, -0.35205399990081787, 0.35205399990081787, 0.35089173913002014, -65.3, -36.95)"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 13 KiB |
113
static/images/camp/fish-divider.svg
Normal file
|
@ -0,0 +1,113 @@
|
|||
<svg version="1.1" width="350" height="42" viewBox="-1 -1 350 42" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Exported by Scratch - http://scratch.mit.edu/ -->
|
||||
<g id="ID0.13694870378822088" transform="matrix(1, 0, 0, 1, -18, -161)">
|
||||
<g id="ID0.25953190866857767" transform="matrix(1, 0, 0, 1, 18, 161)">
|
||||
<path id="ID0.3160514016635716" fill="#D5A800" stroke="#D5A800" stroke-width="2" stroke-linecap="round" d="M 228.500 170.500 C 232.296 171.045 234.928 166.021 238.500 164.500 C 244.363 162.018 249.561 159.369 255.500 158.500 C 263.756 157.296 273.426 154.998 281.500 158.500 C 284.947 160.118 284.069 166.694 282.500 170.500 C 276.935 183.952 269.421 196.908 260 208 C 257.643 210.777 253.443 209.705 250.500 209 C 246.810 208.115 243 205.846 240.500 203.500 C 237.036 200.239 234.439 195.804 232 192 C 230.063 188.998 230.197 183.777 227 182.500 C 223.954 181.286 221.027 186.757 218 187 C 216.344 187.120 214.318 185.587 214 184 C 213.553 181.667 215.317 179.576 215.500 177 C 215.654 175.013 215.763 173.125 215.500 171 C 215.101 167.658 212.121 162.820 214 161 C 215.804 159.393 220.031 161.471 222.500 163 C 225.352 164.776 225.344 170.044 228.500 170.500 Z " transform="matrix(0.30471888184547424, 0, 0, 0.30471888184547424, 27.6, -25.65)"/>
|
||||
<path id="ID0.9766952991485596" fill="#D8D8D8" stroke="#D8D8D8" stroke-width="2" stroke-linecap="round" d="M 290.500 197.500 C 292.456 197.202 293.658 200.076 294.750 201.750 C 296.095 203.816 297.174 205.979 298 208.250 C 298.339 209.208 299.173 210.364 298.500 211 C 297.151 212.280 295.027 212.021 293.250 212.250 C 292.108 212.401 290.604 213.089 289.500 212.500 C 288.045 211.723 286.661 210.141 286 208.500 C 285.325 206.832 284.807 204.601 285.500 202.750 C 286.443 200.600 288.088 197.870 290.500 197.500 Z " transform="matrix(0.30471888184547424, 0, 0, 0.30471888184547424, 27.6, -25.65)"/>
|
||||
<path id="ID0.6063170093111694" fill="#FE9300" stroke="#FE9300" stroke-width="2" stroke-linecap="round" d="M 300.500 175.500 C 303.824 176.015 304.433 180.896 305.500 184 C 306.650 187.374 307.105 190.628 307.500 194 C 307.707 195.763 306.954 197.752 307.500 199.500 C 308.208 201.768 311.452 203.242 311 205 C 310.702 206.742 307.630 207.115 306 206.500 C 299.804 204.135 294.380 199.486 288.500 197 C 286.486 196.176 281.809 198.331 282 196 C 282.430 190.842 286.750 186.296 290 182.500 C 292.718 179.312 296.425 174.909 300.500 175.500 Z " transform="matrix(0.30471888184547424, 0, 0, 0.30471888184547424, 27.6, -25.65)"/>
|
||||
<path id="ID0.5334869814105332" fill="#156699" stroke="#156699" stroke-width="2" stroke-linecap="round" d="M 265 163 C 270.277 162.856 276.060 162.766 281.500 163.500 C 284.928 163.969 288.488 164.066 291.500 165.500 C 294.875 167.713 298.878 170.291 300 174 C 300.540 175.819 296.648 176.215 295 177.500 C 292.825 179.049 292.177 180.377 291 182 C 289.220 184.317 288.372 186.893 287.500 189.500 C 286.271 193.196 285.626 197.456 285.500 201.500 C 285.389 205.388 290.713 211.634 287.500 213.500 C 282.648 216.306 275.044 212.420 269 211 C 264.894 210.033 260.405 208.953 256.500 207 C 253.103 205.309 249.592 202.983 246.500 200.500 C 243.891 198.401 240.887 196.710 239 194 C 236.809 190.837 236.700 186.141 234.500 182.500 C 233.104 180.491 227.599 180.198 228.500 177.500 C 229.985 173.129 235.382 171.096 239.500 169 C 242.901 167.246 247.046 165.889 251 165 C 255.263 164.034 260.297 163.115 265 163 Z " transform="matrix(0.30471888184547424, 0, 0, 0.30471888184547424, 27.6, -25.65)"/>
|
||||
<path id="ID0.3526467867195606" fill="#000000" stroke="#000000" stroke-width="2" d="M 309 174.750 C 311.223 175.749 311.602 179.499 311.250 182 C 311.012 183.676 308.411 184.060 307.500 185.500 C 306.431 187.187 306.056 189.289 305 191 C 304.319 192.096 302.555 192.704 302 194 C 301.465 195.202 301.829 196.540 302.500 197.500 C 303.890 199.458 305.332 201.379 307.250 202.500 C 310.070 203.963 316.694 204.435 316.250 205 C 315.799 205.572 308.176 207.213 304.750 205.500 C 301.626 203.929 301.234 199.066 299.250 196 C 298.752 195.232 297.668 195.218 297.250 194.500 C 296.296 192.829 294.998 190.589 295.250 188.500 C 295.517 186.264 297.173 184.181 298.500 182.250 C 299.584 180.659 300.676 178.739 302.250 177.500 C 304.280 176.164 306.827 173.790 309 174.750 Z " transform="matrix(0.30471888184547424, 0, 0, 0.30471888184547424, 25.85, -24.75)"/>
|
||||
<path id="ID0.5240444806404412" fill="#FFFFFF" stroke="none" d="M 299 188.750 C 300.793 188.750 302.418 189.450 303.595 190.582 C 304.772 191.713 305.500 193.276 305.500 195 C 305.500 196.724 304.772 198.287 303.595 199.418 C 302.418 200.550 300.793 201.250 299 201.250 C 297.207 201.250 295.582 200.550 294.405 199.418 C 293.228 198.287 292.500 196.724 292.500 195 C 292.500 193.276 293.228 191.713 294.405 190.582 C 295.582 189.450 297.207 188.750 299 188.750 Z " transform="matrix(0.30471888184547424, 0, 0, 0.30471888184547424, 27.15, -26.5)"/>
|
||||
<path id="ID0.7714696801267564" fill="none" stroke="#000000" stroke-width="2" stroke-linecap="round" d="M 296.750 192 C 295.799 191.704 297.205 193.337 297.500 194 C 297.661 194.361 296.122 193.558 295.750 193 C 295.378 192.442 295.140 191.566 295.500 191 C 295.882 190.400 296.852 189.956 297.500 190.250 C 298.148 190.544 297.865 191.652 298.250 192.250 C 298.632 192.844 299.814 193.109 299.750 193.750 C 299.689 194.359 298.623 194.501 298 194.750 C 297.363 195.005 296.641 195.496 296 195.250 C 295.332 194.993 294.976 194.179 294.750 193.500 C 294.539 192.868 294.750 192.166 294.750 191.500 C 294.750 191.250 294.488 190.512 294.750 190.750 Z " transform="matrix(0.30471888184547424, 0, 0, 0.30471888184547424, 27.6, -25.65)"/>
|
||||
<path id="ID0.9720923146232963" fill="none" stroke="#000000" stroke-width="2" stroke-linecap="round" d="M 297.500 191.750 C 297.593 193.090 297.485 193.631 297.500 193.750 C 297.504 193.780 297.758 193.750 297.750 193.750 Z " transform="matrix(0.30471888184547424, 0, 0, 0.30471888184547424, 27.6, -25.65)"/>
|
||||
<path id="ID0.47732368437573314" fill="#000000" stroke="none" d="M 259.250 197 C 259.250 197 259.250 197.014 259.250 197.037 C 259.250 197.059 259.250 197.091 259.250 197.125 C 259.250 197.159 259.250 197.191 259.250 197.213 C 259.250 197.236 259.250 197.250 259.250 197.250 C 259.250 197.250 259.250 197.236 259.250 197.213 C 259.250 197.191 259.250 197.159 259.250 197.125 C 259.250 197.091 259.250 197.059 259.250 197.037 C 259.250 197.014 259.250 197 259.250 197 Z " transform="matrix(0.30471888184547424, 0, 0, 0.30471888184547424, 27.6, -25.65)"/>
|
||||
<path id="ID0.5334869814105332" fill="#0F4B67" stroke="#0F4B67" stroke-width="2" stroke-linecap="round" d="M 236.250 177.200 C 238.854 179.376 237.988 183.530 239.250 186.450 C 240.091 188.157 241.403 189.526 242.500 190.950 C 243.660 192.440 244.821 193.817 246.250 195.200 C 247.778 196.613 249.504 197.748 251.250 198.950 C 253.088 200.158 255.012 201.205 257 202.200 C 259.932 203.587 262.948 204.831 266 205.950 C 268.888 206.954 271.791 208.113 274.750 208.950 C 275.995 209.309 277.273 208.763 278.500 208.950 C 279.209 209.070 279.995 209.469 280.750 209.700 C 283.093 210.422 287.308 210.735 288 212.200 C 288.485 213.252 284.964 214.822 283.250 214.700 C 278.288 214.401 273.669 212.357 269 211 C 264.804 209.779 260.405 208.953 256.500 207 C 253.103 205.309 249.592 202.983 246.500 200.500 C 243.891 198.401 240.887 196.710 239 194 C 236.809 190.837 236.700 186.141 234.500 182.500 C 233.104 180.491 228.044 178.893 228.500 177.500 C 228.967 176.097 234.267 175.546 236.250 177.200 Z " transform="matrix(0.30471888184547424, 0, 0, 0.30471888184547424, 27.6, -25.65)"/>
|
||||
</g>
|
||||
<g id="ID0.22971575800329447" transform="matrix(1, 0, 0, 1, 18, 161)">
|
||||
<path id="ID0.15444352198392153" fill="#156699" stroke="none" stroke-linecap="round" d="M 126.750 43.750 C 128.348 45.765 129.717 47.882 130.500 50.250 C 131.316 52.737 131.595 55.560 131.500 58.250 C 131.256 60.648 130.695 63.056 129.500 65.250 C 127.247 69.389 123.905 75.692 121.250 76.750 C 119.664 77.388 120.932 71.285 120.500 68.500 C 119.932 64.368 119.965 59.994 118.250 56 C 116.810 52.615 112.682 48.940 111.500 47.250 C 110.942 46.443 116.084 51.782 115 50.500 C 112.929 48.325 108.839 44.232 105.500 41.250 C 102.424 38.400 94.788 34.860 95.750 33 C 96.739 31.095 104.856 32.542 109.250 33.500 C 113.082 34.337 116.882 35.927 120.250 38 C 122.691 39.498 124.954 41.490 126.750 43.750 Z " transform="matrix(0.28325462341308594, -0.02896539680659771, 0.02896539680659771, 0.28325462341308594, 24.3, 5.95)"/>
|
||||
<path id="ID0.8846706752665341" fill="#FF6500" stroke="none" stroke-linecap="round" d="M 172.500 29.500 C 178.602 27.258 187.615 25.571 192 28.500 C 194.644 30.274 188.165 35.642 187 39.500 C 185.618 43.893 184.287 48.257 185 52.500 C 185.505 57.130 188.107 61.250 190.500 65 C 192.326 67.923 197.665 70.406 197 73 C 196.241 75.721 190.319 75.731 187 76.500 C 181.614 77.758 175.978 79.257 170.500 78.500 C 163.472 77.519 156.742 75.557 150.500 72.500 C 147.143 70.844 143.945 67.639 142 64 C 140.897 61.903 141.296 59.150 142 56.500 C 143.207 52.047 144.606 47.242 148 44 C 155.139 37.915 163.532 32.796 172.500 29.500 Z " transform="matrix(0.28325462341308594, -0.02896539680659771, 0.02896539680659771, 0.28325462341308594, 19.05, 4.85)"/>
|
||||
<path id="ID0.5688502001576126" fill="#FFB327" stroke="none" stroke-linecap="round" d="M 204.500 33 C 208.445 35.703 212.402 38.772 215.500 42.500 C 218.069 45.590 218.613 49.646 220.500 53.500 C 221.487 55.588 223.784 57.725 223 60 C 221.878 63.205 218.022 64.681 215 66.500 C 210.394 69.251 205.183 72.154 200 72.500 C 197.008 72.705 194.204 69.732 192.500 67.500 C 189.243 63.246 186.370 57.963 185.500 53 C 184.630 48.036 186.072 42.607 187.500 38 C 188.610 34.428 189.899 29.447 193.500 28.500 C 197.268 27.514 201.033 30.987 204.500 33 Z " transform="matrix(0.28325462341308594, -0.02896539680659771, 0.02896539680659771, 0.28325462341308594, 18.9, 5)"/>
|
||||
<path id="ID0.7559871361590922" fill="#156699" stroke="none" stroke-linecap="round" d="M 173 15.500 C 176.552 16.907 180.326 18.676 183 21.500 C 184.522 23.107 185.307 25.191 185 27 C 184.828 27.978 182.764 26.746 181.500 27 C 179.223 27.589 177.103 29.116 174.500 29.500 C 172.202 29.841 169.330 31.101 167.500 29.500 C 165.210 27.472 166.888 23.450 165.500 20.500 C 164.074 17.447 158.294 12.962 160 12 C 162.394 10.668 168.833 13.856 173 15.500 Z " transform="matrix(0.28325462341308594, -0.02896539680659771, 0.02896539680659771, 0.28325462341308594, 19.35, 5.1)"/>
|
||||
<path id="ID0.7559871361590922" fill="#156699" stroke="none" stroke-linecap="round" d="M 173 15.500 C 176.552 16.907 180.326 18.676 183 21.500 C 184.522 23.107 185.307 25.191 185 27 C 184.828 27.978 182.764 26.746 181.500 27 C 179.223 27.589 177.103 29.116 174.500 29.500 C 172.202 29.841 169.330 31.101 167.500 29.500 C 165.210 27.472 166.888 23.450 165.500 20.500 C 164.074 17.447 158.294 12.962 160 12 C 162.394 10.668 168.833 13.856 173 15.500 Z " transform="matrix(0.14023293554782867, -0.07412896305322647, -0.07412896305322647, -0.14023293554782867, 52.55, 37.65)"/>
|
||||
<path id="ID0.7559871361590922" fill="#156699" stroke="none" stroke-linecap="round" d="M 173 15.500 C 176.552 16.907 180.326 18.676 183 21.500 C 184.522 23.107 185.307 25.191 185 27 C 184.828 27.978 182.764 26.746 181.500 27 C 179.223 27.589 177.103 29.116 174.500 29.500 C 172.202 29.841 169.330 31.101 167.500 29.500 C 165.210 27.472 166.888 23.450 165.500 20.500 C 164.074 17.447 158.294 12.962 160 12 C 162.394 10.668 168.833 13.856 173 15.500 Z " transform="matrix(0.10009558498859406, -0.05291184037923813, -0.05291184037923813, -0.10009558498859406, 54.9, 34.1)"/>
|
||||
<g id="ID0.200826785992831">
|
||||
<path id="ID0.45205234037712216" fill="#FFFFFF" stroke="none" d="M 204.500 44.500 C 206.914 44.500 209.102 45.480 210.686 47.064 C 212.270 48.648 213.250 50.836 213.250 53.250 C 213.250 55.664 212.270 57.852 210.686 59.436 C 209.102 61.020 206.914 62 204.500 62 C 202.086 62 199.898 61.020 198.314 59.436 C 196.730 57.852 195.750 55.664 195.750 53.250 C 195.750 50.836 196.730 48.648 198.314 47.064 C 199.898 45.480 202.086 44.500 204.500 44.500 Z " transform="matrix(0.311580091714859, -0.031861938536167145, 0.031861938536167145, 0.311580091714859, 12.95, 3.2)"/>
|
||||
<path id="ID0.5682034506462514" fill="#000000" stroke="none" stroke-linecap="round" d="M 203.875 48.500 C 205.157 48.976 204.318 51.441 205.250 52.500 C 206.370 53.493 208.958 52.758 209.500 54.125 C 210.023 55.455 208.870 57.083 207.851 58.101 C 206.833 59.120 205.427 59.750 203.875 59.750 C 202.323 59.750 200.917 59.120 199.899 58.101 C 198.880 57.083 198.250 55.677 198.250 54.125 C 198.250 52.573 198.880 51.167 199.899 50.149 C 200.917 49.130 202.534 48.005 203.875 48.500 Z " transform="matrix(0.28325462341308594, -0.02896539680659771, 0.02896539680659771, 0.28325462341308594, 18.9, 4.05)"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ID0.1571304271928966" transform="matrix(1, 0, 0, 1, 18, 161)">
|
||||
<path id="ID0.7064403598196805" fill="#FEC93E" stroke="none" stroke-linecap="round" d="M 230.500 231.250 C 232.089 230.404 233.955 230.107 235.750 229.750 C 239.143 229.437 246.327 227.829 246 229.250 C 245.664 230.712 237.995 233.834 234.500 236.750 C 232.851 237.966 231.079 239.499 230.750 241.500 C 230.449 243.316 231.738 244.963 232.500 246.750 C 233.166 248.329 234.408 249.641 234.500 251.500 C 234.557 252.983 233.538 254.494 232.500 255.500 C 230.939 257.007 229.103 258.843 227 259 C 224.115 259.216 221.342 257.296 218.750 256.250 C 215.228 254.832 209.293 254.712 208.500 251.250 C 207.636 247.481 212.246 244.050 215.250 241.250 C 219.692 237.110 225.144 234.104 230.500 231.250 Z " transform="matrix(0.2853225767612457, 0.03976035863161087, -0.03976035863161087, 0.2853225767612457, -35.95, -67.2)"/>
|
||||
<path id="ID0.2519802562892437" fill="#FEC93E" stroke="none" stroke-linecap="round" d="M 219 308.500 C 224.760 307.795 231.044 304.882 236.750 306 C 238.538 306.382 235.074 309.758 234 311.500 C 232.415 314.057 230.331 316.075 229.250 318.750 C 228.325 321.031 226.007 325.339 228.250 325.500 C 233.882 326.339 244.565 320.145 245 320.750 C 245.435 321.355 236.538 328.638 231.500 330.750 C 228.038 332.201 223.795 332.145 220.250 331.500 C 217.750 331.046 215.067 329.515 213.750 327.500 C 211.805 324.524 211.477 320.567 210.750 317.250 C 210.174 314.628 207.968 311.182 209.750 309.250 C 211.824 307.004 215.933 308.876 219 308.500 Z " transform="matrix(0.2853225767612457, 0.03976035863161087, -0.03976035863161087, 0.2853225767612457, -37.2, -65.95)"/>
|
||||
<path id="ID0.4992571324110031" fill="#FEC93E" stroke="none" stroke-linecap="round" d="M 306.750 303.250 C 309.969 303.881 313.159 305.951 314.750 309 C 316.356 312.103 315.458 316.080 314.750 319.500 C 314.433 321.010 313.367 322.249 312.250 323.250 C 311.106 324.270 308.236 326.302 308.250 325.250 C 308.236 323.462 312.053 320.396 312.250 317.500 C 312.420 314.965 311.358 311.543 309 310.250 C 306.428 308.976 303.218 310.748 300.250 311.250 C 297.284 311.753 294.557 312.879 291.500 313.500 C 287.462 314.317 283.418 315.303 279.250 315.250 C 275.169 315.197 271.269 314.167 267.250 312.750 C 264.812 311.888 262.817 310.141 260.750 308.500 C 258.908 307.031 255.304 305.290 256 303.250 C 256.994 300.378 261.565 300.124 264 298.250 C 265.724 296.921 266.590 293.214 268.750 293.750 C 271.622 294.464 271.776 299.211 274.250 300.750 C 276.856 302.372 280.237 302.562 283.250 302.750 C 291.060 303.236 299.084 301.748 306.750 303.250 Z " transform="matrix(0.2853225767612457, 0.03976035863161087, -0.03976035863161087, 0.2853225767612457, -37.2, -69.15)"/>
|
||||
<path id="ID0.4335831757634878" fill="#FEC93E" stroke="none" stroke-linecap="round" d="M 282.500 262.750 C 285.688 261.366 287.997 258.398 290.250 255.750 C 292.265 253.384 293.587 250.562 294.750 247.750 C 295.278 246.843 294.708 245.666 295.250 244.750 C 296.579 242.530 299.956 239.060 300.500 239 C 301.044 238.940 298.976 242.572 298.750 244.500 C 297.971 248.520 298.021 252.648 297.500 256.750 C 297.007 260.619 297.696 265.387 295.250 268.250 C 291.785 272.297 285.866 273.682 281.250 276 C 277.985 277.635 274.556 279.222 271.250 280.500 C 268.180 281.688 264.988 283.844 261.750 283.250 C 258.239 282.605 255.596 279.603 252.750 277.500 C 251.401 276.331 248.618 275.106 249.250 273.500 C 250.412 270.548 253.816 268.764 256.750 267.500 C 259.821 266.181 263.268 266.197 266.500 265.500 C 271.844 264.615 277.551 264.898 282.500 262.750 Z " transform="matrix(0.2853225767612457, 0.03976035863161087, -0.03976035863161087, 0.2853225767612457, -35.95, -67.2)"/>
|
||||
<path id="ID0.7443878236226737" fill="#156699" stroke="none" stroke-linecap="round" d="M 224 257.500 C 232.163 261.084 239.603 266.312 246.531 271.310 C 252.300 275.471 262.258 278.446 262.500 285.500 C 262.244 293.591 253.027 299.469 246.500 304 C 239.061 309.170 229.909 312.435 221 313.500 C 212.819 314.473 200.725 315.519 196.500 310 C 193.200 305.674 203.804 299.085 206.500 293 C 208.997 288.029 212.006 282.810 212 277 C 212 271.737 209.148 267.100 207 262 C 205.562 258.567 199.163 252.634 202 252 C 207.932 250.691 217.164 254.580 224 257.500 Z " transform="matrix(0.2853225767612457, 0.03976035863161087, -0.03976035863161087, 0.2853225767612457, -35.95, -67.2)"/>
|
||||
<path id="ID0.4867734210565686" fill="#FEC93E" stroke="none" stroke-linecap="round" d="M 198 253 C 202.245 252.136 207.380 255.916 209.500 260 C 212.710 266.264 212.818 274.022 212 281 C 211.246 287.449 207.908 293.565 204.500 299 C 201.758 302.647 198.306 307.682 194 307.500 C 186.721 307.192 180.197 302.318 174.500 297.500 C 171.692 295.118 171.325 290.652 171 287 C 170.844 285.212 174.046 284.333 174 282.500 C 173.958 280.191 170.980 278.516 171.500 276 C 172.382 272.043 175.460 268.686 178.500 266 C 184.267 260.911 190.179 254.472 198 253 Z " transform="matrix(0.2853225767612457, 0.03976035863161087, -0.03976035863161087, 0.2853225767612457, -35.95, -67.2)"/>
|
||||
<g id="ID0.200826785992831">
|
||||
<path id="ID0.45205234037712216" fill="#FFFFFF" stroke="none" d="M 204.500 44.500 C 206.914 44.500 209.102 45.480 210.686 47.064 C 212.270 48.648 213.250 50.836 213.250 53.250 C 213.250 55.664 212.270 57.852 210.686 59.436 C 209.102 61.020 206.914 62 204.500 62 C 202.086 62 199.898 61.020 198.314 59.436 C 196.730 57.852 195.750 55.664 195.750 53.250 C 195.750 50.836 196.730 48.648 198.314 47.064 C 199.898 45.480 202.086 44.500 204.500 44.500 Z " transform="matrix(0.313854843378067, 0.043736398220062256, -0.043736398220062256, 0.313854843378067, -52.9, -6.9)"/>
|
||||
<path id="ID0.5682034506462514" fill="#000000" stroke="none" stroke-linecap="round" d="M 203.875 48.500 C 205.157 48.976 204.318 51.441 205.250 52.500 C 206.370 53.493 208.958 52.758 209.500 54.125 C 210.023 55.455 208.870 57.083 207.851 58.101 C 206.833 59.120 205.427 59.750 203.875 59.750 C 202.323 59.750 200.917 59.120 199.899 58.101 C 198.880 57.083 198.250 55.677 198.250 54.125 C 198.250 52.573 198.880 51.167 199.899 50.149 C 200.917 49.130 202.534 48.005 203.875 48.500 Z " transform="matrix(0.2853225767612457, 0.03976035863161087, -0.03976035863161087, 0.2853225767612457, -47.3, -4.65)"/>
|
||||
</g>
|
||||
<path id="ID0.8089016047306359" fill="#0F506D" stroke="none" stroke-linecap="round" d="M 226.250 281.250 L 218.500 265.500 L 234.500 284 L 218 296.500 L 226.250 281.250 Z " transform="matrix(0.2853225767612457, 0.03976035863161087, -0.03976035863161087, 0.2853225767612457, -37.1, -67.25)"/>
|
||||
<path id="ID0.8089016047306359" fill="#0F506D" stroke="none" stroke-linecap="round" d="M 226 282.750 L 218.750 271.500 L 234.500 284 L 217.250 293.750 L 226 282.750 Z " transform="matrix(0.2853225767612457, 0.03976035863161087, -0.03976035863161087, 0.2853225767612457, -31.05, -66.2)"/>
|
||||
</g>
|
||||
<g id="ID0.9654617104679346" transform="matrix(1, 0, 0, 1, 18, 161)">
|
||||
<path id="ID0.042643893510103226" fill="#0074B4" stroke="none" stroke-linecap="round" d="M 345.500 43.500 C 352.226 40.920 364.285 37.186 367 41 C 369.641 44.721 359.934 52.951 357 58.750 C 356.240 60.259 356.356 62.300 355.315 63.522 C 354.274 64.744 352.836 65.500 351.250 65.500 C 349.664 65.500 348.226 64.744 347.185 63.522 C 346.144 62.300 346.457 60.133 345.500 58.750 C 343.657 56.129 338.232 54.934 338 51.500 C 338.232 47.912 342.204 44.763 345.500 43.500 Z " transform="matrix(0.29237398505210876, 0.045474451035261154, -0.045474451035261154, 0.29237398505210876, 67.1, -20.85)"/>
|
||||
<path id="ID0.2613167092204094" fill="#0084C9" stroke="none" stroke-linecap="round" d="M 331.500 58 C 340.311 58.032 349.029 59.803 357.500 62 C 362.281 63.275 365.981 65.969 370.500 67 C 377.140 68.536 383.821 69.391 390.500 69 C 394.861 68.748 398.933 66.835 402.500 64.500 C 406.907 61.595 414.259 49.896 414 52.500 C 413.607 57.068 406.879 72.390 401 81 C 398.213 85.071 393.472 87.202 389.500 90 C 384.456 93.045 379.690 97.290 374 98.500 C 364.068 100.616 353.576 99.708 343.500 99 C 336.495 98.501 330.107 94.690 323 94 C 317.366 93.448 312.435 92.811 306 94.500 C 297.405 96.586 289.223 100.280 281 103.500 C 276.539 105.248 272.143 107.884 267.500 108.500 C 265.141 108.817 262.298 107.412 261 105.500 C 259.797 103.705 260.835 100.810 262 99 C 263.311 96.993 265.622 96.206 268 95 C 271.622 93.188 275.736 92.491 279.500 91 C 282.122 89.969 284.940 89.188 286.500 87 C 290.451 82.471 291.701 76.148 295.500 71.500 C 298.871 67.379 303.008 63.674 308.172 61.737 C 315.215 59.103 323.241 57.971 331.500 58 Z " transform="matrix(0.29237398505210876, 0.045474451035261154, -0.045474451035261154, 0.29237398505210876, 65.3, -23.55)"/>
|
||||
<path id="ID0.2703171642497182" fill="#0084C9" stroke="none" stroke-linecap="round" d="M 402 11 C 403.979 11.181 402.002 18.582 403.250 22 C 404.314 25.262 407.082 27.571 408.750 30.500 C 409.510 31.851 408.932 33.874 410 35 C 411.060 36.113 413.210 35.527 414.750 36.250 C 416.348 37.139 417.679 38.552 419.250 39.750 C 421.646 41.579 423.648 44.040 426.250 45.500 C 428.623 47.076 434.615 47.495 434 48.750 C 433.250 50.288 426.954 52.513 423.250 52 C 416.053 51.002 407.785 49.418 402.750 44 C 397.201 38.286 394.443 29.644 394.250 21.500 C 394.148 17.156 399.740 10.797 402 11 Z " transform="matrix(0.29237398505210876, 0.045474451035261154, -0.045474451035261154, 0.29237398505210876, 67.1, -20.85)"/>
|
||||
<path id="ID0.23363662092015147" fill="#0084C9" stroke="none" stroke-linecap="round" d="M 307.500 93 C 313.403 90.529 320.479 92.813 326.750 92.750 C 328.416 92.733 330.398 91.938 331.750 92.900 C 333.256 93.980 333.414 96.219 334.500 97.750 C 336.083 100.422 337.077 103.815 339.750 105.500 C 343.355 107.777 349.277 106.663 352 109.250 C 353.261 110.451 349.368 112.456 347.500 113.250 C 343.730 114.855 339.599 116.125 335.500 116 C 330.373 115.845 325.149 114.261 320.500 112.500 C 317.694 111.436 315.228 109.616 313 107.500 C 310.995 105.590 309.505 103.098 308.500 100.500 C 307.596 98.150 305.232 93.951 307.500 93 Z " transform="matrix(0.29237398505210876, 0.045474451035261154, -0.045474451035261154, 0.29237398505210876, 76.1, -19.8)"/>
|
||||
<path id="ID0.8955960888415575" fill="#B9DFF5" stroke="none" stroke-linecap="round" d="M 348.500 94.900 C 356.828 94.074 364.724 90.502 372.500 87.400 C 376.682 85.723 379.988 83.161 383.500 80.750 C 386.324 78.993 389.383 77.500 391.500 74.900 C 395.721 69.694 398.543 63.542 401.750 57.750 C 403.789 54.415 406.633 44.911 407.250 47.500 C 408.660 53.743 409.066 66.843 406.250 75.750 C 403.404 84.750 398.305 93.835 390.750 99.500 C 379.373 108.022 365.480 112.541 352 116.750 C 344.690 119.030 337.034 119.506 329.500 119.250 C 324.033 119.065 318.555 117.327 313.250 115.750 C 307.591 114.069 301.808 112.016 296.250 109.750 C 292.977 108.418 289.993 106.012 286.500 105.250 C 282.117 104.219 278.641 105.941 274.750 105.750 C 266.381 104.854 264.327 102.788 264.500 100.400 C 265.089 97.425 269.799 95.466 273 93.900 C 277.344 91.790 282.608 90.777 287.500 89.400 C 292.113 88.108 295.629 86.648 299.750 85.750 C 302.836 85.308 305.215 85.260 309 85.400 C 315.030 85.720 321.085 86.643 327 87.900 C 330.872 88.727 333.830 89.999 337.250 91 C 340.991 92.330 344.181 95.296 348.500 94.900 Z " transform="matrix(0.29237398505210876, 0.045474451035261154, -0.045474451035261154, 0.29237398505210876, 67.1, -20.85)"/>
|
||||
<path id="ID0.20290940441191196" fill="#006CA8" stroke="none" stroke-linecap="round" d="M 313.250 105.500 C 315.749 104.614 320.363 107.191 323.750 107.750 C 325.565 108.048 327.412 108.249 329.250 108.250 C 330.819 108.246 332.742 106.764 334.250 107.500 C 335.557 108.150 335.324 110.181 336.250 111.250 C 338.053 113.334 340.371 114.872 342.500 116.500 C 343.703 117.623 347.044 118.488 346.250 119.500 C 344.815 121.315 341.196 121.780 338.500 122.250 C 336.824 122.543 335.027 122.256 333.250 122 C 331.258 121.586 329.170 121.154 327.250 120.250 C 325.037 119.207 323.110 117.572 321.250 116 C 319.341 114.138 317.694 112.065 316 110 C 314.891 108.642 311.923 105.985 313.250 105.500 Z " transform="matrix(0.29237398505210876, 0.045474451035261154, -0.045474451035261154, 0.29237398505210876, 67.3, -17.4)"/>
|
||||
<path id="ID0.2685543983243406" fill="#720402" stroke="none" stroke-linecap="round" d="M 262.500 111.500 C 266.045 110.482 269.759 110.083 273.250 109 C 275.819 108.203 278.469 107.443 280.750 106 C 282.626 104.898 283.891 101.399 285.500 101.500 C 286.710 101.604 287.072 105.331 286.250 106.750 C 285.368 108.256 283.169 108.481 281.500 109 C 278.612 109.897 275.645 110.605 272.750 111.500 C 269.605 112.473 266.389 113.190 263.350 114.350 C 259.377 116.028 254.644 120.035 251.750 120 C 250.335 119.982 253.099 115.774 254.750 114.500 C 256.953 112.800 259.871 112.318 262.500 111.500 Z " transform="matrix(0.29237398505210876, 0.045474451035261154, -0.045474451035261154, 0.29237398505210876, 71.05, -26.15)"/>
|
||||
<path id="ID0.020179532933980227" fill="#FFFFFF" stroke="none" d="M 327.750 102.500 C 327.750 102.500 327.750 102.514 327.750 102.537 C 327.750 102.559 327.750 102.591 327.750 102.625 C 327.750 102.659 327.750 102.691 327.750 102.713 C 327.750 102.736 327.750 102.750 327.750 102.750 C 327.750 102.750 327.750 102.736 327.750 102.713 C 327.750 102.691 327.750 102.659 327.750 102.625 C 327.750 102.591 327.750 102.559 327.750 102.537 C 327.750 102.514 327.750 102.500 327.750 102.500 Z " transform="matrix(0.29237398505210876, 0.045474451035261154, -0.045474451035261154, 0.29237398505210876, 56.2, -42)"/>
|
||||
<g id="ID0.01900169951841235">
|
||||
<path id="ID0.1263936124742031" fill="#FFFFFF" stroke="none" d="M 287.875 89.750 C 288.944 89.750 289.913 90.184 290.614 90.886 C 291.316 91.587 291.750 92.556 291.750 93.625 C 291.750 94.694 291.316 95.663 290.614 96.364 C 289.913 97.066 288.944 97.500 287.875 97.500 C 286.806 97.500 285.837 97.066 285.136 96.364 C 284.434 95.663 284 94.694 284 93.625 C 284 92.556 284.434 91.587 285.136 90.886 C 285.837 90.184 286.806 89.750 287.875 89.750 Z " transform="matrix(0.29237398505210876, 0.045474451035261154, -0.045474451035261154, 0.29237398505210876, 71.25, -26.1)"/>
|
||||
<path id="ID0.3772318004630506" fill="#612C2F" stroke="none" d="M 288.375 91.250 C 289.168 91.250 289.887 91.572 290.407 92.093 C 290.928 92.613 291.250 93.332 291.250 94.125 C 291.250 94.918 290.928 95.637 290.407 96.157 C 289.887 96.678 289.168 97 288.375 97 C 287.582 97 286.863 96.678 286.343 96.157 C 285.822 95.637 285.500 94.918 285.500 94.125 C 285.500 93.332 285.822 92.613 286.343 92.093 C 286.863 91.572 287.582 91.250 288.375 91.250 Z " transform="matrix(0.34322163462638855, 0.05338304862380028, -0.05338304862380028, 0.34322163462638855, 57.3, -33.2)"/>
|
||||
<path id="ID0.5327137666754425" fill="#FFFFFF" stroke="none" d="M 297.125 91 C 297.435 91 297.717 91.126 297.920 91.330 C 298.124 91.533 298.250 91.815 298.250 92.125 C 298.250 92.435 298.124 92.717 297.920 92.920 C 297.717 93.124 297.435 93.250 297.125 93.250 C 296.815 93.250 296.533 93.124 296.330 92.920 C 296.126 92.717 296 92.435 296 92.125 C 296 91.815 296.126 91.533 296.330 91.330 C 296.533 91.126 296.815 91 297.125 91 Z " transform="matrix(0.29237398505210876, 0.045474451035261154, -0.045474451035261154, 0.29237398505210876, 68.45, -26.25)"/>
|
||||
<path id="ID0.5327137666754425" fill="#FFFFFF" stroke="none" d="M 297.125 91 C 297.435 91 297.717 91.126 297.920 91.330 C 298.124 91.533 298.250 91.815 298.250 92.125 C 298.250 92.435 298.124 92.717 297.920 92.920 C 297.717 93.124 297.435 93.250 297.125 93.250 C 296.815 93.250 296.533 93.124 296.330 92.920 C 296.126 92.717 296 92.435 296 92.125 C 296 91.815 296.126 91.533 296.330 91.330 C 296.533 91.126 296.815 91 297.125 91 Z " transform="matrix(0.17796677350997925, 0.02768009901046753, -0.02768009901046753, 0.17796677350997925, 100.95, -10.15)"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ID0.25953190866857767" transform="matrix(1, 0, 0, 1, 18, 161)">
|
||||
<path id="ID0.3160514016635716" fill="#D5A800" stroke="#D5A800" stroke-width="2" stroke-linecap="round" d="M 228.500 170.500 C 232.296 171.045 234.928 166.021 238.500 164.500 C 244.363 162.018 249.561 159.369 255.500 158.500 C 263.756 157.296 273.426 154.998 281.500 158.500 C 284.947 160.118 284.069 166.694 282.500 170.500 C 276.935 183.952 269.421 196.908 260 208 C 257.643 210.777 253.443 209.705 250.500 209 C 246.810 208.115 243 205.846 240.500 203.500 C 237.036 200.239 234.439 195.804 232 192 C 230.063 188.998 230.197 183.777 227 182.500 C 223.954 181.286 221.027 186.757 218 187 C 216.344 187.120 214.318 185.587 214 184 C 213.553 181.667 215.317 179.576 215.500 177 C 215.654 175.013 215.763 173.125 215.500 171 C 215.101 167.658 212.121 162.820 214 161 C 215.804 159.393 220.031 161.471 222.500 163 C 225.352 164.776 225.344 170.044 228.500 170.500 Z " transform="matrix(-0.3694818913936615, -0.15866419672966003, -0.15866419672966003, 0.3694818913936615, 352.8, -3.75)"/>
|
||||
<path id="ID0.9766952991485596" fill="#D8D8D8" stroke="#D8D8D8" stroke-width="2" stroke-linecap="round" d="M 290.500 197.500 C 292.456 197.202 293.658 200.076 294.750 201.750 C 296.095 203.816 297.174 205.979 298 208.250 C 298.339 209.208 299.173 210.364 298.500 211 C 297.151 212.280 295.027 212.021 293.250 212.250 C 292.108 212.401 290.604 213.089 289.500 212.500 C 288.045 211.723 286.661 210.141 286 208.500 C 285.325 206.832 284.807 204.601 285.500 202.750 C 286.443 200.600 288.088 197.870 290.500 197.500 Z " transform="matrix(-0.3694818913936615, -0.15866419672966003, -0.15866419672966003, 0.3694818913936615, 352.8, -3.75)"/>
|
||||
<path id="ID0.6063170093111694" fill="#FE9300" stroke="#FE9300" stroke-width="2" stroke-linecap="round" d="M 300.500 175.500 C 303.824 176.015 304.433 180.896 305.500 184 C 306.650 187.374 307.105 190.628 307.500 194 C 307.707 195.763 306.954 197.752 307.500 199.500 C 308.208 201.768 311.452 203.242 311 205 C 310.702 206.742 307.630 207.115 306 206.500 C 299.804 204.135 294.380 199.486 288.500 197 C 286.486 196.176 281.809 198.331 282 196 C 282.430 190.842 286.750 186.296 290 182.500 C 292.718 179.312 296.425 174.909 300.500 175.500 Z " transform="matrix(-0.3694818913936615, -0.15866419672966003, -0.15866419672966003, 0.3694818913936615, 352.8, -3.75)"/>
|
||||
<path id="ID0.5334869814105332" fill="#156699" stroke="#156699" stroke-width="2" stroke-linecap="round" d="M 265 163 C 270.277 162.856 276.060 162.766 281.500 163.500 C 284.928 163.969 288.488 164.066 291.500 165.500 C 294.875 167.713 298.878 170.291 300 174 C 300.540 175.819 296.648 176.215 295 177.500 C 292.825 179.049 292.177 180.377 291 182 C 289.220 184.317 288.372 186.893 287.500 189.500 C 286.271 193.196 285.626 197.456 285.500 201.500 C 285.389 205.388 290.713 211.634 287.500 213.500 C 282.648 216.306 275.044 212.420 269 211 C 264.894 210.033 260.405 208.953 256.500 207 C 253.103 205.309 249.592 202.983 246.500 200.500 C 243.891 198.401 240.887 196.710 239 194 C 236.809 190.837 236.700 186.141 234.500 182.500 C 233.104 180.491 227.599 180.198 228.500 177.500 C 229.985 173.129 235.382 171.096 239.500 169 C 242.901 167.246 247.046 165.889 251 165 C 255.263 164.034 260.297 163.115 265 163 Z " transform="matrix(-0.3694818913936615, -0.15866419672966003, -0.15866419672966003, 0.3694818913936615, 352.8, -3.75)"/>
|
||||
<path id="ID0.3526467867195606" fill="#000000" stroke="#000000" stroke-width="2" d="M 309 174.750 C 311.223 175.749 311.602 179.499 311.250 182 C 311.012 183.676 308.411 184.060 307.500 185.500 C 306.431 187.187 306.056 189.289 305 191 C 304.319 192.096 302.555 192.704 302 194 C 301.465 195.202 301.829 196.540 302.500 197.500 C 303.890 199.458 305.332 201.379 307.250 202.500 C 310.070 203.963 316.694 204.435 316.250 205 C 315.799 205.572 308.176 207.213 304.750 205.500 C 301.626 203.929 301.234 199.066 299.250 196 C 298.752 195.232 297.668 195.218 297.250 194.500 C 296.296 192.829 294.998 190.589 295.250 188.500 C 295.517 186.264 297.173 184.181 298.500 182.250 C 299.584 180.659 300.676 178.739 302.250 177.500 C 304.280 176.164 306.827 173.790 309 174.750 Z " transform="matrix(-0.3694818913936615, -0.15866419672966003, -0.15866419672966003, 0.3694818913936615, 354.45, -1.7)"/>
|
||||
<path id="ID0.5240444806404412" fill="#FFFFFF" stroke="none" d="M 299 188.750 C 300.793 188.750 302.418 189.450 303.595 190.582 C 304.772 191.713 305.500 193.276 305.500 195 C 305.500 196.724 304.772 198.287 303.595 199.418 C 302.418 200.550 300.793 201.250 299 201.250 C 297.207 201.250 295.582 200.550 294.405 199.418 C 293.228 198.287 292.500 196.724 292.500 195 C 292.500 193.276 293.228 191.713 294.405 190.582 C 295.582 189.450 297.207 188.750 299 188.750 Z " transform="matrix(-0.3694818913936615, -0.15866419672966003, -0.15866419672966003, 0.3694818913936615, 353.8, -4.5)"/>
|
||||
<path id="ID0.7714696801267564" fill="none" stroke="#000000" stroke-width="2" stroke-linecap="round" d="M 296.750 192 C 295.799 191.704 297.205 193.337 297.500 194 C 297.661 194.361 296.122 193.558 295.750 193 C 295.378 192.442 295.140 191.566 295.500 191 C 295.882 190.400 296.852 189.956 297.500 190.250 C 298.148 190.544 297.865 191.652 298.250 192.250 C 298.632 192.844 299.814 193.109 299.750 193.750 C 299.689 194.359 298.623 194.501 298 194.750 C 297.363 195.005 296.641 195.496 296 195.250 C 295.332 194.993 294.976 194.179 294.750 193.500 C 294.539 192.868 294.750 192.166 294.750 191.500 C 294.750 191.250 294.488 190.512 294.750 190.750 Z " transform="matrix(-0.3694818913936615, -0.15866419672966003, -0.15866419672966003, 0.3694818913936615, 352.8, -3.75)"/>
|
||||
<path id="ID0.9720923146232963" fill="none" stroke="#000000" stroke-width="2" stroke-linecap="round" d="M 297.500 191.750 C 297.593 193.090 297.485 193.631 297.500 193.750 C 297.504 193.780 297.758 193.750 297.750 193.750 Z " transform="matrix(-0.3694818913936615, -0.15866419672966003, -0.15866419672966003, 0.3694818913936615, 352.8, -3.75)"/>
|
||||
<path id="ID0.47732368437573314" fill="#000000" stroke="none" d="M 259.250 197 C 259.250 197 259.250 197.014 259.250 197.037 C 259.250 197.059 259.250 197.091 259.250 197.125 C 259.250 197.159 259.250 197.191 259.250 197.213 C 259.250 197.236 259.250 197.250 259.250 197.250 C 259.250 197.250 259.250 197.236 259.250 197.213 C 259.250 197.191 259.250 197.159 259.250 197.125 C 259.250 197.091 259.250 197.059 259.250 197.037 C 259.250 197.014 259.250 197 259.250 197 Z " transform="matrix(-0.3694818913936615, -0.15866419672966003, -0.15866419672966003, 0.3694818913936615, 352.8, -3.75)"/>
|
||||
<path id="ID0.5334869814105332" fill="#0F4B67" stroke="#0F4B67" stroke-width="2" stroke-linecap="round" d="M 236.250 177.200 C 238.854 179.376 237.988 183.530 239.250 186.450 C 240.091 188.157 241.403 189.526 242.500 190.950 C 243.660 192.440 244.821 193.817 246.250 195.200 C 247.778 196.613 249.504 197.748 251.250 198.950 C 253.088 200.158 255.012 201.205 257 202.200 C 259.932 203.587 262.948 204.831 266 205.950 C 268.888 206.954 271.791 208.113 274.750 208.950 C 275.995 209.309 277.273 208.763 278.500 208.950 C 279.209 209.070 279.995 209.469 280.750 209.700 C 283.093 210.422 287.308 210.735 288 212.200 C 288.485 213.252 284.964 214.822 283.250 214.700 C 278.288 214.401 273.669 212.357 269 211 C 264.804 209.779 260.405 208.953 256.500 207 C 253.103 205.309 249.592 202.983 246.500 200.500 C 243.891 198.401 240.887 196.710 239 194 C 236.809 190.837 236.700 186.141 234.500 182.500 C 233.104 180.491 228.044 178.893 228.500 177.500 C 228.967 176.097 234.267 175.546 236.250 177.200 Z " transform="matrix(-0.3694818913936615, -0.15866419672966003, -0.15866419672966003, 0.3694818913936615, 352.8, -3.7)"/>
|
||||
</g>
|
||||
<g id="ID0.22971575800329447" transform="matrix(1, 0, 0, 1, 18, 161)">
|
||||
<path id="ID0.15444352198392153" fill="#156699" stroke="none" stroke-linecap="round" d="M 126.750 43.750 C 128.348 45.765 129.717 47.882 130.500 50.250 C 131.316 52.737 131.595 55.560 131.500 58.250 C 131.256 60.648 130.695 63.056 129.500 65.250 C 127.247 69.389 123.905 75.692 121.250 76.750 C 119.664 77.388 120.932 71.285 120.500 68.500 C 119.932 64.368 119.965 59.994 118.250 56 C 116.810 52.615 112.682 48.940 111.500 47.250 C 110.942 46.443 116.084 51.782 115 50.500 C 112.929 48.325 108.839 44.232 105.500 41.250 C 102.424 38.400 94.788 34.860 95.750 33 C 96.739 31.095 104.856 32.542 109.250 33.500 C 113.082 34.337 116.882 35.927 120.250 38 C 122.691 39.498 124.954 41.490 126.750 43.750 Z " transform="matrix(0.2750067412853241, 0.08883959800004959, -0.08883959800004959, 0.2750067412853241, 239.65, -14.25)"/>
|
||||
<path id="ID0.8846706752665341" fill="#FF6500" stroke="none" stroke-linecap="round" d="M 172.500 29.500 C 178.602 27.258 187.615 25.571 192 28.500 C 194.644 30.274 188.165 35.642 187 39.500 C 185.618 43.893 184.287 48.257 185 52.500 C 185.505 57.130 188.107 61.250 190.500 65 C 192.326 67.923 197.665 70.406 197 73 C 196.241 75.721 190.319 75.731 187 76.500 C 181.614 77.758 175.978 79.257 170.500 78.500 C 163.472 77.519 156.742 75.557 150.500 72.500 C 147.143 70.844 143.945 67.639 142 64 C 140.897 61.903 141.296 59.150 142 56.500 C 143.207 52.047 144.606 47.242 148 44 C 155.139 37.915 163.532 32.796 172.500 29.500 Z " transform="matrix(0.2750067412853241, 0.08883959800004959, -0.08883959800004959, 0.2750067412853241, 235.2, -17.45)"/>
|
||||
<path id="ID0.5688502001576126" fill="#FFB327" stroke="none" stroke-linecap="round" d="M 204.500 33 C 208.445 35.703 212.402 38.772 215.500 42.500 C 218.069 45.590 218.613 49.646 220.500 53.500 C 221.487 55.588 223.784 57.725 223 60 C 221.878 63.205 218.022 64.681 215 66.500 C 210.394 69.251 205.183 72.154 200 72.500 C 197.008 72.705 194.204 69.732 192.500 67.500 C 189.243 63.246 186.370 57.963 185.500 53 C 184.630 48.036 186.072 42.607 187.500 38 C 188.610 34.428 189.899 29.447 193.500 28.500 C 197.268 27.514 201.033 30.987 204.500 33 Z " transform="matrix(0.2750067412853241, 0.08883959800004959, -0.08883959800004959, 0.2750067412853241, 235.05, -17.35)"/>
|
||||
<path id="ID0.7559871361590922" fill="#156699" stroke="none" stroke-linecap="round" d="M 173 15.500 C 176.552 16.907 180.326 18.676 183 21.500 C 184.522 23.107 185.307 25.191 185 27 C 184.828 27.978 182.764 26.746 181.500 27 C 179.223 27.589 177.103 29.116 174.500 29.500 C 172.202 29.841 169.330 31.101 167.500 29.500 C 165.210 27.472 166.888 23.450 165.500 20.500 C 164.074 17.447 158.294 12.962 160 12 C 162.394 10.668 168.833 13.856 173 15.500 Z " transform="matrix(0.2750067412853241, 0.08883959800004959, -0.08883959800004959, 0.2750067412853241, 235.4, -17.1)"/>
|
||||
<path id="ID0.7559871361590922" fill="#156699" stroke="none" stroke-linecap="round" d="M 173 15.500 C 176.552 16.907 180.326 18.676 183 21.500 C 184.522 23.107 185.307 25.191 185 27 C 184.828 27.978 182.764 26.746 181.500 27 C 179.223 27.589 177.103 29.116 174.500 29.500 C 172.202 29.841 169.330 31.101 167.500 29.500 C 165.210 27.472 166.888 23.450 165.500 20.500 C 164.074 17.447 158.294 12.962 160 12 C 162.394 10.668 168.833 13.856 173 15.500 Z " transform="matrix(0.16058212518692017, -0.011566982604563236, -0.011566982604563236, -0.16058212518692017, 252.95, 26.65)"/>
|
||||
<path id="ID0.7559871361590922" fill="#156699" stroke="none" stroke-linecap="round" d="M 173 15.500 C 176.552 16.907 180.326 18.676 183 21.500 C 184.522 23.107 185.307 25.191 185 27 C 184.828 27.978 182.764 26.746 181.500 27 C 179.223 27.589 177.103 29.116 174.500 29.500 C 172.202 29.841 169.330 31.101 167.500 29.500 C 165.210 27.472 166.888 23.450 165.500 20.500 C 164.074 17.447 158.294 12.962 160 12 C 162.394 10.668 168.833 13.856 173 15.500 Z " transform="matrix(0.11462045460939407, -0.008256294764578342, -0.008256294764578342, -0.11462045460939407, 256.55, 24.35)"/>
|
||||
<g id="ID0.200826785992831">
|
||||
<path id="ID0.45205234037712216" fill="#FFFFFF" stroke="none" d="M 204.500 44.500 C 206.914 44.500 209.102 45.480 210.686 47.064 C 212.270 48.648 213.250 50.836 213.250 53.250 C 213.250 55.664 212.270 57.852 210.686 59.436 C 209.102 61.020 206.914 62 204.500 62 C 202.086 62 199.898 61.020 198.314 59.436 C 196.730 57.852 195.750 55.664 195.750 53.250 C 195.750 50.836 196.730 48.648 198.314 47.064 C 199.898 45.480 202.086 44.500 204.500 44.500 Z " transform="matrix(0.3025074303150177, 0.09772355854511261, -0.09772355854511261, 0.3025074303150177, 230.2, -21.45)"/>
|
||||
<path id="ID0.5682034506462514" fill="#000000" stroke="none" stroke-linecap="round" d="M 203.875 48.500 C 205.157 48.976 204.318 51.441 205.250 52.500 C 206.370 53.493 208.958 52.758 209.500 54.125 C 210.023 55.455 208.870 57.083 207.851 58.101 C 206.833 59.120 205.427 59.750 203.875 59.750 C 202.323 59.750 200.917 59.120 199.899 58.101 C 198.880 57.083 198.250 55.677 198.250 54.125 C 198.250 52.573 198.880 51.167 199.899 50.149 C 200.917 49.130 202.534 48.005 203.875 48.500 Z " transform="matrix(0.2750067412853241, 0.08883959800004959, -0.08883959800004959, 0.2750067412853241, 235.4, -18.25)"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ID0.1571304271928966" transform="matrix(-0.9250670075416565, 0.37980392575263977, 0.37980392575263977, 0.9250670075416565, 643.3, 37.55)">
|
||||
<path id="ID0.7064403598196805" fill="#FEC93E" stroke="none" stroke-linecap="round" d="M 230.500 231.250 C 232.089 230.404 233.955 230.107 235.750 229.750 C 239.143 229.437 246.327 227.829 246 229.250 C 245.664 230.712 237.995 233.834 234.500 236.750 C 232.851 237.966 231.079 239.499 230.750 241.500 C 230.449 243.316 231.738 244.963 232.500 246.750 C 233.166 248.329 234.408 249.641 234.500 251.500 C 234.557 252.983 233.538 254.494 232.500 255.500 C 230.939 257.007 229.103 258.843 227 259 C 224.115 259.216 221.342 257.296 218.750 256.250 C 215.228 254.832 209.293 254.712 208.500 251.250 C 207.636 247.481 212.246 244.050 215.250 241.250 C 219.692 237.110 225.144 234.104 230.500 231.250 Z " transform="matrix(-0.2853225767612457, 0.03976035863161087, 0.03976035863161087, 0.2853225767612457, 386, -67.7)"/>
|
||||
<path id="ID0.2519802562892437" fill="#FEC93E" stroke="none" stroke-linecap="round" d="M 219 308.500 C 224.760 307.795 231.044 304.882 236.750 306 C 238.538 306.382 235.074 309.758 234 311.500 C 232.415 314.057 230.331 316.075 229.250 318.750 C 228.325 321.031 226.007 325.339 228.250 325.500 C 233.882 326.339 244.565 320.145 245 320.750 C 245.435 321.355 236.538 328.638 231.500 330.750 C 228.038 332.201 223.795 332.145 220.250 331.500 C 217.750 331.046 215.067 329.515 213.750 327.500 C 211.805 324.524 211.477 320.567 210.750 317.250 C 210.174 314.628 207.968 311.182 209.750 309.250 C 211.824 307.004 215.933 308.876 219 308.500 Z " transform="matrix(-0.2853225767612457, 0.03976035863161087, 0.03976035863161087, 0.2853225767612457, 387.25, -66.45)"/>
|
||||
<path id="ID0.4992571324110031" fill="#FEC93E" stroke="none" stroke-linecap="round" d="M 306.750 303.250 C 309.969 303.881 313.159 305.951 314.750 309 C 316.356 312.103 315.458 316.080 314.750 319.500 C 314.433 321.010 313.367 322.249 312.250 323.250 C 311.106 324.270 308.236 326.302 308.250 325.250 C 308.236 323.462 312.053 320.396 312.250 317.500 C 312.420 314.965 311.358 311.543 309 310.250 C 306.428 308.976 303.218 310.748 300.250 311.250 C 297.284 311.753 294.557 312.879 291.500 313.500 C 287.462 314.317 283.418 315.303 279.250 315.250 C 275.169 315.197 271.269 314.167 267.250 312.750 C 264.812 311.888 262.817 310.141 260.750 308.500 C 258.908 307.031 255.304 305.290 256 303.250 C 256.994 300.378 261.565 300.124 264 298.250 C 265.724 296.921 266.590 293.214 268.750 293.750 C 271.622 294.464 271.776 299.211 274.250 300.750 C 276.856 302.372 280.237 302.562 283.250 302.750 C 291.060 303.236 299.084 301.748 306.750 303.250 Z " transform="matrix(-0.2853225767612457, 0.03976035863161087, 0.03976035863161087, 0.2853225767612457, 387.25, -69.65)"/>
|
||||
<path id="ID0.4335831757634878" fill="#FEC93E" stroke="none" stroke-linecap="round" d="M 282.500 262.750 C 285.688 261.366 287.997 258.398 290.250 255.750 C 292.265 253.384 293.587 250.562 294.750 247.750 C 295.278 246.843 294.708 245.666 295.250 244.750 C 296.579 242.530 299.956 239.060 300.500 239 C 301.044 238.940 298.976 242.572 298.750 244.500 C 297.971 248.520 298.021 252.648 297.500 256.750 C 297.007 260.619 297.696 265.387 295.250 268.250 C 291.785 272.297 285.866 273.682 281.250 276 C 277.985 277.635 274.556 279.222 271.250 280.500 C 268.180 281.688 264.988 283.844 261.750 283.250 C 258.239 282.605 255.596 279.603 252.750 277.500 C 251.401 276.331 248.618 275.106 249.250 273.500 C 250.412 270.548 253.816 268.764 256.750 267.500 C 259.821 266.181 263.268 266.197 266.500 265.500 C 271.844 264.615 277.551 264.898 282.500 262.750 Z " transform="matrix(-0.2853225767612457, 0.03976035863161087, 0.03976035863161087, 0.2853225767612457, 386, -67.7)"/>
|
||||
<path id="ID0.7443878236226737" fill="#156699" stroke="none" stroke-linecap="round" d="M 224 257.500 C 232.163 261.084 239.603 266.312 246.531 271.310 C 252.300 275.471 262.258 278.446 262.500 285.500 C 262.244 293.591 253.027 299.469 246.500 304 C 239.061 309.170 229.909 312.435 221 313.500 C 212.819 314.473 200.725 315.519 196.500 310 C 193.200 305.674 203.804 299.085 206.500 293 C 208.997 288.029 212.006 282.810 212 277 C 212 271.737 209.148 267.100 207 262 C 205.562 258.567 199.163 252.634 202 252 C 207.932 250.691 217.164 254.580 224 257.500 Z " transform="matrix(-0.2853225767612457, 0.03976035863161087, 0.03976035863161087, 0.2853225767612457, 386, -67.7)"/>
|
||||
<path id="ID0.4867734210565686" fill="#FEC93E" stroke="none" stroke-linecap="round" d="M 198 253 C 202.245 252.136 207.380 255.916 209.500 260 C 212.710 266.264 212.818 274.022 212 281 C 211.246 287.449 207.908 293.565 204.500 299 C 201.758 302.647 198.306 307.682 194 307.500 C 186.721 307.192 180.197 302.318 174.500 297.500 C 171.692 295.118 171.325 290.652 171 287 C 170.844 285.212 174.046 284.333 174 282.500 C 173.958 280.191 170.980 278.516 171.500 276 C 172.382 272.043 175.460 268.686 178.500 266 C 184.267 260.911 190.179 254.472 198 253 Z " transform="matrix(-0.2853225767612457, 0.03976035863161087, 0.03976035863161087, 0.2853225767612457, 386, -67.7)"/>
|
||||
<g id="ID0.200826785992831">
|
||||
<path id="ID0.45205234037712216" fill="#FFFFFF" stroke="none" d="M 204.500 44.500 C 206.914 44.500 209.102 45.480 210.686 47.064 C 212.270 48.648 213.250 50.836 213.250 53.250 C 213.250 55.664 212.270 57.852 210.686 59.436 C 209.102 61.020 206.914 62 204.500 62 C 202.086 62 199.898 61.020 198.314 59.436 C 196.730 57.852 195.750 55.664 195.750 53.250 C 195.750 50.836 196.730 48.648 198.314 47.064 C 199.898 45.480 202.086 44.500 204.500 44.500 Z " transform="matrix(-0.313854843378067, 0.043736398220062256, 0.043736398220062256, 0.313854843378067, 402.95, -7.4)"/>
|
||||
<path id="ID0.5682034506462514" fill="#000000" stroke="none" stroke-linecap="round" d="M 203.875 48.500 C 205.157 48.976 204.318 51.441 205.250 52.500 C 206.370 53.493 208.958 52.758 209.500 54.125 C 210.023 55.455 208.870 57.083 207.851 58.101 C 206.833 59.120 205.427 59.750 203.875 59.750 C 202.323 59.750 200.917 59.120 199.899 58.101 C 198.880 57.083 198.250 55.677 198.250 54.125 C 198.250 52.573 198.880 51.167 199.899 50.149 C 200.917 49.130 202.534 48.005 203.875 48.500 Z " transform="matrix(-0.2853225767612457, 0.03976035863161087, 0.03976035863161087, 0.2853225767612457, 397.35, -5.15)"/>
|
||||
</g>
|
||||
<path id="ID0.8089016047306359" fill="#0F506D" stroke="none" stroke-linecap="round" d="M 226.250 281.250 L 218.500 265.500 L 234.500 284 L 218 296.500 L 226.250 281.250 Z " transform="matrix(-0.2853225767612457, 0.03976035863161087, 0.03976035863161087, 0.2853225767612457, 387.15, -67.75)"/>
|
||||
<path id="ID0.8089016047306359" fill="#0F506D" stroke="none" stroke-linecap="round" d="M 226 282.750 L 218.750 271.500 L 234.500 284 L 217.250 293.750 L 226 282.750 Z " transform="matrix(-0.2853225767612457, 0.03976035863161087, 0.03976035863161087, 0.2853225767612457, 381.1, -66.7)"/>
|
||||
</g>
|
||||
<g id="ID0.9654617104679346" transform="matrix(-0.9984326362609863, -0.055967751890420914, -0.055967751890420914, 0.9984326362609863, 572.55, 173.3)">
|
||||
<path id="ID0.042643893510103226" fill="#0074B4" stroke="none" stroke-linecap="round" d="M 345.500 43.500 C 352.226 40.920 364.285 37.186 367 41 C 369.641 44.721 359.934 52.951 357 58.750 C 356.240 60.259 356.356 62.300 355.315 63.522 C 354.274 64.744 352.836 65.500 351.250 65.500 C 349.664 65.500 348.226 64.744 347.185 63.522 C 346.144 62.300 346.457 60.133 345.500 58.750 C 343.657 56.129 338.232 54.934 338 51.500 C 338.232 47.912 342.204 44.763 345.500 43.500 Z " transform="matrix(0.29237398505210876, 0.045474451035261154, -0.045474451035261154, 0.29237398505210876, 67.1, -20.85)"/>
|
||||
<path id="ID0.2613167092204094" fill="#0084C9" stroke="none" stroke-linecap="round" d="M 331.500 58 C 340.311 58.032 349.029 59.803 357.500 62 C 362.281 63.275 365.981 65.969 370.500 67 C 377.140 68.536 383.821 69.391 390.500 69 C 394.861 68.748 398.933 66.835 402.500 64.500 C 406.907 61.595 414.259 49.896 414 52.500 C 413.607 57.068 406.879 72.390 401 81 C 398.213 85.071 393.472 87.202 389.500 90 C 384.456 93.045 379.690 97.290 374 98.500 C 364.068 100.616 353.576 99.708 343.500 99 C 336.495 98.501 330.107 94.690 323 94 C 317.366 93.448 312.435 92.811 306 94.500 C 297.405 96.586 289.223 100.280 281 103.500 C 276.539 105.248 272.143 107.884 267.500 108.500 C 265.141 108.817 262.298 107.412 261 105.500 C 259.797 103.705 260.835 100.810 262 99 C 263.311 96.993 265.622 96.206 268 95 C 271.622 93.188 275.736 92.491 279.500 91 C 282.122 89.969 284.940 89.188 286.500 87 C 290.451 82.471 291.701 76.148 295.500 71.500 C 298.871 67.379 303.008 63.674 308.172 61.737 C 315.215 59.103 323.241 57.971 331.500 58 Z " transform="matrix(0.29237398505210876, 0.045474451035261154, -0.045474451035261154, 0.29237398505210876, 65.3, -23.55)"/>
|
||||
<path id="ID0.2703171642497182" fill="#0084C9" stroke="none" stroke-linecap="round" d="M 402 11 C 403.979 11.181 402.002 18.582 403.250 22 C 404.314 25.262 407.082 27.571 408.750 30.500 C 409.510 31.851 408.932 33.874 410 35 C 411.060 36.113 413.210 35.527 414.750 36.250 C 416.348 37.139 417.679 38.552 419.250 39.750 C 421.646 41.579 423.648 44.040 426.250 45.500 C 428.623 47.076 434.615 47.495 434 48.750 C 433.250 50.288 426.954 52.513 423.250 52 C 416.053 51.002 407.785 49.418 402.750 44 C 397.201 38.286 394.443 29.644 394.250 21.500 C 394.148 17.156 399.740 10.797 402 11 Z " transform="matrix(0.29237398505210876, 0.045474451035261154, -0.045474451035261154, 0.29237398505210876, 67.1, -20.85)"/>
|
||||
<path id="ID0.23363662092015147" fill="#0084C9" stroke="none" stroke-linecap="round" d="M 307.500 93 C 313.403 90.529 320.479 92.813 326.750 92.750 C 328.416 92.733 330.398 91.938 331.750 92.900 C 333.256 93.980 333.414 96.219 334.500 97.750 C 336.083 100.422 337.077 103.815 339.750 105.500 C 343.355 107.777 349.277 106.663 352 109.250 C 353.261 110.451 349.368 112.456 347.500 113.250 C 343.730 114.855 339.599 116.125 335.500 116 C 330.373 115.845 325.149 114.261 320.500 112.500 C 317.694 111.436 315.228 109.616 313 107.500 C 310.995 105.590 309.505 103.098 308.500 100.500 C 307.596 98.150 305.232 93.951 307.500 93 Z " transform="matrix(0.29237398505210876, 0.045474451035261154, -0.045474451035261154, 0.29237398505210876, 76.1, -19.8)"/>
|
||||
<path id="ID0.8955960888415575" fill="#B9DFF5" stroke="none" stroke-linecap="round" d="M 348.500 94.900 C 356.828 94.074 364.724 90.502 372.500 87.400 C 376.682 85.723 379.988 83.161 383.500 80.750 C 386.324 78.993 389.383 77.500 391.500 74.900 C 395.721 69.694 398.543 63.542 401.750 57.750 C 403.789 54.415 406.633 44.911 407.250 47.500 C 408.660 53.743 409.066 66.843 406.250 75.750 C 403.404 84.750 398.305 93.835 390.750 99.500 C 379.373 108.022 365.480 112.541 352 116.750 C 344.690 119.030 337.034 119.506 329.500 119.250 C 324.033 119.065 318.555 117.327 313.250 115.750 C 307.591 114.069 301.808 112.016 296.250 109.750 C 292.977 108.418 289.993 106.012 286.500 105.250 C 282.117 104.219 278.641 105.941 274.750 105.750 C 266.381 104.854 264.327 102.788 264.500 100.400 C 265.089 97.425 269.799 95.466 273 93.900 C 277.344 91.790 282.608 90.777 287.500 89.400 C 292.113 88.108 295.629 86.648 299.750 85.750 C 302.836 85.308 305.215 85.260 309 85.400 C 315.030 85.720 321.085 86.643 327 87.900 C 330.872 88.727 333.830 89.999 337.250 91 C 340.991 92.330 344.181 95.296 348.500 94.900 Z " transform="matrix(0.29237398505210876, 0.045474451035261154, -0.045474451035261154, 0.29237398505210876, 67.1, -20.85)"/>
|
||||
<path id="ID0.20290940441191196" fill="#006CA8" stroke="none" stroke-linecap="round" d="M 313.250 105.500 C 315.749 104.614 320.363 107.191 323.750 107.750 C 325.565 108.048 327.412 108.249 329.250 108.250 C 330.819 108.246 332.742 106.764 334.250 107.500 C 335.557 108.150 335.324 110.181 336.250 111.250 C 338.053 113.334 340.371 114.872 342.500 116.500 C 343.703 117.623 347.044 118.488 346.250 119.500 C 344.815 121.315 341.196 121.780 338.500 122.250 C 336.824 122.543 335.027 122.256 333.250 122 C 331.258 121.586 329.170 121.154 327.250 120.250 C 325.037 119.207 323.110 117.572 321.250 116 C 319.341 114.138 317.694 112.065 316 110 C 314.891 108.642 311.923 105.985 313.250 105.500 Z " transform="matrix(0.29237398505210876, 0.045474451035261154, -0.045474451035261154, 0.29237398505210876, 67.3, -17.4)"/>
|
||||
<path id="ID0.2685543983243406" fill="#720402" stroke="none" stroke-linecap="round" d="M 262.500 111.500 C 266.045 110.482 269.759 110.083 273.250 109 C 275.819 108.203 278.469 107.443 280.750 106 C 282.626 104.898 283.891 101.399 285.500 101.500 C 286.710 101.604 287.072 105.331 286.250 106.750 C 285.368 108.256 283.169 108.481 281.500 109 C 278.612 109.897 275.645 110.605 272.750 111.500 C 269.605 112.473 266.389 113.190 263.350 114.350 C 259.377 116.028 254.644 120.035 251.750 120 C 250.335 119.982 253.099 115.774 254.750 114.500 C 256.953 112.800 259.871 112.318 262.500 111.500 Z " transform="matrix(0.29237398505210876, 0.045474451035261154, -0.045474451035261154, 0.29237398505210876, 71.05, -26.15)"/>
|
||||
<path id="ID0.020179532933980227" fill="#FFFFFF" stroke="none" d="M 327.750 102.500 C 327.750 102.500 327.750 102.514 327.750 102.537 C 327.750 102.559 327.750 102.591 327.750 102.625 C 327.750 102.659 327.750 102.691 327.750 102.713 C 327.750 102.736 327.750 102.750 327.750 102.750 C 327.750 102.750 327.750 102.736 327.750 102.713 C 327.750 102.691 327.750 102.659 327.750 102.625 C 327.750 102.591 327.750 102.559 327.750 102.537 C 327.750 102.514 327.750 102.500 327.750 102.500 Z " transform="matrix(0.29237398505210876, 0.045474451035261154, -0.045474451035261154, 0.29237398505210876, 56.2, -42)"/>
|
||||
<g id="ID0.01900169951841235">
|
||||
<path id="ID0.1263936124742031" fill="#FFFFFF" stroke="none" d="M 287.875 89.750 C 288.944 89.750 289.913 90.184 290.614 90.886 C 291.316 91.587 291.750 92.556 291.750 93.625 C 291.750 94.694 291.316 95.663 290.614 96.364 C 289.913 97.066 288.944 97.500 287.875 97.500 C 286.806 97.500 285.837 97.066 285.136 96.364 C 284.434 95.663 284 94.694 284 93.625 C 284 92.556 284.434 91.587 285.136 90.886 C 285.837 90.184 286.806 89.750 287.875 89.750 Z " transform="matrix(0.29237398505210876, 0.045474451035261154, -0.045474451035261154, 0.29237398505210876, 71.25, -26.1)"/>
|
||||
<path id="ID0.3772318004630506" fill="#612C2F" stroke="none" d="M 288.375 91.250 C 289.168 91.250 289.887 91.572 290.407 92.093 C 290.928 92.613 291.250 93.332 291.250 94.125 C 291.250 94.918 290.928 95.637 290.407 96.157 C 289.887 96.678 289.168 97 288.375 97 C 287.582 97 286.863 96.678 286.343 96.157 C 285.822 95.637 285.500 94.918 285.500 94.125 C 285.500 93.332 285.822 92.613 286.343 92.093 C 286.863 91.572 287.582 91.250 288.375 91.250 Z " transform="matrix(0.34322163462638855, 0.05338304862380028, -0.05338304862380028, 0.34322163462638855, 57.3, -33.2)"/>
|
||||
<path id="ID0.5327137666754425" fill="#FFFFFF" stroke="none" d="M 297.125 91 C 297.435 91 297.717 91.126 297.920 91.330 C 298.124 91.533 298.250 91.815 298.250 92.125 C 298.250 92.435 298.124 92.717 297.920 92.920 C 297.717 93.124 297.435 93.250 297.125 93.250 C 296.815 93.250 296.533 93.124 296.330 92.920 C 296.126 92.717 296 92.435 296 92.125 C 296 91.815 296.126 91.533 296.330 91.330 C 296.533 91.126 296.815 91 297.125 91 Z " transform="matrix(0.29237398505210876, 0.045474451035261154, -0.045474451035261154, 0.29237398505210876, 68.45, -26.25)"/>
|
||||
<path id="ID0.5327137666754425" fill="#FFFFFF" stroke="none" d="M 297.125 91 C 297.435 91 297.717 91.126 297.920 91.330 C 298.124 91.533 298.250 91.815 298.250 92.125 C 298.250 92.435 298.124 92.717 297.920 92.920 C 297.717 93.124 297.435 93.250 297.125 93.250 C 296.815 93.250 296.533 93.124 296.330 92.920 C 296.126 92.717 296 92.435 296 92.125 C 296 91.815 296.126 91.533 296.330 91.330 C 296.533 91.126 296.815 91 297.125 91 Z " transform="matrix(0.17796677350997925, 0.02768009901046753, -0.02768009901046753, 0.17796677350997925, 100.95, -10.15)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 57 KiB |
111
static/images/camp/fish-divider2.svg
Normal file
|
@ -0,0 +1,111 @@
|
|||
<svg version="1.1" width="418" height="42" viewBox="-1 -1 418 42" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Exported by Scratch - http://scratch.mit.edu/ -->
|
||||
<g id="ID0.22971575800329447" transform="matrix(1, 0, 0, 1, 101, 4)">
|
||||
<path id="ID0.15444352198392153" fill="#156699" stroke="none" stroke-linecap="round" d="M 126.750 43.750 C 128.348 45.765 129.717 47.882 130.500 50.250 C 131.316 52.737 131.595 55.560 131.500 58.250 C 131.256 60.648 130.695 63.056 129.500 65.250 C 127.247 69.389 123.905 75.692 121.250 76.750 C 119.664 77.388 120.932 71.285 120.500 68.500 C 119.932 64.368 119.965 59.994 118.250 56 C 116.810 52.615 112.682 48.940 111.500 47.250 C 110.942 46.443 116.084 51.782 115 50.500 C 112.929 48.325 108.839 44.232 105.500 41.250 C 102.424 38.400 94.788 34.860 95.750 33 C 96.739 31.095 104.856 32.542 109.250 33.500 C 113.082 34.337 116.882 35.927 120.250 38 C 122.691 39.498 124.954 41.490 126.750 43.750 Z " transform="matrix(0.28325462341308594, -0.02896539680659771, 0.02896539680659771, 0.28325462341308594, 24.3, 5.95)"/>
|
||||
<path id="ID0.8846706752665341" fill="#FF6500" stroke="none" stroke-linecap="round" d="M 172.500 29.500 C 178.602 27.258 187.615 25.571 192 28.500 C 194.644 30.274 188.165 35.642 187 39.500 C 185.618 43.893 184.287 48.257 185 52.500 C 185.505 57.130 188.107 61.250 190.500 65 C 192.326 67.923 197.665 70.406 197 73 C 196.241 75.721 190.319 75.731 187 76.500 C 181.614 77.758 175.978 79.257 170.500 78.500 C 163.472 77.519 156.742 75.557 150.500 72.500 C 147.143 70.844 143.945 67.639 142 64 C 140.897 61.903 141.296 59.150 142 56.500 C 143.207 52.047 144.606 47.242 148 44 C 155.139 37.915 163.532 32.796 172.500 29.500 Z " transform="matrix(0.28325462341308594, -0.02896539680659771, 0.02896539680659771, 0.28325462341308594, 19.05, 4.85)"/>
|
||||
<path id="ID0.5688502001576126" fill="#FFB327" stroke="none" stroke-linecap="round" d="M 204.500 33 C 208.445 35.703 212.402 38.772 215.500 42.500 C 218.069 45.590 218.613 49.646 220.500 53.500 C 221.487 55.588 223.784 57.725 223 60 C 221.878 63.205 218.022 64.681 215 66.500 C 210.394 69.251 205.183 72.154 200 72.500 C 197.008 72.705 194.204 69.732 192.500 67.500 C 189.243 63.246 186.370 57.963 185.500 53 C 184.630 48.036 186.072 42.607 187.500 38 C 188.610 34.428 189.899 29.447 193.500 28.500 C 197.268 27.514 201.033 30.987 204.500 33 Z " transform="matrix(0.28325462341308594, -0.02896539680659771, 0.02896539680659771, 0.28325462341308594, 18.9, 5)"/>
|
||||
<path id="ID0.7559871361590922" fill="#156699" stroke="none" stroke-linecap="round" d="M 173 15.500 C 176.552 16.907 180.326 18.676 183 21.500 C 184.522 23.107 185.307 25.191 185 27 C 184.828 27.978 182.764 26.746 181.500 27 C 179.223 27.589 177.103 29.116 174.500 29.500 C 172.202 29.841 169.330 31.101 167.500 29.500 C 165.210 27.472 166.888 23.450 165.500 20.500 C 164.074 17.447 158.294 12.962 160 12 C 162.394 10.668 168.833 13.856 173 15.500 Z " transform="matrix(0.28325462341308594, -0.02896539680659771, 0.02896539680659771, 0.28325462341308594, 19.35, 5.1)"/>
|
||||
<path id="ID0.7559871361590922" fill="#156699" stroke="none" stroke-linecap="round" d="M 173 15.500 C 176.552 16.907 180.326 18.676 183 21.500 C 184.522 23.107 185.307 25.191 185 27 C 184.828 27.978 182.764 26.746 181.500 27 C 179.223 27.589 177.103 29.116 174.500 29.500 C 172.202 29.841 169.330 31.101 167.500 29.500 C 165.210 27.472 166.888 23.450 165.500 20.500 C 164.074 17.447 158.294 12.962 160 12 C 162.394 10.668 168.833 13.856 173 15.500 Z " transform="matrix(0.14023293554782867, -0.07412896305322647, -0.07412896305322647, -0.14023293554782867, 52.55, 37.65)"/>
|
||||
<path id="ID0.7559871361590922" fill="#156699" stroke="none" stroke-linecap="round" d="M 173 15.500 C 176.552 16.907 180.326 18.676 183 21.500 C 184.522 23.107 185.307 25.191 185 27 C 184.828 27.978 182.764 26.746 181.500 27 C 179.223 27.589 177.103 29.116 174.500 29.500 C 172.202 29.841 169.330 31.101 167.500 29.500 C 165.210 27.472 166.888 23.450 165.500 20.500 C 164.074 17.447 158.294 12.962 160 12 C 162.394 10.668 168.833 13.856 173 15.500 Z " transform="matrix(0.10009558498859406, -0.05291184037923813, -0.05291184037923813, -0.10009558498859406, 54.9, 34.1)"/>
|
||||
<g id="ID0.200826785992831">
|
||||
<path id="ID0.45205234037712216" fill="#FFFFFF" stroke="none" d="M 204.500 44.500 C 206.914 44.500 209.102 45.480 210.686 47.064 C 212.270 48.648 213.250 50.836 213.250 53.250 C 213.250 55.664 212.270 57.852 210.686 59.436 C 209.102 61.020 206.914 62 204.500 62 C 202.086 62 199.898 61.020 198.314 59.436 C 196.730 57.852 195.750 55.664 195.750 53.250 C 195.750 50.836 196.730 48.648 198.314 47.064 C 199.898 45.480 202.086 44.500 204.500 44.500 Z " transform="matrix(0.311580091714859, -0.031861938536167145, 0.031861938536167145, 0.311580091714859, 12.95, 3.2)"/>
|
||||
<path id="ID0.5682034506462514" fill="#000000" stroke="none" stroke-linecap="round" d="M 203.875 48.500 C 205.157 48.976 204.318 51.441 205.250 52.500 C 206.370 53.493 208.958 52.758 209.500 54.125 C 210.023 55.455 208.870 57.083 207.851 58.101 C 206.833 59.120 205.427 59.750 203.875 59.750 C 202.323 59.750 200.917 59.120 199.899 58.101 C 198.880 57.083 198.250 55.677 198.250 54.125 C 198.250 52.573 198.880 51.167 199.899 50.149 C 200.917 49.130 202.534 48.005 203.875 48.500 Z " transform="matrix(0.28325462341308594, -0.02896539680659771, 0.02896539680659771, 0.28325462341308594, 18.9, 4.05)"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ID0.1571304271928966">
|
||||
<path id="ID0.7064403598196805" fill="#238023" stroke="none" stroke-linecap="round" d="M 230.500 231.250 C 232.089 230.404 233.955 230.107 235.750 229.750 C 239.143 229.437 246.327 227.829 246 229.250 C 245.664 230.712 237.995 233.834 234.500 236.750 C 232.851 237.966 231.079 239.499 230.750 241.500 C 230.449 243.316 231.738 244.963 232.500 246.750 C 233.166 248.329 234.408 249.641 234.500 251.500 C 234.557 252.983 233.538 254.494 232.500 255.500 C 230.939 257.007 229.103 258.843 227 259 C 224.115 259.216 221.342 257.296 218.750 256.250 C 215.228 254.832 209.293 254.712 208.500 251.250 C 207.636 247.481 212.246 244.050 215.250 241.250 C 219.692 237.110 225.144 234.104 230.500 231.250 Z " transform="matrix(0.2853225767612457, 0.03976035863161087, -0.03976035863161087, 0.2853225767612457, -35.95, -67.2)"/>
|
||||
<path id="ID0.2519802562892437" fill="#238023" stroke="none" stroke-linecap="round" d="M 219 308.500 C 224.760 307.795 231.044 304.882 236.750 306 C 238.538 306.382 235.074 309.758 234 311.500 C 232.415 314.057 230.331 316.075 229.250 318.750 C 228.325 321.031 226.007 325.339 228.250 325.500 C 233.882 326.339 244.565 320.145 245 320.750 C 245.435 321.355 236.538 328.638 231.500 330.750 C 228.038 332.201 223.795 332.145 220.250 331.500 C 217.750 331.046 215.067 329.515 213.750 327.500 C 211.805 324.524 211.477 320.567 210.750 317.250 C 210.174 314.628 207.968 311.182 209.750 309.250 C 211.824 307.004 215.933 308.876 219 308.500 Z " transform="matrix(0.2853225767612457, 0.03976035863161087, -0.03976035863161087, 0.2853225767612457, -37.2, -65.95)"/>
|
||||
<path id="ID0.4992571324110031" fill="#238023" stroke="none" stroke-linecap="round" d="M 306.750 303.250 C 309.969 303.881 313.159 305.951 314.750 309 C 316.356 312.103 315.458 316.080 314.750 319.500 C 314.433 321.010 313.367 322.249 312.250 323.250 C 311.106 324.270 308.236 326.302 308.250 325.250 C 308.236 323.462 312.053 320.396 312.250 317.500 C 312.420 314.965 311.358 311.543 309 310.250 C 306.428 308.976 303.218 310.748 300.250 311.250 C 297.284 311.753 294.557 312.879 291.500 313.500 C 287.462 314.317 283.418 315.303 279.250 315.250 C 275.169 315.197 271.269 314.167 267.250 312.750 C 264.812 311.888 262.817 310.141 260.750 308.500 C 258.908 307.031 255.304 305.290 256 303.250 C 256.994 300.378 261.565 300.124 264 298.250 C 265.724 296.921 266.590 293.214 268.750 293.750 C 271.622 294.464 271.776 299.211 274.250 300.750 C 276.856 302.372 280.237 302.562 283.250 302.750 C 291.060 303.236 299.084 301.748 306.750 303.250 Z " transform="matrix(0.2853225767612457, 0.03976035863161087, -0.03976035863161087, 0.2853225767612457, -37.2, -69.15)"/>
|
||||
<path id="ID0.4335831757634878" fill="#238023" stroke="none" stroke-linecap="round" d="M 282.500 262.750 C 285.688 261.366 287.997 258.398 290.250 255.750 C 292.265 253.384 293.587 250.562 294.750 247.750 C 295.278 246.843 294.708 245.666 295.250 244.750 C 296.579 242.530 299.956 239.060 300.500 239 C 301.044 238.940 298.976 242.572 298.750 244.500 C 297.971 248.520 298.021 252.648 297.500 256.750 C 297.007 260.619 297.696 265.387 295.250 268.250 C 291.785 272.297 285.866 273.682 281.250 276 C 277.985 277.635 274.556 279.222 271.250 280.500 C 268.180 281.688 264.988 283.844 261.750 283.250 C 258.239 282.605 255.596 279.603 252.750 277.500 C 251.401 276.331 248.618 275.106 249.250 273.500 C 250.412 270.548 253.816 268.764 256.750 267.500 C 259.821 266.181 263.268 266.197 266.500 265.500 C 271.844 264.615 277.551 264.898 282.500 262.750 Z " transform="matrix(0.2853225767612457, 0.03976035863161087, -0.03976035863161087, 0.2853225767612457, -35.95, -67.2)"/>
|
||||
<path id="ID0.7443878236226737" fill="#77B328" stroke="none" stroke-linecap="round" d="M 224 257.500 C 232.163 261.084 239.603 266.312 246.531 271.310 C 252.300 275.471 262.258 278.446 262.500 285.500 C 262.244 293.591 253.027 299.469 246.500 304 C 239.061 309.170 229.909 312.435 221 313.500 C 212.819 314.473 200.725 315.519 196.500 310 C 193.200 305.674 203.804 299.085 206.500 293 C 208.997 288.029 212.006 282.810 212 277 C 212 271.737 209.148 267.100 207 262 C 205.562 258.567 199.163 252.634 202 252 C 207.932 250.691 217.164 254.580 224 257.500 Z " transform="matrix(0.2853225767612457, 0.03976035863161087, -0.03976035863161087, 0.2853225767612457, -35.95, -67.2)"/>
|
||||
<path id="ID0.4867734210565686" fill="#238023" stroke="none" stroke-linecap="round" d="M 198 253 C 202.245 252.136 207.380 255.916 209.500 260 C 212.710 266.264 212.818 274.022 212 281 C 211.246 287.449 207.908 293.565 204.500 299 C 201.758 302.647 198.306 307.682 194 307.500 C 186.721 307.192 180.197 302.318 174.500 297.500 C 171.692 295.118 171.325 290.652 171 287 C 170.844 285.212 174.046 284.333 174 282.500 C 173.958 280.191 170.980 278.516 171.500 276 C 172.382 272.043 175.460 268.686 178.500 266 C 184.267 260.911 190.179 254.472 198 253 Z " transform="matrix(0.2853225767612457, 0.03976035863161087, -0.03976035863161087, 0.2853225767612457, -35.95, -67.2)"/>
|
||||
<g id="ID0.200826785992831">
|
||||
<path id="ID0.45205234037712216" fill="#FFFFFF" stroke="none" d="M 204.500 44.500 C 206.914 44.500 209.102 45.480 210.686 47.064 C 212.270 48.648 213.250 50.836 213.250 53.250 C 213.250 55.664 212.270 57.852 210.686 59.436 C 209.102 61.020 206.914 62 204.500 62 C 202.086 62 199.898 61.020 198.314 59.436 C 196.730 57.852 195.750 55.664 195.750 53.250 C 195.750 50.836 196.730 48.648 198.314 47.064 C 199.898 45.480 202.086 44.500 204.500 44.500 Z " transform="matrix(0.313854843378067, 0.043736398220062256, -0.043736398220062256, 0.313854843378067, -52.9, -6.9)"/>
|
||||
<path id="ID0.5682034506462514" fill="#000000" stroke="none" stroke-linecap="round" d="M 203.875 48.500 C 205.157 48.976 204.318 51.441 205.250 52.500 C 206.370 53.493 208.958 52.758 209.500 54.125 C 210.023 55.455 208.870 57.083 207.851 58.101 C 206.833 59.120 205.427 59.750 203.875 59.750 C 202.323 59.750 200.917 59.120 199.899 58.101 C 198.880 57.083 198.250 55.677 198.250 54.125 C 198.250 52.573 198.880 51.167 199.899 50.149 C 200.917 49.130 202.534 48.005 203.875 48.500 Z " transform="matrix(0.2853225767612457, 0.03976035863161087, -0.03976035863161087, 0.2853225767612457, -47.3, -4.65)"/>
|
||||
</g>
|
||||
<path id="ID0.8089016047306359" fill="#0F506D" stroke="none" stroke-linecap="round" d="M 226.250 281.250 L 218.500 265.500 L 234.500 284 L 218 296.500 L 226.250 281.250 Z " transform="matrix(0.2853225767612457, 0.03976035863161087, -0.03976035863161087, 0.2853225767612457, -37.1, -67.25)"/>
|
||||
<path id="ID0.8089016047306359" fill="#0F506D" stroke="none" stroke-linecap="round" d="M 226 282.750 L 218.750 271.500 L 234.500 284 L 217.250 293.750 L 226 282.750 Z " transform="matrix(0.2853225767612457, 0.03976035863161087, -0.03976035863161087, 0.2853225767612457, -31.05, -66.2)"/>
|
||||
</g>
|
||||
<g id="ID0.9654617104679346" transform="matrix(1, 0, 0, 1, -84, 1)">
|
||||
<path id="ID0.042643893510103226" fill="#0074B4" stroke="none" stroke-linecap="round" d="M 345.500 43.500 C 352.226 40.920 364.285 37.186 367 41 C 369.641 44.721 359.934 52.951 357 58.750 C 356.240 60.259 356.356 62.300 355.315 63.522 C 354.274 64.744 352.836 65.500 351.250 65.500 C 349.664 65.500 348.226 64.744 347.185 63.522 C 346.144 62.300 346.457 60.133 345.500 58.750 C 343.657 56.129 338.232 54.934 338 51.500 C 338.232 47.912 342.204 44.763 345.500 43.500 Z " transform="matrix(0.29237398505210876, 0.045474451035261154, -0.045474451035261154, 0.29237398505210876, 67.1, -20.85)"/>
|
||||
<path id="ID0.2613167092204094" fill="#0084C9" stroke="none" stroke-linecap="round" d="M 331.500 58 C 340.311 58.032 349.029 59.803 357.500 62 C 362.281 63.275 365.981 65.969 370.500 67 C 377.140 68.536 383.821 69.391 390.500 69 C 394.861 68.748 398.933 66.835 402.500 64.500 C 406.907 61.595 414.259 49.896 414 52.500 C 413.607 57.068 406.879 72.390 401 81 C 398.213 85.071 393.472 87.202 389.500 90 C 384.456 93.045 379.690 97.290 374 98.500 C 364.068 100.616 353.576 99.708 343.500 99 C 336.495 98.501 330.107 94.690 323 94 C 317.366 93.448 312.435 92.811 306 94.500 C 297.405 96.586 289.223 100.280 281 103.500 C 276.539 105.248 272.143 107.884 267.500 108.500 C 265.141 108.817 262.298 107.412 261 105.500 C 259.797 103.705 260.835 100.810 262 99 C 263.311 96.993 265.622 96.206 268 95 C 271.622 93.188 275.736 92.491 279.500 91 C 282.122 89.969 284.940 89.188 286.500 87 C 290.451 82.471 291.701 76.148 295.500 71.500 C 298.871 67.379 303.008 63.674 308.172 61.737 C 315.215 59.103 323.241 57.971 331.500 58 Z " transform="matrix(0.29237398505210876, 0.045474451035261154, -0.045474451035261154, 0.29237398505210876, 65.3, -23.55)"/>
|
||||
<path id="ID0.2703171642497182" fill="#0084C9" stroke="none" stroke-linecap="round" d="M 402 11 C 403.979 11.181 402.002 18.582 403.250 22 C 404.314 25.262 407.082 27.571 408.750 30.500 C 409.510 31.851 408.932 33.874 410 35 C 411.060 36.113 413.210 35.527 414.750 36.250 C 416.348 37.139 417.679 38.552 419.250 39.750 C 421.646 41.579 423.648 44.040 426.250 45.500 C 428.623 47.076 434.615 47.495 434 48.750 C 433.250 50.288 426.954 52.513 423.250 52 C 416.053 51.002 407.785 49.418 402.750 44 C 397.201 38.286 394.443 29.644 394.250 21.500 C 394.148 17.156 399.740 10.797 402 11 Z " transform="matrix(0.29237398505210876, 0.045474451035261154, -0.045474451035261154, 0.29237398505210876, 67.1, -20.85)"/>
|
||||
<path id="ID0.23363662092015147" fill="#0084C9" stroke="none" stroke-linecap="round" d="M 307.500 93 C 313.403 90.529 320.479 92.813 326.750 92.750 C 328.416 92.733 330.398 91.938 331.750 92.900 C 333.256 93.980 333.414 96.219 334.500 97.750 C 336.083 100.422 337.077 103.815 339.750 105.500 C 343.355 107.777 349.277 106.663 352 109.250 C 353.261 110.451 349.368 112.456 347.500 113.250 C 343.730 114.855 339.599 116.125 335.500 116 C 330.373 115.845 325.149 114.261 320.500 112.500 C 317.694 111.436 315.228 109.616 313 107.500 C 310.995 105.590 309.505 103.098 308.500 100.500 C 307.596 98.150 305.232 93.951 307.500 93 Z " transform="matrix(0.29237398505210876, 0.045474451035261154, -0.045474451035261154, 0.29237398505210876, 76.1, -19.8)"/>
|
||||
<path id="ID0.8955960888415575" fill="#B9DFF5" stroke="none" stroke-linecap="round" d="M 348.500 94.900 C 356.828 94.074 364.724 90.502 372.500 87.400 C 376.682 85.723 379.988 83.161 383.500 80.750 C 386.324 78.993 389.383 77.500 391.500 74.900 C 395.721 69.694 398.543 63.542 401.750 57.750 C 403.789 54.415 406.633 44.911 407.250 47.500 C 408.660 53.743 409.066 66.843 406.250 75.750 C 403.404 84.750 398.305 93.835 390.750 99.500 C 379.373 108.022 365.480 112.541 352 116.750 C 344.690 119.030 337.034 119.506 329.500 119.250 C 324.033 119.065 318.555 117.327 313.250 115.750 C 307.591 114.069 301.808 112.016 296.250 109.750 C 292.977 108.418 289.993 106.012 286.500 105.250 C 282.117 104.219 278.641 105.941 274.750 105.750 C 266.381 104.854 264.327 102.788 264.500 100.400 C 265.089 97.425 269.799 95.466 273 93.900 C 277.344 91.790 282.608 90.777 287.500 89.400 C 292.113 88.108 295.629 86.648 299.750 85.750 C 302.836 85.308 305.215 85.260 309 85.400 C 315.030 85.720 321.085 86.643 327 87.900 C 330.872 88.727 333.830 89.999 337.250 91 C 340.991 92.330 344.181 95.296 348.500 94.900 Z " transform="matrix(0.29237398505210876, 0.045474451035261154, -0.045474451035261154, 0.29237398505210876, 67.1, -20.85)"/>
|
||||
<path id="ID0.20290940441191196" fill="#006CA8" stroke="none" stroke-linecap="round" d="M 313.250 105.500 C 315.749 104.614 320.363 107.191 323.750 107.750 C 325.565 108.048 327.412 108.249 329.250 108.250 C 330.819 108.246 332.742 106.764 334.250 107.500 C 335.557 108.150 335.324 110.181 336.250 111.250 C 338.053 113.334 340.371 114.872 342.500 116.500 C 343.703 117.623 347.044 118.488 346.250 119.500 C 344.815 121.315 341.196 121.780 338.500 122.250 C 336.824 122.543 335.027 122.256 333.250 122 C 331.258 121.586 329.170 121.154 327.250 120.250 C 325.037 119.207 323.110 117.572 321.250 116 C 319.341 114.138 317.694 112.065 316 110 C 314.891 108.642 311.923 105.985 313.250 105.500 Z " transform="matrix(0.29237398505210876, 0.045474451035261154, -0.045474451035261154, 0.29237398505210876, 67.3, -17.4)"/>
|
||||
<path id="ID0.2685543983243406" fill="#720402" stroke="none" stroke-linecap="round" d="M 262.500 111.500 C 266.045 110.482 269.759 110.083 273.250 109 C 275.819 108.203 278.469 107.443 280.750 106 C 282.626 104.898 283.891 101.399 285.500 101.500 C 286.710 101.604 287.072 105.331 286.250 106.750 C 285.368 108.256 283.169 108.481 281.500 109 C 278.612 109.897 275.645 110.605 272.750 111.500 C 269.605 112.473 266.389 113.190 263.350 114.350 C 259.377 116.028 254.644 120.035 251.750 120 C 250.335 119.982 253.099 115.774 254.750 114.500 C 256.953 112.800 259.871 112.318 262.500 111.500 Z " transform="matrix(0.29237398505210876, 0.045474451035261154, -0.045474451035261154, 0.29237398505210876, 71.05, -26.15)"/>
|
||||
<path id="ID0.020179532933980227" fill="#FFFFFF" stroke="none" d="M 327.750 102.500 C 327.750 102.500 327.750 102.514 327.750 102.537 C 327.750 102.559 327.750 102.591 327.750 102.625 C 327.750 102.659 327.750 102.691 327.750 102.713 C 327.750 102.736 327.750 102.750 327.750 102.750 C 327.750 102.750 327.750 102.736 327.750 102.713 C 327.750 102.691 327.750 102.659 327.750 102.625 C 327.750 102.591 327.750 102.559 327.750 102.537 C 327.750 102.514 327.750 102.500 327.750 102.500 Z " transform="matrix(0.29237398505210876, 0.045474451035261154, -0.045474451035261154, 0.29237398505210876, 56.2, -42)"/>
|
||||
<g id="ID0.01900169951841235">
|
||||
<path id="ID0.1263936124742031" fill="#FFFFFF" stroke="none" d="M 287.875 89.750 C 288.944 89.750 289.913 90.184 290.614 90.886 C 291.316 91.587 291.750 92.556 291.750 93.625 C 291.750 94.694 291.316 95.663 290.614 96.364 C 289.913 97.066 288.944 97.500 287.875 97.500 C 286.806 97.500 285.837 97.066 285.136 96.364 C 284.434 95.663 284 94.694 284 93.625 C 284 92.556 284.434 91.587 285.136 90.886 C 285.837 90.184 286.806 89.750 287.875 89.750 Z " transform="matrix(0.29237398505210876, 0.045474451035261154, -0.045474451035261154, 0.29237398505210876, 71.25, -26.1)"/>
|
||||
<path id="ID0.3772318004630506" fill="#612C2F" stroke="none" d="M 288.375 91.250 C 289.168 91.250 289.887 91.572 290.407 92.093 C 290.928 92.613 291.250 93.332 291.250 94.125 C 291.250 94.918 290.928 95.637 290.407 96.157 C 289.887 96.678 289.168 97 288.375 97 C 287.582 97 286.863 96.678 286.343 96.157 C 285.822 95.637 285.500 94.918 285.500 94.125 C 285.500 93.332 285.822 92.613 286.343 92.093 C 286.863 91.572 287.582 91.250 288.375 91.250 Z " transform="matrix(0.34322163462638855, 0.05338304862380028, -0.05338304862380028, 0.34322163462638855, 57.3, -33.2)"/>
|
||||
<path id="ID0.5327137666754425" fill="#FFFFFF" stroke="none" d="M 297.125 91 C 297.435 91 297.717 91.126 297.920 91.330 C 298.124 91.533 298.250 91.815 298.250 92.125 C 298.250 92.435 298.124 92.717 297.920 92.920 C 297.717 93.124 297.435 93.250 297.125 93.250 C 296.815 93.250 296.533 93.124 296.330 92.920 C 296.126 92.717 296 92.435 296 92.125 C 296 91.815 296.126 91.533 296.330 91.330 C 296.533 91.126 296.815 91 297.125 91 Z " transform="matrix(0.29237398505210876, 0.045474451035261154, -0.045474451035261154, 0.29237398505210876, 68.45, -26.25)"/>
|
||||
<path id="ID0.5327137666754425" fill="#FFFFFF" stroke="none" d="M 297.125 91 C 297.435 91 297.717 91.126 297.920 91.330 C 298.124 91.533 298.250 91.815 298.250 92.125 C 298.250 92.435 298.124 92.717 297.920 92.920 C 297.717 93.124 297.435 93.250 297.125 93.250 C 296.815 93.250 296.533 93.124 296.330 92.920 C 296.126 92.717 296 92.435 296 92.125 C 296 91.815 296.126 91.533 296.330 91.330 C 296.533 91.126 296.815 91 297.125 91 Z " transform="matrix(0.17796677350997925, 0.02768009901046753, -0.02768009901046753, 0.17796677350997925, 100.95, -10.15)"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ID0.22971575800329447" transform="matrix(1, 0, 0, 1, 58, 18)">
|
||||
<path id="ID0.15444352198392153" fill="#1D1D1D" stroke="none" stroke-linecap="round" d="M 126.750 43.750 C 128.348 45.765 129.717 47.882 130.500 50.250 C 131.316 52.737 131.595 55.560 131.500 58.250 C 131.256 60.648 130.695 63.056 129.500 65.250 C 127.247 69.389 123.905 75.692 121.250 76.750 C 119.664 77.388 120.932 71.285 120.500 68.500 C 119.932 64.368 119.965 59.994 118.250 56 C 116.810 52.615 112.682 48.940 111.500 47.250 C 110.942 46.443 116.084 51.782 115 50.500 C 112.929 48.325 108.839 44.232 105.500 41.250 C 102.424 38.400 94.788 34.860 95.750 33 C 96.739 31.095 104.856 32.542 109.250 33.500 C 113.082 34.337 116.882 35.927 120.250 38 C 122.691 39.498 124.954 41.490 126.750 43.750 Z " transform="matrix(0.2750067412853241, 0.08883959800004959, -0.08883959800004959, 0.2750067412853241, 239.65, -14.25)"/>
|
||||
<path id="ID0.8846706752665341" fill="#E00200" stroke="none" stroke-linecap="round" d="M 172.500 29.500 C 178.602 27.258 187.615 25.571 192 28.500 C 194.644 30.274 188.165 35.642 187 39.500 C 185.618 43.893 184.287 48.257 185 52.500 C 185.505 57.130 188.107 61.250 190.500 65 C 192.326 67.923 197.665 70.406 197 73 C 196.241 75.721 190.319 75.731 187 76.500 C 181.614 77.758 175.978 79.257 170.500 78.500 C 163.472 77.519 156.742 75.557 150.500 72.500 C 147.143 70.844 143.945 67.639 142 64 C 140.897 61.903 141.296 59.150 142 56.500 C 143.207 52.047 144.606 47.242 148 44 C 155.139 37.915 163.532 32.796 172.500 29.500 Z " transform="matrix(0.2750067412853241, 0.08883959800004959, -0.08883959800004959, 0.2750067412853241, 235.2, -17.45)"/>
|
||||
<path id="ID0.5688502001576126" fill="#B40101" stroke="none" stroke-linecap="round" d="M 204.500 33 C 208.445 35.703 212.402 38.772 215.500 42.500 C 218.069 45.590 218.613 49.646 220.500 53.500 C 221.487 55.588 223.784 57.725 223 60 C 221.878 63.205 218.022 64.681 215 66.500 C 210.394 69.251 205.183 72.154 200 72.500 C 197.008 72.705 194.204 69.732 192.500 67.500 C 189.243 63.246 186.370 57.963 185.500 53 C 184.630 48.036 186.072 42.607 187.500 38 C 188.610 34.428 189.899 29.447 193.500 28.500 C 197.268 27.514 201.033 30.987 204.500 33 Z " transform="matrix(0.2750067412853241, 0.08883959800004959, -0.08883959800004959, 0.2750067412853241, 235.05, -17.35)"/>
|
||||
<path id="ID0.7559871361590922" fill="#1D1D1D" stroke="none" stroke-linecap="round" d="M 173 15.500 C 176.552 16.907 180.326 18.676 183 21.500 C 184.522 23.107 185.307 25.191 185 27 C 184.828 27.978 182.764 26.746 181.500 27 C 179.223 27.589 177.103 29.116 174.500 29.500 C 172.202 29.841 169.330 31.101 167.500 29.500 C 165.210 27.472 166.888 23.450 165.500 20.500 C 164.074 17.447 158.294 12.962 160 12 C 162.394 10.668 168.833 13.856 173 15.500 Z " transform="matrix(0.2750067412853241, 0.08883959800004959, -0.08883959800004959, 0.2750067412853241, 235.4, -17.1)"/>
|
||||
<path id="ID0.7559871361590922" fill="#1D1D1D" stroke="none" stroke-linecap="round" d="M 173 15.500 C 176.552 16.907 180.326 18.676 183 21.500 C 184.522 23.107 185.307 25.191 185 27 C 184.828 27.978 182.764 26.746 181.500 27 C 179.223 27.589 177.103 29.116 174.500 29.500 C 172.202 29.841 169.330 31.101 167.500 29.500 C 165.210 27.472 166.888 23.450 165.500 20.500 C 164.074 17.447 158.294 12.962 160 12 C 162.394 10.668 168.833 13.856 173 15.500 Z " transform="matrix(0.16058212518692017, -0.011566982604563236, -0.011566982604563236, -0.16058212518692017, 252.95, 26.65)"/>
|
||||
<path id="ID0.7559871361590922" fill="#1D1D1D" stroke="none" stroke-linecap="round" d="M 173 15.500 C 176.552 16.907 180.326 18.676 183 21.500 C 184.522 23.107 185.307 25.191 185 27 C 184.828 27.978 182.764 26.746 181.500 27 C 179.223 27.589 177.103 29.116 174.500 29.500 C 172.202 29.841 169.330 31.101 167.500 29.500 C 165.210 27.472 166.888 23.450 165.500 20.500 C 164.074 17.447 158.294 12.962 160 12 C 162.394 10.668 168.833 13.856 173 15.500 Z " transform="matrix(0.11462045460939407, -0.008256294764578342, -0.008256294764578342, -0.11462045460939407, 256.55, 24.35)"/>
|
||||
<g id="ID0.200826785992831">
|
||||
<path id="ID0.45205234037712216" fill="#FFFFFF" stroke="none" d="M 204.500 44.500 C 206.914 44.500 209.102 45.480 210.686 47.064 C 212.270 48.648 213.250 50.836 213.250 53.250 C 213.250 55.664 212.270 57.852 210.686 59.436 C 209.102 61.020 206.914 62 204.500 62 C 202.086 62 199.898 61.020 198.314 59.436 C 196.730 57.852 195.750 55.664 195.750 53.250 C 195.750 50.836 196.730 48.648 198.314 47.064 C 199.898 45.480 202.086 44.500 204.500 44.500 Z " transform="matrix(0.3025074303150177, 0.09772355854511261, -0.09772355854511261, 0.3025074303150177, 230.2, -21.45)"/>
|
||||
<path id="ID0.5682034506462514" fill="#000000" stroke="none" stroke-linecap="round" d="M 203.875 48.500 C 205.157 48.976 204.318 51.441 205.250 52.500 C 206.370 53.493 208.958 52.758 209.500 54.125 C 210.023 55.455 208.870 57.083 207.851 58.101 C 206.833 59.120 205.427 59.750 203.875 59.750 C 202.323 59.750 200.917 59.120 199.899 58.101 C 198.880 57.083 198.250 55.677 198.250 54.125 C 198.250 52.573 198.880 51.167 199.899 50.149 C 200.917 49.130 202.534 48.005 203.875 48.500 Z " transform="matrix(0.2750067412853241, 0.08883959800004959, -0.08883959800004959, 0.2750067412853241, 235.4, -18.25)"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ID0.1571304271928966" transform="matrix(1, 0, 0, 1, -107, -2)">
|
||||
<path id="ID0.7064403598196805" fill="#238023" stroke="none" stroke-linecap="round" d="M 230.500 231.250 C 232.089 230.404 233.955 230.107 235.750 229.750 C 239.143 229.437 246.327 227.829 246 229.250 C 245.664 230.712 237.995 233.834 234.500 236.750 C 232.851 237.966 231.079 239.499 230.750 241.500 C 230.449 243.316 231.738 244.963 232.500 246.750 C 233.166 248.329 234.408 249.641 234.500 251.500 C 234.557 252.983 233.538 254.494 232.500 255.500 C 230.939 257.007 229.103 258.843 227 259 C 224.115 259.216 221.342 257.296 218.750 256.250 C 215.228 254.832 209.293 254.712 208.500 251.250 C 207.636 247.481 212.246 244.050 215.250 241.250 C 219.692 237.110 225.144 234.104 230.500 231.250 Z " transform="matrix(0.27904364466667175, -0.07158564031124115, 0.07158564031124115, 0.27904364466667175, 242.5, -39.45)"/>
|
||||
<path id="ID0.2519802562892437" fill="#238023" stroke="none" stroke-linecap="round" d="M 219 308.500 C 224.760 307.795 231.044 304.882 236.750 306 C 238.538 306.382 235.074 309.758 234 311.500 C 232.415 314.057 230.331 316.075 229.250 318.750 C 228.325 321.031 226.007 325.339 228.250 325.500 C 233.882 326.339 244.565 320.145 245 320.750 C 245.435 321.355 236.538 328.638 231.500 330.750 C 228.038 332.201 223.795 332.145 220.250 331.500 C 217.750 331.046 215.067 329.515 213.750 327.500 C 211.805 324.524 211.477 320.567 210.750 317.250 C 210.174 314.628 207.968 311.182 209.750 309.250 C 211.824 307.004 215.933 308.876 219 308.500 Z " transform="matrix(0.27904364466667175, -0.07158564031124115, 0.07158564031124115, 0.27904364466667175, 241.8, -37.8)"/>
|
||||
<path id="ID0.4992571324110031" fill="#238023" stroke="none" stroke-linecap="round" d="M 306.750 303.250 C 309.969 303.881 313.159 305.951 314.750 309 C 316.356 312.103 315.458 316.080 314.750 319.500 C 314.433 321.010 313.367 322.249 312.250 323.250 C 311.106 324.270 308.236 326.302 308.250 325.250 C 308.236 323.462 312.053 320.396 312.250 317.500 C 312.420 314.965 311.358 311.543 309 310.250 C 306.428 308.976 303.218 310.748 300.250 311.250 C 297.284 311.753 294.557 312.879 291.500 313.500 C 287.462 314.317 283.418 315.303 279.250 315.250 C 275.169 315.197 271.269 314.167 267.250 312.750 C 264.812 311.888 262.817 310.141 260.750 308.500 C 258.908 307.031 255.304 305.290 256 303.250 C 256.994 300.378 261.565 300.124 264 298.250 C 265.724 296.921 266.590 293.214 268.750 293.750 C 271.622 294.464 271.776 299.211 274.250 300.750 C 276.856 302.372 280.237 302.562 283.250 302.750 C 291.060 303.236 299.084 301.748 306.750 303.250 Z " transform="matrix(0.27904364466667175, -0.07158564031124115, 0.07158564031124115, 0.27904364466667175, 240.6, -40.8)"/>
|
||||
<path id="ID0.4335831757634878" fill="#238023" stroke="none" stroke-linecap="round" d="M 282.500 262.750 C 285.688 261.366 287.997 258.398 290.250 255.750 C 292.265 253.384 293.587 250.562 294.750 247.750 C 295.278 246.843 294.708 245.666 295.250 244.750 C 296.579 242.530 299.956 239.060 300.500 239 C 301.044 238.940 298.976 242.572 298.750 244.500 C 297.971 248.520 298.021 252.648 297.500 256.750 C 297.007 260.619 297.696 265.387 295.250 268.250 C 291.785 272.297 285.866 273.682 281.250 276 C 277.985 277.635 274.556 279.222 271.250 280.500 C 268.180 281.688 264.988 283.844 261.750 283.250 C 258.239 282.605 255.596 279.603 252.750 277.500 C 251.401 276.331 248.618 275.106 249.250 273.500 C 250.412 270.548 253.816 268.764 256.750 267.500 C 259.821 266.181 263.268 266.197 266.500 265.500 C 271.844 264.615 277.551 264.898 282.500 262.750 Z " transform="matrix(0.27904364466667175, -0.07158564031124115, 0.07158564031124115, 0.27904364466667175, 242.5, -39.45)"/>
|
||||
<path id="ID0.7443878236226737" fill="#77B328" stroke="none" stroke-linecap="round" d="M 224 257.500 C 232.163 261.084 239.603 266.312 246.531 271.310 C 252.300 275.471 262.258 278.446 262.500 285.500 C 262.244 293.591 253.027 299.469 246.500 304 C 239.061 309.170 229.909 312.435 221 313.500 C 212.819 314.473 200.725 315.519 196.500 310 C 193.200 305.674 203.804 299.085 206.500 293 C 208.997 288.029 212.006 282.810 212 277 C 212 271.737 209.148 267.100 207 262 C 205.562 258.567 199.163 252.634 202 252 C 207.932 250.691 217.164 254.580 224 257.500 Z " transform="matrix(0.27904364466667175, -0.07158564031124115, 0.07158564031124115, 0.27904364466667175, 242.5, -39.45)"/>
|
||||
<path id="ID0.4867734210565686" fill="#238023" stroke="none" stroke-linecap="round" d="M 198 253 C 202.245 252.136 207.380 255.916 209.500 260 C 212.710 266.264 212.818 274.022 212 281 C 211.246 287.449 207.908 293.565 204.500 299 C 201.758 302.647 198.306 307.682 194 307.500 C 186.721 307.192 180.197 302.318 174.500 297.500 C 171.692 295.118 171.325 290.652 171 287 C 170.844 285.212 174.046 284.333 174 282.500 C 173.958 280.191 170.980 278.516 171.500 276 C 172.382 272.043 175.460 268.686 178.500 266 C 184.267 260.911 190.179 254.472 198 253 Z " transform="matrix(0.27904364466667175, -0.07158564031124115, 0.07158564031124115, 0.27904364466667175, 242.5, -39.45)"/>
|
||||
<g id="ID0.200826785992831">
|
||||
<path id="ID0.45205234037712216" fill="#FFFFFF" stroke="none" d="M 204.500 44.500 C 206.914 44.500 209.102 45.480 210.686 47.064 C 212.270 48.648 213.250 50.836 213.250 53.250 C 213.250 55.664 212.270 57.852 210.686 59.436 C 209.102 61.020 206.914 62 204.500 62 C 202.086 62 199.898 61.020 198.314 59.436 C 196.730 57.852 195.750 55.664 195.750 53.250 C 195.750 50.836 196.730 48.648 198.314 47.064 C 199.898 45.480 202.086 44.500 204.500 44.500 Z " transform="matrix(0.3069480061531067, -0.07874420285224915, 0.07874420285224915, 0.3069480061531067, 249.7, 22.7)"/>
|
||||
<path id="ID0.5682034506462514" fill="#000000" stroke="none" stroke-linecap="round" d="M 203.875 48.500 C 205.157 48.976 204.318 51.441 205.250 52.500 C 206.370 53.493 208.958 52.758 209.500 54.125 C 210.023 55.455 208.870 57.083 207.851 58.101 C 206.833 59.120 205.427 59.750 203.875 59.750 C 202.323 59.750 200.917 59.120 199.899 58.101 C 198.880 57.083 198.250 55.677 198.250 54.125 C 198.250 52.573 198.880 51.167 199.899 50.149 C 200.917 49.130 202.534 48.005 203.875 48.500 Z " transform="matrix(0.27904364466667175, -0.07158564031124115, 0.07158564031124115, 0.27904364466667175, 255.75, 22.7)"/>
|
||||
</g>
|
||||
<path id="ID0.8089016047306359" fill="#0F506D" stroke="none" stroke-linecap="round" d="M 226.250 281.250 L 218.500 265.500 L 234.500 284 L 218 296.500 L 226.250 281.250 Z " transform="matrix(0.27904364466667175, -0.07158564031124115, 0.07158564031124115, 0.27904364466667175, 241.4, -39.05)"/>
|
||||
<path id="ID0.8089016047306359" fill="#0F506D" stroke="none" stroke-linecap="round" d="M 226 282.750 L 218.750 271.500 L 234.500 284 L 217.250 293.750 L 226 282.750 Z " transform="matrix(0.27904364466667175, -0.07158564031124115, 0.07158564031124115, 0.27904364466667175, 247.4, -40.4)"/>
|
||||
</g>
|
||||
<g id="ID0.9654617104679346" transform="matrix(1, 0, 0, 1, -107, -2)">
|
||||
<path id="ID0.042643893510103226" fill="#0074B4" stroke="none" stroke-linecap="round" d="M 345.500 43.500 C 352.226 40.920 364.285 37.186 367 41 C 369.641 44.721 359.934 52.951 357 58.750 C 356.240 60.259 356.356 62.300 355.315 63.522 C 354.274 64.744 352.836 65.500 351.250 65.500 C 349.664 65.500 348.226 64.744 347.185 63.522 C 346.144 62.300 346.457 60.133 345.500 58.750 C 343.657 56.129 338.232 54.934 338 51.500 C 338.232 47.912 342.204 44.763 345.500 43.500 Z " transform="matrix(-0.29446083307266235, 0.029039660468697548, 0.029039660468697548, 0.29446083307266235, 488.7, -12.25)"/>
|
||||
<path id="ID0.2613167092204094" fill="#0084C9" stroke="none" stroke-linecap="round" d="M 331.500 58 C 340.311 58.032 349.029 59.803 357.500 62 C 362.281 63.275 365.981 65.969 370.500 67 C 377.140 68.536 383.821 69.391 390.500 69 C 394.861 68.748 398.933 66.835 402.500 64.500 C 406.907 61.595 414.259 49.896 414 52.500 C 413.607 57.068 406.879 72.390 401 81 C 398.213 85.071 393.472 87.202 389.500 90 C 384.456 93.045 379.690 97.290 374 98.500 C 364.068 100.616 353.576 99.708 343.500 99 C 336.495 98.501 330.107 94.690 323 94 C 317.366 93.448 312.435 92.811 306 94.500 C 297.405 96.586 289.223 100.280 281 103.500 C 276.539 105.248 272.143 107.884 267.500 108.500 C 265.141 108.817 262.298 107.412 261 105.500 C 259.797 103.705 260.835 100.810 262 99 C 263.311 96.993 265.622 96.206 268 95 C 271.622 93.188 275.736 92.491 279.500 91 C 282.122 89.969 284.940 89.188 286.500 87 C 290.451 82.471 291.701 76.148 295.500 71.500 C 298.871 67.379 303.008 63.674 308.172 61.737 C 315.215 59.103 323.241 57.971 331.500 58 Z " transform="matrix(-0.29446083307266235, 0.029039660468697548, 0.029039660468697548, 0.29446083307266235, 490.65, -14.85)"/>
|
||||
<path id="ID0.2703171642497182" fill="#0084C9" stroke="none" stroke-linecap="round" d="M 402 11 C 403.979 11.181 402.002 18.582 403.250 22 C 404.314 25.262 407.082 27.571 408.750 30.500 C 409.510 31.851 408.932 33.874 410 35 C 411.060 36.113 413.210 35.527 414.750 36.250 C 416.348 37.139 417.679 38.552 419.250 39.750 C 421.646 41.579 423.648 44.040 426.250 45.500 C 428.623 47.076 434.615 47.495 434 48.750 C 433.250 50.288 426.954 52.513 423.250 52 C 416.053 51.002 407.785 49.418 402.750 44 C 397.201 38.286 394.443 29.644 394.250 21.500 C 394.148 17.156 399.740 10.797 402 11 Z " transform="matrix(-0.29446083307266235, 0.029039660468697548, 0.029039660468697548, 0.29446083307266235, 488.7, -12.25)"/>
|
||||
<path id="ID0.23363662092015147" fill="#0084C9" stroke="none" stroke-linecap="round" d="M 307.500 93 C 313.403 90.529 320.479 92.813 326.750 92.750 C 328.416 92.733 330.398 91.938 331.750 92.900 C 333.256 93.980 333.414 96.219 334.500 97.750 C 336.083 100.422 337.077 103.815 339.750 105.500 C 343.355 107.777 349.277 106.663 352 109.250 C 353.261 110.451 349.368 112.456 347.500 113.250 C 343.730 114.855 339.599 116.125 335.500 116 C 330.373 115.845 325.149 114.261 320.500 112.500 C 317.694 111.436 315.228 109.616 313 107.500 C 310.995 105.590 309.505 103.098 308.500 100.500 C 307.596 98.150 305.232 93.951 307.500 93 Z " transform="matrix(-0.29446083307266235, 0.029039660468697548, 0.029039660468697548, 0.29446083307266235, 479.65, -11.7)"/>
|
||||
<path id="ID0.8955960888415575" fill="#B9DFF5" stroke="none" stroke-linecap="round" d="M 348.500 94.900 C 356.828 94.074 364.724 90.502 372.500 87.400 C 376.682 85.723 379.988 83.161 383.500 80.750 C 386.324 78.993 389.383 77.500 391.500 74.900 C 395.721 69.694 398.543 63.542 401.750 57.750 C 403.789 54.415 406.633 44.911 407.250 47.500 C 408.660 53.743 409.066 66.843 406.250 75.750 C 403.404 84.750 398.305 93.835 390.750 99.500 C 379.373 108.022 365.480 112.541 352 116.750 C 344.690 119.030 337.034 119.506 329.500 119.250 C 324.033 119.065 318.555 117.327 313.250 115.750 C 307.591 114.069 301.808 112.016 296.250 109.750 C 292.977 108.418 289.993 106.012 286.500 105.250 C 282.117 104.219 278.641 105.941 274.750 105.750 C 266.381 104.854 264.327 102.788 264.500 100.400 C 265.089 97.425 269.799 95.466 273 93.900 C 277.344 91.790 282.608 90.777 287.500 89.400 C 292.113 88.108 295.629 86.648 299.750 85.750 C 302.836 85.308 305.215 85.260 309 85.400 C 315.030 85.720 321.085 86.643 327 87.900 C 330.872 88.727 333.830 89.999 337.250 91 C 340.991 92.330 344.181 95.296 348.500 94.900 Z " transform="matrix(-0.29446083307266235, 0.029039660468697548, 0.029039660468697548, 0.29446083307266235, 488.7, -12.25)"/>
|
||||
<path id="ID0.20290940441191196" fill="#006CA8" stroke="none" stroke-linecap="round" d="M 313.250 105.500 C 315.749 104.614 320.363 107.191 323.750 107.750 C 325.565 108.048 327.412 108.249 329.250 108.250 C 330.819 108.246 332.742 106.764 334.250 107.500 C 335.557 108.150 335.324 110.181 336.250 111.250 C 338.053 113.334 340.371 114.872 342.500 116.500 C 343.703 117.623 347.044 118.488 346.250 119.500 C 344.815 121.315 341.196 121.780 338.500 122.250 C 336.824 122.543 335.027 122.256 333.250 122 C 331.258 121.586 329.170 121.154 327.250 120.250 C 325.037 119.207 323.110 117.572 321.250 116 C 319.341 114.138 317.694 112.065 316 110 C 314.891 108.642 311.923 105.985 313.250 105.500 Z " transform="matrix(-0.29446083307266235, 0.029039660468697548, 0.029039660468697548, 0.29446083307266235, 488.3, -8.8)"/>
|
||||
<path id="ID0.2685543983243406" fill="#720402" stroke="none" stroke-linecap="round" d="M 262.500 111.500 C 266.045 110.482 269.759 110.083 273.250 109 C 275.819 108.203 278.469 107.443 280.750 106 C 282.626 104.898 283.891 101.399 285.500 101.500 C 286.710 101.604 287.072 105.331 286.250 106.750 C 285.368 108.256 283.169 108.481 281.500 109 C 278.612 109.897 275.645 110.605 272.750 111.500 C 269.605 112.473 266.389 113.190 263.350 114.350 C 259.377 116.028 254.644 120.035 251.750 120 C 250.335 119.982 253.099 115.774 254.750 114.500 C 256.953 112.800 259.871 112.318 262.500 111.500 Z " transform="matrix(-0.29446083307266235, 0.029039660468697548, 0.029039660468697548, 0.29446083307266235, 485.05, -17.75)"/>
|
||||
<path id="ID0.020179532933980227" fill="#FFFFFF" stroke="none" d="M 327.750 102.500 C 327.750 102.500 327.750 102.514 327.750 102.537 C 327.750 102.559 327.750 102.591 327.750 102.625 C 327.750 102.659 327.750 102.691 327.750 102.713 C 327.750 102.736 327.750 102.750 327.750 102.750 C 327.750 102.750 327.750 102.736 327.750 102.713 C 327.750 102.691 327.750 102.659 327.750 102.625 C 327.750 102.591 327.750 102.559 327.750 102.537 C 327.750 102.514 327.750 102.500 327.750 102.500 Z " transform="matrix(-0.29446083307266235, 0.029039660468697548, 0.029039660468697548, 0.29446083307266235, 500.75, -32.75)"/>
|
||||
<g id="ID0.01900169951841235">
|
||||
<path id="ID0.1263936124742031" fill="#FFFFFF" stroke="none" d="M 287.875 89.750 C 288.944 89.750 289.913 90.184 290.614 90.886 C 291.316 91.587 291.750 92.556 291.750 93.625 C 291.750 94.694 291.316 95.663 290.614 96.364 C 289.913 97.066 288.944 97.500 287.875 97.500 C 286.806 97.500 285.837 97.066 285.136 96.364 C 284.434 95.663 284 94.694 284 93.625 C 284 92.556 284.434 91.587 285.136 90.886 C 285.837 90.184 286.806 89.750 287.875 89.750 Z " transform="matrix(-0.29446083307266235, 0.029039660468697548, 0.029039660468697548, 0.29446083307266235, 484.85, -17.7)"/>
|
||||
<path id="ID0.3772318004630506" fill="#612C2F" stroke="none" d="M 288.375 91.250 C 289.168 91.250 289.887 91.572 290.407 92.093 C 290.928 92.613 291.250 93.332 291.250 94.125 C 291.250 94.918 290.928 95.637 290.407 96.157 C 289.887 96.678 289.168 97 288.375 97 C 287.582 97 286.863 96.678 286.343 96.157 C 285.822 95.637 285.500 94.918 285.500 94.125 C 285.500 93.332 285.822 92.613 286.343 92.093 C 286.863 91.572 287.582 91.250 288.375 91.250 Z " transform="matrix(-0.3456714153289795, 0.034090034663677216, 0.034090034663677216, 0.3456714153289795, 499.15, -24.05)"/>
|
||||
<path id="ID0.5327137666754425" fill="#FFFFFF" stroke="none" d="M 297.125 91 C 297.435 91 297.717 91.126 297.920 91.330 C 298.124 91.533 298.250 91.815 298.250 92.125 C 298.250 92.435 298.124 92.717 297.920 92.920 C 297.717 93.124 297.435 93.250 297.125 93.250 C 296.815 93.250 296.533 93.124 296.330 92.920 C 296.126 92.717 296 92.435 296 92.125 C 296 91.815 296.126 91.533 296.330 91.330 C 296.533 91.126 296.815 91 297.125 91 Z " transform="matrix(-0.29446083307266235, 0.029039660468697548, 0.029039660468697548, 0.29446083307266235, 487.65, -17.7)"/>
|
||||
<path id="ID0.5327137666754425" fill="#FFFFFF" stroke="none" d="M 297.125 91 C 297.435 91 297.717 91.126 297.920 91.330 C 298.124 91.533 298.250 91.815 298.250 92.125 C 298.250 92.435 298.124 92.717 297.920 92.920 C 297.717 93.124 297.435 93.250 297.125 93.250 C 296.815 93.250 296.533 93.124 296.330 92.920 C 296.126 92.717 296 92.435 296 92.125 C 296 91.815 296.126 91.533 296.330 91.330 C 296.533 91.126 296.815 91 297.125 91 Z " transform="matrix(-0.1792370229959488, 0.01767631433904171, 0.01767631433904171, 0.1792370229959488, 454.3, -3.45)"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ID0.005945764947682619" transform="matrix(1, 0, 0, 1, 18, 0)">
|
||||
<path id="ID0.3160514016635716" fill="#CF0100" stroke="#CF0100" stroke-width="2" stroke-linecap="round" d="M 228.500 170.500 C 232.296 171.045 234.928 166.021 238.500 164.500 C 244.363 162.018 249.561 159.369 255.500 158.500 C 263.756 157.296 273.426 154.998 281.500 158.500 C 284.947 160.118 284.069 166.694 282.500 170.500 C 276.935 183.952 269.421 196.908 260 208 C 257.643 210.777 253.443 209.705 250.500 209 C 246.810 208.115 243 205.846 240.500 203.500 C 237.036 200.239 234.439 195.804 232 192 C 230.063 188.998 230.197 183.777 227 182.500 C 223.954 181.286 221.027 186.757 218 187 C 216.344 187.120 214.318 185.587 214 184 C 213.553 181.667 215.317 179.576 215.500 177 C 215.654 175.013 215.763 173.125 215.500 171 C 215.101 167.658 212.121 162.820 214 161 C 215.804 159.393 220.031 161.471 222.500 163 C 225.352 164.776 225.344 170.044 228.500 170.500 Z " transform="matrix(0.30471888184547424, 0, 0, 0.30471888184547424, 27.55, -25.65)"/>
|
||||
<path id="ID0.9766952991485596" fill="#D8D8D8" stroke="#D8D8D8" stroke-width="2" stroke-linecap="round" d="M 290.500 197.500 C 292.456 197.202 293.658 200.076 294.750 201.750 C 296.095 203.816 297.174 205.979 298 208.250 C 298.339 209.208 299.173 210.364 298.500 211 C 297.151 212.280 295.027 212.021 293.250 212.250 C 292.108 212.401 290.604 213.089 289.500 212.500 C 288.045 211.723 286.661 210.141 286 208.500 C 285.325 206.832 284.807 204.601 285.500 202.750 C 286.443 200.600 288.088 197.870 290.500 197.500 Z " transform="matrix(0.30471888184547424, 0, 0, 0.30471888184547424, 27.55, -25.65)"/>
|
||||
<path id="ID0.6063170093111694" fill="#373737" stroke="#373737" stroke-width="2" stroke-linecap="round" d="M 300.500 175.500 C 303.824 176.015 304.433 180.896 305.500 184 C 306.650 187.374 307.105 190.628 307.500 194 C 307.707 195.763 306.954 197.752 307.500 199.500 C 308.208 201.768 311.452 203.242 311 205 C 310.702 206.742 307.630 207.115 306 206.500 C 299.804 204.135 294.380 199.486 288.500 197 C 286.486 196.176 281.809 198.331 282 196 C 282.430 190.842 286.750 186.296 290 182.500 C 292.718 179.312 296.425 174.909 300.500 175.500 Z " transform="matrix(0.30471888184547424, 0, 0, 0.30471888184547424, 27.55, -25.65)"/>
|
||||
<path id="ID0.5334869814105332" fill="#D5A800" stroke="#D5A800" stroke-width="2" stroke-linecap="round" d="M 265 163 C 270.277 162.856 276.060 162.766 281.500 163.500 C 284.928 163.969 288.488 164.066 291.500 165.500 C 294.875 167.713 298.878 170.291 300 174 C 300.540 175.819 296.648 176.215 295 177.500 C 292.825 179.049 292.177 180.377 291 182 C 289.220 184.317 288.372 186.893 287.500 189.500 C 286.271 193.196 285.626 197.456 285.500 201.500 C 285.389 205.388 290.713 211.634 287.500 213.500 C 282.648 216.306 275.044 212.420 269 211 C 264.894 210.033 260.405 208.953 256.500 207 C 253.103 205.309 249.592 202.983 246.500 200.500 C 243.891 198.401 240.887 196.710 239 194 C 236.809 190.837 236.700 186.141 234.500 182.500 C 233.104 180.491 227.599 180.198 228.500 177.500 C 229.985 173.129 235.382 171.096 239.500 169 C 242.901 167.246 247.046 165.889 251 165 C 255.263 164.034 260.297 163.115 265 163 Z " transform="matrix(0.30471888184547424, 0, 0, 0.30471888184547424, 27.55, -25.65)"/>
|
||||
<path id="ID0.3526467867195606" fill="#000000" stroke="#000000" stroke-width="2" d="M 309 174.750 C 311.223 175.749 311.602 179.499 311.250 182 C 311.012 183.676 308.411 184.060 307.500 185.500 C 306.431 187.187 306.056 189.289 305 191 C 304.319 192.096 302.555 192.704 302 194 C 301.465 195.202 301.829 196.540 302.500 197.500 C 303.890 199.458 305.332 201.379 307.250 202.500 C 310.070 203.963 316.694 204.435 316.250 205 C 315.799 205.572 308.176 207.213 304.750 205.500 C 301.626 203.929 301.234 199.066 299.250 196 C 298.752 195.232 297.668 195.218 297.250 194.500 C 296.296 192.829 294.998 190.589 295.250 188.500 C 295.517 186.264 297.173 184.181 298.500 182.250 C 299.584 180.659 300.676 178.739 302.250 177.500 C 304.280 176.164 306.827 173.790 309 174.750 Z " transform="matrix(0.30471888184547424, 0, 0, 0.30471888184547424, 25.8, -24.75)"/>
|
||||
<path id="ID0.5240444806404412" fill="#FFFFFF" stroke="none" d="M 299 188.750 C 300.793 188.750 302.418 189.450 303.595 190.582 C 304.772 191.713 305.500 193.276 305.500 195 C 305.500 196.724 304.772 198.287 303.595 199.418 C 302.418 200.550 300.793 201.250 299 201.250 C 297.207 201.250 295.582 200.550 294.405 199.418 C 293.228 198.287 292.500 196.724 292.500 195 C 292.500 193.276 293.228 191.713 294.405 190.582 C 295.582 189.450 297.207 188.750 299 188.750 Z " transform="matrix(0.30471888184547424, 0, 0, 0.30471888184547424, 27.15, -26.5)"/>
|
||||
<path id="ID0.7714696801267564" fill="none" stroke="#000000" stroke-width="2" stroke-linecap="round" d="M 296.750 192 C 295.799 191.704 297.205 193.337 297.500 194 C 297.661 194.361 296.122 193.558 295.750 193 C 295.378 192.442 295.140 191.566 295.500 191 C 295.882 190.400 296.852 189.956 297.500 190.250 C 298.148 190.544 297.865 191.652 298.250 192.250 C 298.632 192.844 299.814 193.109 299.750 193.750 C 299.689 194.359 298.623 194.501 298 194.750 C 297.363 195.005 296.641 195.496 296 195.250 C 295.332 194.993 294.976 194.179 294.750 193.500 C 294.539 192.868 294.750 192.166 294.750 191.500 C 294.750 191.250 294.488 190.512 294.750 190.750 Z " transform="matrix(0.30471888184547424, 0, 0, 0.30471888184547424, 27.55, -25.65)"/>
|
||||
<path id="ID0.9720923146232963" fill="none" stroke="#000000" stroke-width="2" stroke-linecap="round" d="M 297.500 191.750 C 297.593 193.090 297.485 193.631 297.500 193.750 C 297.504 193.780 297.758 193.750 297.750 193.750 Z " transform="matrix(0.30471888184547424, 0, 0, 0.30471888184547424, 27.55, -25.65)"/>
|
||||
<path id="ID0.47732368437573314" fill="#000000" stroke="none" d="M 259.250 197 C 259.250 197 259.250 197.014 259.250 197.037 C 259.250 197.059 259.250 197.091 259.250 197.125 C 259.250 197.159 259.250 197.191 259.250 197.213 C 259.250 197.236 259.250 197.250 259.250 197.250 C 259.250 197.250 259.250 197.236 259.250 197.213 C 259.250 197.191 259.250 197.159 259.250 197.125 C 259.250 197.091 259.250 197.059 259.250 197.037 C 259.250 197.014 259.250 197 259.250 197 Z " transform="matrix(0.30471888184547424, 0, 0, 0.30471888184547424, 27.55, -25.65)"/>
|
||||
<path id="ID0.5334869814105332" fill="#B18401" stroke="#B18401" stroke-width="2" stroke-linecap="round" d="M 236.250 177.200 C 238.854 179.376 237.988 183.530 239.250 186.450 C 240.091 188.157 241.403 189.526 242.500 190.950 C 243.660 192.440 244.821 193.817 246.250 195.200 C 247.778 196.613 249.504 197.748 251.250 198.950 C 253.088 200.158 255.012 201.205 257 202.200 C 259.932 203.587 262.948 204.831 266 205.950 C 268.888 206.954 271.791 208.113 274.750 208.950 C 275.995 209.309 277.273 208.763 278.500 208.950 C 279.209 209.070 279.995 209.469 280.750 209.700 C 283.093 210.422 287.308 210.735 288 212.200 C 288.485 213.252 284.964 214.822 283.250 214.700 C 278.288 214.401 273.669 212.357 269 211 C 264.804 209.779 260.405 208.953 256.500 207 C 253.103 205.309 249.592 202.983 246.500 200.500 C 243.891 198.401 240.887 196.710 239 194 C 236.809 190.837 236.700 186.141 234.500 182.500 C 233.104 180.491 228.044 178.893 228.500 177.500 C 228.967 176.097 234.267 175.546 236.250 177.200 Z " transform="matrix(0.30471888184547424, 0, 0, 0.30471888184547424, 27.55, -25.65)"/>
|
||||
</g>
|
||||
<g id="ID0.005945764947682619" transform="matrix(1, 0, 0, 1, 157, -7)">
|
||||
<path id="ID0.3160514016635716" fill="#CF0100" stroke="#CF0100" stroke-width="2" stroke-linecap="round" d="M 228.500 170.500 C 232.296 171.045 234.928 166.021 238.500 164.500 C 244.363 162.018 249.561 159.369 255.500 158.500 C 263.756 157.296 273.426 154.998 281.500 158.500 C 284.947 160.118 284.069 166.694 282.500 170.500 C 276.935 183.952 269.421 196.908 260 208 C 257.643 210.777 253.443 209.705 250.500 209 C 246.810 208.115 243 205.846 240.500 203.500 C 237.036 200.239 234.439 195.804 232 192 C 230.063 188.998 230.197 183.777 227 182.500 C 223.954 181.286 221.027 186.757 218 187 C 216.344 187.120 214.318 185.587 214 184 C 213.553 181.667 215.317 179.576 215.500 177 C 215.654 175.013 215.763 173.125 215.500 171 C 215.101 167.658 212.121 162.820 214 161 C 215.804 159.393 220.031 161.471 222.500 163 C 225.352 164.776 225.344 170.044 228.500 170.500 Z " transform="matrix(-0.37214070558547974, -0.12060116231441498, -0.12060116231441498, 0.37214070558547974, 347.05, -11.55)"/>
|
||||
<path id="ID0.9766952991485596" fill="#D8D8D8" stroke="#D8D8D8" stroke-width="2" stroke-linecap="round" d="M 290.500 197.500 C 292.456 197.202 293.658 200.076 294.750 201.750 C 296.095 203.816 297.174 205.979 298 208.250 C 298.339 209.208 299.173 210.364 298.500 211 C 297.151 212.280 295.027 212.021 293.250 212.250 C 292.108 212.401 290.604 213.089 289.500 212.500 C 288.045 211.723 286.661 210.141 286 208.500 C 285.325 206.832 284.807 204.601 285.500 202.750 C 286.443 200.600 288.088 197.870 290.500 197.500 Z " transform="matrix(-0.37214070558547974, -0.12060116231441498, -0.12060116231441498, 0.37214070558547974, 347.05, -11.55)"/>
|
||||
<path id="ID0.6063170093111694" fill="#373737" stroke="#373737" stroke-width="2" stroke-linecap="round" d="M 300.500 175.500 C 303.824 176.015 304.433 180.896 305.500 184 C 306.650 187.374 307.105 190.628 307.500 194 C 307.707 195.763 306.954 197.752 307.500 199.500 C 308.208 201.768 311.452 203.242 311 205 C 310.702 206.742 307.630 207.115 306 206.500 C 299.804 204.135 294.380 199.486 288.500 197 C 286.486 196.176 281.809 198.331 282 196 C 282.430 190.842 286.750 186.296 290 182.500 C 292.718 179.312 296.425 174.909 300.500 175.500 Z " transform="matrix(-0.37214070558547974, -0.12060116231441498, -0.12060116231441498, 0.37214070558547974, 347.05, -11.55)"/>
|
||||
<path id="ID0.5334869814105332" fill="#D5A800" stroke="#D5A800" stroke-width="2" stroke-linecap="round" d="M 265 163 C 270.277 162.856 276.060 162.766 281.500 163.500 C 284.928 163.969 288.488 164.066 291.500 165.500 C 294.875 167.713 298.878 170.291 300 174 C 300.540 175.819 296.648 176.215 295 177.500 C 292.825 179.049 292.177 180.377 291 182 C 289.220 184.317 288.372 186.893 287.500 189.500 C 286.271 193.196 285.626 197.456 285.500 201.500 C 285.389 205.388 290.713 211.634 287.500 213.500 C 282.648 216.306 275.044 212.420 269 211 C 264.894 210.033 260.405 208.953 256.500 207 C 253.103 205.309 249.592 202.983 246.500 200.500 C 243.891 198.401 240.887 196.710 239 194 C 236.809 190.837 236.700 186.141 234.500 182.500 C 233.104 180.491 227.599 180.198 228.500 177.500 C 229.985 173.129 235.382 171.096 239.500 169 C 242.901 167.246 247.046 165.889 251 165 C 255.263 164.034 260.297 163.115 265 163 Z " transform="matrix(-0.37214070558547974, -0.12060116231441498, -0.12060116231441498, 0.37214070558547974, 347.05, -11.55)"/>
|
||||
<path id="ID0.3526467867195606" fill="#000000" stroke="#000000" stroke-width="2" d="M 309 174.750 C 311.223 175.749 311.602 179.499 311.250 182 C 311.012 183.676 308.411 184.060 307.500 185.500 C 306.431 187.187 306.056 189.289 305 191 C 304.319 192.096 302.555 192.704 302 194 C 301.465 195.202 301.829 196.540 302.500 197.500 C 303.890 199.458 305.332 201.379 307.250 202.500 C 310.070 203.963 316.694 204.435 316.250 205 C 315.799 205.572 308.176 207.213 304.750 205.500 C 301.626 203.929 301.234 199.066 299.250 196 C 298.752 195.232 297.668 195.218 297.250 194.500 C 296.296 192.829 294.998 190.589 295.250 188.500 C 295.517 186.264 297.173 184.181 298.500 182.250 C 299.584 180.659 300.676 178.739 302.250 177.500 C 304.280 176.164 306.827 173.790 309 174.750 Z " transform="matrix(-0.37214070558547974, -0.12060116231441498, -0.12060116231441498, 0.37214070558547974, 348.8, -9.75)"/>
|
||||
<path id="ID0.5240444806404412" fill="#FFFFFF" stroke="none" d="M 299 188.750 C 300.793 188.750 302.418 189.450 303.595 190.582 C 304.772 191.713 305.500 193.276 305.500 195 C 305.500 196.724 304.772 198.287 303.595 199.418 C 302.418 200.550 300.793 201.250 299 201.250 C 297.207 201.250 295.582 200.550 294.405 199.418 C 293.228 198.287 292.500 196.724 292.500 195 C 292.500 193.276 293.228 191.713 294.405 190.582 C 295.582 189.450 297.207 188.750 299 188.750 Z " transform="matrix(-0.37214070558547974, -0.12060116231441498, -0.12060116231441498, 0.37214070558547974, 347.85, -12.45)"/>
|
||||
<path id="ID0.7714696801267564" fill="none" stroke="#000000" stroke-width="2" stroke-linecap="round" d="M 296.750 192 C 295.799 191.704 297.205 193.337 297.500 194 C 297.661 194.361 296.122 193.558 295.750 193 C 295.378 192.442 295.140 191.566 295.500 191 C 295.882 190.400 296.852 189.956 297.500 190.250 C 298.148 190.544 297.865 191.652 298.250 192.250 C 298.632 192.844 299.814 193.109 299.750 193.750 C 299.689 194.359 298.623 194.501 298 194.750 C 297.363 195.005 296.641 195.496 296 195.250 C 295.332 194.993 294.976 194.179 294.750 193.500 C 294.539 192.868 294.750 192.166 294.750 191.500 C 294.750 191.250 294.488 190.512 294.750 190.750 Z " transform="matrix(-0.37214070558547974, -0.12060116231441498, -0.12060116231441498, 0.37214070558547974, 347.05, -11.55)"/>
|
||||
<path id="ID0.9720923146232963" fill="none" stroke="#000000" stroke-width="2" stroke-linecap="round" d="M 297.500 191.750 C 297.593 193.090 297.485 193.631 297.500 193.750 C 297.504 193.780 297.758 193.750 297.750 193.750 Z " transform="matrix(-0.37214070558547974, -0.12060116231441498, -0.12060116231441498, 0.37214070558547974, 347.05, -11.55)"/>
|
||||
<path id="ID0.47732368437573314" fill="#000000" stroke="none" d="M 259.250 197 C 259.250 197 259.250 197.014 259.250 197.037 C 259.250 197.059 259.250 197.091 259.250 197.125 C 259.250 197.159 259.250 197.191 259.250 197.213 C 259.250 197.236 259.250 197.250 259.250 197.250 C 259.250 197.250 259.250 197.236 259.250 197.213 C 259.250 197.191 259.250 197.159 259.250 197.125 C 259.250 197.091 259.250 197.059 259.250 197.037 C 259.250 197.014 259.250 197 259.250 197 Z " transform="matrix(-0.37214070558547974, -0.12060116231441498, -0.12060116231441498, 0.37214070558547974, 347.05, -11.55)"/>
|
||||
<path id="ID0.5334869814105332" fill="#B18401" stroke="#B18401" stroke-width="2" stroke-linecap="round" d="M 236.250 177.200 C 238.854 179.376 237.988 183.530 239.250 186.450 C 240.091 188.157 241.403 189.526 242.500 190.950 C 243.660 192.440 244.821 193.817 246.250 195.200 C 247.778 196.613 249.504 197.748 251.250 198.950 C 253.088 200.158 255.012 201.205 257 202.200 C 259.932 203.587 262.948 204.831 266 205.950 C 268.888 206.954 271.791 208.113 274.750 208.950 C 275.995 209.309 277.273 208.763 278.500 208.950 C 279.209 209.070 279.995 209.469 280.750 209.700 C 283.093 210.422 287.308 210.735 288 212.200 C 288.485 213.252 284.964 214.822 283.250 214.700 C 278.288 214.401 273.669 212.357 269 211 C 264.804 209.779 260.405 208.953 256.500 207 C 253.103 205.309 249.592 202.983 246.500 200.500 C 243.891 198.401 240.887 196.710 239 194 C 236.809 190.837 236.700 186.141 234.500 182.500 C 233.104 180.491 228.044 178.893 228.500 177.500 C 228.967 176.097 234.267 175.546 236.250 177.200 Z " transform="matrix(-0.37214070558547974, -0.12060116231441498, -0.12060116231441498, 0.37214070558547974, 347.05, -11.55)"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 56 KiB |
58
static/images/camp/map.svg
Normal file
|
@ -0,0 +1,58 @@
|
|||
<svg version="1.1" width="189" height="153" viewBox="-1 -1 189 153" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Exported by Scratch - http://scratch.mit.edu/ -->
|
||||
<g id="ID0.2224607989192009" transform="matrix(0.9720298647880554, 0, 0, 0.9720298647880554, 0.25, -0.25)">
|
||||
<g id="ID0.6571062658913434">
|
||||
<path id="ID0.025416731368750334" fill="#AC9D93" stroke="#000000" stroke-width="2" stroke-linecap="round" d="M 237 222 C 249.844 222.609 262.812 219.658 275.500 221.500 C 278.675 221.961 276.931 226.111 278 228.250 C 279.031 230.226 283.806 233.379 281.500 234 C 272.816 236.385 263.325 234.600 254.250 234.750 C 243.001 234.937 231.731 234.922 220.500 234.500 C 205.956 233.954 191.279 233.363 176.750 232 C 161.560 230.575 145.325 232.645 131.500 226.500 C 126.391 224.100 124.727 213.131 128 210 C 131.343 206.806 139.139 212.382 144.750 213.250 C 150.966 214.547 157.186 215.918 163.500 216.500 C 187.987 218.757 212.484 220.838 237 222 Z " transform="matrix(0.8718572854995728, 0, 0, 0.8718572854995728, -109, -53.6)"/>
|
||||
<path id="ID0.06462631793692708" fill="#AC9D93" stroke="#000000" stroke-width="2" stroke-linecap="round" d="M 334.500 71 C 337.715 71.555 341.173 73.991 342.750 77 C 344.374 80.101 343.527 84.345 343.250 88 C 343.095 90.072 343.541 93.087 341.750 94.250 C 339.589 95.646 336.370 94.719 333.750 94.250 C 331.091 93.777 327.848 93.589 325.750 91.750 C 323.904 90.131 322.872 87.387 323.250 85 C 323.588 81.123 325.289 77.242 327.750 74.250 C 329.334 72.324 332.042 70.579 334.500 71 Z " transform="matrix(0.8718572854995728, 0, 0, 0.8718572854995728, -112.5, -51.4)"/>
|
||||
<path id="ID0.39883529115468264" fill="#F3F0ED" stroke="#000000" stroke-width="2" stroke-linecap="round" d="M 252.250 64 C 264.576 63.746 277.010 64.022 289.250 65.500 C 301.908 67.024 314.984 68.817 327.250 72.750 C 330.317 73.733 325.450 75.456 325 77 C 324.103 81.431 323.722 85.978 323.250 90.500 C 322.363 98.977 322.543 107.496 321 116 C 314.895 149.622 310.120 183.784 300.250 216.500 C 297.781 224.678 293.117 232.470 285.750 234 C 280.066 235.032 279.025 222.870 273.500 221.750 C 263.328 219.690 252.934 225.703 242.500 225 C 210.686 222.852 178.756 219.307 147.500 213 C 139.686 211.423 152.284 209.384 153.500 206.750 C 156.206 201.539 157.844 195.843 159 190 C 161.450 177.619 162.785 165.140 164.500 152.500 C 166.900 134.839 168.015 116.861 172 99.500 C 173.877 91.328 175.774 81.935 182.250 76.500 C 190.438 69.638 202.227 68.379 212.750 66.500 C 225.725 64.183 239.053 64.273 252.250 64 Z " transform="matrix(0.8718572854995728, 0, 0, 0.8718572854995728, -109.9, -54.05)"/>
|
||||
</g>
|
||||
<g id="ID0.69259964954108">
|
||||
<path id="ID0.022748230025172234" fill="#C8BEB7" stroke="#000000" stroke-width="3" stroke-linecap="round" d="M 196 132 C 199.298 131.851 198.723 131.185 199 131 C 199.876 130.416 201.001 130.333 202 130 C 202.999 129.667 204.001 129.333 205 129 C 205.999 128.667 207.178 128.658 208 128 C 208.938 127.250 209.620 126.139 210 125 C 210.316 124.052 209.836 122.985 210 122 C 210.173 120.961 210.158 119.632 211 119 C 211.799 118.401 213.052 118.684 214 119 C 215.139 119.380 216.151 120.151 217 121 C 217.849 121.849 218.151 123.151 219 124 C 219.849 124.849 220.823 126.235 222 126 C 223.177 125.765 223.404 124.042 224 123 C 224.739 121.707 225.047 120.144 226 119 C 226.769 118.078 228.078 117.769 229 117 C 230.085 116.096 230.824 114.784 232 114 C 232.876 113.416 234.022 112.609 235 113 C 236.115 113.446 236.062 115.250 237 116 C 237.822 116.658 238.961 116.827 240 117 C 240.985 117.164 242.001 117 243 117 C 243.999 117 245.015 117.164 246 117 C 247.039 116.827 248.001 116.333 249 116 C 249.999 115.667 251.058 115.471 252 115 C 253.074 114.463 253.861 113.380 255 113 C 255.948 112.684 257.513 112.270 258 113 C 258.513 113.770 257.471 115.058 257 116 C 256.463 117.074 255.537 117.926 255 119 C 254.529 119.942 253.609 121.022 254 122 C 254.446 123.115 255.861 123.620 257 124 C 257.948 124.316 259.001 124 260 124 C 260.999 124 262.143 123.486 263 124 C 264.030 124.618 263.970 126.382 265 127 C 265.857 127.514 267.015 127.164 268 127 C 269.039 126.827 269.961 126.173 271 126 C 271.985 125.836 273.052 125.684 274 126 C 275.139 126.380 276.151 127.151 277 128 C 277.849 128.849 278.620 129.861 279 131 C 279.316 131.948 278.836 133.015 279 134 C 279.173 135.039 279.529 136.058 280 137 C 280.537 138.074 281.463 138.926 282 140 C 282.471 140.942 282.827 141.961 283 143 C 283.164 143.985 283 145.001 283 146 C 283 146.999 283 148.001 283 149 C 283 149.999 283 151.001 283 152 C 283 152.999 283 154.001 283 155 C 283 155.999 283.316 157.052 283 158 C 282.620 159.139 281.769 160.078 281 161 C 280.096 162.085 278.784 162.824 278 164 C 277.416 164.876 277.333 166.001 277 167 C 276.667 167.999 276.333 169.001 276 170 C 275.667 170.999 275.842 172.368 275 173 C 274.201 173.599 272.894 173.447 272 173 C 270.736 172.368 269.904 171.085 269 170 C 268.231 169.078 267.666 167.999 267 167 C 266.334 166.001 265.537 165.074 265 164 C 264.529 163.058 264.935 161.234 264 161 C 262.935 160.734 262.074 162.463 261 163 C 260.058 163.471 258.942 163.529 258 164 C 256.926 164.537 256.074 165.463 255 166 C 254.058 166.471 252.942 166.529 252 167 C 250.926 167.537 250.139 168.620 249 169 C 248.052 169.316 246.999 169 246 169 C 245.001 169 243.985 169.164 243 169 C 241.961 168.827 240.942 167.529 240 168 C 239.058 168.471 238.827 169.961 239 171 C 239.197 172.184 240.463 172.926 241 174 C 241.471 174.942 241.827 175.961 242 177 C 242.164 177.985 242.514 179.143 242 180 C 241.382 181.030 240.139 181.620 239 182 C 238.052 182.316 236.999 182 236 182 C 235.001 182 233.999 182 233 182 C 232.001 182 230.999 182 230 182 C 229.001 182 227.985 182.164 227 182 C 225.961 181.827 224.745 181.745 224 181 C 223.255 180.255 223.173 179.039 223 178 C 222.836 177.015 223.164 175.985 223 175 C 222.827 173.961 221.827 173.039 222 172 C 222.197 170.816 223.062 169.750 224 169 C 224.822 168.342 226.178 168.658 227 168 C 227.938 167.250 228.620 166.139 229 165 C 229.316 164.052 229.316 162.948 229 162 C 228.620 160.861 228.030 159.618 227 159 C 226.143 158.486 224.799 159.599 224 159 C 223.158 158.368 223.658 156.822 223 156 C 222.250 155.062 221.139 154.380 220 154 C 219.052 153.684 217.985 154.164 217 154 C 215.961 153.827 214.999 153.333 214 153 C 213.001 152.667 212.053 152 211 152 C 209.947 152 209.039 152.827 208 153 C 207.015 153.164 205.948 152.684 205 153 C 203.861 153.380 202.849 154.151 202 155 C 201.151 155.849 201.030 157.382 200 158 C 199.143 158.514 197.999 158 197 158 C 196.001 158 194.894 158.447 194 158 C 192.736 157.368 192.085 155.904 191 155 C 190.078 154.231 189.139 153.380 188 153 C 187.052 152.684 185.857 153.514 185 153 C 183.970 152.382 183.380 151.139 183 150 C 182.684 149.052 182.836 147.985 183 147 C 183.173 145.961 183.667 144.999 184 144 C 184.333 143.001 184.827 142.039 185 141 C 185.164 140.015 185 138.999 185 138 C 185 137.001 185.599 135.799 185 135 C 184.368 134.158 182.745 134.745 182 134 C 181.255 133.255 181.333 131.999 181 131 C 180.667 130.001 180.173 129.039 180 128 C 179.836 127.015 179.486 125.857 180 125 C 180.618 123.970 181.861 123.380 183 123 C 183.948 122.684 185.001 123 186 123 C 186.999 123 188.015 122.836 189 123 C 190.039 123.173 191.368 123.158 192 124 C 192.599 124.799 191.684 126.052 192 127 C 192.380 128.139 193.151 129.151 194 130 C 194.849 130.849 195.885 131.554 197 132 C 197.618 132.247 198.404 132.298 199 132 Z " transform="matrix(0.8718572854995728, 0, 0, 0.8718572854995728, -110.75, -32.25)"/>
|
||||
<path id="ID0.591429878026247" fill="none" stroke="#000000" stroke-width="2" stroke-linecap="round" d="M 231.250 134 L 231.550 134.300 " transform="matrix(0.8718572854995728, 0, 0, 0.8718572854995728, -116, -37.45)"/>
|
||||
<path id="ID0.7572442013770342" fill="none" stroke="#000000" stroke-width="2" stroke-linecap="round" d="M 233.250 137.500 L 233.550 137.800 " transform="matrix(0.8718572854995728, 0, 0, 0.8718572854995728, -116, -37.45)"/>
|
||||
<path id="ID0.3759294683113694" fill="none" stroke="#000000" stroke-width="2" stroke-linecap="round" d="M 235.500 142.500 L 235.800 142.800 " transform="matrix(0.8718572854995728, 0, 0, 0.8718572854995728, -116.45, -38.75)"/>
|
||||
<path id="ID0.3759294683113694" fill="none" stroke="#000000" stroke-width="2" stroke-linecap="round" d="M 235.500 142.500 L 235.800 142.800 " transform="matrix(0.8718572854995728, 0, 0, 0.8718572854995728, -113.7, -36.4)"/>
|
||||
<path id="ID0.3759294683113694" fill="none" stroke="#000000" stroke-width="2" stroke-linecap="round" d="M 235.500 142.500 L 235.800 142.800 " transform="matrix(0.8364297747612, -0.2460087686777115, 0.2460087686777115, 0.8364297747612, -137.25, 27.35)"/>
|
||||
<path id="ID0.3759294683113694" fill="none" stroke="#000000" stroke-width="2" stroke-linecap="round" d="M 235.500 142.500 L 235.800 142.800 " transform="matrix(0.8718572854995728, 0, 0, 0.8718572854995728, -108.5, -33.3)"/>
|
||||
<path id="ID0.3759294683113694" fill="none" stroke="#000000" stroke-width="2" stroke-linecap="round" d="M 235.500 142.500 L 235.800 142.800 " transform="matrix(0.8691243529319763, 0.06897812336683273, -0.06897812336683273, 0.8691243529319763, -96.7, -46.4)"/>
|
||||
<path id="ID0.3759294683113694" fill="none" stroke="#000000" stroke-width="2" stroke-linecap="round" d="M 235.500 142.500 L 235.800 142.800 " transform="matrix(0.7545217275619507, 0.43684330582618713, -0.43684330582618713, 0.7545217275619507, -16.7, -113.95)"/>
|
||||
<path id="ID0.3759294683113694" fill="none" stroke="#000000" stroke-width="2" stroke-linecap="round" d="M 235.500 142.500 L 235.800 142.800 " transform="matrix(0.37522855401039124, 0.7869807481765747, -0.7869807481765747, 0.37522855401039124, 122.6, -139.5)"/>
|
||||
<path id="ID0.3759294683113694" fill="none" stroke="#000000" stroke-width="2" stroke-linecap="round" d="M 235.500 142.500 L 235.800 142.800 " transform="matrix(-0.34835198521614075, 0.7992409467697144, -0.7992409467697144, -0.34835198521614075, 292.95, -37.05)"/>
|
||||
<path id="ID0.3759294683113694" fill="none" stroke="#000000" stroke-width="2" stroke-linecap="round" d="M 235.500 142.500 L 235.800 142.800 " transform="matrix(-0.8364843726158142, 0.24582335352897644, -0.24582335352897644, -0.8364843726158142, 325.85, 162.65)"/>
|
||||
<path id="ID0.3759294683113694" fill="none" stroke="#000000" stroke-width="2" stroke-linecap="round" d="M 235.500 142.500 L 235.800 142.800 " transform="matrix(-0.7410890460014343, -0.4592626988887787, 0.4592626988887787, -0.7410890460014343, 201.1, 312.85)"/>
|
||||
<path id="ID0.3759294683113694" fill="none" stroke="#000000" stroke-width="2" stroke-linecap="round" d="M 235.500 142.500 L 235.800 142.800 " transform="matrix(-0.2617223858833313, -0.8316469192504883, 0.8316469192504883, -0.2617223858833313, 35.3, 328.95)"/>
|
||||
<path id="ID0.3759294683113694" fill="none" stroke="#000000" stroke-width="2" stroke-linecap="round" d="M 235.500 142.500 L 235.800 142.800 " transform="matrix(0.5694977045059204, -0.6601572632789612, 0.6601572632789612, 0.5694977045059204, -133.35, 167.8)"/>
|
||||
<path id="ID0.3759294683113694" fill="none" stroke="#000000" stroke-width="2" stroke-linecap="round" d="M 235.500 142.500 L 235.800 142.800 " transform="matrix(0.5694977045059204, -0.6601572632789612, 0.6601572632789612, 0.5694977045059204, -127.35, 167.85)"/>
|
||||
<path id="ID0.3759294683113694" fill="none" stroke="#000000" stroke-width="2" stroke-linecap="round" d="M 235.500 142.500 L 235.800 142.800 " transform="matrix(0.5694977045059204, -0.6601572632789612, 0.6601572632789612, 0.5694977045059204, -124.2, 167.85)"/>
|
||||
<path id="ID0.3759294683113694" fill="none" stroke="#000000" stroke-width="2" stroke-linecap="round" d="M 235.500 142.500 L 235.800 142.800 " transform="matrix(0.015517489053308964, -0.871719241142273, 0.871719241142273, 0.015517489053308964, -21.15, 296.5)"/>
|
||||
<path id="ID0.3759294683113694" fill="none" stroke="#000000" stroke-width="2" stroke-linecap="round" d="M 235.500 142.500 L 235.800 142.800 " transform="matrix(0.015517489053308964, -0.871719241142273, 0.871719241142273, 0.015517489053308964, -18.95, 294.55)"/>
|
||||
<path id="ID0.3759294683113694" fill="none" stroke="#000000" stroke-width="2" stroke-linecap="round" d="M 235.500 142.500 L 235.800 142.800 " transform="matrix(0.3892618417739868, -0.780134916305542, 0.780134916305542, 0.3892618417739868, -91.25, 218.15)"/>
|
||||
<path id="ID0.3759294683113694" fill="none" stroke="#000000" stroke-width="2" stroke-linecap="round" d="M 235.500 142.500 L 235.800 142.800 " transform="matrix(0.6326940059661865, -0.599861204624176, 0.599861204624176, 0.6326940059661865, -120.5, 140.4)"/>
|
||||
<path id="ID0.08639472490176558" fill="none" stroke="#000000" stroke-width="2" stroke-linecap="round" d="M 266.500 141.750 C 266.500 141.750 268.259 142.805 269 143.500 C 269.607 144.069 270.092 144.774 270.500 145.500 C 270.849 146.120 271.025 146.825 271.250 147.500 C 271.306 147.669 271.250 147.750 271.250 147.750 " transform="matrix(0.8718572854995728, 0, 0, 0.8718572854995728, -116, -37.45)"/>
|
||||
<path id="ID0.012617005966603756" fill="none" stroke="#000000" stroke-width="2" stroke-linecap="round" d="M 266.500 148 C 266.500 148 268.894 145.722 270 144.500 C 270.863 143.548 272.750 141.250 272.750 141.250 " transform="matrix(0.8718572854995728, 0, 0, 0.8718572854995728, -116, -37.45)"/>
|
||||
</g>
|
||||
<g id="ID0.4510777541436255">
|
||||
<g id="ID0.14801309304311872">
|
||||
<g id="ID0.2537396028637886">
|
||||
<path id="ID0.9389303363859653" fill="#C8BEB7" stroke="#000000" stroke-width="2" d="M 436 132 C 448.967 132 460.717 137.267 469.225 145.775 C 477.733 154.283 483 166.033 483 179 C 483 191.967 477.733 203.717 469.225 212.225 C 460.717 220.733 448.967 226 436 226 C 423.033 226 411.283 220.733 402.775 212.225 C 394.267 203.717 389 191.967 389 179 C 389 166.033 394.267 154.283 402.775 145.775 C 411.283 137.267 423.033 132 436 132 Z " transform="matrix(0.36415529251098633, 0, 0, 0.36415529251098633, -88.9, -28.15)"/>
|
||||
<path id="ID0.11479042703285813" fill="#F3F0ED" stroke="#000000" stroke-width="2" d="M 408 153 C 417.656 153 426.406 156.922 432.742 163.258 C 439.078 169.594 443 178.344 443 188 C 443 197.656 439.078 206.406 432.742 212.742 C 426.406 219.078 417.656 223 408 223 C 398.344 223 389.594 219.078 383.258 212.742 C 376.922 206.406 373 197.656 373 188 C 373 178.344 376.922 169.594 383.258 163.258 C 389.594 156.922 398.344 153 408 153 Z " transform="matrix(0.424847811460495, 0, 0, 0.424847811460495, -103.4, -42.85)"/>
|
||||
</g>
|
||||
<g id="ID0.11548982094973326">
|
||||
<path id="ID0.3447116296738386" fill="#C8BEB7" stroke="#000000" stroke-width="2" stroke-linecap="round" d="M 342 226 L 385 242 L 401 184 L 416 242 L 456 225 L 438 268 L 491 282 L 438 297 L 453 340 L 415 322 L 399 380 L 384 322 L 342 338 L 358 297 L 300 280 L 358 269 L 342 226 Z " transform="matrix(0.26005101203918457, 0, 0, 0.26005101203918457, -33.45, -35.9)"/>
|
||||
<path id="ID0.3447116296738386" fill="#F3F0ED" stroke="#000000" stroke-width="2" stroke-linecap="round" d="M 342 226 L 385 242 L 401 184 L 416 242 L 456 225 L 438 268 L 491 282 L 438 297 L 453 340 L 415 322 L 399 380 L 384 322 L 342 338 L 358 297 L 300 280 L 358 269 L 342 226 Z " transform="matrix(0.1881079524755478, 0, 0, 0.1881079524755478, -4.85, -15.05)"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ID0.4135345579124987">
|
||||
<path id="ID0.2975855153053999" fill="#C8BEB7" stroke="#000000" stroke-width="2" d="M 390 128 C 393.311 128 396.311 129.345 398.483 131.517 C 400.655 133.689 402 136.689 402 140 C 402 143.311 400.655 146.311 398.483 148.483 C 396.311 150.655 393.311 152 390 152 C 386.689 152 383.689 150.655 381.517 148.483 C 379.345 146.311 378 143.311 378 140 C 378 136.689 379.345 133.689 381.517 131.517 C 383.689 129.345 386.689 128 390 128 Z " transform="matrix(0.36415529251098633, 0, 0, 0.36415529251098633, -71.95, -13.05)"/>
|
||||
<path id="ID0.4250159035436809" fill="#F3F0ED" stroke="#000000" stroke-width="2" d="M 411 86 L 427 86 L 427 102 L 411 102 L 411 86 Z " transform="matrix(0.20213572680950165, 0.2012747824192047, -0.2012747824192047, 0.20213572680950165, 4.25, -65.3)"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ID0.2592455539852381">
|
||||
<path id="ID0.0035764137282967567" fill="#C8BEB7" stroke="#000000" stroke-width="2" stroke-linecap="round" d="M 260 302 C 275.827 296.554 302.609 307.128 324 307 C 346.363 306.867 374.471 296.647 391 303 C 398.297 305.204 380.809 320.258 371.657 324.113 C 357.405 330.142 343.209 331 325 331 C 306.791 331 292.545 330.061 278.343 324.113 C 269.500 320.431 252.995 305.111 260 302 Z " transform="matrix(0.33934181928634644, -0.06847125291824341, 0.06847125291824341, 0.33934181928634644, -1, -39.45)"/>
|
||||
<path id="ID0.8124154442921281" fill="#F3F0ED" stroke="#000000" stroke-width="2" stroke-linecap="round" d="M 326 251 C 325.667 250.584 325.257 249.319 325 248.500 C 324.589 247.190 324.204 245.858 324 244.500 C 323.703 242.517 323.500 240.505 323.500 238.500 C 323.500 236.495 323.483 234.437 324 232.500 C 324.182 231.817 325.108 231.588 325.500 231 C 325.792 230.562 326 229.500 326 229.500 C 326.500 228.500 330.850 228.500 333 229 C 333.800 229.150 334.250 230.050 335 230.500 C 335.600 230.850 336.300 231.150 337 231.500 C 337.650 231.800 338.450 231.950 339 232.500 C 339.500 233 339.450 233.950 340 234.500 C 340.500 235 341.250 235.300 342 235.500 C 342.800 235.650 343.650 235.500 344.500 235.500 C 345.150 235.500 345.800 235.500 346.500 235.500 C 347.150 235.500 347.850 235.650 348.500 235.500 C 349.200 235.300 349.850 234.900 350.500 234.500 C 351.050 234.050 351.500 233.450 352 233 C 352.450 232.500 352.850 231.850 353.500 231.500 C 354.050 231.150 354.900 231.300 355.500 231 C 356.100 230.600 356.350 229.750 357 229.500 C 357.600 229.200 358.300 229.500 359 229.500 C 359.650 229.500 360.450 229.050 361 229.500 C 361.500 229.900 361.500 230.800 361.500 231.500 C 361.500 232.150 361.150 232.800 361 233.500 C 360.800 234.150 360.500 234.800 360.500 235.500 C 360.350 237.450 360.500 239.500 360.500 241.500 C 360.500 243.450 360.350 245.500 360.500 247.500 C 360.500 248.150 360.900 248.800 361 249.500 C 361.200 251.450 361.500 253.450 361.500 255.500 C 361.500 256.150 361.300 256.900 361 257.500 C 360.600 258.100 359.950 258.500 359.500 259 C 359 259.450 358.600 260.200 358 260.500 C 357.350 260.750 356.600 260.300 356 260.500 C 355.250 260.650 354.700 261.300 354 261.500 C 353.350 261.650 352.650 261.500 352 261.500 C 350 261.500 347.950 261.500 346 261.500 C 345.300 261.500 344.600 261.650 344 261.500 C 343.250 261.300 342.500 261 342 260.500 C 341.450 259.950 341.450 259.050 341 258.500 C 340.100 257.350 338.950 256.450 338 255.500 C 337 254.500 336.100 253.350 335 252.500 C 334.400 252 333.650 251.800 333 251.500 C 332.300 251.150 331.700 250.650 331 250.500 C 330.350 250.300 329.654 250.500 329 250.500 C 328 250.500 326.447 250.723 326 250.500 Z " transform="matrix(0.33934181928634644, -0.06847125291824341, 0.06847125291824341, 0.33934181928634644, -1, -39.45)"/>
|
||||
<path id="ID0.8732011117972434" fill="#C8BEB7" stroke="#000000" stroke-width="2" d="M 422 181 L 427 181 L 427 257 L 422 257 L 422 181 Z " transform="matrix(0.33934181928634644, -0.06847125291824341, 0.06847125291824341, 0.33934181928634644, -31.9, -16.25)"/>
|
||||
</g>
|
||||
<path id="ID0.4170255893841386" fill="#AC9D93" stroke="#000000" stroke-width="2" stroke-linecap="round" d="M 316 155.750 C 316.402 155.626 315.682 157.191 315.500 158 C 315.348 158.669 315.057 159.316 315 160 C 314.889 161.327 315.172 162.679 315 164 C 314.918 164.629 314.250 165.750 314.250 165.750 C 314 165.500 313.300 165.500 313 165.500 C 312.300 165.500 311.600 165.200 311 165.500 C 310.350 165.750 309.700 167.100 309.500 167 C 309.250 166.900 309.800 165.650 310 165 C 310.150 164.300 310.850 163.200 310.500 163 C 310.100 162.700 309.150 163.700 308.500 164 C 307.850 164.200 307 164.050 306.500 164.500 C 305.900 164.950 306.050 166 305.500 166.500 C 304.950 166.900 304.050 167.350 303.500 167 C 302.900 166.600 303.550 165.350 303 165 C 302.400 164.600 301.650 165.400 301 165.500 C 300.300 165.550 299.450 165.950 299 165.500 C 298.500 165 299.450 163.950 299 163.500 C 298.500 163 297.650 163.400 297 163.500 C 296.300 163.550 295.500 164.350 295 164 C 294.500 163.600 294.700 162.600 295 162 C 295.250 161.350 296 161 296.500 160.500 C 297 160 297.650 159.600 298 159 C 298.350 158.200 298.400 157.300 298.500 156.500 C 298.550 155.650 298.500 154 298.500 154 C 298.500 153.950 298.300 155.350 298.500 156 C 298.650 156.700 298.850 157.600 299.500 158 C 300.200 158.400 301.150 158.050 302 158 C 302.650 157.900 303.500 157.950 304 157.500 C 304.450 157 304.050 156 304.500 155.500 C 304.950 154.900 305.750 154.500 306.500 154.500 C 307.200 154.500 307.850 155.050 308.500 155.500 C 309.050 155.900 309.250 157 310 157 C 310.700 157 310.807 155.706 311.500 155.500 C 312.908 155.006 315.402 154.626 316 155 Z " transform="matrix(0.8718572854995728, 0, 0, 0.8718572854995728, -109.8, -64.5)"/>
|
||||
<path id="ID0.8788982317782938" fill="#C8BEB7" stroke="#000000" stroke-width="2" stroke-linecap="round" d="M 167.250 150.500 C 166.963 150.041 167.066 148.979 167 148.250 C 166.941 147.582 166.778 146.921 166.750 146.250 C 166.695 144.919 166.639 143.577 166.750 142.250 C 166.807 141.566 167.103 140.921 167.250 140.250 C 167.686 138.256 168.064 136.244 168.500 134.250 C 168.647 133.579 168.887 132.927 169 132.250 C 169.055 131.922 169 131.250 169 131.250 C 169.250 131 169.850 132.350 170.500 132.750 C 171.050 133.100 171.850 133.150 172.500 133 C 173.150 132.800 173.500 131.600 174.250 131.750 C 174.900 131.850 174.900 132.900 175.250 133.500 C 175.550 134.050 175.600 134.950 176.250 135.250 C 176.900 135.550 177.800 135.350 178.500 135 C 179.150 134.600 179.250 133.250 180 133.250 C 180.650 133.250 180.850 134.350 181.250 135 C 181.600 135.550 181.800 136.200 182.250 136.750 C 182.650 137.300 183.750 137.500 183.750 138.250 C 183.750 138.950 182.600 139.100 182.250 139.750 C 181.900 140.300 181.350 141.200 181.750 141.750 C 182.100 142.200 183.250 141.250 183.750 141.750 C 184.750 142.700 185.650 144.050 185.750 145.500 C 185.750 146.150 184.650 146.350 184 146.500 C 183.300 146.600 182.650 146.100 182 146.250 C 181.300 146.350 180.800 146.850 180.250 147.250 C 179.600 147.600 179.200 148.500 178.500 148.500 C 177.750 148.500 177.100 147.850 176.750 147.250 C 176.350 146.650 177 145.500 176.500 145.250 C 176 145 175.150 145.700 174.750 146.250 C 174.300 146.750 174.400 147.550 174.250 148.250 C 174.050 148.900 174.350 149.900 173.750 150.250 C 173.100 150.550 172.400 149.650 171.750 149.500 C 171.050 149.300 170.250 148.800 169.750 149.250 C 169.250 149.650 169.750 150.550 169.750 151.250 C 169.750 151.900 170.200 152.900 169.750 153.250 C 169.200 153.550 168.200 153 167.750 152.500 C 167.250 151.950 167.507 151.107 167.250 150.500 C 167.156 150.307 166.760 150.343 166.750 150.250 Z " transform="matrix(0.8718572854995728, 0, 0, 0.8718572854995728, -109.8, -64.5)"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 23 KiB |
1
static/images/camp/ocean-bottom.svg
Normal file
After Width: | Height: | Size: 54 KiB |
1
static/images/camp/ocean-top.svg
Normal file
After Width: | Height: | Size: 28 KiB |
125
static/images/camp/treasure.svg
Normal file
|
@ -0,0 +1,125 @@
|
|||
<svg version="1.1" width="162" height="146" viewBox="-1 3 162 146" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs>
|
||||
<linearGradient id="grad_1" y2="1">
|
||||
<stop offset="0" stop-color="#402407" stop-opacity="1"/>
|
||||
<stop offset="1" stop-color="#351F03" stop-opacity="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="grad_2" y2="1">
|
||||
<stop offset="0" stop-color="#402407" stop-opacity="1"/>
|
||||
<stop offset="1" stop-color="#351F03" stop-opacity="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="grad_3" x2="1">
|
||||
<stop offset="0" stop-color="#402606" stop-opacity="1"/>
|
||||
<stop offset="1" stop-color="#2F1D00" stop-opacity="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<!-- Exported by Scratch - http://scratch.mit.edu/ -->
|
||||
<g id="ID0.5875018239021301" transform="matrix(0.9927749633789063, 0, 0, 0.9927749633789063, 0, 0)">
|
||||
<path id="ID0.6095231166109443" fill="#D39C5E" stroke="#D39C5E" stroke-width="2" stroke-linecap="round" d="M 351 179 C 370.871 185.118 382.776 205.798 401 215 C 420.099 225.636 449.697 222.205 462 238 C 468.864 246.813 445.984 256.162 439 266 C 434.556 272.274 435.073 283.363 428 285.050 C 407.691 290.764 385.454 290.415 365 286 C 338.103 280.194 302.242 275.205 288 256 C 280.251 245.551 319.250 241.138 322 226 C 324.660 211.399 294.571 196.968 301.550 186.395 C 309.484 174.399 335.090 174.125 351 179 Z " transform="matrix(0.7175684571266174, 0, 0, 0.7175684571266174, -198.95, -58.95)"/>
|
||||
<g id="ID0.593184054363519">
|
||||
<path id="ID0.08484571240842342" fill="#7C512C" stroke="none" stroke-linecap="round" d="M 397 119.500 C 403.442 117.575 410.767 123.244 417.147 121.112 C 422.463 119.323 423.212 109.063 429 108 C 434.043 107.076 438.026 112.989 441 117 C 446.206 124.039 450.009 132.751 453 141.500 C 453.748 143.376 452.367 146.069 450.500 144 C 443.063 135.750 441.106 121.526 431.500 116.500 C 426.338 113.798 422.916 125.588 417.500 127 C 410.725 128.760 403.677 122.437 396.500 126 C 388.472 130.099 386.813 141.598 380 147.500 C 377.910 149.288 372.108 150.227 372.500 148 C 373.511 142.177 378.879 137.029 383 132.500 C 387.102 127.464 391.083 121.277 397 119.500 Z " transform="matrix(0.17396478354930878, 0.6567548513412476, -0.6936463713645935, 0.18373680114746094, 106.4, -255.7)"/>
|
||||
<path id="ID0.7321020690724254" fill="#7F7F7F" stroke="#000000" stroke-width="2" stroke-linecap="round" d="M 414 147 C 417.878 147.483 417.520 157.812 422 160.500 C 428.508 164.397 437.524 162.334 444.500 165.500 C 446.302 166.327 445.811 169.021 444 169.500 C 436.757 171.416 423.315 164.635 421 172 C 414.831 191.635 415.057 214.743 423 233.500 C 426.317 241.089 439.680 235.152 447.500 234 C 449.841 233.654 453.242 228.116 453 229.500 C 452.554 232.061 449.781 239.920 445.500 242.500 C 436.029 248.207 425.187 253.653 414 253 C 400.634 252.220 387.622 245.917 376.500 238.500 C 372.629 235.620 371.058 225.871 372.500 224.500 C 374.015 223.153 377.892 231.943 382 233 C 389.559 234.932 402.624 240.228 406 233 C 413.810 213.646 413.667 190.869 408.500 171 C 406.710 164.575 394.441 171.579 388.500 169.500 C 386.930 168.945 386.822 165.704 388.500 164.500 C 394.069 161.165 402.432 163.141 407.500 159.500 C 411.301 156.756 410.643 146.591 414 147 Z " transform="matrix(0.7047715783119202, 0.13491258025169373, -0.13491258025169373, 0.7047715783119202, -199.3, -152.2)"/>
|
||||
<path id="ID0.4320603013038635" fill="#000000" stroke="none" d="M 418 160.500 C 419.242 160.500 420.367 161.004 421.181 161.819 C 421.996 162.633 422.500 163.758 422.500 165 C 422.500 166.242 421.996 167.367 421.181 168.181 C 420.367 168.996 419.242 169.500 418 169.500 C 416.758 169.500 415.633 168.996 414.819 168.181 C 414.004 167.367 413.500 166.242 413.500 165 C 413.500 163.758 414.004 162.633 414.819 161.819 C 415.633 161.004 416.758 160.500 418 160.500 Z " transform="matrix(0.7047715783119202, 0.13491258025169373, -0.13491258025169373, 0.7047715783119202, -201.75, -152.7)"/>
|
||||
<path id="ID0.6236423533409834" fill="#FFFFFF" stroke="none" d="M 443.500 211.500 C 443.500 211.500 443.500 211.528 443.500 211.573 C 443.500 211.619 443.500 211.681 443.500 211.750 C 443.500 211.819 443.500 211.881 443.500 211.927 C 443.500 211.972 443.500 212 443.500 212 C 443.500 212 443.500 211.972 443.500 211.927 C 443.500 211.881 443.500 211.819 443.500 211.750 C 443.500 211.681 443.500 211.619 443.500 211.573 C 443.500 211.528 443.500 211.500 443.500 211.500 Z " transform="matrix(0.7047715783119202, 0.13491258025169373, -0.13491258025169373, 0.7047715783119202, -199.3, -152.2)"/>
|
||||
<path id="ID0.08484571240842342" fill="#7C512C" stroke="none" stroke-linecap="round" d="M 437.400 115.250 C 437.334 114.303 440.047 115.110 441 115.850 C 443.485 119.542 444.163 117.947 445.400 119.350 C 447.101 121.279 448.293 123.666 449.400 126 C 450.391 128.077 451.169 130.056 451.200 132.150 C 451.542 136.144 452.193 145.703 450.500 144 C 447.274 140.758 444.632 129.218 441.300 122.100 C 440.262 119.628 437.538 117.228 437.400 115.250 Z " transform="matrix(0.18373680114746094, 0.6936463713645935, -0.6936463713645935, 0.18373680114746094, 70.8, -305.75)"/>
|
||||
<path id="ID0.4582245294004679" fill="none" stroke="#000000" stroke-width="1" stroke-linecap="round" d="M 448.650 221.900 C 449.766 221.933 450.897 221.828 452 222 C 452.276 222.043 452.500 222.500 452.500 222.500 " transform="matrix(0.7047715783119202, 0.13491258025169373, -0.13491258025169373, 0.7047715783119202, -199.3, -152.2)"/>
|
||||
<path id="ID0.18549925088882446" fill="none" stroke="#000000" stroke-width="1" stroke-linecap="round" d="M 452.300 216.500 C 452.300 216.500 454.045 216.458 454.900 216.600 C 455.267 216.661 455.611 216.865 455.900 217.100 C 456.158 217.310 456.295 217.638 456.500 217.900 C 456.595 218.021 456.800 218.250 456.800 218.250 " transform="matrix(0.7047715783119202, 0.13491258025169373, -0.13491258025169373, 0.7047715783119202, -199.3, -152.2)"/>
|
||||
<path id="ID0.9010871862992644" fill="none" stroke="#000000" stroke-width="1" stroke-linecap="round" d="M 455.650 212.100 C 455.650 212.100 456.550 212.019 457 212 C 457.333 211.986 457.667 212 458 212 C 458.333 212 458.668 211.969 459 212 C 459.387 212.036 459.789 212.057 460.150 212.200 C 460.519 212.346 460.817 212.634 461.150 212.850 C 461.233 212.904 461.150 212.850 461.150 212.850 " transform="matrix(0.7047715783119202, 0.13491258025169373, -0.13491258025169373, 0.7047715783119202, -199.3, -152.2)"/>
|
||||
<path id="ID0.9002706361934543" fill="none" stroke="#000000" stroke-width="1" stroke-linecap="round" d="M 459.500 207.100 C 459.500 207.100 460.610 206.724 461.150 206.500 C 461.494 206.357 461.796 206.115 462.150 206 C 462.470 205.896 462.814 205.875 463.150 205.850 C 463.482 205.825 463.818 205.825 464.150 205.850 C 464.486 205.875 464.821 205.930 465.150 206 C 465.372 206.047 465.800 206.200 465.800 206.200 " transform="matrix(0.7047715783119202, 0.13491258025169373, -0.13491258025169373, 0.7047715783119202, -199.3, -152.2)"/>
|
||||
<path id="ID0.8131589610129595" fill="none" stroke="#000000" stroke-width="1" stroke-linecap="round" d="M 462.500 201.850 C 462.500 201.850 463.278 201.647 463.650 201.500 C 463.996 201.363 464.327 201.186 464.650 201 C 464.994 200.802 465.278 200.489 465.650 200.350 C 466.012 200.215 466.416 200.245 466.800 200.200 C 467.132 200.161 467.465 200.100 467.800 200.100 C 468.085 200.100 468.650 200.200 468.650 200.200 " transform="matrix(0.7047715783119202, 0.13491258025169373, -0.13491258025169373, 0.7047715783119202, -199.3, -152.2)"/>
|
||||
<path id="ID0.9376086620613933" fill="none" stroke="#000000" stroke-width="1" stroke-linecap="round" d="M 463.900 196.200 C 463.900 196.200 464.630 195.628 465 195.350 C 465.296 195.128 465.596 194.911 465.900 194.700 C 466.196 194.495 466.462 194.225 466.800 194.100 C 467.114 193.984 467.468 194.042 467.800 194 C 468.134 193.958 468.464 193.875 468.800 193.850 C 469.132 193.825 469.467 193.850 469.800 193.850 C 470.033 193.850 470.500 193.850 470.500 193.850 " transform="matrix(0.7047715783119202, 0.13491258025169373, -0.13491258025169373, 0.7047715783119202, -199.3, -152.2)"/>
|
||||
<path id="ID0.067360685672611" fill="none" stroke="#000000" stroke-width="1" stroke-linecap="round" d="M 461 193.300 C 461 193.300 460.900 192.500 460.900 192.200 C 460.900 191.800 460.900 191.500 460.900 191.200 C 460.900 190.800 461 190.400 461.200 190.200 C 461.300 189.900 461.800 189.700 461.800 189.700 C 462.133 189.400 462.467 189.200 462.800 189 C 462.883 188.950 462.800 189 462.800 189 " transform="matrix(0.7047715783119202, 0.13491258025169373, -0.13491258025169373, 0.7047715783119202, -199.3, -152.2)"/>
|
||||
<path id="ID0.44444498233497143" fill="none" stroke="#000000" stroke-width="1" stroke-linecap="round" d="M 455.150 192 C 455.150 192 455.145 190.386 455.300 189.600 C 455.366 189.264 455.616 188.989 455.800 188.700 C 455.851 188.621 456 188.500 456 188.500 " transform="matrix(0.7047715783119202, 0.13491258025169373, -0.13491258025169373, 0.7047715783119202, -199.3, -152.2)"/>
|
||||
<path id="ID0.4145353944040835" fill="none" stroke="#000000" stroke-width="1" stroke-linecap="round" d="M 448.150 188.700 C 448.150 188.700 448.217 187.865 448.400 187.500 C 448.563 187.173 448.875 186.940 449.150 186.700 C 449.411 186.472 449.768 186.358 450 186.100 C 450.229 185.845 450.258 185.442 450.500 185.200 C 450.742 184.958 451.106 184.876 451.400 184.700 C 451.473 184.656 451.500 184.600 451.500 184.600 " transform="matrix(0.7047715783119202, 0.13491258025169373, -0.13491258025169373, 0.7047715783119202, -199.3, -152.2)"/>
|
||||
<path id="ID0.6928726802580059" fill="none" stroke="#000000" stroke-width="1" stroke-linecap="round" d="M 445.650 181.350 C 445.650 181.350 446.204 180.769 446.500 180.500 C 446.754 180.269 447.011 180.035 447.300 179.850 C 447.614 179.650 447.967 179.517 448.300 179.350 C 448.466 179.267 448.800 179.100 448.800 179.100 " transform="matrix(0.7047715783119202, 0.13491258025169373, -0.13491258025169373, 0.7047715783119202, -199.3, -152.2)"/>
|
||||
<path id="ID0.25517935352399945" fill="none" stroke="#000000" stroke-width="1" stroke-linecap="round" d="M 444.500 175.500 C 444.500 175.500 444.889 174.861 445.150 174.600 C 445.444 174.306 445.801 174.077 446.150 173.850 C 446.519 173.610 446.907 173.397 447.300 173.200 C 447.574 173.063 448.150 172.850 448.150 172.850 " transform="matrix(0.7047715783119202, 0.13491258025169373, -0.13491258025169373, 0.7047715783119202, -199.3, -152.2)"/>
|
||||
<path id="ID0.7078137840144336" fill="none" stroke="#000000" stroke-width="1" stroke-linecap="round" d="M 412.350 167.350 C 413.016 167.400 413.689 167.402 414.350 167.500 C 414.515 167.525 414.700 167.700 414.700 167.700 " transform="matrix(0.7047715783119202, 0.13491258025169373, -0.13491258025169373, 0.7047715783119202, -199.3, -152.2)"/>
|
||||
<path id="ID0.4247505199164152" fill="none" stroke="#000000" stroke-width="1" stroke-linecap="round" d="M 408.700 172.500 C 408.700 172.500 410.578 172.454 411.500 172.600 C 411.868 172.658 412.228 172.846 412.500 173.100 C 412.751 173.334 412.816 173.711 413 174 C 413.051 174.079 413.200 174.200 413.200 174.200 " transform="matrix(0.7047715783119202, 0.13491258025169373, -0.13491258025169373, 0.7047715783119202, -199.3, -152.2)"/>
|
||||
<path id="ID0.1194304684177041" fill="none" stroke="#000000" stroke-width="1" stroke-linecap="round" d="M 404.350 177.500 C 404.350 177.500 405.248 177.350 405.700 177.350 C 406.037 177.350 406.387 177.376 406.700 177.500 C 407.035 177.632 407.321 177.872 407.600 178.100 C 407.873 178.324 408.117 178.584 408.350 178.850 C 408.585 179.118 408.825 179.390 409 179.700 C 409.049 179.787 409 180 409 180 " transform="matrix(0.7047715783119202, 0.13491258025169373, -0.13491258025169373, 0.7047715783119202, -199.3, -152.2)"/>
|
||||
<path id="ID0.04366484750062227" fill="none" stroke="#000000" stroke-width="1" stroke-linecap="round" d="M 400 181.100 C 400 181.100 400.762 181.055 401.100 181.200 C 401.492 181.368 401.790 181.707 402.100 182 C 402.375 182.259 402.626 182.546 402.850 182.850 C 403.045 183.115 403.350 183.700 403.350 183.700 " transform="matrix(0.7047715783119202, 0.13491258025169373, -0.13491258025169373, 0.7047715783119202, -199.3, -152.2)"/>
|
||||
<path id="ID0.9239019267261028" fill="none" stroke="#000000" stroke-width="1" stroke-linecap="round" d="M 397.100 184.500 C 397.100 184.500 397.825 184.825 398.100 185.100 C 398.342 185.342 398.436 185.699 398.600 186 C 398.641 186.075 398.700 186.200 398.700 186.200 " transform="matrix(0.7047715783119202, 0.13491258025169373, -0.13491258025169373, 0.7047715783119202, -199.3, -152.2)"/>
|
||||
</g>
|
||||
<g id="ID0.11242985958233476">
|
||||
<path id="ID0.8690051888115704" fill="#CCE117" stroke="#646709" stroke-width="2" stroke-linecap="round" d="M 46 288 C 66.741 284.918 89.475 279.302 107 289 C 118.206 294.835 114.588 313.003 114.362 324.958 C 114.263 329.782 110.658 338 108 338 C 105.342 338 102.414 329.802 101.638 324.958 C 100.289 307.827 108.670 301.834 101 296 C 90.324 287.937 74.767 293.254 62 294 C 55.879 294.265 49.481 301.236 45 299 C 41.808 297.281 40.815 288.770 46 288 Z " transform="matrix(0.7175684571266174, 0, 0, 0.7175684571266174, -28.9, -141.45)"/>
|
||||
<path id="ID0.8690051888115704" fill="#CCE117" stroke="#646709" stroke-width="2" stroke-linecap="round" d="M 67.750 252.750 C 83.244 261.451 97.968 274.509 107 289 C 113.449 299.379 114.588 313.003 114.362 324.958 C 114.263 329.782 110.658 338 108 338 C 105.342 338 102.414 329.802 101.638 324.958 C 100.289 307.827 106.105 304.173 101 296 C 92.254 281.949 76.691 272.517 63.750 261.750 C 59.518 258.694 48.754 257.342 49.750 254.750 C 50.739 252.274 62.179 249.653 67.750 252.750 Z " transform="matrix(0.7175684571266174, 0, 0, 0.7175684571266174, -18.7, -142.75)"/>
|
||||
<path id="ID0.8690051888115704" fill="#CCE117" stroke="#646709" stroke-width="2" stroke-linecap="round" d="M 58.900 222.450 C 78.915 241.072 94.585 265.282 107 289 C 112.662 299.830 114.588 313.003 114.362 324.958 C 114.263 329.782 110.658 338 108 338 C 105.342 338 102.414 329.802 101.638 324.958 C 100.289 307.827 104.961 304.794 101 296 C 90.604 272.923 76.489 250.457 58.900 231.450 C 54.098 225.813 37.046 227.011 36.900 225.450 C 36.754 223.891 53.689 217.607 58.900 222.450 Z " transform="matrix(0.7175684571266174, 0, 0, 0.7175684571266174, -9.4, -142.5)"/>
|
||||
</g>
|
||||
<path id="ID0.568838894367218" fill="#EEC997" stroke="none" stroke-linecap="round" d="M 98.500 291 C 106.279 288.725 112.763 272.785 118 278 C 128.015 288.050 128.711 313.514 128.200 323.500 C 128.231 327.417 123.334 306.348 117 307 C 105.541 308.211 99.857 325.980 88 326 C 81.580 326.015 86.621 311.097 81 308 C 72.794 303.500 57.877 309.091 53 304.500 C 50.257 301.911 58.098 297.400 66.335 294.957 C 74.572 292.513 88.150 294.055 98.500 291 Z " transform="matrix(0.03176150843501091, 0.41475602984428406, -0.41475602984428406, 0.03176150843501091, 218.65, 83.55)"/>
|
||||
<path id="ID0.568838894367218" fill="#EEC997" stroke="none" stroke-linecap="round" d="M 98.500 291 C 106.279 288.725 110.841 275.876 118 278 C 130.148 281.605 143.801 295.639 144 304.500 C 144.093 310.600 125.675 303.969 117 307 C 106.502 311.330 99.857 325.980 88 326 C 81.580 326.015 86.621 311.097 81 308 C 72.794 303.500 57.877 309.091 53 304.500 C 50.257 301.911 58.098 297.400 66.335 294.957 C 74.572 292.513 88.150 294.055 98.500 291 Z " transform="matrix(0.31834250688552856, 0.26774877309799194, -0.26774877309799194, 0.31834250688552856, 97.75, 3.05)"/>
|
||||
<g id="ID0.11242985958233476">
|
||||
<path id="ID0.8690051888115704" fill="#CCE117" stroke="#646709" stroke-width="2" stroke-linecap="round" d="M 46 288 C 66.741 284.918 89.475 279.302 107 289 C 118.206 294.835 114.588 313.003 114.362 324.958 C 114.263 329.782 110.658 338 108 338 C 105.342 338 102.414 329.802 101.638 324.958 C 100.289 307.827 108.670 301.834 101 296 C 90.324 287.937 74.767 293.254 62 294 C 55.879 294.265 49.481 301.236 45 299 C 41.808 297.281 40.815 288.770 46 288 Z " transform="matrix(-0.41364967823028564, -0.2576090097427368, -0.2576090097427368, 0.41364967823028564, 244.3, 5.35)"/>
|
||||
<path id="ID0.8690051888115704" fill="#CCE117" stroke="#646709" stroke-width="2" stroke-linecap="round" d="M 67.750 252.750 C 83.244 261.451 97.968 274.509 107 289 C 113.449 299.379 114.588 313.003 114.362 324.958 C 114.263 329.782 110.658 338 108 338 C 105.342 338 102.414 329.802 101.638 324.958 C 100.289 307.827 106.105 304.173 101 296 C 92.254 281.949 76.691 272.517 63.750 261.750 C 59.518 258.694 48.754 257.342 49.750 254.750 C 50.739 252.274 62.179 249.653 67.750 252.750 Z " transform="matrix(-0.41364967823028564, -0.2576090097427368, -0.2576090097427368, 0.41364967823028564, 238.85, 0.95)"/>
|
||||
<path id="ID0.8690051888115704" fill="#CCE117" stroke="#646709" stroke-width="2" stroke-linecap="round" d="M 58.900 222.450 C 78.915 241.072 94.585 265.282 107 289 C 112.662 299.830 114.588 313.003 114.362 324.958 C 114.263 329.782 110.658 338 108 338 C 105.342 338 102.414 329.802 101.638 324.958 C 100.289 307.827 104.961 304.794 101 296 C 90.604 272.923 76.489 250.457 58.900 231.450 C 54.098 225.813 37.046 227.011 36.900 225.450 C 36.754 223.891 53.689 217.607 58.900 222.450 Z " transform="matrix(-0.41364967823028564, -0.2576090097427368, -0.2576090097427368, 0.41364967823028564, 233.45, -2.1)"/>
|
||||
</g>
|
||||
<g id="ID0.7139145298860967">
|
||||
<path id="ID0.11953883292153478" fill="#FFBE00" stroke="#FFBE00" stroke-width="2" stroke-linecap="round" d="M 58 226.500 L 113.500 212.500 L 175.250 233.250 L 123.500 252.250 L 58 226.500 Z " transform="matrix(0.7175684571266174, 0, 0, 0.7175684571266174, -8.8, -83.3)"/>
|
||||
<path id="ID0.95182174583897" fill="#D4A603" stroke="#2F1D00" stroke-width="1" d="M 23.250 258.750 C 25.802 258.750 28.115 259.422 29.789 260.508 C 31.464 261.595 32.500 263.095 32.500 264.750 C 32.500 266.405 31.464 267.905 29.789 268.992 C 28.115 270.078 25.802 270.750 23.250 270.750 C 20.698 270.750 18.385 270.078 16.711 268.992 C 15.036 267.905 14 266.405 14 264.750 C 14 263.095 15.036 261.595 16.711 260.508 C 18.385 259.422 20.698 258.750 23.250 258.750 Z " transform="matrix(0.5021324753761292, 0.16654060781002045, -0.18967123329639435, 0.571873128414154, 117.4, -80.3)"/>
|
||||
<path id="ID0.95182174583897" fill="#FFBE00" stroke="#2F1D00" stroke-width="1" d="M 23.250 258.750 C 25.802 258.750 28.115 259.422 29.789 260.508 C 31.464 261.595 32.500 263.095 32.500 264.750 C 32.500 266.405 31.464 267.905 29.789 268.992 C 28.115 270.078 25.802 270.750 23.250 270.750 C 20.698 270.750 18.385 270.078 16.711 268.992 C 15.036 267.905 14 266.405 14 264.750 C 14 263.095 15.036 261.595 16.711 260.508 C 18.385 259.422 20.698 258.750 23.250 258.750 Z " transform="matrix(0.5980257987976074, 0.19834524393081665, -0.22589318454265594, 0.6810849905014038, 122.9, -105.25)"/>
|
||||
<path id="ID0.14635724388062954" fill="#FFEC00" stroke="#000000" stroke-width="1" d="M 105.750 219 C 107.612 219 109.300 219.532 110.522 220.392 C 111.744 221.252 112.500 222.440 112.500 223.750 C 112.500 225.060 111.744 226.248 110.522 227.108 C 109.300 227.968 107.612 228.500 105.750 228.500 C 103.888 228.500 102.200 227.968 100.978 227.108 C 99.756 226.248 99 225.060 99 223.750 C 99 222.440 99.756 221.252 100.978 220.392 C 102.200 219.532 103.888 219 105.750 219 Z " transform="matrix(0.5301786661148071, 0.4835442304611206, -0.4835442304611206, 0.5301786661148071, 136, -88.5)"/>
|
||||
<path id="ID0.828320536762476" fill="#AE835E" stroke="#000000" stroke-width="2" stroke-linecap="round" d="M 220.500 266 L 254 266 L 254 298 L 243.500 297.500 L 242.500 282.500 L 237 282 L 232.500 282 L 231.500 298 L 220.500 298 L 220.500 266 Z " transform="matrix(0.35924676060676575, 0.057615045458078384, -0.04421619698405266, 0.27570101618766785, 35.85, -53.1)"/>
|
||||
<path id="ID0.14635724388062954" fill="#FFD063" stroke="#000000" stroke-width="1" d="M 105.750 219 C 107.612 219 109.300 219.532 110.522 220.392 C 111.744 221.252 112.500 222.440 112.500 223.750 C 112.500 225.060 111.744 226.248 110.522 227.108 C 109.300 227.968 107.612 228.500 105.750 228.500 C 103.888 228.500 102.200 227.968 100.978 227.108 C 99.756 226.248 99 225.060 99 223.750 C 99 222.440 99.756 221.252 100.978 220.392 C 102.200 219.532 103.888 219 105.750 219 Z " transform="matrix(0.7175684571266174, 0, 0, 0.7175684571266174, 14.45, -79.5)"/>
|
||||
<path id="ID0.95182174583897" fill="#FFBE00" stroke="#2F1D00" stroke-width="1" d="M 23.250 258.750 C 25.802 258.750 28.115 259.422 29.789 260.508 C 31.464 261.595 32.500 263.095 32.500 264.750 C 32.500 266.405 31.464 267.905 29.789 268.992 C 28.115 270.078 25.802 270.750 23.250 270.750 C 20.698 270.750 18.385 270.078 16.711 268.992 C 15.036 267.905 14 266.405 14 264.750 C 14 263.095 15.036 261.595 16.711 260.508 C 18.385 259.422 20.698 258.750 23.250 258.750 Z " transform="matrix(0.5980257987976074, 0.19834524393081665, -0.22589318454265594, 0.6810849905014038, 138.45, -98.55)"/>
|
||||
<path id="ID0.95182174583897" fill="#FFED00" stroke="#2F1D00" stroke-width="1" d="M 23.250 258.750 C 25.802 258.750 28.115 259.422 29.789 260.508 C 31.464 261.595 32.500 263.095 32.500 264.750 C 32.500 266.405 31.464 267.905 29.789 268.992 C 28.115 270.078 25.802 270.750 23.250 270.750 C 20.698 270.750 18.385 270.078 16.711 268.992 C 15.036 267.905 14 266.405 14 264.750 C 14 263.095 15.036 261.595 16.711 260.508 C 18.385 259.422 20.698 258.750 23.250 258.750 Z " transform="matrix(0.630060076713562, 0, 0, 0.7175684571266174, 33.85, -109.2)"/>
|
||||
<g id="ID0.6995943421497941">
|
||||
<g id="ID0.1705539058893919">
|
||||
<path id="ID0.43905050912871957" fill="#AE835E" stroke="#000000" stroke-linecap="round" d="M 55 96 L 123 119 L 123 171 L 55 139 L 55 96 Z " transform="matrix(0.7175684571266174, 0, 0, 0.7175684571266174, -8.8, 11.3)"/>
|
||||
<path id="ID0.3650492839515209" fill="#8B6338" stroke="#000000" stroke-linecap="round" d="M 61 105 L 114 126 L 114 159 L 61 135 L 61 105 Z " transform="matrix(0.7175684571266174, 0, 0, 0.7175684571266174, -8.8, 11.3)"/>
|
||||
<path id="ID0.3488199417479336" fill="none" stroke="#000000" stroke-linecap="round" d="M -24.500 216 L 28.500 237 " transform="matrix(0.7175684571266174, 0, 0, 0.7175684571266174, 52.85, -62.9)"/>
|
||||
<path id="ID0.3488199417479336" fill="none" stroke="#000000" stroke-linecap="round" d="M -24.500 216 L 28.500 237 " transform="matrix(0.7175684571266174, 0, 0, 0.7175684571266174, 52.45, -56.8)"/>
|
||||
<path id="ID0.3488199417479336" fill="none" stroke="#000000" stroke-linecap="round" d="M -24.500 216 L 28.500 237 " transform="matrix(0.7175684571266174, 0, 0, 0.7175684571266174, 52.45, -51.05)"/>
|
||||
</g>
|
||||
<path id="ID0.048101059161126614" fill="#8D6338" stroke="#000000" stroke-linecap="round" d="M 122.500 118 L 180 101.500 L 180 151 L 123 170 L 122.500 118 Z " transform="matrix(0.7175684571266174, 0, 0, 0.7175684571266174, -8.4, 12.35)"/>
|
||||
<path id="ID0.29947247449308634" fill="#7C512C" stroke="#000000" stroke-linecap="round" d="M 131 120.500 L 173.500 108 L 174 149 L 131.500 162 L 131 120.500 Z " transform="matrix(0.7175684571266174, 0, 0, 0.7175684571266174, -8.8, 13.1)"/>
|
||||
<path id="ID0.2403766461648047" fill="none" stroke="#000000" stroke-linecap="round" d="M 131 248.500 L 173.500 237 " transform="matrix(0.7175684571266174, 0, 0, 0.7175684571266174, -8.8, -73.25)"/>
|
||||
<path id="ID0.2403766461648047" fill="none" stroke="#000000" stroke-linecap="round" d="M 131 248.500 L 173.500 237 " transform="matrix(0.7175684571266174, 0, 0, 0.7175684571266174, -8.6, -65.2)"/>
|
||||
<path id="ID0.2403766461648047" fill="none" stroke="#000000" stroke-linecap="round" d="M 131 248.500 L 173.500 237 " transform="matrix(0.7175684571266174, 0, 0, 0.7175684571266174, -8.6, -57)"/>
|
||||
<path id="ID0.7126770615577698" fill="#BDAE58" stroke="#000000" stroke-linecap="round" d="M 54.500 210.500 L 123 233.500 L 181 218 L 181 221 L 122.600 234.900 L 54.500 213.500 L 54.500 210.500 Z " transform="matrix(-0.7175684571266174, 0, 0, -0.7175684571266174, 160, 236.55)"/>
|
||||
<path id="ID0.7126770615577698" fill="#BDAE58" stroke="#000000" stroke-linecap="round" d="M 54.500 210.500 L 123 233.500 L 181 218 L 181 221 L 124 237.500 L 54.500 213.500 L 54.500 210.500 Z " transform="matrix(0.7175684571266174, 0, 0, 0.7175684571266174, -8.8, -73.25)"/>
|
||||
</g>
|
||||
<path id="ID0.5111572868190706" fill="#AF825C" stroke="#000000" stroke-width="2" stroke-linecap="round" d="M 109 44.500 L 193.500 47 L 168.500 102.500 L 100 80.500 L 109 44.500 Z " transform="matrix(0.7175684571266174, 0, 0, 0.7175684571266174, 0.85, 9.15)"/>
|
||||
<path id="ID0.9214681424200535" fill="url(#grad_1)" stroke="url(#grad_2)" stroke-width="2" stroke-linecap="round" d="M 113 46.500 L 189 50.500 L 166.500 101 L 105.500 82 L 113 46.500 Z " transform="matrix(0.6839980483055115, 0, 0, 0.6483516693115234, 3.55, 13.3)"/>
|
||||
<path id="ID0.6994984769262373" fill="url(#grad_3)" stroke="#000000" stroke-linecap="round" d="M 95.500 95.250 L 87.750 128.750 C 87.251 131.372 95.700 125.500 100.500 122.500 C 102.550 120.600 105.150 118.950 106.500 116.500 C 107.750 114.100 108.150 111.200 108 108.500 C 107.800 105.700 107.351 102.559 105.500 100.500 C 103.055 97.754 96.972 93.452 96 95 Z " transform="matrix(0.6839980483055115, 0, 0, 0.6483516693115234, 15.9, -18.05)"/>
|
||||
<g id="ID0.7322061732411385">
|
||||
<path id="ID0.4833239926956594" fill="#8B6338" stroke="#000000" stroke-width="2" stroke-linecap="round" d="M 194 47 C 196.097 43.908 199.511 48.806 201 51 C 204.069 55.995 207.270 61.676 207 67.500 C 206.653 74.975 202.771 82.036 199 88.500 C 196.804 92.264 193.474 95.714 189.500 97.500 C 183.813 100.043 173.962 103.653 170 101 C 167.213 99.130 173.805 92.315 175.750 88 C 181.913 74.335 185.613 59.369 194 47 Z " transform="matrix(0.7175684571266174, 0, 0, 0.7175684571266174, 0.05, 9.45)"/>
|
||||
<path id="ID0.6493554706685245" fill="#7C512C" stroke="#000000" stroke-width="2" stroke-linecap="round" d="M 197.500 57.750 C 195.282 57.544 193.873 62.303 192.500 64.800 C 191.103 67.692 190.510 70.909 189.250 73.800 C 186.409 80.325 178.937 90.643 180.500 93.300 C 181.935 95.734 191.008 88.560 195.250 84.800 C 197.604 82.713 198.628 79.201 199.750 76.050 C 200.894 72.889 202.391 69.535 202 66 C 201.654 62.891 199.886 57.989 197.500 57.750 Z " transform="matrix(0.7175684571266174, 0, 0, 0.7175684571266174, -0.15, 9.95)"/>
|
||||
</g>
|
||||
<path id="ID0.95182174583897" fill="#FFBE00" stroke="#2F1D00" stroke-width="1" d="M 23.250 258.750 C 25.802 258.750 28.115 259.422 29.789 260.508 C 31.464 261.595 32.500 263.095 32.500 264.750 C 32.500 266.405 31.464 267.905 29.789 268.992 C 28.115 270.078 25.802 270.750 23.250 270.750 C 20.698 270.750 18.385 270.078 16.711 268.992 C 15.036 267.905 14 266.405 14 264.750 C 14 263.095 15.036 261.595 16.711 260.508 C 18.385 259.422 20.698 258.750 23.250 258.750 Z " transform="matrix(0.5980257987976074, 0.19834524393081665, -0.22589318454265594, 0.6810849905014038, 104.1, -106.05)"/>
|
||||
<path id="ID0.95182174583897" fill="#D4A603" stroke="#2F1D00" stroke-width="1" d="M 23.250 258.750 C 25.802 258.750 28.115 259.422 29.789 260.508 C 31.464 261.595 32.500 263.095 32.500 264.750 C 32.500 266.405 31.464 267.905 29.789 268.992 C 28.115 270.078 25.802 270.750 23.250 270.750 C 20.698 270.750 18.385 270.078 16.711 268.992 C 15.036 267.905 14 266.405 14 264.750 C 14 263.095 15.036 261.595 16.711 260.508 C 18.385 259.422 20.698 258.750 23.250 258.750 Z " transform="matrix(0.5021324753761292, 0.16654060781002045, -0.18967123329639435, 0.571873128414154, 102.75, -71.5)"/>
|
||||
<path id="ID0.14635724388062954" fill="#FFEC00" stroke="#000000" stroke-width="1" d="M 105.750 219 C 107.612 219 109.300 219.532 110.522 220.392 C 111.744 221.252 112.500 222.440 112.500 223.750 C 112.500 225.060 111.744 226.248 110.522 227.108 C 109.300 227.968 107.612 228.500 105.750 228.500 C 103.888 228.500 102.200 227.968 100.978 227.108 C 99.756 226.248 99 225.060 99 223.750 C 99 222.440 99.756 221.252 100.978 220.392 C 102.200 219.532 103.888 219 105.750 219 Z " transform="matrix(0.6987977027893066, 0.16305281221866608, -0.16305281221866608, 0.6987977027893066, 32.65, -98.65)"/>
|
||||
<path id="ID0.14635724388062954" fill="#FFD063" stroke="#000000" stroke-width="1" d="M 105.750 219 C 107.612 219 109.300 219.532 110.522 220.392 C 111.744 221.252 112.500 222.440 112.500 223.750 C 112.500 225.060 111.744 226.248 110.522 227.108 C 109.300 227.968 107.612 228.500 105.750 228.500 C 103.888 228.500 102.200 227.968 100.978 227.108 C 99.756 226.248 99 225.060 99 223.750 C 99 222.440 99.756 221.252 100.978 220.392 C 102.200 219.532 103.888 219 105.750 219 Z " transform="matrix(0.7175684571266174, 0, 0, 0.7175684571266174, -8.8, -83.3)"/>
|
||||
<path id="ID0.14635724388062954" fill="#FFEC00" stroke="#000000" stroke-width="1" d="M 105.750 219 C 107.612 219 109.300 219.532 110.522 220.392 C 111.744 221.252 112.500 222.440 112.500 223.750 C 112.500 225.060 111.744 226.248 110.522 227.108 C 109.300 227.968 107.612 228.500 105.750 228.500 C 103.888 228.500 102.200 227.968 100.978 227.108 C 99.756 226.248 99 225.060 99 223.750 C 99 222.440 99.756 221.252 100.978 220.392 C 102.200 219.532 103.888 219 105.750 219 Z " transform="matrix(0.706652045249939, -0.12468897551298141, 0.12468897551298141, 0.706652045249939, -3.7, -61.2)"/>
|
||||
<path id="ID0.95182174583897" fill="#D4A603" stroke="#2F1D00" stroke-width="1" d="M 23.250 258.750 C 25.802 258.750 28.115 259.422 29.789 260.508 C 31.464 261.595 32.500 263.095 32.500 264.750 C 32.500 266.405 31.464 267.905 29.789 268.992 C 28.115 270.078 25.802 270.750 23.250 270.750 C 20.698 270.750 18.385 270.078 16.711 268.992 C 15.036 267.905 14 266.405 14 264.750 C 14 263.095 15.036 261.595 16.711 260.508 C 18.385 259.422 20.698 258.750 23.250 258.750 Z " transform="matrix(-0.05742955952882767, 0.5259036421775818, -0.5989457964897156, -0.06540587544441223, 245.2, 92.15)"/>
|
||||
<path id="ID0.14635724388062954" fill="#FFEC00" stroke="#000000" stroke-width="1" d="M 105.750 219 C 107.612 219 109.300 219.532 110.522 220.392 C 111.744 221.252 112.500 222.440 112.500 223.750 C 112.500 225.060 111.744 226.248 110.522 227.108 C 109.300 227.968 107.612 228.500 105.750 228.500 C 103.888 228.500 102.200 227.968 100.978 227.108 C 99.756 226.248 99 225.060 99 223.750 C 99 222.440 99.756 221.252 100.978 220.392 C 102.200 219.532 103.888 219 105.750 219 Z " transform="matrix(0.6618282198905945, 0.27728667855262756, -0.27728667855262756, 0.6618282198905945, 64.4, -90.95)"/>
|
||||
<path id="ID0.14635724388062954" fill="#FFD063" stroke="#000000" stroke-width="1" d="M 105.750 219 C 107.612 219 109.300 219.532 110.522 220.392 C 111.744 221.252 112.500 222.440 112.500 223.750 C 112.500 225.060 111.744 226.248 110.522 227.108 C 109.300 227.968 107.612 228.500 105.750 228.500 C 103.888 228.500 102.200 227.968 100.978 227.108 C 99.756 226.248 99 225.060 99 223.750 C 99 222.440 99.756 221.252 100.978 220.392 C 102.200 219.532 103.888 219 105.750 219 Z " transform="matrix(0.49104225635528564, 0.5232417583465576, -0.5232417583465576, 0.49104225635528564, 143.65, -76.9)"/>
|
||||
<g id="ID0.5503524877130985">
|
||||
<path id="ID0.6075039426796138" fill="#98D2F5" stroke="#426C7D" stroke-width="2" d="M 235.500 307 C 237.293 307 238.918 307.728 240.095 308.905 C 241.272 310.082 242 311.707 242 313.500 C 242 315.293 241.272 316.918 240.095 318.095 C 238.918 319.272 237.293 320 235.500 320 C 233.707 320 232.082 319.272 230.905 318.095 C 229.728 316.918 229 315.293 229 313.500 C 229 311.707 229.728 310.082 230.905 308.905 C 232.082 307.728 233.707 307 235.500 307 Z " transform="matrix(-0.2518501579761505, -0.04751889780163765, 0.04751889780163765, -0.2518501579761505, 129.3, 183.8)"/>
|
||||
<path id="ID0.6075039426796138" fill="#98D2F5" stroke="#426C7D" stroke-width="2" d="M 235.500 307 C 237.293 307 238.918 307.728 240.095 308.905 C 241.272 310.082 242 311.707 242 313.500 C 242 315.293 241.272 316.918 240.095 318.095 C 238.918 319.272 237.293 320 235.500 320 C 233.707 320 232.082 319.272 230.905 318.095 C 229.728 316.918 229 315.293 229 313.500 C 229 311.707 229.728 310.082 230.905 308.905 C 232.082 307.728 233.707 307 235.500 307 Z " transform="matrix(-0.2518501579761505, -0.04751889780163765, 0.04751889780163765, -0.2518501579761505, 126.25, 185.2)"/>
|
||||
<path id="ID0.6075039426796138" fill="#98D2F5" stroke="#426C7D" stroke-width="2" d="M 235.500 307 C 237.293 307 238.918 307.728 240.095 308.905 C 241.272 310.082 242 311.707 242 313.500 C 242 315.293 241.272 316.918 240.095 318.095 C 238.918 319.272 237.293 320 235.500 320 C 233.707 320 232.082 319.272 230.905 318.095 C 229.728 316.918 229 315.293 229 313.500 C 229 311.707 229.728 310.082 230.905 308.905 C 232.082 307.728 233.707 307 235.500 307 Z " transform="matrix(-0.2518501579761505, -0.04751889780163765, 0.04751889780163765, -0.2518501579761505, 124.05, 188.2)"/>
|
||||
<path id="ID0.6075039426796138" fill="#98D2F5" stroke="#426C7D" stroke-width="2" d="M 235.500 307 C 237.293 307 238.918 307.728 240.095 308.905 C 241.272 310.082 242 311.707 242 313.500 C 242 315.293 241.272 316.918 240.095 318.095 C 238.918 319.272 237.293 320 235.500 320 C 233.707 320 232.082 319.272 230.905 318.095 C 229.728 316.918 229 315.293 229 313.500 C 229 311.707 229.728 310.082 230.905 308.905 C 232.082 307.728 233.707 307 235.500 307 Z " transform="matrix(-0.2518501579761505, -0.04751889780163765, 0.04751889780163765, -0.2518501579761505, 123.65, 191.6)"/>
|
||||
<path id="ID0.6075039426796138" fill="#98D2F5" stroke="#426C7D" stroke-width="2" d="M 235.500 307 C 237.293 307 238.918 307.728 240.095 308.905 C 241.272 310.082 242 311.707 242 313.500 C 242 315.293 241.272 316.918 240.095 318.095 C 238.918 319.272 237.293 320 235.500 320 C 233.707 320 232.082 319.272 230.905 318.095 C 229.728 316.918 229 315.293 229 313.500 C 229 311.707 229.728 310.082 230.905 308.905 C 232.082 307.728 233.707 307 235.500 307 Z " transform="matrix(-0.2518501579761505, -0.04751889780163765, 0.04751889780163765, -0.2518501579761505, 121.75, 194.1)"/>
|
||||
<path id="ID0.6075039426796138" fill="#98D2F5" stroke="#426C7D" stroke-width="2" d="M 235.500 307 C 237.293 307 238.918 307.728 240.095 308.905 C 241.272 310.082 242 311.707 242 313.500 C 242 315.293 241.272 316.918 240.095 318.095 C 238.918 319.272 237.293 320 235.500 320 C 233.707 320 232.082 319.272 230.905 318.095 C 229.728 316.918 229 315.293 229 313.500 C 229 311.707 229.728 310.082 230.905 308.905 C 232.082 307.728 233.707 307 235.500 307 Z " transform="matrix(-0.2518501579761505, -0.04751889780163765, 0.04751889780163765, -0.2518501579761505, 118.2, 194.45)"/>
|
||||
<path id="ID0.6075039426796138" fill="#98D2F5" stroke="#426C7D" stroke-width="2" d="M 235.500 307 C 237.293 307 238.918 307.728 240.095 308.905 C 241.272 310.082 242 311.707 242 313.500 C 242 315.293 241.272 316.918 240.095 318.095 C 238.918 319.272 237.293 320 235.500 320 C 233.707 320 232.082 319.272 230.905 318.095 C 229.728 316.918 229 315.293 229 313.500 C 229 311.707 229.728 310.082 230.905 308.905 C 232.082 307.728 233.707 307 235.500 307 Z " transform="matrix(-0.2518501579761505, -0.04751889780163765, 0.04751889780163765, -0.2518501579761505, 115.7, 192.25)"/>
|
||||
<path id="ID0.6075039426796138" fill="#98D2F5" stroke="#426C7D" stroke-width="2" d="M 235.500 307 C 237.293 307 238.918 307.728 240.095 308.905 C 241.272 310.082 242 311.707 242 313.500 C 242 315.293 241.272 316.918 240.095 318.095 C 238.918 319.272 237.293 320 235.500 320 C 233.707 320 232.082 319.272 230.905 318.095 C 229.728 316.918 229 315.293 229 313.500 C 229 311.707 229.728 310.082 230.905 308.905 C 232.082 307.728 233.707 307 235.500 307 Z " transform="matrix(-0.2518501579761505, -0.04751889780163765, 0.04751889780163765, -0.2518501579761505, 114.25, 189.3)"/>
|
||||
<path id="ID0.6075039426796138" fill="#98D2F5" stroke="#426C7D" stroke-width="2" d="M 235.500 307 C 237.293 307 238.918 307.728 240.095 308.905 C 241.272 310.082 242 311.707 242 313.500 C 242 315.293 241.272 316.918 240.095 318.095 C 238.918 319.272 237.293 320 235.500 320 C 233.707 320 232.082 319.272 230.905 318.095 C 229.728 316.918 229 315.293 229 313.500 C 229 311.707 229.728 310.082 230.905 308.905 C 232.082 307.728 233.707 307 235.500 307 Z " transform="matrix(-0.2518501579761505, -0.04751889780163765, 0.04751889780163765, -0.2518501579761505, 112.4, 186.55)"/>
|
||||
<path id="ID0.6075039426796138" fill="#98D2F5" stroke="#426C7D" stroke-width="2" d="M 235.500 307 C 237.293 307 238.918 307.728 240.095 308.905 C 241.272 310.082 242 311.707 242 313.500 C 242 315.293 241.272 316.918 240.095 318.095 C 238.918 319.272 237.293 320 235.500 320 C 233.707 320 232.082 319.272 230.905 318.095 C 229.728 316.918 229 315.293 229 313.500 C 229 311.707 229.728 310.082 230.905 308.905 C 232.082 307.728 233.707 307 235.500 307 Z " transform="matrix(-0.2518501579761505, -0.04751889780163765, 0.04751889780163765, -0.2518501579761505, 113.45, 183.5)"/>
|
||||
<path id="ID0.6075039426796138" fill="#98D2F5" stroke="#426C7D" stroke-width="2" d="M 235.500 307 C 237.293 307 238.918 307.728 240.095 308.905 C 241.272 310.082 242 311.707 242 313.500 C 242 315.293 241.272 316.918 240.095 318.095 C 238.918 319.272 237.293 320 235.500 320 C 233.707 320 232.082 319.272 230.905 318.095 C 229.728 316.918 229 315.293 229 313.500 C 229 311.707 229.728 310.082 230.905 308.905 C 232.082 307.728 233.707 307 235.500 307 Z " transform="matrix(-0.2518501579761505, -0.04751889780163765, 0.04751889780163765, -0.2518501579761505, 112.35, 180.15)"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ID0.24890166614204645">
|
||||
<path id="ID0.5602954248897731" fill="#96D4FF" stroke="#4F7E83" stroke-width="2" d="M 157 285 C 160.862 285 164.362 286.569 166.897 289.103 C 169.431 291.638 171 295.138 171 299 C 171 302.862 169.431 306.362 166.897 308.897 C 164.362 311.431 160.862 313 157 313 C 153.138 313 149.638 311.431 147.103 308.897 C 144.569 306.362 143 302.862 143 299 C 143 295.138 144.569 291.638 147.103 289.103 C 149.638 286.569 153.138 285 157 285 Z " transform="matrix(0.40662211179733276, 0, 0, 0.40662211179733276, 5.1, -73.25)"/>
|
||||
<path id="ID0.026205711532384157" fill="#FFFFFF" stroke="none" d="M 157.875 290.250 C 159.220 290.250 160.439 290.656 161.321 291.312 C 162.204 291.969 162.750 292.875 162.750 293.875 C 162.750 294.875 162.204 295.781 161.321 296.438 C 160.439 297.094 159.220 297.500 157.875 297.500 C 156.530 297.500 155.311 297.094 154.429 296.438 C 153.546 295.781 153 294.875 153 293.875 C 153 292.875 153.546 291.969 154.429 291.312 C 155.311 290.656 156.530 290.250 157.875 290.250 Z " transform="matrix(0.45875316858291626, 0, 0, 0.45875316858291626, -4.15, -89.35)"/>
|
||||
</g>
|
||||
<g id="ID0.24890166614204645">
|
||||
<path id="ID0.5602954248897731" fill="#96D4FF" stroke="#4F7E83" stroke-width="2" d="M 157 285 C 160.862 285 164.362 286.569 166.897 289.103 C 169.431 291.638 171 295.138 171 299 C 171 302.862 169.431 306.362 166.897 308.897 C 164.362 311.431 160.862 313 157 313 C 153.138 313 149.638 311.431 147.103 308.897 C 144.569 306.362 143 302.862 143 299 C 143 295.138 144.569 291.638 147.103 289.103 C 149.638 286.569 153.138 285 157 285 Z " transform="matrix(0.26065585017204285, 0.11729511618614197, -0.11729511618614197, 0.26065585017204285, 53.6, -61.8)"/>
|
||||
<path id="ID0.026205711532384157" fill="#FFFFFF" stroke="none" d="M 157.875 290.250 C 159.220 290.250 160.439 290.656 161.321 291.312 C 162.204 291.969 162.750 292.875 162.750 293.875 C 162.750 294.875 162.204 295.781 161.321 296.438 C 160.439 297.094 159.220 297.500 157.875 297.500 C 156.530 297.500 155.311 297.094 154.429 296.438 C 153.546 295.781 153 294.875 153 293.875 C 153 292.875 153.546 291.969 154.429 291.312 C 155.311 290.656 156.530 290.250 157.875 290.250 Z " transform="matrix(0.2940732538700104, 0.1323329508304596, -0.1323329508304596, 0.2940732538700104, 52.25, -74.8)"/>
|
||||
</g>
|
||||
<g id="ID0.24890166614204645">
|
||||
<path id="ID0.5602954248897731" fill="#96D4FF" stroke="#4F7E83" stroke-width="2" d="M 157 285 C 160.862 285 164.362 286.569 166.897 289.103 C 169.431 291.638 171 295.138 171 299 C 171 302.862 169.431 306.362 166.897 308.897 C 164.362 311.431 160.862 313 157 313 C 153.138 313 149.638 311.431 147.103 308.897 C 144.569 306.362 143 302.862 143 299 C 143 295.138 144.569 291.638 147.103 289.103 C 149.638 286.569 153.138 285 157 285 Z " transform="matrix(-0.26065585017204285, -0.11729511618614197, 0.11729511618614197, -0.26065585017204285, 82.6, 118.95)"/>
|
||||
<path id="ID0.026205711532384157" fill="#FFFFFF" stroke="none" d="M 157.875 290.250 C 159.220 290.250 160.439 290.656 161.321 291.312 C 162.204 291.969 162.750 292.875 162.750 293.875 C 162.750 294.875 162.204 295.781 161.321 296.438 C 160.439 297.094 159.220 297.500 157.875 297.500 C 156.530 297.500 155.311 297.094 154.429 296.438 C 153.546 295.781 153 294.875 153 293.875 C 153 292.875 153.546 291.969 154.429 291.312 C 155.311 290.656 156.530 290.250 157.875 290.250 Z " transform="matrix(-0.2940732538700104, -0.1323329508304596, 0.1323329508304596, -0.2940732538700104, 83.95, 131.9)"/>
|
||||
</g>
|
||||
<g id="ID0.24890166614204645">
|
||||
<path id="ID0.5602954248897731" fill="#96D4FF" stroke="#4F7E83" stroke-width="2" d="M 157 285 C 160.862 285 164.362 286.569 166.897 289.103 C 169.431 291.638 171 295.138 171 299 C 171 302.862 169.431 306.362 166.897 308.897 C 164.362 311.431 160.862 313 157 313 C 153.138 313 149.638 311.431 147.103 308.897 C 144.569 306.362 143 302.862 143 299 C 143 295.138 144.569 291.638 147.103 289.103 C 149.638 286.569 153.138 285 157 285 Z " transform="matrix(0.4083608388900757, 0.1837623417377472, -0.1837623417377472, 0.4083608388900757, 49.1, -138.95)"/>
|
||||
<path id="ID0.026205711532384157" fill="#FFFFFF" stroke="none" d="M 157.875 290.250 C 159.220 290.250 160.439 290.656 161.321 291.312 C 162.204 291.969 162.750 292.875 162.750 293.875 C 162.750 294.875 162.204 295.781 161.321 296.438 C 160.439 297.094 159.220 297.500 157.875 297.500 C 156.530 297.500 155.311 297.094 154.429 296.438 C 153.546 295.781 153 294.875 153 293.875 C 153 292.875 153.546 291.969 154.429 291.312 C 155.311 290.656 156.530 290.250 157.875 290.250 Z " transform="matrix(0.46071478724479675, 0.2073216289281845, -0.2073216289281845, 0.46071478724479675, 46.9, -159.35)"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 41 KiB |