Starship Troopers! A multi-scene CSS-only SVG animation
////
/// Starship-Troopers!-A-multi-scene-CSS-only-SVG-animation
/// @group how-the-hell-did-you-do-that-without-friggin-JS?
/// @author Damián Muti
////
@mixin center {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.space-scene {
overflow: hidden;
background: #273554 linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
}
.space-wrapper {
position: relative;
overflow: visible;
display: block;
.button {
@include center;
z-index: 10;
width: 75px;
height: 75px;
display: block;
border-radius: 50%;
text-align: center;
text-transform: uppercase;
text-decoration: none;
font-weight: 700;
line-height: 75px;
background-color: #4FFFA8;
color: #fff;
border: 12px solid rgba(#000, 0.1);
transition: background-color 0.25s ease;
&:hover {
background-color: #59D895;
}
}
svg {
@include center;
display: block;
height: 100vh;
overflow: visible;
}
}
.space {
position: relative;
width: 100vw;
height: 100vh;
opacity: 0;
g {
transform-origin: center;
will-change: transform, opacity; // Not sure if this does work on a group element
}
.stars {
will-change: auto; // Not sure if this does work on a group element
path {
fill: #fff;
// Give each star a random opacity
@for $i from 1 to 130 {
&:nth-of-type(#{$i}) {
opacity: random(100)/100;
}
}
}
}
}
#start {
// Play animation
&:target {
.button {
opacity: 0;
}
.space {
animation:
fade-in 1s ease forwards,
start 5.5s ease-out forwards,
unscale ease-out 3s forwards 13s;
}
.stars {
animation:
stars 1.5s ease-in 1 7.5s,
stars 0.5s linear infinite 9s,
stars-blur 0.5s ease forwards 9s,
stars-blur 1s ease reverse 1 forwards 14.25s,
stars 15.5s linear infinite 15.5s;
}
.spacecraft {
animation:
ship-move 4s ease-in-out forwards 6s,
ship-leave 4s ease-in-out forwards 14.5s;
.ship {
animation: ship 0.1s ease infinite 2s;
animation-iteration-count: 50;
}
.fire {
opacity: 0;
animation:
smoke 0.75s linear forwards 2s,
ship 0.1s linear infinite 2s;
}
.smoke {
opacity: 0;
animation:
smoke-move 0.75s linear infinite 3.5s;
}
}
.meteors {
transform: scale(0.75);
.meteor {
&:first-of-type {
animation: meteor 5s linear 1 forwards 9.25s;
}
&:last-of-type {
animation: meteor 3.5s linear 1 forwards 9.25s;
}
&__rock {
animation: meteor__rock 1s linear infinite forwards;
}
&__fire {
animation: smoke-move 0.5s linear infinite forwards;
}
&__fire--small {
animation: smoke-move 0.3s linear infinite forwards 0.1s;
}
}
}
.satellite {
transform: translateY(600px);
animation: satellite 10s ease-out forwards 7.5s;
&__antenna {
animation: satellite__antenna 7s ease infinite;
}
}
.robot {
animation: robot 50s linear infinite;
transform-origin: 551px -193px;
&__wrapper {
animation: robot__wrapper 0.5s linear infinite;
}
}
.ufo {
animation: ufo 10s linear forwards infinite 15s;
transform-origin: center;
}
.earth {
transform: scale(1.2) rotate(-30deg);
animation:
earth 9.5s ease-out forwards 8s;
.planet {
animation: meteor__rock 60s linear infinite 14s;
}
}
.mars {
animation: mars 10s ease forwards 9.5s;
.planet {
animation: meteor__rock 35s linear infinite reverse 9.5s;
}
}
.moon {
animation: moon 2.75s ease forwards 14.5s;
.planet {
animation: meteor__rock 135s linear infinite 14.5s;
}
}
.sun {
animation: sun 2.75s ease forwards 10s;
transform-origin: center;
.planet {
animation: orbit 5.75s linear forwards infinite 16s;
}
}
.saturn {
animation: saturn 2.75s ease forwards 14s;
.planet {
animation: meteor__rock 35s linear infinite reverse 9.5s;
}
}
}
}
/* HELPERS */
@keyframes fade-in {
from {
visibility: hidden;
opacity: 0;
}
to {
visibility: visible;
opacity: 1;
}
}
@keyframes start {
from {
transform: scale(1);
transform-origin: bottom center;
}
to {
transform: scale(2);
transform-origin: bottom center;
}
}
@keyframes unscale {
from {
transform: scale(2);
transform-origin: bottom center;
}
to {
transform: scale(1.65);
transform-origin: bottom center;
}
}
/* PLANETS */
@keyframes earth {
to {
transform: scale(0.15) translateY(340px) rotate(-30deg);
}
}
@keyframes sun {
to {
transform: scale(0.25) translate(1380px, 2140px);
}
}
@keyframes saturn {
to {
transform: scale(0.6) translateY(820px) translateX(-210px);
}
}
@keyframes moon {
from {
transform: scale(3.5);
}
to {
transform: scale(1) translate(200px, 750px);
}
}
@keyframes mars {
from {
transform: scale(3);
}
to {
transform: scale(0.75) translate(200px, 650px);
}
}
/* SHIPS AND ANY OTHER METAL STUFF */
@keyframes ship {
0% {
transform: translate(1px, 1px);
}
25% {
transform: translate(0px, 0px);
}
50% {
transform: translate(0px, -1px);
}
75% {
transform: translate(-1px, -1px);
}
}
@keyframes ship-move {
to {
transform: translateY(-60px);
}
}
@keyframes ship-leave {
0% {
transform: translateY(-60px);
}
30% {
transform: translateY(-20px);
}
100% {
transform: translateY(-2000px) scale(0.65);
}
}
@keyframes smoke {
from {
transform: scale(0);
transform-origin: top center;
opacity: 0;
}
to {
transform: scale(1);
transform-origin: top center;
opacity: 1;
}
}
@keyframes smoke-move {
0%,
100% {
transform: scale(1.05) translateY(-5px);
transform-origin: top center;
opacity: 1;
}
50% {
transform: scale(.95) translateX(0);
transform-origin: top center;
opacity: .85;
}
}
@keyframes satellite {
to {
transform: translate(-143px, 940px) scale(0.1);
}
}
@keyframes satellite__antenna {
0%,
100% {
transform: rotate(0deg);
transform-origin: 83% 44%;
}
50% {
transform: rotate(-90deg);
transform-origin: 83% 44%;
}
}
@keyframes ufo {
70% {
transform: rotate(50deg) translate(-600px, 1300px) rotate(-50deg) scale(0.25);
}
71%,
100% {
transform: rotate(50deg) translate(-1000px, 1300px) rotate(-50deg) scale(0.25);
}
}
@keyframes robot {
from {
transform: rotate(0);
transform-origin: 551px -193px;
}
to {
transform: rotate(1turn);
transform-origin: 551px -193px;
}
}
@keyframes robot__wrapper {
0%,
100% {
transform: translate(0, 0);
}
50% {
transform: translate(0, -2px);
}
}
/* ROCKS */
@keyframes meteor {
to {
transform: translate(-900px, 1500px);
}
}
@keyframes meteor__rock {
to {
transform: rotate(-360deg);
transform-origin: center;
}
}
@keyframes stars {
to {
transform: translateY(278px);
}
}
@keyframes stars-blur {
0% {
filter: url(#blur0);
}
20% {
filter: url(#blur1);
}
40% {
filter: url(#blur2);
}
80% {
filter: url(#blur3);
}
100% {
filter: url(#blur4);
}
}
W00t! How the hell did you do that without Javascript?
This pen is part of a series of CSS-only SVG animations intended to progressively explain how SVG images can be animated in a cool way without using any Javascript and, of course, without ending with a hell of a mess in the Sass file.
Feel free to toy around. That's precisely why I created these pens for. :).
CREDITS: Space vector icons by @GraphiqaStock - https://twitter.com/graphiqastock
A Pen by HARUN PEHLİVAN on CodePen.
// W00t! How the hell did you do that without Javascript?
//
// This pen is part of a series of CSS-only SVG animations intended to progressively explain how SVG images can be animated in a cool way without using any Javascript and, of course, without ending with a hell of a mess in the Sass file/s.
// Feel free to toy around.
// That's precisely why I created these pens for. :).
//
// P.S.: Please note that this pen may only work on Webkit/Blink browsers due to a bug with transform-origin on Firefox.
// CREDITS: Space vector icons by @GraphiqaStock - https://twitter.com/graphiqastock
<body class="space-scene">
<div class="space-wrapper" id="start">
<a href="#start" class="button">Play</a>
<div class="space">
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="1366px" height="768px" viewBox="0 0 1366 768" style="enable-background:new 0 0 1366 768;" xml:space="preserve">
<defs>
<filter id="blur0">
<feGaussianBlur in="SourceGraphic" stdDeviation="0 0" />
</filter>
<filter id="blur1">
<feGaussianBlur in="SourceGraphic" stdDeviation="0 1" />
</filter>
<filter id="blur2">
<feGaussianBlur in="SourceGraphic" stdDeviation="0 2" />
</filter>
<filter id="blur3">
<feGaussianBlur in="SourceGraphic" stdDeviation="0 3" />
</filter>
<filter id="blur4">
<feGaussianBlur in="SourceGraphic" stdDeviation="0 4" />
</filter>
</defs>
<g class="stars">
<path d="M385.061,622.249c0.439,0.635,0.282,1.507-0.352,1.948c0.634-0.438,1.506-0.281,1.945,0.353
c-0.439-0.638-0.282-1.506,0.353-1.948C386.372,623.044,385.5,622.884,385.061,622.249z" />
<path d="M378.088,499.788c0,0.753-0.608,1.357-1.359,1.357c0.75,0,1.359,0.609,1.359,1.36c0-0.751,0.609-1.36,1.359-1.36
C378.697,501.146,378.088,500.541,378.088,499.788z" />
<path d="M298.435,574.829c0.439,0.638,0.282,1.51-0.352,1.948c0.634-0.438,1.506-0.282,1.945,0.353
c-0.439-0.635-0.282-1.506,0.353-1.944C299.745,575.624,298.874,575.467,298.435,574.829z" />
<path d="M373.265,731.837c-0.708,1.35-2.373,1.873-3.725,1.164c1.349,0.709,1.872,2.375,1.165,3.726
c0.707-1.351,2.374-1.873,3.724-1.165C373.081,734.854,372.557,733.19,373.265,731.837z" />
<path d="M593.948,706.446c0,0.805-0.65,1.462-1.459,1.462c0.806,0,1.459,0.649,1.459,1.459c0.003-0.809,0.655-1.459,1.461-1.459
C594.603,707.908,593.948,707.255,593.948,706.446z" />
<path d="M598.999,609.896c0,0.807-0.65,1.461-1.459,1.461c0.806,0,1.459,0.65,1.459,1.462c0.003-0.808,0.655-1.462,1.461-1.462
C599.654,611.356,598.999,610.706,598.999,609.896z" />
<path d="M622.979,759.345c0.407,0.652,0.207,1.515-0.45,1.922c0.655-0.407,1.52-0.205,1.925,0.452
c-0.408-0.657-0.206-1.517,0.448-1.923C624.252,760.202,623.386,759.997,622.979,759.345z" />
<path d="M471.034,676.531c0,1.223-0.993,2.221-2.223,2.221c1.228,0,2.223,0.993,2.223,2.222c0-1.229,0.994-2.222,2.221-2.222
C472.028,678.752,471.034,677.758,471.034,676.531z" />
<path d="M535.666,541.516c0,0.809-0.654,1.462-1.458,1.462c0.801,0,1.458,0.65,1.458,1.461c0-0.808,0.652-1.461,1.458-1.461
C536.319,542.978,535.666,542.326,535.666,541.516z" />
<path d="M532.241,715.766c0,1.086-0.88,1.969-1.967,1.969c1.087,0,1.967,0.881,1.967,1.964c0-1.083,0.88-1.964,1.964-1.964
C533.121,717.734,532.241,716.852,532.241,715.766z" />
<path d="M28.013,676.531c0,1.223-0.993,2.221-2.221,2.221c1.228,0,2.221,0.993,2.221,2.222c0-1.229,0.995-2.222,2.222-2.222
C29.008,678.752,28.013,677.758,28.013,676.531z" />
<path d="M36.473,578.425c0,1.087-0.878,1.968-1.967,1.968c1.088,0,1.967,0.881,1.967,1.968c0-1.087,0.88-1.968,1.966-1.968
C37.353,580.393,36.473,579.512,36.473,578.425z" />
<path d="M89.222,715.766c0,1.086-0.88,1.969-1.968,1.969c1.088,0,1.968,0.881,1.968,1.964c0-1.083,0.879-1.964,1.964-1.964
C90.101,717.734,89.222,716.852,89.222,715.766z" />
<path d="M293.508,658.313c0.551,1.096,0.105,2.425-0.99,2.977c1.096-0.552,2.43-0.105,2.98,0.992
c-0.55-1.098-0.107-2.432,0.989-2.979C295.391,659.85,294.059,659.408,293.508,658.313z" />
<path d="M232.261,489.081c0.442,0.638,0.284,1.506-0.353,1.948c0.636-0.438,1.506-0.282,1.945,0.353
c-0.439-0.635-0.282-1.507,0.353-1.948C233.571,489.875,232.703,489.719,232.261,489.081z" />
<path d="M260.12,765.282c0,0.749-0.606,1.358-1.356,1.358c0.75,0,1.356,0.609,1.356,1.359c0-0.75,0.608-1.359,1.359-1.359
C260.728,766.641,260.12,766.031,260.12,765.282z" />
<path d="M635.705,550.576c0,0.75-0.608,1.355-1.36,1.355c0.751,0,1.36,0.609,1.36,1.358c-0.001-0.749,0.607-1.358,1.359-1.358
C636.314,551.932,635.705,551.326,635.705,550.576z" />
<path d="M107.405,498.832c0,1.279-1.037,2.313-2.316,2.313c1.277,0,2.316,1.039,2.316,2.318c0-1.279,1.036-2.318,2.315-2.318
C108.441,501.146,107.405,500.111,107.405,498.832z" />
<path d="M179.959,759.345c0.407,0.652,0.207,1.515-0.45,1.922c0.655-0.407,1.521-0.205,1.926,0.452
c-0.409-0.657-0.207-1.517,0.448-1.923C181.232,760.202,180.367,759.997,179.959,759.345z" />
<path d="M155.98,620.892c0,0.751-0.608,1.356-1.36,1.356c0.751,0,1.36,0.609,1.36,1.357c-0.001-0.748,0.607-1.357,1.359-1.357
C156.589,622.248,155.98,621.643,155.98,620.892z" />
<path d="M1179.548,658.313c0.551,1.096,0.106,2.425-0.99,2.977c1.097-0.552,2.431-0.105,2.979,0.992
c-0.549-1.098-0.106-2.432,0.988-2.979C1181.431,659.85,1180.099,659.408,1179.548,658.313z" />
<path d="M1118.3,489.081c0.443,0.638,0.284,1.506-0.353,1.948c0.637-0.438,1.507-0.282,1.946,0.353
c-0.439-0.635-0.282-1.507,0.353-1.948C1119.611,489.875,1118.743,489.719,1118.3,489.081z" />
<path d="M1146.159,765.282c0,0.749-0.605,1.358-1.356,1.358c0.747,0,1.356,0.609,1.356,1.359c0-0.75,0.608-1.359,1.359-1.359
C1146.768,766.641,1146.159,766.031,1146.159,765.282z" />
<path d="M1036.971,706.446c0,0.805-0.653,1.462-1.462,1.462c0.805,0,1.462,0.649,1.462,1.459c0-0.809,0.652-1.459,1.458-1.459
C1037.623,707.908,1036.971,707.255,1036.971,706.446z" />
<path d="M1065.999,759.345c0.407,0.652,0.207,1.515-0.448,1.922c0.653-0.407,1.519-0.205,1.923,0.452
c-0.406-0.657-0.205-1.517,0.45-1.923C1067.269,760.202,1066.406,759.997,1065.999,759.345z" />
<path d="M1042.019,609.896c0,0.807-0.65,1.461-1.459,1.461c0.805,0,1.459,0.65,1.459,1.462c0.003-0.808,0.655-1.462,1.461-1.462
C1042.674,611.356,1042.019,610.706,1042.019,609.896z" />
<path d="M1306.017,572.387c0.438,0.635,0.282,1.507-0.353,1.946c0.635-0.439,1.506-0.282,1.945,0.353
c-0.439-0.635-0.281-1.507,0.352-1.946C1307.328,573.179,1306.455,573.021,1306.017,572.387z" />
<path d="M1339.932,640.837c0,1.087-0.88,1.968-1.968,1.968c1.088,0,1.968,0.881,1.968,1.965c0-1.084,0.88-1.965,1.965-1.965
C1340.812,642.805,1339.932,641.924,1339.932,640.837z" />
<path d="M1312.658,716.548c0.408,0.654,0.206,1.516-0.45,1.923c0.655-0.407,1.52-0.205,1.923,0.452
c-0.403-0.657-0.203-1.516,0.452-1.924C1313.928,717.407,1313.066,717.202,1312.658,716.548z" />
<path d="M1220.402,759.345c0.405,0.652,0.209,1.515-0.449,1.922c0.654-0.407,1.519-0.205,1.924,0.452
c-0.405-0.657-0.203-1.517,0.451-1.923C1221.674,760.202,1220.808,759.997,1220.402,759.345z" />
<path d="M1184.476,574.829c0.438,0.638,0.28,1.51-0.354,1.948c0.634-0.438,1.506-0.282,1.944,0.353
c-0.438-0.635-0.282-1.506,0.354-1.944C1185.784,575.624,1184.914,575.467,1184.476,574.829z" />
<path d="M983.32,538.347c0,1.278-1.041,2.317-2.318,2.317c1.277,0,2.318,1.035,2.318,2.313c-0.006-1.278,1.031-2.313,2.311-2.313
C984.354,540.664,983.32,539.625,983.32,538.347z" />
<path d="M741.455,574.829c0.438,0.638,0.282,1.51-0.353,1.948c0.635-0.438,1.505-0.282,1.945,0.353
c-0.44-0.635-0.282-1.506,0.353-1.944C742.766,575.624,741.894,575.467,741.455,574.829z" />
<path d="M777.381,759.345c0.407,0.652,0.21,1.515-0.446,1.922c0.651-0.407,1.517-0.205,1.922,0.452
c-0.405-0.657-0.203-1.517,0.452-1.923C778.653,760.202,777.788,759.997,777.381,759.345z" />
<path d="M736.527,658.313c0.552,1.096,0.106,2.425-0.99,2.977c1.097-0.552,2.431-0.105,2.98,0.992
c-0.55-1.098-0.107-2.432,0.989-2.979C738.41,659.85,737.079,659.408,736.527,658.313z" />
<path d="M790.718,686.802c0.404,0.654,0.205,1.516-0.45,1.924c0.655-0.408,1.518-0.205,1.923,0.451
c-0.405-0.656-0.204-1.516,0.451-1.923C791.986,687.661,791.122,687.456,790.718,686.802z" />
<path d="M682.118,660.061c0,1.223-0.992,2.223-2.22,2.223c1.222,0,2.22,0.99,2.22,2.217c0.001-1.225,0.996-2.217,2.222-2.217
C683.114,662.283,682.118,661.286,682.118,660.061z" />
<path d="M675.281,489.081c0.444,0.638,0.283,1.506-0.353,1.948c0.636-0.438,1.506-0.282,1.945,0.353
c-0.439-0.635-0.282-1.507,0.353-1.948C676.591,489.875,675.723,489.719,675.281,489.081z" />
<path d="M703.139,765.282c0,0.749-0.605,1.358-1.354,1.358c0.749,0,1.354,0.609,1.354,1.359c0-0.75,0.609-1.359,1.359-1.359
C703.748,766.641,703.139,766.031,703.139,765.282z" />
<path d="M723.151,622.215c0.406,0.652,0.207,1.519-0.447,1.925c0.651-0.406,1.517-0.204,1.922,0.449
c-0.407-0.657-0.206-1.517,0.449-1.923C724.424,623.072,723.558,622.867,723.151,622.215z" />
<path d="M949.001,652.928c0,0.753-0.607,1.362-1.359,1.362c0.752,0,1.359,0.609,1.359,1.359c0-0.75,0.606-1.359,1.359-1.359
C949.607,654.29,949.001,653.681,949.001,652.928z" />
<path d="M978.685,541.516c0,0.809-0.652,1.462-1.459,1.462c0.803,0,1.459,0.65,1.459,1.461c0-0.808,0.653-1.461,1.458-1.461
C979.34,542.978,978.685,542.326,978.685,541.516z" />
<path d="M975.262,715.766c0,1.086-0.88,1.969-1.969,1.969c1.089,0,1.969,0.881,1.969,1.964c0-1.083,0.88-1.964,1.964-1.964
C976.142,717.734,975.262,716.852,975.262,715.766z" />
<path d="M862.996,572.387c0.439,0.635,0.282,1.507-0.353,1.946c0.635-0.439,1.507-0.282,1.946,0.353
c-0.439-0.635-0.282-1.507,0.353-1.946C864.308,573.179,863.436,573.021,862.996,572.387z" />
<path d="M869.639,716.548c0.407,0.654,0.207,1.516-0.45,1.923c0.654-0.407,1.521-0.205,1.923,0.452
c-0.404-0.657-0.204-1.516,0.451-1.924C870.907,717.407,870.046,717.202,869.639,716.548z" />
<path d="M385.061,343.249c0.439,0.635,0.282,1.507-0.352,1.948c0.634-0.438,1.506-0.281,1.945,0.353
c-0.439-0.638-0.282-1.506,0.353-1.948C386.372,344.044,385.5,343.884,385.061,343.249z" />
<path d="M378.088,220.788c0,0.753-0.608,1.357-1.359,1.357c0.75,0,1.359,0.609,1.359,1.36c0-0.751,0.609-1.36,1.359-1.36
C378.697,222.146,378.088,221.541,378.088,220.788z" />
<path d="M298.435,295.829c0.439,0.638,0.282,1.51-0.352,1.948c0.634-0.438,1.506-0.282,1.945,0.353
c-0.439-0.635-0.282-1.506,0.353-1.944C299.745,296.624,298.874,296.467,298.435,295.829z" />
<path d="M373.265,452.837c-0.708,1.35-2.373,1.873-3.725,1.164c1.349,0.709,1.872,2.375,1.165,3.726
c0.707-1.351,2.374-1.873,3.724-1.165C373.081,455.854,372.557,454.19,373.265,452.837z" />
<path d="M593.948,427.446c0,0.805-0.65,1.462-1.459,1.462c0.806,0,1.459,0.649,1.459,1.459c0.003-0.809,0.655-1.459,1.461-1.459
C594.603,428.908,593.948,428.255,593.948,427.446z" />
<path d="M598.999,330.896c0,0.807-0.65,1.461-1.459,1.461c0.806,0,1.459,0.65,1.459,1.462c0.003-0.808,0.655-1.462,1.461-1.462
C599.654,332.356,598.999,331.706,598.999,330.896z" />
<path d="M622.979,480.345c0.407,0.652,0.207,1.515-0.45,1.922c0.655-0.407,1.52-0.205,1.925,0.452
c-0.408-0.657-0.206-1.517,0.448-1.923C624.252,481.202,623.386,480.997,622.979,480.345z" />
<path d="M471.034,397.531c0,1.223-0.993,2.221-2.223,2.221c1.228,0,2.223,0.993,2.223,2.222c0-1.229,0.994-2.222,2.221-2.222
C472.028,399.752,471.034,398.758,471.034,397.531z" />
<path d="M535.666,262.516c0,0.809-0.654,1.462-1.458,1.462c0.801,0,1.458,0.65,1.458,1.461c0-0.808,0.652-1.461,1.458-1.461
C536.319,263.978,535.666,263.326,535.666,262.516z" />
<path d="M532.241,436.766c0,1.086-0.88,1.969-1.967,1.969c1.087,0,1.967,0.881,1.967,1.964c0-1.083,0.88-1.964,1.964-1.964
C533.121,438.734,532.241,437.852,532.241,436.766z" />
<path d="M28.013,397.531c0,1.223-0.993,2.221-2.221,2.221c1.228,0,2.221,0.993,2.221,2.222c0-1.229,0.995-2.222,2.222-2.222
C29.008,399.752,28.013,398.758,28.013,397.531z" />
<path d="M36.473,299.425c0,1.087-0.878,1.968-1.967,1.968c1.088,0,1.967,0.881,1.967,1.968c0-1.087,0.88-1.968,1.966-1.968
C37.353,301.393,36.473,300.512,36.473,299.425z" />
<path d="M89.222,436.766c0,1.086-0.88,1.969-1.968,1.969c1.088,0,1.968,0.881,1.968,1.964c0-1.083,0.879-1.964,1.964-1.964
C90.101,438.734,89.222,437.852,89.222,436.766z" />
<path d="M293.508,379.313c0.551,1.096,0.105,2.425-0.99,2.977c1.096-0.552,2.43-0.105,2.98,0.992
c-0.55-1.098-0.107-2.432,0.989-2.979C295.391,380.85,294.059,380.408,293.508,379.313z" />
<path d="M232.261,210.081c0.442,0.638,0.284,1.506-0.353,1.948c0.636-0.438,1.506-0.282,1.945,0.353
c-0.439-0.635-0.282-1.507,0.353-1.948C233.571,210.875,232.703,210.719,232.261,210.081z" />
<path d="M260.12,486.282c0,0.749-0.606,1.358-1.356,1.358c0.75,0,1.356,0.609,1.356,1.359c0-0.75,0.608-1.359,1.359-1.359
C260.728,487.641,260.12,487.031,260.12,486.282z" />
<path d="M635.705,271.576c0,0.75-0.608,1.355-1.36,1.355c0.751,0,1.36,0.609,1.36,1.358c-0.001-0.749,0.607-1.358,1.359-1.358
C636.314,272.932,635.705,272.326,635.705,271.576z" />
<path d="M107.405,219.832c0,1.279-1.037,2.313-2.316,2.313c1.277,0,2.316,1.039,2.316,2.318c0-1.279,1.036-2.318,2.315-2.318
C108.441,222.146,107.405,221.111,107.405,219.832z" />
<path d="M179.959,480.345c0.407,0.652,0.207,1.515-0.45,1.922c0.655-0.407,1.521-0.205,1.926,0.452
c-0.409-0.657-0.207-1.517,0.448-1.923C181.232,481.202,180.367,480.997,179.959,480.345z" />
<path d="M155.98,341.892c0,0.751-0.608,1.356-1.36,1.356c0.751,0,1.36,0.609,1.36,1.357c-0.001-0.748,0.607-1.357,1.359-1.357
C156.589,343.248,155.98,342.643,155.98,341.892z" />
<path d="M1179.548,379.313c0.551,1.096,0.106,2.425-0.99,2.977c1.097-0.552,2.431-0.105,2.979,0.992
c-0.549-1.098-0.106-2.432,0.988-2.979C1181.431,380.85,1180.099,380.408,1179.548,379.313z" />
<path d="M1118.3,210.081c0.443,0.638,0.284,1.506-0.353,1.948c0.637-0.438,1.507-0.282,1.946,0.353
c-0.439-0.635-0.282-1.507,0.353-1.948C1119.611,210.875,1118.743,210.719,1118.3,210.081z" />
<path d="M1146.159,486.282c0,0.749-0.605,1.358-1.356,1.358c0.747,0,1.356,0.609,1.356,1.359c0-0.75,0.608-1.359,1.359-1.359
C1146.768,487.641,1146.159,487.031,1146.159,486.282z" />
<path d="M1036.971,427.446c0,0.805-0.653,1.462-1.462,1.462c0.805,0,1.462,0.649,1.462,1.459c0-0.809,0.652-1.459,1.458-1.459
C1037.623,428.908,1036.971,428.255,1036.971,427.446z" />
<path d="M1065.999,480.345c0.407,0.652,0.207,1.515-0.448,1.922c0.653-0.407,1.519-0.205,1.923,0.452
c-0.406-0.657-0.205-1.517,0.45-1.923C1067.269,481.202,1066.406,480.997,1065.999,480.345z" />
<path d="M1042.019,330.896c0,0.807-0.65,1.461-1.459,1.461c0.805,0,1.459,0.65,1.459,1.462c0.003-0.808,0.655-1.462,1.461-1.462
C1042.674,332.356,1042.019,331.706,1042.019,330.896z" />
<path d="M1306.017,293.387c0.438,0.635,0.282,1.507-0.353,1.946c0.635-0.439,1.506-0.282,1.945,0.353
c-0.439-0.635-0.281-1.507,0.352-1.946C1307.328,294.179,1306.455,294.021,1306.017,293.387z" />
<path d="M1339.932,361.837c0,1.087-0.88,1.968-1.968,1.968c1.088,0,1.968,0.881,1.968,1.965c0-1.084,0.88-1.965,1.965-1.965
C1340.812,363.805,1339.932,362.924,1339.932,361.837z" />
<path d="M1312.658,437.548c0.408,0.654,0.206,1.516-0.45,1.923c0.655-0.407,1.52-0.205,1.923,0.452
c-0.403-0.657-0.203-1.516,0.452-1.924C1313.928,438.407,1313.066,438.202,1312.658,437.548z" />
<path d="M1220.402,480.345c0.405,0.652,0.209,1.515-0.449,1.922c0.654-0.407,1.519-0.205,1.924,0.452
c-0.405-0.657-0.203-1.517,0.451-1.923C1221.674,481.202,1220.808,480.997,1220.402,480.345z" />
<path d="M1184.476,295.829c0.438,0.638,0.28,1.51-0.354,1.948c0.634-0.438,1.506-0.282,1.944,0.353
c-0.438-0.635-0.282-1.506,0.354-1.944C1185.784,296.624,1184.914,296.467,1184.476,295.829z" />
<path d="M983.32,259.347c0,1.278-1.041,2.317-2.318,2.317c1.277,0,2.318,1.035,2.318,2.313c-0.006-1.278,1.031-2.313,2.311-2.313
C984.354,261.664,983.32,260.625,983.32,259.347z" />
<path d="M741.455,295.829c0.438,0.638,0.282,1.51-0.353,1.948c0.635-0.438,1.505-0.282,1.945,0.353
c-0.44-0.635-0.282-1.506,0.353-1.944C742.766,296.624,741.894,296.467,741.455,295.829z" />
<path d="M777.381,480.345c0.407,0.652,0.21,1.515-0.446,1.922c0.651-0.407,1.517-0.205,1.922,0.452
c-0.405-0.657-0.203-1.517,0.452-1.923C778.653,481.202,777.788,480.997,777.381,480.345z" />
<path d="M736.527,379.313c0.552,1.096,0.106,2.425-0.99,2.977c1.097-0.552,2.431-0.105,2.98,0.992
c-0.55-1.098-0.107-2.432,0.989-2.979C738.41,380.85,737.079,380.408,736.527,379.313z" />
<path d="M790.718,407.802c0.404,0.654,0.205,1.516-0.45,1.924c0.655-0.408,1.518-0.205,1.923,0.451
c-0.405-0.656-0.204-1.516,0.451-1.923C791.986,408.661,791.122,408.456,790.718,407.802z" />
<path d="M682.118,381.061c0,1.223-0.992,2.223-2.22,2.223c1.222,0,2.22,0.99,2.22,2.217c0.001-1.225,0.996-2.217,2.222-2.217
C683.114,383.283,682.118,382.286,682.118,381.061z" />
<path d="M675.281,210.081c0.444,0.638,0.283,1.506-0.353,1.948c0.636-0.438,1.506-0.282,1.945,0.353
c-0.439-0.635-0.282-1.507,0.353-1.948C676.591,210.875,675.723,210.719,675.281,210.081z" />
<path d="M703.139,486.282c0,0.749-0.605,1.358-1.354,1.358c0.749,0,1.354,0.609,1.354,1.359c0-0.75,0.609-1.359,1.359-1.359
C703.748,487.641,703.139,487.031,703.139,486.282z" />
<path d="M723.151,343.215c0.406,0.652,0.207,1.519-0.447,1.925c0.651-0.406,1.517-0.204,1.922,0.449
c-0.407-0.657-0.206-1.517,0.449-1.923C724.424,344.072,723.558,343.867,723.151,343.215z" />
<path d="M949.001,373.928c0,0.753-0.607,1.362-1.359,1.362c0.752,0,1.359,0.609,1.359,1.359c0-0.75,0.606-1.359,1.359-1.359
C949.607,375.29,949.001,374.681,949.001,373.928z" />
<path d="M978.685,262.516c0,0.809-0.652,1.462-1.459,1.462c0.803,0,1.459,0.65,1.459,1.461c0-0.808,0.653-1.461,1.458-1.461
C979.34,263.978,978.685,263.326,978.685,262.516z" />
<path d="M975.262,436.766c0,1.086-0.88,1.969-1.969,1.969c1.089,0,1.969,0.881,1.969,1.964c0-1.083,0.88-1.964,1.964-1.964
C976.142,438.734,975.262,437.852,975.262,436.766z" />
<path d="M862.996,293.387c0.439,0.635,0.282,1.507-0.353,1.946c0.635-0.439,1.507-0.282,1.946,0.353
c-0.439-0.635-0.282-1.507,0.353-1.946C864.308,294.179,863.436,294.021,862.996,293.387z" />
<path d="M869.639,437.548c0.407,0.654,0.207,1.516-0.45,1.923c0.654-0.407,1.521-0.205,1.923,0.452
c-0.404-0.657-0.204-1.516,0.451-1.924C870.907,438.407,870.046,438.202,869.639,437.548z" />
<path d="M385.061,64.168c0.439,0.635,0.282,1.507-0.352,1.948c0.634-0.438,1.506-0.281,1.945,0.353
c-0.439-0.638-0.282-1.506,0.353-1.948C386.372,64.963,385.5,64.803,385.061,64.168z" />
<path d="M298.435,16.748c0.439,0.638,0.282,1.51-0.352,1.948c0.634-0.438,1.506-0.282,1.945,0.353
c-0.439-0.635-0.282-1.506,0.353-1.944C299.745,17.543,298.874,17.386,298.435,16.748z" />
<path d="M373.265,173.756c-0.708,1.35-2.373,1.873-3.725,1.164c1.349,0.709,1.872,2.375,1.165,3.726
c0.707-1.351,2.374-1.873,3.724-1.165C373.081,176.772,372.557,175.109,373.265,173.756z" />
<path d="M593.948,148.365c0,0.805-0.65,1.462-1.459,1.462c0.806,0,1.459,0.649,1.459,1.459c0.003-0.809,0.655-1.459,1.461-1.459
C594.603,149.827,593.948,149.174,593.948,148.365z" />
<path d="M598.999,51.814c0,0.807-0.65,1.461-1.459,1.461c0.806,0,1.459,0.65,1.459,1.462c0.003-0.808,0.655-1.462,1.461-1.462
C599.654,53.275,598.999,52.625,598.999,51.814z" />
<path d="M622.979,201.264c0.407,0.652,0.207,1.515-0.45,1.922c0.655-0.407,1.52-0.205,1.925,0.452
c-0.408-0.657-0.206-1.517,0.448-1.923C624.252,202.121,623.386,201.916,622.979,201.264z" />
<path d="M471.034,118.45c0,1.223-0.993,2.221-2.223,2.221c1.228,0,2.223,0.993,2.223,2.222c0-1.229,0.994-2.222,2.221-2.222
C472.028,120.671,471.034,119.677,471.034,118.45z" />
<path d="M532.241,157.685c0,1.086-0.88,1.969-1.967,1.969c1.087,0,1.967,0.881,1.967,1.964c0-1.083,0.88-1.964,1.964-1.964
C533.121,159.653,532.241,158.771,532.241,157.685z" />
<path d="M28.013,118.45c0,1.223-0.993,2.221-2.221,2.221c1.228,0,2.221,0.993,2.221,2.222c0-1.229,0.995-2.222,2.222-2.222
C29.008,120.671,28.013,119.677,28.013,118.45z" />
<path d="M36.473,20.344c0,1.087-0.878,1.968-1.967,1.968c1.088,0,1.967,0.881,1.967,1.968c0-1.087,0.88-1.968,1.966-1.968
C37.353,22.312,36.473,21.431,36.473,20.344z" />
<path d="M89.222,157.685c0,1.086-0.88,1.969-1.968,1.969c1.088,0,1.968,0.881,1.968,1.964c0-1.083,0.879-1.964,1.964-1.964
C90.101,159.653,89.222,158.771,89.222,157.685z" />
<path d="M293.508,100.231c0.551,1.096,0.105,2.425-0.99,2.977c1.096-0.552,2.43-0.105,2.98,0.992
c-0.55-1.098-0.107-2.432,0.989-2.979C295.391,101.769,294.059,101.327,293.508,100.231z" />
<path d="M260.12,207.201c0,0.749-0.606,1.358-1.356,1.358c0.75,0,1.356,0.609,1.356,1.359c0-0.75,0.608-1.359,1.359-1.359
C260.728,208.56,260.12,207.95,260.12,207.201z" />
<path d="M179.959,201.264c0.407,0.652,0.207,1.515-0.45,1.922c0.655-0.407,1.521-0.205,1.926,0.452
c-0.409-0.657-0.207-1.517,0.448-1.923C181.232,202.121,180.367,201.916,179.959,201.264z" />
<path d="M155.98,62.811c0,0.751-0.608,1.356-1.36,1.356c0.751,0,1.36,0.609,1.36,1.357c-0.001-0.748,0.607-1.357,1.359-1.357
C156.589,64.167,155.98,63.562,155.98,62.811z" />
<path d="M1179.548,100.231c0.551,1.096,0.106,2.425-0.99,2.977c1.097-0.552,2.431-0.105,2.979,0.992
c-0.549-1.098-0.106-2.432,0.988-2.979C1181.431,101.769,1180.099,101.327,1179.548,100.231z" />
<path d="M1146.159,207.201c0,0.749-0.605,1.358-1.356,1.358c0.747,0,1.356,0.609,1.356,1.359c0-0.75,0.608-1.359,1.359-1.359
C1146.768,208.56,1146.159,207.95,1146.159,207.201z" />
<path d="M1036.971,148.365c0,0.805-0.653,1.462-1.462,1.462c0.805,0,1.462,0.649,1.462,1.459c0-0.809,0.652-1.459,1.458-1.459
C1037.623,149.827,1036.971,149.174,1036.971,148.365z" />
<path d="M1065.999,201.264c0.407,0.652,0.207,1.515-0.448,1.922c0.653-0.407,1.519-0.205,1.923,0.452
c-0.406-0.657-0.205-1.517,0.45-1.923C1067.269,202.121,1066.406,201.916,1065.999,201.264z" />
<path d="M1042.019,51.814c0,0.807-0.65,1.461-1.459,1.461c0.805,0,1.459,0.65,1.459,1.462c0.003-0.808,0.655-1.462,1.461-1.462
C1042.674,53.275,1042.019,52.625,1042.019,51.814z" />
<path d="M1306.017,14.306c0.438,0.635,0.282,1.507-0.353,1.946c0.635-0.439,1.506-0.282,1.945,0.353
c-0.439-0.635-0.281-1.507,0.352-1.946C1307.328,15.098,1306.455,14.94,1306.017,14.306z" />
<path d="M1339.932,82.756c0,1.087-0.88,1.968-1.968,1.968c1.088,0,1.968,0.881,1.968,1.965c0-1.084,0.88-1.965,1.965-1.965
C1340.812,84.724,1339.932,83.843,1339.932,82.756z" />
<path d="M1312.658,158.467c0.408,0.654,0.206,1.516-0.45,1.923c0.655-0.407,1.52-0.205,1.923,0.452
c-0.403-0.657-0.203-1.516,0.452-1.924C1313.928,159.326,1313.066,159.121,1312.658,158.467z" />
<path d="M1220.402,201.264c0.405,0.652,0.209,1.515-0.449,1.922c0.654-0.407,1.519-0.205,1.924,0.452
c-0.405-0.657-0.203-1.517,0.451-1.923C1221.674,202.121,1220.808,201.916,1220.402,201.264z" />
<path d="M1184.476,16.748c0.438,0.638,0.28,1.51-0.354,1.948c0.634-0.438,1.506-0.282,1.944,0.353
c-0.438-0.635-0.282-1.506,0.354-1.944C1185.784,17.543,1184.914,17.386,1184.476,16.748z" />
<path d="M741.455,16.748c0.438,0.638,0.282,1.51-0.353,1.948c0.635-0.438,1.505-0.282,1.945,0.353
c-0.44-0.635-0.282-1.506,0.353-1.944C742.766,17.543,741.894,17.386,741.455,16.748z" />
<path d="M777.381,201.264c0.407,0.652,0.21,1.515-0.446,1.922c0.651-0.407,1.517-0.205,1.922,0.452
c-0.405-0.657-0.203-1.517,0.452-1.923C778.653,202.121,777.788,201.916,777.381,201.264z" />
<path d="M736.527,100.231c0.552,1.096,0.106,2.425-0.99,2.977c1.097-0.552,2.431-0.105,2.98,0.992
c-0.55-1.098-0.107-2.432,0.989-2.979C738.41,101.769,737.079,101.327,736.527,100.231z" />
<path d="M790.718,128.721c0.404,0.654,0.205,1.516-0.45,1.924c0.655-0.408,1.518-0.205,1.923,0.451
c-0.405-0.656-0.204-1.516,0.451-1.923C791.986,129.58,791.122,129.375,790.718,128.721z" />
<path d="M682.118,101.979c0,1.223-0.992,2.223-2.22,2.223c1.222,0,2.22,0.99,2.22,2.217c0.001-1.225,0.996-2.217,2.222-2.217
C683.114,104.202,682.118,103.205,682.118,101.979z" />
<path d="M703.139,207.201c0,0.749-0.605,1.358-1.354,1.358c0.749,0,1.354,0.609,1.354,1.359c0-0.75,0.609-1.359,1.359-1.359
C703.748,208.56,703.139,207.95,703.139,207.201z" />
<path d="M723.151,64.134c0.406,0.652,0.207,1.519-0.447,1.925c0.651-0.406,1.517-0.204,1.922,0.449
c-0.407-0.657-0.206-1.517,0.449-1.923C724.424,64.991,723.558,64.786,723.151,64.134z" />
<path d="M949.001,94.847c0,0.753-0.607,1.362-1.359,1.362c0.752,0,1.359,0.609,1.359,1.359c0-0.75,0.606-1.359,1.359-1.359
C949.607,96.209,949.001,95.6,949.001,94.847z" />
<path d="M975.262,157.685c0,1.086-0.88,1.969-1.969,1.969c1.089,0,1.969,0.881,1.969,1.964c0-1.083,0.88-1.964,1.964-1.964
C976.142,159.653,975.262,158.771,975.262,157.685z" />
<path d="M862.996,14.306c0.439,0.635,0.282,1.507-0.353,1.946c0.635-0.439,1.507-0.282,1.946,0.353
c-0.439-0.635-0.282-1.507,0.353-1.946C864.308,15.098,863.436,14.94,862.996,14.306z" />
<path d="M869.639,158.467c0.407,0.654,0.207,1.516-0.45,1.923c0.654-0.407,1.521-0.205,1.923,0.452
c-0.404-0.657-0.204-1.516,0.451-1.924C870.907,159.326,870.046,159.121,869.639,158.467z" />
</g>
<g class="sun">
<g class="planet">
<circle fill="#5EAADE" cx="5" cy="-168.674" r="71.283" />
<circle fill="#FFB50F" cx="5" cy="-168.674" r="71.283" />
<path fill="#F9AA0D" d="M76.269-170.44c-0.032-1.362-0.099-2.717-0.208-4.064l-1.932,0.917L76.269-170.44z" />
<path fill="#F9AA0D" d="M-26.223-215.429c1.178,0.514,2.26,0.867,3.242,1.071l1.41-1.504l-4.332-5.977l-3.629,1.723l3.145,4.625 C-26.332-215.47-26.277-215.452-26.223-215.429z"
/>
<path fill="#F9AA0D" d="M23.457-167.507c-0.313,4.53-3.799,5.302-9.141,2.975c-5.343-2.328-13.17,3.281-14.18,7.307 c0,0-0.197,4.066-0.647,9.145c-0.451,5.078,6.761,3.7,9.785,0.179c3.022-3.521,4.979-6.738,8.315-7.053 c3.338-0.315,7.405,1.001,11.277,1.973c3.871,0.972,1.074-11.17-1.305-15.142S23.771-172.038,23.457-167.507z"
/>
<path fill="#F9AA0D" d="M62.507-148.564c-0.603,8.712-7.306,10.195-17.578,5.719c-6.583-2.868-15.122,0.533-20.923,5.382 l-0.274-0.331l-13.493,7.107l-10.389,10.64l7.288,11.255l4.972,5.665l-3.049,5.635c12.906-0.723,25.088-4.948,35.449-11.852 l-8.015-3.017c5.123-6.162,8.79-11.505,14.73-12.065c2.817-0.266,5.905,0.073,9.113,0.695 c5.192-6.381,9.323-13.715,12.083-21.772c-0.663-1.667-1.351-3.126-2.021-4.246C65.827-157.385,63.109-157.276,62.507-148.564z"
/>
<path fill="#F9AA0D" d="M30.027-214.174c1.102-4.389-10.05-12.628-13.862-14.991c-3.813-2.363-9.599,2.96-10.394,4.241 c-3.48,5.606,5.722,10.248,6.635,11.772C13.32-211.626,28.926-209.785,30.027-214.174z"
/>
<path fill="#F9AA0D" d="M19.895-191.557c-1.921,2.805,6.467,4.788,6.467,4.788s6.385,2.697,8.877,0.522 c2.493-2.174,0.007-7.789-4.315-9.969C26.601-198.395,21.814-194.361,19.895-191.557z"
/>
<path fill="#F9AA0D" d="M-18.352-159.232c-4.322-2.18-9.108,1.854-11.029,4.659s6.468,4.788,6.468,4.788s6.384,2.697,8.877,0.522 S-14.03-157.053-18.352-159.232z"
/>
<path fill="#F9AA0D" d="M47.569-161.415c-4.322-2.179-9.108,1.854-11.028,4.659c-1.922,2.805,6.468,4.788,6.468,4.788 s6.384,2.697,8.876,0.522C54.378-153.62,51.892-159.235,47.569-161.415z"
/>
<path fill="#F9AA0D" d="M54.4-201.967c2.494-2.174,0.006-7.789-4.315-9.968c-4.322-2.18-9.108,1.854-11.028,4.658 c-1.921,2.805,6.467,4.788,6.467,4.788S51.907-199.792,54.4-201.967z"
/>
<path fill="#F9AA0D" d="M-6.634-184.25c-4.322-2.18-9.108,1.854-11.028,4.659c-1.922,2.805,6.467,4.788,6.467,4.788 s6.384,2.697,8.877,0.522C0.175-176.455-2.313-182.07-6.634-184.25z"
/>
<path fill="#F9AA0D" d="M-44.898-184.559c-9.287,0.095-13.887,11.187-14.688,17.66c-0.802,6.473,15.241,2.458,15.241,2.458 s13.256-1.03,15.589-6.933C-26.424-177.277-35.611-184.654-44.898-184.559z"
/>
<path fill="#F9AA0D" d="M-28.768-115.472l8.316,2.086l1.949-2.521l6.151-1.278l1.918,2.104l3.394-3.029l-3.092-7.923 l-3.405-2.171l-1.692,0.943l-5.523,3.077l-9.819-5.096l-2.658,4.6l-3.136-6.994l6.549-0.614l6.281,3.457l3.32-1.989l8.805,0.892 l-5.082-8.986l-7.963-1.998l-4.473,4.333l-2.164-4.869l-7.572-2.439c-6.525,2.697-12.633,6.327-18.123,10.763 c5.276,9.156,12.555,17.096,21.332,23.155l0.621-0.818L-28.768-115.472z"
/>
<path fill="#F9AA0D" d="M67.684-193.637l5.395,5.491l-0.799,3.186l-10.045,0.302l-0.802,6.946l-4.493-4.583l-6.17,2.849 l2.119,5.799l4.955,1.995l10.402-4.726l1.678,3.807c0,0-2.524,3.316-1.243,4.955c1.161,1.483,6.354,4.595,7.328,5.171 c0.237-2.686,0.322-5.353,0.26-7.993l-2.14-3.147l1.932-0.917c-0.666-8.203-2.746-16.09-6.025-23.375L67.684-193.637z"
/>
<path fill="#F9AA0D" d="M-35.414-222.909l1.678,3.807c0,0-2.525,3.316-1.242,4.955c0.002,0.003,0.006,0.007,0.008,0.01 c-2.734,1.614-4.929,4.011-5.432,6.016c0,0-0.197,4.066-0.648,9.145c-0.45,5.078,6.762,3.701,9.785,0.179 s4.979-6.738,8.316-7.053c3.338-0.315,7.405,1.002,11.277,1.973c3.871,0.971,1.074-11.171-1.305-15.142 c-0.204-0.341-0.398-0.641-0.588-0.922c-0.162-0.616-0.344-1.226-0.521-1.836c4.931,0.576,11.554,0.316,12.258-2.488 c0.914-3.648-6.635-9.956-11.398-13.338c-12.586,3.334-23.963,10.062-32.929,19.285l0.339,0.136L-35.414-222.909z M-25.902-221.839l4.332,5.977l-1.41,1.504c-0.982-0.205-2.064-0.558-3.242-1.071c-0.055-0.023-0.109-0.041-0.164-0.063 l-3.145-4.625L-25.902-221.839z"
/>
</g>
</g>
<g class="mars">
<g class="planet">
<circle style="fill:#FF4F54;" cx="298.112" cy="-51.664" r="47.884" />
<g>
<path style="fill:#EA4753;" d="M251.164-42.199c13.614,0.457,50.577-0.837,92.691-23.635c-1.64-5.268-4.173-10.209-7.471-14.604
c-13.678,9.41-44.958,26.875-85.965,24.424C249.988-51.317,250.259-46.671,251.164-42.199z" />
<path style="fill:#EA4753;" d="M344.459-39.629c1.273-4.901,1.736-9.824,1.479-14.625c-10.809,8.104-43.944,29.576-88.91,27.179
c2.084,3.481,4.606,6.702,7.517,9.566c14.203,0.094,44.093-2.063,78.751-18.305C343.73-37.056,344.122-38.329,344.459-39.629z"
/>
<path style="fill:#EA4753;" d="M294.746-3.893c11.344,0.813,22.346-2.479,31.235-8.835C317.023-9.035,306.516-5.758,294.746-3.893
z" />
<path style="fill:#EA4753;" d="M327.58-89.42c-5.011-3.914-10.885-6.892-17.431-8.592c-23.021-5.978-46.476,5.845-55.799,26.902
C270.046-71.647,296.962-75.035,327.58-89.42z" />
</g>
<circle style="fill:#D83A4E;" cx="318.339" cy="-67.009" r="9.091" />
<g style="opacity:0.1;">
<path d="M322.209-72.962c1.934,0.502,3.559,1.592,4.736,3.025c-0.954-2.796-3.248-5.075-6.321-5.873
c-4.859-1.262-9.822,1.654-11.084,6.516c-0.76,2.925-0.003,5.887,1.778,8.057c-0.558-1.625-0.657-3.425-0.193-5.211
C312.387-71.307,317.35-74.224,322.209-72.962z" />
</g>
<circle style="fill:#D83A4E;" cx="291.216" cy="-45.907" r="6.199" />
<g style="opacity:0.1;">
<path d="M293.854-49.967c1.318,0.344,2.426,1.086,3.229,2.063c-0.65-1.906-2.214-3.46-4.31-4.005
c-3.313-0.86-6.697,1.129-7.558,4.441c-0.518,1.994-0.002,4.015,1.212,5.493c-0.378-1.106-0.448-2.335-0.132-3.553
C287.157-48.839,290.541-50.828,293.854-49.967z" />
</g>
<circle style="fill:#D83A4E;" cx="314.601" cy="-87.463" r="4.03" />
<g style="opacity:0.1;">
<path d="M316.317-90.101c0.854,0.223,1.574,0.705,2.099,1.341c-0.422-1.239-1.439-2.249-2.802-2.603
c-2.154-0.56-4.354,0.732-4.913,2.887c-0.337,1.297-0.001,2.61,0.788,3.572c-0.246-0.721-0.291-1.519-0.086-2.31
C311.963-89.368,314.163-90.661,316.317-90.101z" />
</g>
<circle style="fill:#D83A4E;" cx="268.424" cy="-51.826" r="6.199" />
<g style="opacity:0.1;">
<path d="M271.063-55.885c1.319,0.343,2.426,1.086,3.229,2.063c-0.65-1.906-2.215-3.46-4.31-4.004
c-3.314-0.861-6.697,1.128-7.558,4.44c-0.519,1.995-0.003,4.015,1.212,5.494c-0.378-1.104-0.448-2.335-0.132-3.554
C264.366-54.758,267.75-56.746,271.063-55.885z" />
</g>
<circle style="fill:#D83A4E;" cx="289.974" cy="-16.466" r="6.199" />
<g style="opacity:0.1;">
<path d="M292.613-20.525c1.318,0.343,2.427,1.086,3.229,2.063c-0.65-1.905-2.215-3.46-4.31-4.004
c-3.314-0.86-6.697,1.128-7.558,4.44c-0.518,1.994-0.003,4.015,1.212,5.494c-0.378-1.108-0.448-2.335-0.132-3.554
C285.916-19.397,289.299-21.385,292.613-20.525z" />
</g>
<circle style="fill:#D83A4E;" cx="312.913" cy="-20.353" r="6.199" />
<g style="opacity:0.1;">
<path d="M315.552-24.412c1.318,0.342,2.426,1.085,3.229,2.063c-0.65-1.906-2.214-3.461-4.313-4.004
c-3.313-0.86-6.694,1.128-7.558,4.441c-0.521,1.994-0.002,4.014,1.212,5.494c-0.378-1.108-0.448-2.336-0.132-3.555
C308.854-23.284,312.239-25.272,315.552-24.412z" />
</g>
<circle style="fill:#D83A4E;" cx="331.039" cy="-42.427" r="3.548" />
<g style="opacity:0.1;">
<path d="M332.549-44.75c0.755,0.194,1.389,0.621,1.852,1.181c-0.373-1.091-1.271-1.979-2.47-2.292
c-1.896-0.492-3.833,0.646-4.323,2.542c-0.299,1.142-0.004,2.298,0.691,3.146c-0.216-0.635-0.256-1.338-0.075-2.033
C328.716-44.104,330.653-45.243,332.549-44.75z" />
</g>
<circle style="fill:#D83A4E;" cx="286.733" cy="-83.553" r="3.548" />
<g style="opacity:0.1;">
<path d="M288.244-85.877c0.754,0.196,1.388,0.621,1.848,1.182c-0.372-1.092-1.267-1.98-2.466-2.292
c-1.896-0.493-3.833,0.646-4.326,2.542c-0.296,1.142-0.001,2.298,0.694,3.144c-0.216-0.634-0.256-1.336-0.075-2.032
C284.411-85.231,286.347-86.369,288.244-85.877z" />
</g>
<circle style="fill:#D83A4E;" cx="265.458" cy="-78.646" r="1.863" />
<g style="opacity:0.1;">
<path d="M266.251-79.865c0.396,0.103,0.729,0.326,0.971,0.62c-0.195-0.574-0.666-1.04-1.295-1.204
c-0.996-0.259-2.013,0.34-2.271,1.335c-0.156,0.601,0,1.207,0.364,1.651c-0.113-0.333-0.134-0.701-0.039-1.067
C264.239-79.526,265.256-80.125,266.251-79.865z" />
</g>
<circle style="fill:#D83A4E;" cx="341.466" cy="-53.168" r="1.863" />
<g style="opacity:0.1;">
<path d="M342.259-54.387c0.396,0.104,0.729,0.325,0.972,0.619c-0.194-0.572-0.664-1.04-1.297-1.203
c-0.996-0.259-2.013,0.34-2.271,1.335c-0.156,0.601-0.001,1.207,0.364,1.651c-0.114-0.333-0.138-0.701-0.04-1.068
C340.246-54.049,341.263-54.647,342.259-54.387z" />
</g>
<circle style="fill:#D83A4E;" cx="262.593" cy="-36.783" r="1.863" />
<g style="opacity:0.1;">
<path d="M263.386-38.004c0.396,0.104,0.729,0.325,0.971,0.62c-0.195-0.572-0.666-1.039-1.295-1.203
c-0.996-0.26-2.013,0.339-2.272,1.335c-0.156,0.6-0.001,1.207,0.364,1.65c-0.114-0.333-0.135-0.702-0.04-1.067
C261.372-37.665,262.39-38.262,263.386-38.004z" />
</g>
<circle style="fill:#D83A4E;" cx="276.126" cy="-19.878" r="1.864" />
<g style="opacity:0.1;">
<path d="M276.92-21.098c0.396,0.104,0.729,0.326,0.97,0.62c-0.195-0.571-0.666-1.04-1.295-1.203
c-0.996-0.259-2.013,0.339-2.271,1.335c-0.156,0.601,0,1.207,0.364,1.651c-0.113-0.333-0.134-0.702-0.039-1.067
C274.906-20.758,275.924-21.356,276.92-21.098z" />
</g>
</g>
<path style="opacity:0.1;enable-background:new ;" d="M328.649-88.558c3.277,8.861,3.979,18.779,1.425,28.618
c-6.647,25.598-32.787,40.958-58.383,34.313c-7.019-1.823-13.264-5.113-18.501-9.453c5.253,14.19,17.128,25.672,32.886,29.765
c25.597,6.646,51.736-8.715,58.383-34.312C349.284-58.207,342.511-77.069,328.649-88.558z" />
</g>
<g class="earth">
<g class="planet">
<circle style="fill:#46BBEB;" cx="670.82" cy="696.527" r="68.212" />
<path style="fill:#4FFFA8;" d="M724.03,728.454l-0.438-5.063l-10.161-1.74l-0.351-9.213l-9.692-6.968l-5.854-4.813l-11.104,8.885
l-7.639,11.572l8.657,9.021l5.55,4.313l-1.882,5.961l-2.396,6.719l-7.292-0.782l-4.465,10.826l-3.567,2.361l0.673,5.128
c15.894-0.752,31.596-7.033,43.978-18.915c3.946-3.784,7.332-7.93,10.167-12.332l-0.473-1.093L724.03,728.454z" />
<path style="fill:#4FFFA8;" d="M649.523,652.593l2.359,7.869l5.271,1.313l11.761-4.449l7.113-0.694l5.533,5.771l2.788-1.025
l5.49,2.039l0.478,2.611l4.18-0.712l1.483-7.789l-1.613-3.402l-1.809-0.093l-5.887-0.306l-5.229-8.895l-4.381,2.315l0.985-7.077
l5.479,2.76l3.246,5.841l3.604,0.075l6.516,5.066l0.438-9.615l-5.299-5.522l-5.684,1.205l0.703-4.916l-4.771-5.681
c-17.595-2.987-36.159,0.938-51.313,11.865l3.097,4.58l0.366,3.67l2.324,3.896l0.979,5.193l2.771,5.593l1.567,2.738l1.082,2.969
l-3.271,1.017l-8.816,1.862l-0.895,8.163l1.746,8.697l-3.069,2.942l-1.981,8.742c0,0-3.79,2.93-4.54,4.355
c-0.751,1.43-4.521,9.051-4.521,9.051l-0.694,4.679l4.215,5.62l2.092-8.139c0,0,11.595-2.165,12.193-2.033
c0.599,0.134,1.653-4.418,2.377-4.401c0.722,0.018,6.737-0.104,6.737-0.104l7.11-0.694l6.574-3.714l2.495-10.176
c0,0-1.167-7.604-0.798-7.956c0.366-0.354,0.729-6.36,0.729-6.36l-7.646-8.459l-3.004-6.077l-4.719,1.228l-1.807-5.813l3.361-2.986
l-2.592-2.7l-0.354-0.368l0.999-4.261L649.523,652.593z" />
<path style="fill:#4FFFA8;" d="M737.975,684.509l-9.742,5.382l1.532,7.012l-2.209,2.119l-8.085-4.737l-4.07,5.09l-1.278-5.848
l-6.284-0.809l-1.199,5.63l2.929,4.03l10.558,1.421l-0.561,3.839c0,0-3.642,1.368-3.438,3.301c0.201,1.929,3.305,7.862,3.305,7.862
l4.173-4.005l-0.218-5.876l3.723,0.438l0.462,6.865l-3.391,0.894l3.521,10.3c0,0,1.648-0.087,4.077-0.229
C738.452,713.915,740.536,698.891,737.975,684.509z" />
<path style="fill:#4FFFA8;" d="M608.827,677.755l-3.3-0.99c-0.795,2.638-1.43,5.313-1.898,8.011l1.795,1.28l5.146,0.962l2.161-1.75
l-1.469-4.463l1.96-1.881l0.031-1.461l-2.397-1.655L608.827,677.755z" />
</g>
<path style="opacity:0.1;enable-background:new ;" d="M736.927,679.676c-2.044,14.635-8.835,28.714-20.323,39.737
c-27.183,26.083-70.36,25.192-96.443-1.988c-8.462-8.814-14.081-19.317-16.891-30.377c-2.793,19.988,3.273,41.018,18.334,56.708
c26.084,27.186,69.266,28.071,96.444,1.988C736.412,728.123,742.773,702.699,736.927,679.676z" />
</g>
<g class="saturn">
<g class="planet">
<circle fill="#F4C18A" cx="1156.968" cy="-135.343" r="71.583" />
<path fill="#EFB576" d="M1129.846-139.201c0,0,41.601-2.658,80.253-44.114c-5.593-6.184-12.232-11.362-19.606-15.279 C1182.341-181.782,1165.201-160.641,1129.846-139.201z"
/>
<path fill="#E8B276" d="M1228.053-126.829c-34.454,32.17-73.842,49.014-99.349,57.261c2.201,0.948,4.454,1.789,6.754,2.515 c15.735-3.678,42.57-12.191,62.168-30.206c0,0-8.355,19.837-39.124,33.485c1.855-0.042,3.724-0.155,5.602-0.343 c5.428-0.543,10.65-1.682,15.614-3.341c6.384-3.716,12.606-8.102,18.231-13.271c0,0-1.127,2.677-4.077,6.738 C1212.54-85.237,1225.421-104.669,1228.053-126.829z"
/>
<path fill="#FEE3C5" d="M1149.834-206.569c-31.189,3.125-55.686,25.831-62.531,54.708c24.594-13.275,57.549-32.705,83.188-53.789 C1163.847-206.926,1156.909-207.277,1149.834-206.569z"
/>
<path fill="#EFB576" d="M1175.869-139.622c-17.573,17.491-53.755,31.937-80.457,40.839c1.565,2.631,3.29,5.148,5.164,7.539 C1156.452-112.244,1175.869-139.622,1175.869-139.622z"
/>
<path fill="#FEC689" d="M1224.353-159.535c-19.644,22.554-60.923,62.26-117.278,75.516c4.175,4.054,8.833,7.594,13.867,10.532 c2.5,1.458,5.091,2.769,7.763,3.919c25.507-8.248,64.895-25.091,99.349-57.261c0.316-2.659,0.487-5.354,0.5-8.082 c0.012-2.5-0.103-5.024-0.358-7.567C1227.599-148.434,1226.283-154.143,1224.353-159.535z"
/>
<path fill="#FEC689" d="M1197.626-97.259c-19.598,18.015-46.433,26.528-62.168,30.206c7.292,2.301,15.05,3.459,23.044,3.279 C1189.271-77.422,1197.626-97.259,1197.626-97.259z"
/>
<path fill="#F4C18A" d="M1179.718-67.458c5.003-1.671,9.74-3.873,14.154-6.533c2.95-4.062,4.077-6.738,4.077-6.738 C1192.324-75.56,1186.102-71.174,1179.718-67.458z"
/>
<path fill="#EFB576" d="M1197.653-161.602c0,0,10.621-3.154,20.513-10.903c-1.112-1.829-2.307-3.601-3.572-5.315 C1209.792-172.259,1204.006-166.378,1197.653-161.602z"
/>
</g>
<g>
<path fill="#C18448" d="M1267.309-190.378c-3.508-7.034-25.858-3.631-56.985,7.314c1.784,1.991,3.462,4.083,5.019,6.272 c13.516-3.412,22.586-3.632,24.462,0.132c1.878,3.765-3.753,10.875-14.608,19.621c-13.536,10.904-35.199,24.347-60.589,37.01 c-25.388,12.665-49.158,21.881-66.011,26.136c-13.517,3.412-22.584,3.632-24.462-0.133c-1.878-3.763,3.753-10.875,14.608-19.62 c-0.803-2.531-1.469-5.127-1.991-7.781c-27.468,18.28-43.63,34.086-40.123,41.121c3.508,7.034,25.858,3.631,56.985-7.315 c18.729-6.587,40.637-15.904,63.53-27.322c22.894-11.419,43.515-23.315,60.043-34.315 C1254.654-167.538,1270.818-183.346,1267.309-190.378z"
/>
</g>
</g>
<g class="moon">
<g class="planet">
<circle style="fill:#D1F4FF;" cx="547.834" cy="-189.856" r="128.039" />
<circle style="fill:#A6CDDD;" cx="557.037" cy="-207.28" r="24.309" />
<g style="opacity:0.1;">
<path d="M563.051-225.288c5.344,0,10.281,1.729,14.291,4.649c-4.346-6.595-11.813-10.951-20.305-10.951
c-13.425,0-24.309,10.883-24.309,24.309c0,8.082,3.944,15.239,10.016,19.659c-2.526-3.835-4.002-8.423-4.002-13.358
C538.742-214.404,549.626-225.288,563.051-225.288z" />
</g>
<circle style="fill:#A6CDDD;" cx="615.341" cy="-248.165" r="16.575" />
<g style="opacity:0.1;">
<path d="M619.441-260.442c3.644,0,7.01,1.178,9.742,3.17c-2.966-4.497-8.057-7.467-13.848-7.467
c-9.156,0-16.574,7.421-16.574,16.573c0,5.512,2.691,10.392,6.828,13.405c-1.721-2.613-2.729-5.742-2.729-9.106
C602.865-253.021,610.289-260.442,619.441-260.442z" />
</g>
<circle style="fill:#A6CDDD;" cx="566.449" cy="-293.587" r="10.775" />
<g style="opacity:0.1;">
<path d="M569.114-301.569c2.369,0,4.556,0.767,6.335,2.061c-1.926-2.923-5.238-4.854-9-4.854
c-5.952,0-10.775,4.824-10.775,10.774c0,3.583,1.748,6.755,4.441,8.714c-1.123-1.699-1.775-3.733-1.775-5.92
C558.34-296.744,563.164-301.569,569.114-301.569z" />
</g>
<circle style="fill:#A6CDDD;" cx="470.89" cy="-170.321" r="16.576" />
<g style="opacity:0.1;">
<path d="M474.99-182.6c3.645,0,7.011,1.18,9.747,3.17c-2.966-4.495-8.062-7.467-13.851-7.467c-9.15,0-16.572,7.421-16.572,16.576
c0,5.51,2.688,10.392,6.827,13.403c-1.723-2.613-2.728-5.742-2.728-9.107C458.417-175.178,465.837-182.6,474.99-182.6z"
/>
</g>
<circle style="fill:#A6CDDD;" cx="528.872" cy="-129.792" r="16.575" />
<g style="opacity:0.1;">
<path d="M532.973-142.069c3.646,0,7.014,1.178,9.746,3.17c-2.965-4.497-8.059-7.469-13.848-7.469
c-9.154,0-16.574,7.423-16.574,16.576c0,5.512,2.693,10.392,6.829,13.403c-1.721-2.613-2.728-5.742-2.728-9.106
C516.396-134.649,523.818-142.069,532.973-142.069z" />
</g>
<circle style="fill:#A6CDDD;" cx="607.185" cy="-118.768" r="16.575" />
<g style="opacity:0.1;">
<path d="M611.287-131.045c3.641,0,7.008,1.178,9.744,3.17c-2.963-4.497-8.063-7.467-13.852-7.467
c-9.148,0-16.57,7.422-16.57,16.574c0,5.512,2.688,10.392,6.831,13.405c-1.728-2.613-2.729-5.744-2.729-9.106
C594.711-123.625,602.131-131.045,611.287-131.045z" />
</g>
<circle style="fill:#A6CDDD;" cx="639.261" cy="-188.078" r="9.485" />
<g style="opacity:0.1;">
<path d="M641.607-195.107c2.086,0,4.014,0.674,5.572,1.816c-1.689-2.573-4.604-4.274-7.924-4.274c-5.236,0-9.48,4.247-9.48,9.487
c0,3.154,1.535,5.946,3.901,7.671c-0.979-1.495-1.558-3.287-1.558-5.212C632.123-190.86,636.369-195.107,641.607-195.107z"
/>
</g>
<circle style="fill:#A6CDDD;" cx="496.951" cy="-264.738" r="9.485" />
<g style="opacity:0.1;">
<path d="M499.298-271.765c2.086,0,4.011,0.674,5.577,1.814c-1.697-2.574-4.612-4.274-7.925-4.274
c-5.238,0-9.485,4.248-9.485,9.487c0,3.154,1.539,5.947,3.908,7.671c-0.986-1.495-1.561-3.286-1.561-5.212
C489.813-267.518,494.06-271.765,499.298-271.765z" />
</g>
<circle style="fill:#A6CDDD;" cx="445.189" cy="-237.736" r="4.982" />
<g style="opacity:0.1;">
<path d="M446.423-241.427c1.094,0,2.105,0.353,2.928,0.952c-0.89-1.351-2.423-2.245-4.158-2.245
c-2.755,0-4.982,2.232-4.982,4.984c0,1.656,0.81,3.123,2.052,4.029c-0.518-0.787-0.818-1.729-0.818-2.738
C441.438-239.196,443.671-241.427,446.423-241.427z" />
</g>
<circle style="fill:#A6CDDD;" cx="664.006" cy="-158.728" r="4.982" />
<g style="opacity:0.1;">
<path d="M665.242-162.42c1.094,0,2.104,0.355,2.926,0.954c-0.889-1.353-2.418-2.245-4.16-2.245c-2.752,0-4.98,2.23-4.98,4.982
c0,1.656,0.809,3.123,2.055,4.029c-0.521-0.785-0.82-1.727-0.82-2.738C660.258-160.189,662.49-162.42,665.242-162.42z" />
</g>
<circle style="fill:#A6CDDD;" cx="659.025" cy="-222.884" r="4.982" />
<g style="opacity:0.1;">
<path d="M660.258-226.574c1.094,0,2.109,0.355,2.93,0.954c-0.893-1.353-2.422-2.245-4.16-2.245c-2.756,0-4.98,2.229-4.98,4.981
c0,1.657,0.813,3.125,2.055,4.029c-0.52-0.785-0.816-1.725-0.816-2.736C655.277-224.344,657.506-226.574,660.258-226.574z"
/>
</g>
<circle style="fill:#A6CDDD;" cx="465.907" cy="-127.468" r="4.983" />
<g style="opacity:0.1;">
<path d="M467.14-131.158c1.101,0,2.108,0.353,2.933,0.952c-0.894-1.354-2.421-2.245-4.162-2.245c-2.75,0-4.983,2.23-4.983,4.982
c0,1.658,0.813,3.123,2.058,4.029c-0.521-0.785-0.821-1.725-0.821-2.738C462.158-128.927,464.388-131.158,467.14-131.158z"
/>
</g>
<circle style="fill:#A6CDDD;" cx="512.296" cy="-92.812" r="4.982" />
<g style="opacity:0.1;">
<path d="M513.53-96.502c1.094,0,2.104,0.353,2.928,0.952c-0.89-1.352-2.421-2.244-4.162-2.244c-2.752,0-4.979,2.23-4.979,4.982
c0,1.656,0.809,3.123,2.052,4.029c-0.521-0.785-0.819-1.727-0.819-2.738C508.548-94.273,510.778-96.502,513.53-96.502z"
/>
</g>
</g>
<path style="opacity:0.1;enable-background:new ;" d="M587.369-311.665c17.598,21.93,28.135,49.771,28.135,80.076
c0,70.714-57.324,128.039-128.039,128.039c-13.8,0-27.084-2.191-39.536-6.23c23.468,29.239,59.496,47.965,99.904,47.965
c70.715,0,128.039-57.325,128.039-128.041C675.873-246.771,638.732-295.005,587.369-311.665z" />
<g class="robot">
<g class="robot__wrapper">
<rect x="536.108" y="-342.133" style="fill:#A7A9AC;" width="1.72" height="6.625" />
<rect x="569.149" y="-358.028" style="fill:#FFFFFF;" width="0.917" height="16.036" />
<rect x="557.5" y="-350.565" transform="matrix(0.7899 0.6132 -0.6132 0.7899 -93.959 -415.1368)" style="fill:#E6E7E8;" width="2.862"
height="11.718" />
<rect x="565.219" y="-359.775" transform="matrix(0.79 0.6131 -0.6131 0.79 -98.1045 -421.4186)" style="fill:#FFFFFF;" width="1.775"
height="11.718" />
<circle style="fill:#BCBEC0;" cx="536.965" cy="-342.649" r="1.539" />
<circle style="fill:#BCBEC0;" cx="536.97" cy="-337.395" r="2.364" />
<circle style="fill:#BCBEC0;" cx="555.403" cy="-340.285" r="2.364" />
<circle style="fill:#BCBEC0;" cx="569.442" cy="-358.169" r="1.831" />
<rect x="535.626" y="-354.626" style="fill:#BCBEC0;" width="10.384" height="0.379" />
<rect x="545.635" y="-354.631" style="fill:#BCBEC0;" width="0.379" height="10.384" />
<rect x="542.175" y="-355.929" transform="matrix(-0.7071 -0.7071 0.7071 -0.7071 1173.8807 -215.2348)" style="fill:#BCBEC0;"
width="0.377" height="10.386" />
<path style="fill:#FFFFFF;" d="M535.418-343.833c3.285,3.28,8.605,3.276,11.885-0.009l-11.893-11.875
C532.131-352.433,532.135-347.113,535.418-343.833z" />
<circle style="fill:#FFFFFF;" cx="546.01" cy="-354.441" r="1.126" />
<rect x="566.936" y="-333.091" style="fill:#E6E7E8;" width="4.979" height="3.469" />
<rect x="563.48" y="-332.918" style="fill:#BCBEC0;" width="3.451" height="3.133" />
<path style="fill:#46BBEB;" d="M572.474-333.401h-0.212c-0.191,0-0.354,0.16-0.354,0.354l0.004,3.376
c0,0.195,0.159,0.354,0.354,0.354h0.217L572.474-333.401z" />
<rect x="567.088" y="-332.922" style="fill:#D5F6FF;" width="4.696" height="0.386" />
<rect x="563.631" y="-332.725" style="fill:#D5F6FF;" width="3.115" height="0.386" />
<path style="fill:#FFFFFF;" d="M572.477-331.359L572.477-331.359L572.477-331.359l-0.002-2.001c0,0,0.24,0.151,0.242,2.001l0,0
l0,0l0,0l0,0c0,1.85-0.238,2.001-0.238,2.001L572.477-331.359L572.477-331.359L572.477-331.359z" />
<polygon style="fill:#BCBEC0;" points="559.584,-325.872 532.845,-325.872 528.951,-325.872 532.845,-319.119 559.584,-319.119
563.479,-325.872 " />
<circle style="fill:#231F20;" cx="532.795" cy="-319.119" r="3.355" />
<circle style="fill:#414042;" cx="532.795" cy="-319.119" r="2.053" />
<circle style="fill:#231F20;" cx="539.506" cy="-319.119" r="3.356" />
<circle style="fill:#414042;" cx="539.507" cy="-319.119" r="2.052" />
<circle style="fill:#231F20;" cx="546.214" cy="-319.119" r="3.356" />
<circle style="fill:#414042;" cx="546.214" cy="-319.119" r="2.052" />
<circle style="fill:#231F20;" cx="552.926" cy="-319.119" r="3.355" />
<circle style="fill:#414042;" cx="552.926" cy="-319.119" r="2.052" />
<circle style="fill:#231F20;" cx="559.638" cy="-319.119" r="3.356" />
<circle style="fill:#414042;" cx="559.638" cy="-319.119" r="2.052" />
<polygon style="fill:#FFFFFF;" points="560.49,-337.437 546.824,-337.437 545.631,-337.437 528.951,-337.437 528.951,-332.624
528.951,-325.872 563.479,-325.872 563.479,-332.624 563.479,-332.916 " />
<rect x="552.146" y="-338.821" style="fill:#A7A9AC;" width="6.513" height="1.384" />
<path style="fill:#BCBEC0;" d="M567.443-340.483c0-0.688,0.559-1.247,1.246-1.247c0.687,0,1.244,0.557,1.244,1.246
c0,0.688-0.558,1.247-1.242,1.248h-0.002v1.117h0.002c1.307-0.001,2.359-1.06,2.359-2.366c-0.002-1.306-1.061-2.363-2.361-2.362
c-1.31,0.001-2.363,1.06-2.363,2.364H567.443z" />
<rect x="528.951" y="-332.624" style="fill:#46BBEB;" width="34.523" height="2.087" />
</g>
</g>
</g>
<g class="satellite">
<rect x="874.014" y="-214.657" transform="matrix(-0.5788 0.8155 -0.8155 -0.5788 1246.4973 -1027.3289)" style="fill:#FFFFFF;"
width="29.119" height="45.842" />
<rect x="869.85" y="-209.916" transform="matrix(0.8155 0.5788 -0.5788 0.8155 47.6944 -545.7027)" style="fill:#53A2D3;" width="19.667"
height="23.729" />
<rect x="887.687" y="-197.28" transform="matrix(0.8155 0.5788 -0.5788 0.8155 58.295 -553.6844)" style="fill:#53A2D3;" width="19.666"
height="23.73" />
<rect x="790.472" y="-273.95" transform="matrix(-0.5788 0.8155 -0.8155 -0.5788 1066.25 -1052.8109)" style="fill:#FFFFFF;"
width="29.119" height="45.844" />
<rect x="786.287" y="-269.235" transform="matrix(0.8155 0.5788 -0.5788 0.8155 -2.0658 -508.2598)" style="fill:#53A2D3;" width="19.668"
height="23.731" />
<rect x="804.112" y="-256.584" transform="matrix(0.8155 0.5788 -0.5788 0.8155 8.5532 -516.2654)" style="fill:#53A2D3;" width="19.667"
height="23.73" />
<rect x="772.815" y="-249.014" transform="matrix(-0.5788 0.8155 -0.8155 -0.5788 1058.7231 -999.0388)" style="fill:#FFFFFF;"
width="29.119" height="45.842" />
<rect x="768.567" y="-244.273" transform="matrix(0.8155 0.5788 -0.5788 0.8155 9.1157 -493.4111)" style="fill:#53A2D3;" width="19.666"
height="23.729" />
<rect x="786.4" y="-231.635" transform="matrix(0.8155 0.5788 -0.5788 0.8155 19.7153 -501.3849)" style="fill:#53A2D3;" width="19.666"
height="23.728" />
<rect x="856.349" y="-189.728" transform="matrix(-0.5788 0.8155 -0.8155 -0.5788 1238.938 -973.5671)" style="fill:#FFFFFF;"
width="29.119" height="45.841" />
<rect x="852.163" y="-184.999" transform="matrix(0.8155 0.5788 -0.5788 0.8155 58.8469 -530.8549)" style="fill:#53A2D3;" width="19.663"
height="23.73" />
<rect x="869.98" y="-172.339" transform="matrix(0.8155 0.5788 -0.5788 0.8155 69.4706 -538.8506)" style="fill:#53A2D3;" width="19.666"
height="23.728" />
<circle style="fill:#BCBEC0;" cx="812.14" cy="-172.438" r="3.633" />
<circle style="fill:#BCBEC0;" cx="819.322" cy="-182.557" r="5.583" />
<rect x="815.369" y="-187.563" transform="matrix(-0.8155 -0.5788 0.5788 -0.8155 1588.0176 146.7571)" style="fill:#BCBEC0;"
width="4.063" height="15.644" />
<rect x="861.02" y="-252.11" transform="matrix(-0.8155 -0.5788 0.5788 -0.8155 1708.2373 56.0422)" style="fill:#BCBEC0;" width="4.064"
height="15.646" />
<rect x="865.678" y="-256.653" transform="matrix(0.5789 -0.8154 0.8154 0.5789 569.6364 602.0245)" style="fill:#BCBEC0;" width="4.062"
height="12.267" />
<rect x="817.684" y="-234.16" transform="matrix(0.8155 0.5788 -0.5788 0.8155 35.1175 -521.6719)" style="fill:#FFFFFF;" width="36.08"
height="56.801" />
<polygon style="fill:#BCBEC0;" points="856.457,-186.045 848.072,-191.996 849.415,-194.045 857.799,-188.094 " />
<rect x="837.922" y="-177.397" transform="matrix(0.8155 0.5788 -0.5788 0.8155 53.5774 -520.4875)" style="fill:#BCBEC0;" width="10.281"
height="2.356" />
<polygon style="fill:#BCBEC0;" points="801.793,-206.883 810.177,-200.932 808.791,-199.138 800.407,-205.088 " />
<polygon style="fill:#BCBEC0;" points="811.612,-220.875 819.996,-214.925 818.654,-212.876 810.271,-218.827 " />
<rect x="865.489" y="-216.073" transform="matrix(0.8155 0.5788 -0.5788 0.8155 36.2784 -543.5802)" style="fill:#BCBEC0;" width="10.281"
height="2.356" />
<rect x="855.656" y="-202.219" transform="matrix(0.8155 0.5788 -0.5788 0.8155 42.4774 -535.3195)" style="fill:#BCBEC0;" width="10.282"
height="2.357" />
<polygon style="fill:#BCBEC0;" points="819.477,-231.796 827.859,-225.845 826.474,-224.051 818.09,-230.002 " />
<polygon style="fill:#BCBEC0;" points="829.316,-245.662 837.7,-239.711 836.314,-237.917 827.931,-243.868 " />
<circle style="fill:#FFFFFF;" cx="852.148" cy="-228.904" r="18.038" />
<path style="fill:#E6E7E8;" d="M841.334-223.312c1.293-1.822,3.843-2.255,5.664-0.961l2.479,1.759
c1.823,1.294,2.256,3.843,0.963,5.665l-20.506,28.89c-1.293,1.823-3.843,2.255-5.664,0.962l-2.479-1.76
c-1.822-1.293-2.256-3.842-0.962-5.664L841.334-223.312z" />
<g class="satellite__antenna">
<rect x="788.195" y="-167.289" transform="matrix(0.5789 -0.8154 0.8154 0.5789 458.4955 577.7715)" style="fill:#BCBEC0;" width="0.894"
height="24.525" />
<rect x="785.392" y="-183.716" transform="matrix(0.8155 0.5788 -0.5788 0.8155 45.7759 -486.4868)" style="fill:#BCBEC0;" width="0.893"
height="24.525" />
<rect x="790.383" y="-176.433" transform="matrix(0.1661 0.9861 -0.9861 0.1661 497.5948 -916.7535)" style="fill:#BCBEC0;"
width="0.894" height="24.521" />
<path style="fill:#FFFFFF;" d="M813.498-168.042c-1.834-10.807-12.082-18.079-22.887-16.244l6.643,39.131
C808.059-146.99,815.332-157.237,813.498-168.042z" />
<circle style="fill:#FFFFFF;" cx="778.596" cy="-162.118" r="2.66" />
</g>
</g>
<g class="meteors">
<g class="meteor">
<path class="meteor__fire" fill="#FFDF3C" d="M1449.395-198.774c0,0-4.515,5.496-8.239,7.852c0,0,15.25-26.462,29.771-37.258
c0,0-12.909,2.615-21.878,11.215c4.074-3.987,32.426-31.862,34.338-37.19c-5.34,1.917-33.362,30.37-37.252,34.335
c8.623-8.971,11.243-21.908,11.243-21.908c-10.796,14.525-37.259,29.775-37.259,29.775c2.354-3.729,7.853-8.244,7.853-8.244
c-9.613,3.926-30.1,28.939-30.1,28.939l11.3,11.284l11.284,11.3C1420.455-168.674,1445.469-189.156,1449.395-198.774z" />
<path class="meteor__fire meteor__fire--small" fill="#FF8948" d="M1428.982-189.464c0,0-2.18,2.648-3.977,3.783c0,0,7.352-12.749,14.35-17.95c0,0-6.225,1.26-10.541,5.403
c1.964-1.921,15.619-15.351,16.543-17.917c-2.571,0.924-16.073,14.631-17.946,16.541c4.151-4.321,5.417-10.555,5.417-10.555
c-5.202,6.998-17.95,14.345-17.95,14.345c1.135-1.797,3.783-3.972,3.783-3.972c-4.636,1.892-14.502,13.942-14.502,13.942
l5.442,5.437l5.438,5.444C1415.04-174.962,1427.091-184.831,1428.982-189.464z" />
<g class="meteor__rock">
<path fill="#0096AF" d="M1424.942-178.907c-1.591,0.411-3.214-0.546-3.625-2.137c-0.396-1.508,0.444-3.043,1.892-3.55
c-0.052-0.171-0.081-0.354-0.081-0.541c0-0.547,0.238-1.036,0.615-1.375c-3.123-6.983-10.914-10.903-18.568-8.925
c-7.711,1.994-12.643,9.292-11.899,16.977c0.509,0.206,0.86,0.7,0.86,1.279c0,0.146-0.021,0.288-0.063,0.42
c0.229,0.162,0.379,0.428,0.379,0.729c0,0.359-0.213,0.668-0.521,0.812c2.519,8.079,10.957,12.844,19.239,10.703
c6.854-1.773,11.515-7.739,11.941-14.441C1425.056-178.938,1424.999-178.922,1424.942-178.907z" />
<circle fill="#047D89" cx="1403.658" cy="-185.168" r="2.815" />
<path fill="#036166" d="M1402.476-182.613c-0.561-0.515-0.911-1.254-0.911-2.075c0-1.555,1.265-2.815,2.814-2.815
c0.423,0,0.823,0.093,1.183,0.26c-0.502-0.46-1.17-0.741-1.898-0.741c-1.561,0-2.815,1.262-2.815,2.816
C1400.843-184.036,1401.512-183.059,1402.476-182.613z" />
<circle fill="#047D89" cx="1404.036" cy="-171.451" r="1.887" />
<path fill="#036166" d="M1403.243-169.739c-0.375-0.345-0.611-0.84-0.611-1.391c0-1.042,0.851-1.887,1.888-1.887
c0.282,0,0.556,0.063,0.793,0.174c-0.337-0.308-0.779-0.496-1.271-0.496c-1.043,0-1.888,0.845-1.888,1.888
C1402.148-170.692,1402.597-170.038,1403.243-169.739z" />
<circle fill="#047D89" cx="1413.161" cy="-174.79" r="1.451" />
<path fill="#036166" d="M1412.552-173.473c-0.288-0.265-0.469-0.646-0.469-1.068c0-0.802,0.647-1.451,1.449-1.451
c0.219,0,0.425,0.048,0.604,0.135c-0.258-0.238-0.602-0.383-0.979-0.383c-0.803,0-1.451,0.65-1.451,1.451
C1411.71-174.206,1412.056-173.703,1412.552-173.473z" />
</g>
</g>
<g class="meteor">
<path class="meteor__fire" fill="#FFDF3C" d="M1396.702-227.032c0,0-6.351,7.73-11.594,11.043c0,0,21.44-37.215,41.873-52.397
c0,0-18.154,3.678-30.771,15.772c5.729-5.607,45.604-44.81,48.292-52.304c-7.511,2.696-46.922,42.711-52.39,48.286
c12.126-12.614,15.812-30.81,15.812-30.81c-15.183,20.428-52.396,41.875-52.396,41.875c3.313-5.245,11.042-11.595,11.042-11.595
c-13.526,5.521-42.33,40.699-42.33,40.699l15.892,15.869l15.869,15.891C1356.003-184.702,1391.181-213.504,1396.702-227.032z"
/>
<path class="meteor__fire meteor__fire--small" fill="#FF8948" d="M1367.995-213.938c0,0-3.063,3.724-5.586,5.319c0,0,10.332-17.929,20.174-25.243
c0,0-8.746,1.771-14.823,7.598c2.761-2.701,21.97-21.588,23.268-25.197c-3.615,1.299-22.604,20.576-25.236,23.263
c5.842-6.077,7.613-14.844,7.613-14.844c-7.313,9.842-25.24,20.174-25.24,20.174c1.597-2.526,5.315-5.586,5.315-5.586
c-6.517,2.66-20.394,19.608-20.394,19.608l7.656,7.645l7.646,7.656C1348.388-193.545,1365.335-207.421,1367.995-213.938z"
/>
<g class="meteor__rock">
<path fill="#0096AF" d="M1362.313-199.092c-2.231,0.578-4.52-0.767-5.098-3.004c-0.549-2.12,0.631-4.28,2.66-4.993
c-0.074-0.24-0.113-0.495-0.113-0.76c0-0.769,0.334-1.457,0.863-1.935c-4.391-9.821-15.349-15.333-26.112-12.55
c-10.845,2.803-17.78,13.066-16.731,23.874c0.71,0.289,1.211,0.984,1.211,1.799c0,0.206-0.032,0.404-0.098,0.591
c0.322,0.228,0.533,0.603,0.533,1.026c0,0.506-0.301,0.94-0.729,1.14c3.533,11.362,15.409,18.063,27.057,15.053
c9.643-2.493,16.193-10.884,16.795-20.31C1362.472-199.136,1362.395-199.113,1362.313-199.092z" />
<circle fill="#047D89" cx="1332.381" cy="-207.898" r="3.96" />
<path fill="#036166" d="M1330.718-204.303c-0.788-0.725-1.282-1.764-1.282-2.919c0-2.187,1.772-3.959,3.961-3.959
c0.598,0,1.155,0.131,1.661,0.365c-0.704-0.646-1.645-1.042-2.678-1.042c-2.186,0-3.959,1.773-3.959,3.96
C1328.421-206.304,1329.362-204.932,1330.718-204.303z" />
<circle fill="#047D89" cx="1332.911" cy="-188.607" r="2.654" />
<path fill="#036166" d="M1331.798-186.198c-0.528-0.484-0.86-1.182-0.86-1.956c0-1.466,1.188-2.653,2.654-2.653
c0.397,0,0.774,0.088,1.114,0.244c-0.474-0.434-1.104-0.698-1.795-0.698c-1.465,0-2.654,1.188-2.654,2.654
C1330.257-187.539,1330.889-186.619,1331.798-186.198z" />
<circle fill="#047D89" cx="1345.746" cy="-193.301" r="2.041" />
<path fill="#036166" d="M1344.89-191.45c-0.401-0.373-0.661-0.908-0.661-1.503c0-1.127,0.913-2.041,2.041-2.041
c0.31,0,0.6,0.068,0.855,0.188c-0.363-0.333-0.848-0.537-1.38-0.537c-1.127,0-2.04,0.914-2.04,2.041
C1343.705-192.48,1344.189-191.773,1344.89-191.45z" />
</g>
</g>
</g>
<g class="spacecraft">
<g class="smoke">
<polygon style="fill:#FFFFFF;" points="668.696,638.073 665.178,638.073 664.448,648.358 668.696,648.358 " />
<polygon style="fill:#FFFFFF;" points="668.696,638.073 672.215,638.073 672.944,648.358 668.696,648.358 " />
<path style="fill:#FFFFFF;" d="M669.405,643.327c0,1.093-0.895,1.979-1.98,1.979c-1.096,0-1.979-0.887-1.979-1.979
c0-1.096,0.887-1.979,1.979-1.979C668.515,641.348,669.405,642.231,669.405,643.327z" />
<path style="fill:#FFFFFF;" d="M671.646,644.396c0,1.095-0.892,1.979-1.983,1.979c-1.089,0-1.979-0.888-1.979-1.979
c0-1.096,0.892-1.979,1.979-1.979C670.759,642.419,671.646,643.304,671.646,644.396z" />
<path style="fill:#FFFFFF;" d="M669.405,646.379c0,1.092-0.895,1.979-1.98,1.979c-1.096,0-1.979-0.892-1.979-1.979
c0-1.096,0.887-1.979,1.979-1.979C668.515,644.396,669.405,645.283,669.405,646.379z" />
<circle style="fill:#FFFFFF;" cx="666.939" cy="648.924" r="1.979" />
<circle style="fill:#FFFFFF;" cx="670.453" cy="648.924" r="1.98" />
<circle style="fill:#FFFFFF;" cx="669.89" cy="646.944" r="1.98" />
<circle style="fill:#FFFFFF;" cx="669.89" cy="650.582" r="1.98" />
<circle style="fill:#FFFFFF;" cx="671.87" cy="648.924" r="1.98" />
<circle style="fill:#FFFFFF;" cx="664.676" cy="648.358" r="1.981" />
<circle style="fill:#FFFFFF;" cx="664.448" cy="651.553" r="1.98" />
<path style="fill:#FFFFFF;" d="M665.063,654.256c0,0.887-0.722,1.607-1.604,1.607c-0.888,0-1.611-0.725-1.611-1.607
c0-0.891,0.728-1.609,1.611-1.609C664.341,652.646,665.063,653.365,665.063,654.256z" />
<path style="fill:#FFFFFF;" d="M669.405,651.832c0,1.096-0.895,1.982-1.98,1.982c-1.096,0-1.979-0.891-1.979-1.982
s0.887-1.979,1.979-1.979C668.515,649.854,669.405,650.74,669.405,651.832z" />
<circle style="fill:#FFFFFF;" cx="666.429" cy="656.051" r="3.488" />
<path style="fill:#FFFFFF;" d="M676.056,653.815c0,2.151-1.748,3.898-3.899,3.898c-2.158,0-3.905-1.747-3.905-3.898
c0-2.158,1.747-3.906,3.905-3.906C674.308,649.909,676.056,651.657,676.056,653.815z" />
</g>
<g class="fire">
<path style="fill:#FFDF3C;" d="M670.405,639.832c0,0.971-0.786,4.07-1.757,4.07c-0.978,0-1.763-3.104-1.763-4.07
s0.785-1.759,1.763-1.759C669.619,638.073,670.405,638.861,670.405,639.832z" />
<path style="fill:#FF8948;" d="M669.884,639.553c0,0.686-0.554,2.866-1.231,2.866c-0.688,0-1.238-2.185-1.238-2.866
c0-0.685,0.554-1.234,1.238-1.234C669.33,638.314,669.884,638.868,669.884,639.553z" />
</g>
<g class="ship">
<g>
<path style="fill:#E6E7E8;" d="M680.518,625.754l-4.188-3.563c-0.357-0.307-0.768-0.924-0.905-1.369l-1.602-5.114
c-0.144-0.449-0.479-0.86-0.753-0.914c-0.019-0.003-0.03-0.003-0.051-0.003l0,0h-0.446v0.762v1.596v15.236V635
c0,0.47,0.369,0.744,0.817,0.607l6.961-2.12c0.449-0.141,0.818-0.634,0.818-1.104v-5.219
C681.17,626.692,680.875,626.058,680.518,625.754z" />
<path style="fill:#E6E7E8;" d="M664.499,614.787c-0.019,0-0.033,0-0.048,0.003c-0.274,0.054-0.613,0.465-0.753,0.914
l-1.604,5.114c-0.141,0.445-0.548,1.063-0.901,1.369l-4.188,3.563c-0.359,0.304-0.655,0.938-0.655,1.408v5.219
c0,0.471,0.369,0.968,0.819,1.104l6.963,2.116c0.449,0.141,0.818-0.138,0.818-0.604v-2.617V617.14v-1.593v-0.762L664.499,614.787
L664.499,614.787z" />
</g>
<path style="fill:#939598;" d="M672.569,634.998c0,0.47,0.365,0.744,0.817,0.607l6.96-2.12c0.45-0.141,0.819-0.638,0.819-1.104
h-8.602L672.569,634.998L672.569,634.998z" />
<path style="fill:#939598;" d="M657.167,633.485l6.963,2.12c0.449,0.137,0.818-0.142,0.818-0.607v-2.617h-8.604
C656.348,632.852,656.717,633.349,657.167,633.485z" />
<path style="fill:#58595B;" d="M668.759,637.645c0,0.235-0.189,0.433-0.429,0.433h-2.956c-0.235,0-0.426-0.193-0.426-0.433v-1.791
c0-0.232,0.188-0.43,0.426-0.43h2.956c0.234,0,0.429,0.193,0.429,0.43V637.645z" />
<path style="fill:#58595B;" d="M672.569,637.645c0,0.235-0.19,0.433-0.43,0.433h-2.956c-0.231,0-0.429-0.193-0.429-0.433v-1.791
c0-0.232,0.193-0.43,0.429-0.43h2.956c0.235,0,0.43,0.193,0.43,0.43V637.645z" />
<path style="fill:#808285;" d="M670.664,637.645c0,0.235-0.19,0.433-0.426,0.433h-2.959c-0.235,0-0.43-0.193-0.43-0.433v-1.791
c0-0.232,0.19-0.43,0.43-0.43h2.959c0.231,0,0.426,0.193,0.426,0.43V637.645z" />
<rect x="664.948" y="611.436" style="fill:#FFFFFF;" width="7.621" height="24.417" />
<polygon style="fill:#E03643;" points="679.887,629.637 679.095,629.521 678.74,628.8 678.386,629.521 677.595,629.637
678.166,630.196 678.032,630.984 678.74,630.609 679.449,630.984 679.315,630.196 " />
<path style="fill:#939598;" d="M668.759,605.945c-2.612,0-3.811,5.486-3.811,5.486h3.811h3.813
C672.569,611.436,671.372,605.945,668.759,605.945z" />
<g>
<path style="fill:#A3DFFF;" d="M668.759,612.691c-1.398,0-2.536,1.137-2.536,2.539h5.072
C671.295,613.828,670.161,612.691,668.759,612.691z" />
</g>
<path style="fill:#53A2D3;" d="M659.741,629.893c0,0.563-0.455,1.021-1.021,1.021c-0.563,0-1.021-0.458-1.021-1.021
c0-0.563,0.458-1.021,1.021-1.021C659.286,628.871,659.741,629.326,659.741,629.893z" />
<rect x="666.223" y="615.23" style="fill:#F1F2F2;" width="5.072" height="17.146" />
<path style="fill:#D1D3D4;" d="M669.407,636.191c0,0.231,0.189,0.426,0.43,0.426h2.959c0.231,0,0.426-0.19,0.426-0.426v-2.908
c0-0.235-0.17-0.521-0.379-0.628l-1.836-0.975c-0.209-0.106-0.575-0.195-0.808-0.195h-0.362c-0.236,0-0.43,0.189-0.43,0.429
V636.191z" />
<path style="fill:#D1D3D4;" d="M668.109,636.191c0,0.231-0.193,0.426-0.433,0.426h-2.956c-0.231,0-0.429-0.19-0.429-0.426v-2.908
c0-0.235,0.173-0.521,0.379-0.628l1.836-0.975c0.209-0.106,0.575-0.195,0.813-0.195h0.355c0.235,0,0.433,0.189,0.433,0.429
L668.109,636.191L668.109,636.191z" />
<path style="fill:#3A3A3A;" d="M669.407,631.199c0-0.235-0.19-0.426-0.427-0.426h-0.442c-0.238,0-0.429,0.188-0.429,0.426v4.992
c0,0.231,0.188,0.426,0.429,0.426h0.442c0.232,0,0.427-0.19,0.427-0.426V631.199z" />
</g>
</g>
<g class="ufo">
<rect x="1427.781" y="88.703" fill="#0F171F" width="2.626" height="24.032" />
<circle fill="#0F171F" cx="1429.095" cy="112.734" r="2.864" />
<rect x="1478.424" y="88.703" fill="#0F171F" width="2.626" height="24.032" />
<circle fill="#0F171F" cx="1479.735" cy="112.734" r="2.864" />
<path fill="#E43D25" d="M1454.972,88.703l-55.86-9.033c0,0,1.627,18.064,55.86,18.064s55.86-18.064,55.86-18.064L1454.972,88.703z "
/>
<ellipse fill="#F0512F" cx="1454.972" cy="78.728" rx="55.86" ry="13.249" />
<ellipse fill="#F0512F" cx="1454.972" cy="78.728" rx="55.86" ry="13.249" />
<path fill="#9EDBF0" d="M1479.889,53.619L1479.889,53.619c-4.529-9.183-13.985-15.5-24.917-15.5s-20.387,6.318-24.917,15.5l0,0 l0,0c-1.826,3.7-2.853,7.865-2.853,12.27c0,4.063,0.874,7.923,2.44,11.401c7.604,0.92,16.212,1.438,25.329,1.438 s17.726-0.518,25.329-1.438c1.567-3.478,2.44-7.338,2.44-11.401C1482.741,61.484,1481.715,57.319,1479.889,53.619z"
/>
<polygon fill="#9EDBF0" points="1442.986,78.421 1442.987,78.421 1442.986,78.421 " />
<path opacity="0.1" fill="#010101" d="M1479.889,53.619L1479.889,53.619c-0.521-1.06-1.113-2.078-1.762-3.056 c-1.595-2.405-3.554-4.548-5.799-6.35c-5.481,1.642-9.945,4.062-13.586,6.867c1.785,1.251,2.955,3.324,2.955,5.671 c0,3.823-3.101,6.923-6.924,6.923c-2.118,0-4.014-0.952-5.283-2.452c-5.609,8.749-6.502,17.178-6.504,17.198h0.001 c3.86,0.2,7.87,0.307,11.984,0.307c9.117,0,17.726-0.518,25.329-1.438c1.567-3.478,2.44-7.338,2.44-11.401 C1482.741,61.484,1481.715,57.319,1479.889,53.619z"
/>
<ellipse fill="#FFFFFF" cx="1413.021" cy="76.305" rx="4.775" ry="2.117" />
<ellipse fill="#FFFFFF" cx="1494.238" cy="76.305" rx="4.774" ry="2.117" />
<ellipse fill="#FFFFFF" cx="1429.095" cy="83.148" rx="4.776" ry="2.117" />
<ellipse fill="#FFFFFF" cx="1479.736" cy="83.148" rx="4.775" ry="2.117" />
<ellipse fill="#FFFFFF" cx="1454.972" cy="85.265" rx="4.775" ry="2.115" />
</g>
</svg>
</div>
</div>
</body>