Last active
October 6, 2020 11:14
-
-
Save nickbutcher/77636b87e12c52a2a93d38fbff77f8ea to your computer and use it in GitHub Desktop.
Fun with gradients and AnimatedVectorDrawables. Illustration by the wonderful https://twitter.com/VPoltrack
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<!-- | |
Copyright 2018 Google Inc. | |
Licensed under the Apache License, Version 2.0 (the "License"); | |
you may not use this file except in compliance with the License. | |
You may obtain a copy of the License at | |
http://www.apache.org/licenses/LICENSE-2.0 | |
Unless required by applicable law or agreed to in writing, software | |
distributed under the License is distributed on an "AS IS" BASIS, | |
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
See the License for the specific language governing permissions and | |
limitations under the License. | |
--> | |
<animated-vector | |
xmlns:android="http://schemas.android.com/apk/res/android" | |
xmlns:aapt="http://schemas.android.com/aapt" | |
android:drawable="@drawable/computer_history_museum"> | |
<!-- Move the 'sun' by animating the trim offset --> | |
<target android:name="sunrise"> | |
<aapt:attr name="android:animation"> | |
<objectAnimator | |
android:propertyName="trimPathOffset" | |
android:duration="6000" | |
android:valueFrom="0" | |
android:valueTo="0.99999" | |
android:valueType="floatType" | |
android:interpolator="@android:interpolator/linear"/> | |
</aapt:attr> | |
</target> | |
<!-- Move the sky gradient up then down --> | |
<target android:name="sky"> | |
<aapt:attr name="android:animation"> | |
<objectAnimator | |
android:propertyName="translateY" | |
android:duration="4000" | |
android:valueFrom="0" | |
android:valueTo="-5000" | |
android:valueType="floatType" | |
android:interpolator="@android:interpolator/linear"/> | |
</aapt:attr> | |
</target> | |
<target android:name="sky"> | |
<aapt:attr name="android:animation"> | |
<objectAnimator | |
android:propertyName="translateY" | |
android:startOffset="4000" | |
android:duration="2000" | |
android:valueFrom="-5000" | |
android:valueTo="0" | |
android:valueType="floatType" | |
android:interpolator="@android:interpolator/linear"/> | |
</aapt:attr> | |
</target> | |
<!-- Fade the stars out then back in --> | |
<target android:name="stars"> | |
<aapt:attr name="android:animation"> | |
<objectAnimator | |
android:propertyName="fillAlpha" | |
android:duration="1000" | |
android:valueFrom="1" | |
android:valueTo="0" | |
android:valueType="floatType" | |
android:interpolator="@android:interpolator/linear"/> | |
</aapt:attr> | |
</target> | |
<target android:name="stars"> | |
<aapt:attr name="android:animation"> | |
<objectAnimator | |
android:propertyName="fillAlpha" | |
android:startOffset="5000" | |
android:duration="1000" | |
android:valueFrom="0" | |
android:valueTo="1" | |
android:valueType="floatType" | |
android:interpolator="@android:interpolator/linear"/> | |
</aapt:attr> | |
</target> | |
<!-- Fade the clouds in then back out again --> | |
<target android:name="clouds"> | |
<aapt:attr name="android:animation"> | |
<objectAnimator | |
android:propertyName="fillAlpha" | |
android:startOffset="1100" | |
android:duration="800" | |
android:valueFrom="0" | |
android:valueTo="1" | |
android:valueType="floatType" | |
android:interpolator="@android:interpolator/linear"/> | |
</aapt:attr> | |
</target> | |
<target android:name="clouds"> | |
<aapt:attr name="android:animation"> | |
<objectAnimator | |
android:propertyName="fillAlpha" | |
android:startOffset="4900" | |
android:duration="450" | |
android:valueFrom="1" | |
android:valueTo="0" | |
android:valueType="floatType" | |
android:interpolator="@android:interpolator/linear"/> | |
</aapt:attr> | |
</target> | |
</animated-vector> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<!-- | |
Copyright 2018 Google Inc. | |
Licensed under the Apache License, Version 2.0 (the "License"); | |
you may not use this file except in compliance with the License. | |
You may obtain a copy of the License at | |
http://www.apache.org/licenses/LICENSE-2.0 | |
Unless required by applicable law or agreed to in writing, software | |
distributed under the License is distributed on an "AS IS" BASIS, | |
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
See the License for the specific language governing permissions and | |
limitations under the License. | |
--> | |
<!-- You probably don't want to make vectors this large or complicated… but it looks so pretty in my | |
conference talk. --> | |
<vector | |
xmlns:android="http://schemas.android.com/apk/res/android" | |
xmlns:aapt="http://schemas.android.com/aapt" | |
android:width="724dp" | |
android:height="411dp" | |
android:viewportWidth="2535" | |
android:viewportHeight="1439"> | |
<!-- Use a group so that we can animate translationY --> | |
<group android:name="sky"> | |
<!-- Note that this is way larger than the viewport --> | |
<path android:pathData="M0,0h2535v8000h-2535z"> | |
<aapt:attr name="android:fillColor"> | |
<!-- Gradient from night, to dawn to daytime --> | |
<gradient | |
android:endX="0" | |
android:endY="0" | |
android:startX="0" | |
android:startY="2800" | |
android:type="linear"> | |
<item android:color="#6199F6" android:offset="0.0" /> | |
<item android:color="#6199F6" android:offset="0.1" /> | |
<item android:color="#6E3287" android:offset="0.4" /> | |
<item android:color="#17253B" android:offset="0.6" /> | |
<item android:color="#17253B" android:offset="1.0" /> | |
</gradient> | |
</aapt:attr> | |
</path> | |
</group> | |
<!-- The 'sun' is actually a single arced line. By setting a tiny trim and rounded line caps it | |
only draws a circle. Animating the trim makes the circle describe the arc. Use a gradient | |
stroke so that the sun changes color from orange near the horizon, to yellow at the | |
zenith.--> | |
<path | |
android:name="sunrise" | |
android:pathData="M241.48,1214.95C241.48,905.47 513.08,233.33 1293.59,233.33C2074.11,233.33 2298.63,859.73 2298.63,1214.95" | |
android:strokeWidth="180" | |
android:strokeLineCap="round" | |
android:trimPathEnd="0.00001"> | |
<aapt:attr name="android:strokeColor"> | |
<gradient | |
android:endColor="#FFD600" | |
android:endX="0" | |
android:endY="0" | |
android:startColor="#EE4B00" | |
android:startX="0" | |
android:startY="1439" | |
android:type="linear" /> | |
</aapt:attr> | |
</path> | |
<path | |
android:name="clouds" | |
android:fillColor="#FFFFFF" | |
android:fillAlpha="0" | |
android:pathData="M2303.3,357.5C2298.9,357.5 2294.6,360.7 2290.3,361.4C2294.9,349.4 2297.4,337.8 2297.4,324.2C2297.4,263.9 2247.8,215.7 2186.7,215.7C2137.9,215.7 2096.5,247.2 2081.8,290.4C2067.5,281 2050.3,275.7 2031.8,275.7C1981.9,275.7 1941.5,315.7 1941.5,364.8C1941.5,372.5 1938.9,375.6 1936,375.6C1900.1,375.6 1870.7,395.9 1867.3,425.9L2387.9,425.9C2388,375.9 2350,357.5 2303.3,357.5Z M1397.8,175C1399.3,175 1400.7,176.1 1402.1,176.3C1400.6,172.3 1399.7,168.4 1399.7,163.8C1399.7,143.6 1416.3,127.4 1436.8,127.4C1453.2,127.4 1467.1,138 1472,152.5C1476.8,149.3 1482.6,147.6 1488.8,147.6C1505.5,147.6 1519.1,161 1519.1,177.5C1519.1,180.1 1520,181.1 1520.9,181.1C1532.9,181.1 1542.8,187.9 1544,198L1369.3,198C1369.3,181.2 1382.1,175 1397.8,175Z"/> | |
<path | |
android:fillColor="#34A853" | |
android:pathData="M0,1060h2535v379h-2535z"/> | |
<path | |
android:fillColor="#CFD8DC" | |
android:pathData="M0,1117h2535v95h-2535z"/> | |
<path | |
android:fillColor="#424242" | |
android:pathData="M489,1002h1671v117h-1671z"/> | |
<path | |
android:pathData="M625,1080.5L2159.5,1080.5" | |
android:strokeWidth="3" | |
android:strokeColor="#353535" /> | |
<pathh | |
android:pathData="M625,1040.5L2159.5,1040.5" | |
android:strokeWidth="3" | |
android:strokeColor="#353535" /> | |
<path | |
android:fillColor="#FFFFFF" | |
android:fillType="evenOdd" | |
android:pathData="M695,1002h29v117h-29z"/> | |
<path | |
android:fillColor="#FFFFFF" | |
android:fillType="evenOdd" | |
android:pathData="M936,1002h29v117h-29z"/> | |
<path | |
android:fillColor="#23893C" | |
android:fillType="evenOdd" | |
android:pathData="M310.2,1117C310.7,1114.9 311,1112.7 311,1110.4C311,1095.8 299.3,1083.9 284.7,1083.7C279.8,1063.4 261.6,1048.4 239.9,1048.4C231.2,1048.4 223.1,1050.8 216.1,1055C206,1041.5 189.9,1032.8 171.8,1032.8C144.7,1032.8 122.2,1052.2 117.3,1077.9C113.6,1076.5 109.7,1075.7 105.5,1075.7C87.6,1075.7 73,1090.2 73,1108.2C73,1111.3 73.4,1114.3 74.3,1117.1L310.2,1117.1L310.2,1117Z"/> | |
<path | |
android:fillColor="#CFD8DC" | |
android:fillType="evenOdd" | |
android:pathData="M1418,1002h29v117h-29z"/> | |
<path | |
android:fillColor="#CFD8DC" | |
android:fillType="evenOdd" | |
android:pathData="M1659,1002h29v117h-29z"/> | |
<path | |
android:fillColor="#CFD8DC" | |
android:fillType="evenOdd" | |
android:pathData="M1900,1002h29v117h-29z"/> | |
<path | |
android:fillColor="#424242" | |
android:fillType="evenOdd" | |
android:pathData="M1129,1004h58v117h-58z" | |
android:strokeWidth="6" | |
android:strokeColor="#FFFFFF" /> | |
<path | |
android:fillColor="#424242" | |
android:fillType="evenOdd" | |
android:pathData="M1187,1004h58v117h-58z" | |
android:strokeWidth="6" | |
android:strokeColor="#FFFFFF" /> | |
<path | |
android:fillColor="#8D6E63" | |
android:fillType="evenOdd" | |
android:pathData="M0,1212h2535v55h-2535z"/> | |
<path | |
android:fillColor="#CFD8DC" | |
android:fillType="evenOdd" | |
android:pathData="M261.9,1072.9C261.7,1072.9 261.6,1072.9 261.4,1072.8C260.9,1072.5 260.8,1071.9 261,1071.5L264.5,1065.2C264.8,1064.7 265.4,1064.6 265.8,1064.8C266.3,1065.1 266.4,1065.7 266.2,1066.1L262.7,1072.4C262.5,1072.8 262.2,1072.9 261.9,1072.9Z"/> | |
<path | |
android:fillColor="#9EABAF" | |
android:fillType="evenOdd" | |
android:pathData="M181,1129.1C181,1130.1 209.5,1130.9 244.8,1130.9C280.1,1130.9 308.6,1130.1 308.6,1129.1C308.6,1128.1 280.1,1127.3 244.8,1127.3C209.5,1127.3 181,1128.1 181,1129.1Z"/> | |
<path | |
android:fillColor="#CFD8DC" | |
android:fillType="evenOdd" | |
android:pathData="M224.8,1073.4C224,1073.4 223.4,1072.8 223.4,1072L223.4,1063.9L218.7,1061.4C218,1061 217.8,1060.2 218.1,1059.5C218.5,1058.8 219.3,1058.6 220,1058.9L225.4,1061.9C225.9,1062.1 226.1,1062.6 226.1,1063.1L226.1,1072.1C226.2,1072.8 225.6,1073.4 224.8,1073.4Z"/> | |
<path | |
android:fillColor="#FABB05" | |
android:fillType="evenOdd" | |
android:pathData="M229,1107.8C227.8,1107.8 226.9,1106.8 226.9,1105.7C226.9,1094.1 217.5,1084.7 205.9,1084.7C203.2,1084.7 200.5,1085.2 198,1086.2C196.9,1086.6 195.7,1086.1 195.2,1085C194.8,1083.9 195.3,1082.7 196.4,1082.2C199.4,1081 202.6,1080.4 205.9,1080.4C219.8,1080.4 231.2,1091.7 231.2,1105.7C231.1,1106.9 230.1,1107.8 229,1107.8Z"/> | |
<path | |
android:fillColor="#FABB05" | |
android:fillType="evenOdd" | |
android:pathData="M307.2,1106L303,1106C303,1094.2 293.4,1084.6 281.6,1084.6C269.8,1084.6 260.2,1094.2 260.2,1106L256,1106C256,1091.9 267.5,1080.4 281.6,1080.4C295.7,1080.3 307.2,1091.8 307.2,1106Z"/> | |
<path | |
android:fillColor="#546E7A" | |
android:fillType="evenOdd" | |
android:pathData="M249.7,1113.3L249.7,1112.6C249.9,1112.6 271.6,1111.4 281.8,1111.4C282.8,1111.4 283.7,1111.1 284.3,1110.4C285.8,1108.7 285.5,1105.3 285.5,1105.3L286.2,1105.2C286.2,1105.3 286.6,1108.9 284.8,1110.8C284.1,1111.6 283.1,1112 281.8,1112C271.6,1112.1 249.9,1113.3 249.7,1113.3Z"/> | |
<path | |
android:fillColor="#546E7A" | |
android:fillType="evenOdd" | |
android:pathData="M281.7,1101.6C271.5,1101.6 249.9,1100.8 249.7,1100.8C249.5,1100.8 249.4,1100.6 249.4,1100.4C249.4,1100.2 249.6,1100.1 249.8,1100.1C250,1100.1 271.6,1100.9 281.8,1100.9C282,1100.9 282.2,1101.1 282.2,1101.3C282.2,1101.5 281.9,1101.6 281.7,1101.6Z"/> | |
<path | |
android:fillColor="#546E7A" | |
android:fillType="evenOdd" | |
android:pathData="M285.7,1105.2C285.7,1105.2 286.4,1111.7 281.7,1111.7L281.7,1105.2L285.7,1105.2Z"/> | |
<path | |
android:fillColor="#444444" | |
android:fillType="nonZero" | |
android:pathData="M281.6,1129C268.7,1129 258.3,1118.5 258.3,1105.7C258.3,1092.8 268.8,1082.4 281.6,1082.4C294.5,1082.4 304.9,1092.9 304.9,1105.7C304.9,1118.6 294.5,1129 281.6,1129ZM281.6,1085.9C270.7,1085.9 261.8,1094.8 261.8,1105.7C261.8,1116.6 270.7,1125.5 281.6,1125.5C292.5,1125.5 301.4,1116.6 301.4,1105.7C301.4,1094.8 292.5,1085.9 281.6,1085.9Z"/> | |
<path | |
android:fillColor="#546E7A" | |
android:fillType="evenOdd" | |
android:pathData="M277.2,1105.4C277.2,1107.9 279.2,1109.9 281.7,1109.9C284.2,1109.9 286.2,1107.9 286.2,1105.4C286.2,1102.9 284.2,1100.9 281.7,1100.9C279.2,1100.9 277.2,1102.9 277.2,1105.4Z"/> | |
<path | |
android:fillColor="#546E7A" | |
android:fillType="evenOdd" | |
android:pathData="M201.4,1105.4C201.4,1107.9 203.4,1109.9 205.9,1109.9C208.4,1109.9 210.4,1107.9 210.4,1105.4C210.4,1102.9 208.4,1100.9 205.9,1100.9C203.4,1100.9 201.4,1102.9 201.4,1105.4Z"/> | |
<path | |
android:fillColor="#444444" | |
android:fillType="nonZero" | |
android:pathData="M205.8,1129C192.9,1129 182.5,1118.5 182.5,1105.7C182.5,1092.8 193,1082.4 205.8,1082.4C218.7,1082.4 229.1,1092.9 229.1,1105.7C229.1,1118.6 218.7,1129 205.8,1129ZM205.8,1085.9C194.9,1085.9 186,1094.8 186,1105.7C186,1116.6 194.9,1125.5 205.8,1125.5C216.7,1125.5 225.6,1116.6 225.6,1105.7C225.6,1094.8 216.7,1085.9 205.8,1085.9Z"/> | |
<path | |
android:fillColor="#FABB05" | |
android:fillType="evenOdd" | |
android:pathData="M205.6,1107.7C205.1,1107.7 204.6,1107.5 204.2,1107.1C203.3,1106.3 203.3,1105 204.1,1104.1C218.6,1088.2 222.9,1071.2 222.9,1071C223.1,1070 224,1069.4 225,1069.4L261.6,1069.4C262.5,1069.4 263.2,1069.9 263.6,1070.7L277.3,1104.1C277.7,1105.2 277.2,1106.4 276.1,1106.9C275,1107.3 273.8,1106.8 273.3,1105.7L260.2,1073.6L226.7,1073.6C225.3,1078.4 220.1,1092.9 207.3,1106.9C206.7,1107.5 206.2,1107.7 205.6,1107.7Z"/> | |
<path | |
android:fillColor="#444444" | |
android:fillType="evenOdd" | |
android:pathData="M259.1,1065.6C256.7,1065.6 256.7,1062.9 259.1,1062.9L270.5,1062.9C272.1,1062.9 273.4,1064.1 273.4,1065.7C273.4,1067.2 272.1,1068.5 270.5,1068.5C267,1068.5 265.3,1065.6 259.1,1065.6Z"/> | |
<path | |
android:fillColor="#FABB05" | |
android:fillType="evenOdd" | |
android:pathData="M281.8,1107.9L255.5,1107.9C242.2,1107.9 232.2,1099.5 220.9,1078.9C220.3,1077.9 220.7,1076.6 221.7,1076C222.7,1075.4 224,1075.8 224.6,1076.8C235,1095.8 243.9,1103.6 255.4,1103.6L281.7,1103.6C282.9,1103.6 283.8,1104.6 283.8,1105.7C283.9,1107 282.9,1107.9 281.8,1107.9Z"/> | |
<path | |
android:fillColor="#A3A3A3" | |
android:fillType="evenOdd" | |
android:pathData="M242.2,1106.4C242.2,1110.2 245.3,1113.3 249.1,1113.3C252.9,1113.3 256,1110.2 256,1106.4C256,1102.6 252.9,1099.5 249.1,1099.5C245.3,1099.5 242.2,1102.6 242.2,1106.4Z"/> | |
<path | |
android:fillColor="#FABB05" | |
android:fillType="evenOdd" | |
android:pathData="M246.7,1116.6C246.6,1116.6 246.5,1116.6 246.3,1116.5C245.5,1116.3 245.1,1115.5 245.3,1114.8L247.7,1106C247.9,1105.2 248.7,1104.8 249.4,1105C250.2,1105.2 250.6,1106 250.4,1106.7L248,1115.5C247.9,1116.2 247.3,1116.6 246.7,1116.6Z"/> | |
<path | |
android:fillColor="#444444" | |
android:fillType="evenOdd" | |
android:pathData="M248.8,1117.3L244.3,1117.3C243.3,1117.3 242.5,1116.5 242.5,1115.5C242.5,1114.5 243.3,1113.7 244.3,1113.7L248.8,1113.7C249.8,1113.7 250.6,1114.5 250.6,1115.5C250.6,1116.5 249.8,1117.3 248.8,1117.3Z"/> | |
<path | |
android:fillColor="#444444" | |
android:fillType="evenOdd" | |
android:pathData="M222.2,1060.7C222.2,1059.4 221.2,1058.4 219.9,1058.4C218.6,1058.4 217.6,1059.4 217.6,1060.7C217.6,1062 218.6,1063 219.9,1063C221.2,1062.9 222.2,1061.9 222.2,1060.7Z"/> | |
<path | |
android:fillColor="#90A4AE" | |
android:fillType="evenOdd" | |
android:pathData="M0,1262h2535v10h-2535z"/> | |
<path | |
android:fillColor="#00000000" | |
android:fillType="evenOdd" | |
android:pathData="M291,884L630,884" | |
android:strokeWidth="10" | |
android:strokeColor="#FFFFFF" /> | |
<path | |
android:fillColor="#5F6368" | |
android:fillType="evenOdd" | |
android:pathData="M2455.1,1016L2455.1,1227.4C2449.9,1229.7 2446.3,1234.8 2446.3,1240.8L2446.3,1384.9L2475.5,1384.9L2475.5,1240.8C2475.5,1234.8 2471.9,1229.7 2466.7,1227.4L2466.7,1016C2466.7,1015.8 2455.1,1016.5 2455.1,1016Z"/> | |
<path | |
android:fillColor="#424242" | |
android:fillType="evenOdd" | |
android:pathData="M2460.9,994.5m-38.1,0a38.1,38.1 0,1 1,76.2 0a38.1,38.1 0,1 1,-76.2 0"/> | |
<path | |
android:fillColor="#E4594E" | |
android:fillType="evenOdd" | |
android:pathData="M2441.3,1094.2h39.1v61.6h-39.1z"/> | |
<path | |
android:fillColor="#424242" | |
android:fillType="evenOdd" | |
android:pathData="M2444,1298h33v9h-33z"/> | |
<path | |
android:fillColor="#424242" | |
android:fillType="evenOdd" | |
android:pathData="M2444,1314h33v9h-33z"/> | |
<path | |
android:fillColor="#FFFFFF" | |
android:fillType="nonZero" | |
android:pathData="M2467.9,970.5C2467.9,970.5 2467.9,970.5 2467.9,970.5L2470,966C2470.1,965.7 2470,965.4 2469.7,965.3C2469.4,965.2 2469.1,965.3 2469,965.6L2466.9,970.1C2466.9,970.1 2466.9,970.2 2466.9,970.2C2465,969.5 2462.9,969.1 2460.7,969.1C2458.7,969.1 2456.9,969.4 2455.1,970L2453,965.6C2452.9,965.3 2452.6,965.2 2452.3,965.3C2452,965.4 2451.9,965.7 2452,966L2454,970.3C2448.5,972.5 2444.7,977.4 2444.7,983.1C2444.7,983.2 2444.7,983.4 2444.7,983.5L2476.4,983.5C2476.4,983.4 2476.4,983.2 2476.4,983.1C2476.6,977.6 2473.1,972.8 2467.9,970.5ZM2453.5,978C2452.6,978 2452,977.3 2452,976.5C2452,975.6 2452.7,975 2453.5,975C2454.4,975 2455,975.7 2455,976.5C2455.1,977.3 2454.4,978 2453.5,978ZM2468,978C2467.1,978 2466.5,977.3 2466.5,976.5C2466.5,975.6 2467.2,975 2468,975C2468.8,975 2469.5,975.7 2469.5,976.5C2469.6,977.3 2468.9,978 2468,978ZM2443.5,987.4L2443.5,1002.8C2443.5,1004.7 2441.9,1006.3 2440,1006.3C2438.1,1006.3 2436.5,1004.7 2436.5,1002.8C2436.5,1002.6 2436.5,1002.5 2436.5,1002.3L2436.5,988.4C2436.5,988.2 2436.5,988.1 2436.5,987.9C2436.5,987.7 2436.5,987.6 2436.5,987.4C2436.7,985.7 2438.2,984.4 2439.9,984.4C2441.6,984.4 2443.2,985.7 2443.5,987.4ZM2485.2,987.4L2485.2,1002.8C2485.2,1004.7 2483.6,1006.3 2481.7,1006.3C2479.8,1006.3 2478.2,1004.7 2478.2,1002.8C2478.2,1002.6 2478.2,1002.5 2478.2,1002.3L2478.2,988.4C2478.2,988.2 2478.2,988.1 2478.2,987.9C2478.2,987.7 2478.2,987.6 2478.2,987.4C2478.4,985.7 2479.9,984.4 2481.6,984.4C2483.4,984.4 2484.9,985.7 2485.2,987.4ZM2445,985.1L2476.7,985.1L2476.7,1007.7C2476.7,1010 2474.8,1011.9 2472.5,1011.9L2470.4,1011.9L2470.4,1019.8C2470.4,1021.7 2468.8,1023.3 2466.9,1023.3C2465,1023.3 2463.4,1021.7 2463.4,1019.8C2463.4,1019.6 2463.4,1019.5 2463.4,1019.3L2463.4,1011.9L2458.3,1011.9L2458.3,1019.8C2458.3,1021.7 2456.7,1023.3 2454.8,1023.3C2452.9,1023.3 2451.3,1021.7 2451.3,1019.8C2451.3,1019.6 2451.3,1019.5 2451.3,1019.3L2451.3,1011.9L2449,1011.9C2446.7,1011.9 2444.8,1010 2444.8,1007.7L2444.8,985.1L2445,985.1Z"/> | |
<path | |
android:fillColor="#A5D6A7" | |
android:fillType="evenOdd" | |
android:pathData="M2051,1109.5C2054.3,1048.8 2083.9,1065.3 2086.3,1075.9C2086.3,1075.9 2076.5,1068.9 2066.7,1077.3C2058.8,1084.1 2051,1109.5 2051,1109.5Z" | |
android:strokeWidth="1.0485" | |
android:strokeColor="#A5D6A7" | |
android:strokeLineCap="round" | |
android:strokeLineJoin="round" /> | |
<path | |
android:fillColor="#34A853" | |
android:fillType="evenOdd" | |
android:pathData="M2049.1,1109.5C2045.7,1053 2014,1066.9 2011.7,1080.1C2011.7,1080.1 2022.9,1073.4 2032.3,1079.4C2041.1,1085.1 2049.1,1109.5 2049.1,1109.5Z" | |
android:strokeWidth="1.0485" | |
android:strokeColor="#34A853" | |
android:strokeLineCap="round" | |
android:strokeLineJoin="round" /> | |
<path | |
android:fillColor="#34A853" | |
android:fillType="evenOdd" | |
android:pathData="M2051,1098.7C2052.7,1033.1 2085.5,1052 2089.4,1058.5C2089.4,1058.5 2079.6,1055 2069.8,1063.4C2062,1070.1 2051,1098.7 2051,1098.7Z" | |
android:strokeWidth="1.0485" | |
android:strokeColor="#34A853" | |
android:strokeLineCap="round" | |
android:strokeLineJoin="round" /> | |
<path | |
android:fillColor="#34A853" | |
android:fillType="evenOdd" | |
android:pathData="M2050.3,1104.5C2038.6,1039.6 2069.4,1036.7 2069.4,1036.7C2069.4,1036.7 2065.8,1047.8 2058,1062.5C2053.2,1071.6 2050.3,1104.5 2050.3,1104.5Z" | |
android:strokeWidth="1.0485" | |
android:strokeColor="#34A853" | |
android:strokeLineCap="round" | |
android:strokeLineJoin="round" /> | |
<path | |
android:fillColor="#A5D6A7" | |
android:fillType="evenOdd" | |
android:pathData="M2047.7,1106.9C2059.4,1042 2024.4,1039.1 2024.4,1039.1C2024.4,1039.1 2034.4,1052.4 2038.9,1064.9C2047.2,1087.8 2047.7,1106.9 2047.7,1106.9Z" | |
android:strokeWidth="1.0485" | |
android:strokeColor="#A5D6A7" | |
android:strokeLineCap="round" | |
android:strokeLineJoin="round" /> | |
<path | |
android:fillColor="#FF3D00" | |
android:fillType="evenOdd" | |
android:pathData="M2060.5,1097.9l-22.5,0l3.1,22.1l16.3,0z"/> | |
<path | |
android:fillColor="#EF9A9A" | |
android:fillType="evenOdd" | |
android:pathData="M2041.1,1120l16.3,0l3.1,-22.1z"/> | |
<path | |
android:fillColor="#EF9A9A" | |
android:fillType="evenOdd" | |
android:pathData="M2035.1,1092.7h28.3v8.4h-28.3z"/> | |
<path | |
android:fillColor="#A5D6A7" | |
android:fillType="evenOdd" | |
android:pathData="M2475.5,1385.1C2476.4,1350.8 2493.5,1360.7 2495.6,1364.1C2495.6,1364.1 2490.5,1362.3 2485.4,1366.7C2481.2,1370.2 2475.5,1385.1 2475.5,1385.1Z" | |
android:strokeWidth="1.0485" | |
android:strokeColor="#A5D6A7" | |
android:strokeLineCap="round" | |
android:strokeLineJoin="round" /> | |
<path | |
android:fillColor="#A5D6A7" | |
android:fillType="evenOdd" | |
android:pathData="M2474.8,1385C2463.1,1365 2472.9,1360.3 2472.9,1360.3C2472.9,1360.3 2473.1,1364.4 2472.2,1370.2C2471.8,1373.8 2474.8,1385 2474.8,1385Z" | |
android:strokeWidth="1.0485" | |
android:strokeColor="#A5D6A7" | |
android:strokeLineCap="round" | |
android:strokeLineJoin="round" /> | |
<path | |
android:fillColor="#A5D6A7" | |
android:fillType="evenOdd" | |
android:pathData="M2446.3,1384.1C2443.9,1358.8 2430.6,1361.4 2430.6,1361.4C2430.6,1361.4 2435.7,1365.3 2438.7,1369.5C2444.2,1377.1 2446.3,1384.1 2446.3,1384.1Z" | |
android:strokeWidth="1.0485" | |
android:strokeColor="#A5D6A7" | |
android:strokeLineCap="round" | |
android:strokeLineJoin="round" /> | |
<path | |
android:fillColor="#6D4C41" | |
android:fillType="evenOdd" | |
android:pathData="M338.2,1251.3C336.6,1251.1 335.9,1250.7 335.7,1250.6C334.7,1249.9 334.7,1248.6 335.4,1247.9C336.7,1246.4 340.7,1246 343.3,1247.1C344.7,1247.7 346,1248.9 345.6,1249.9C345,1251.5 340.6,1251.6 338.2,1251.3ZM29.9,1249.8C30.3,1250 30.7,1250.4 30.7,1250.8C30.7,1251.2 30.4,1251.5 29.9,1251.7C28.7,1252.2 26.5,1251.3 26.5,1250.7C26.6,1250.1 28.7,1249.3 29.9,1249.8ZM102.3,1248.2C102.8,1248.4 103.1,1248.8 103.1,1249.2C103.1,1249.6 102.8,1249.9 102.3,1250.1C101.1,1250.6 98.9,1249.7 98.9,1249.1C99,1248.5 101.1,1247.7 102.3,1248.2ZM276.7,1241.6C277.2,1241.8 277.5,1242.2 277.5,1242.6C277.5,1243 277.2,1243.3 276.7,1243.5C275.5,1244 273.3,1243.1 273.3,1242.5C273.4,1241.9 275.5,1241.1 276.7,1241.6ZM405.8,1251.3C406.2,1251.5 406.6,1251.9 406.6,1252.3C406.6,1252.7 406.3,1253 405.8,1253.2C404.6,1253.7 402.4,1252.8 402.4,1252.2C402.5,1251.6 404.6,1250.8 405.8,1251.3ZM495.7,1250.5C496.2,1250.7 496.6,1251.1 496.5,1251.5C496.5,1251.9 496.2,1252.2 495.7,1252.4C494.5,1252.9 492.3,1252 492.3,1251.4C492.4,1250.8 494.5,1250 495.7,1250.5ZM56,1242.3C57.8,1243.1 59.2,1244.6 59,1246.2C58.9,1247.7 57.7,1249 56,1249.7C51.5,1251.5 43,1248.3 43.1,1245.8C43.2,1243.3 51.5,1240.4 56,1242.3ZM467.8,1249.3C468.8,1249.7 469.6,1250.6 469.4,1251.4C469.4,1252.2 468.7,1252.9 467.8,1253.3C465.3,1254.3 460.7,1252.5 460.8,1251.2C460.9,1249.9 465.3,1248.3 467.8,1249.3ZM485.2,1240.3C486.9,1240.8 488.2,1241.9 488,1243C487.9,1244 486.8,1244.9 485.2,1245.4C481,1246.6 473.1,1244.4 473.2,1242.7C473.3,1241 481,1239 485.2,1240.3ZM422.3,1244.4C424.6,1244.6 425.5,1245.2 425.7,1245.4C427.3,1246.5 427.3,1248.5 426.4,1249.7C424.7,1252.1 419.1,1253.1 415.4,1251.6C413.4,1250.7 411.5,1248.9 412,1247.3C412.8,1244.8 418.8,1244.1 422.3,1244.4ZM220.3,1242.9C223.7,1243.2 225.1,1244.1 225.5,1244.4C227.8,1246.1 227.8,1248.9 226.5,1250.8C224,1254.4 215.6,1255.9 210,1253.6C207,1252.3 204.1,1249.6 204.9,1247.2C206.1,1243.5 215.1,1242.5 220.3,1242.9ZM518.4,1237.9C522.8,1237.8 524.6,1238.7 525,1239C528.2,1240.7 528.6,1244.3 527.3,1246.8C524.8,1251.7 514.5,1254.8 507.2,1252.7C503.2,1251.5 499.2,1248.6 499.8,1245.4C500.7,1240.6 511.8,1238.1 518.4,1237.9ZM18.1,1244.4C17.2,1244 16.4,1243.2 16.3,1242.3C16.4,1241.6 17,1240.8 17.9,1240.4C20.3,1239.3 25,1240.9 25,1242.2C25,1243.6 20.6,1245.3 18.1,1244.4ZM179.5,1249.7C178.5,1249.3 177.7,1248.5 177.7,1247.6C177.8,1246.9 178.4,1246.1 179.3,1245.7C181.7,1244.6 186.4,1246.2 186.4,1247.5C186.4,1248.9 182,1250.6 179.5,1249.7ZM326.2,1239.4C327.1,1239.7 327.9,1240.6 327.8,1241.5C327.8,1242.3 327.1,1243 326.2,1243.4C323.7,1244.4 319.1,1242.6 319.2,1241.3C319.3,1240 323.7,1238.4 326.2,1239.4ZM453.5,1243.4C454.4,1243.8 455.2,1244.6 455.1,1245.5C455.1,1246.3 454.4,1247 453.5,1247.4C451,1248.4 446.4,1246.6 446.5,1245.3C446.6,1244 451,1242.4 453.5,1243.4ZM372.5,1244.9C374.8,1245.1 375.7,1245.7 375.9,1245.9C377.5,1247 377.5,1249 376.6,1250.2C374.9,1252.6 369.3,1253.6 365.6,1252.1C363.6,1251.2 361.7,1249.4 362.2,1247.8C363,1245.3 369,1244.6 372.5,1244.9ZM297.1,1244C299.5,1244.2 300.4,1244.8 300.5,1245C302.1,1246.1 302.1,1248.1 301.2,1249.3C299.5,1251.7 293.9,1252.7 290.2,1251.2C288.2,1250.3 286.3,1248.5 286.8,1246.9C287.6,1244.4 293.6,1243.7 297.1,1244ZM778.4,1249.2C779.3,1249.6 780.1,1250.4 780,1251.3C780,1252.1 779.3,1252.8 778.4,1253.2C775.9,1254.2 771.3,1252.4 771.4,1251.1C771.5,1249.8 775.9,1248.2 778.4,1249.2ZM865.3,1240.1C866.9,1240.6 868.2,1241.7 868.1,1242.8C868,1243.8 866.9,1244.7 865.3,1245.2C861.1,1246.4 853.2,1244.2 853.3,1242.5C853.4,1240.8 861.1,1238.8 865.3,1240.1ZM744,1245.5C743.3,1245.2 742.8,1244.7 742.9,1244.1C743,1243.6 743.4,1243.2 744.1,1243C745.9,1242.5 749,1243.8 748.9,1244.6C748.8,1245.4 745.7,1246.2 744,1245.5ZM733.2,1253.8C731.6,1253.6 731,1253.2 730.7,1253.1C729.7,1252.4 729.7,1251.1 730.4,1250.4C731.7,1248.9 735.7,1248.5 738.3,1249.6C739.7,1250.2 741,1251.4 740.6,1252.4C740,1254 735.6,1254.1 733.2,1253.8ZM1276.2,1250.3C1274.6,1250.1 1273.9,1249.7 1273.7,1249.6C1272.7,1248.9 1272.7,1247.6 1273.4,1246.9C1274.7,1245.4 1278.7,1245 1281.3,1246.1C1282.7,1246.7 1284,1247.9 1283.6,1248.9C1283,1250.5 1278.6,1250.6 1276.2,1250.3ZM802.3,1244.3C804.7,1244.5 805.6,1245 805.7,1245.3C807.3,1246.4 807.3,1248.4 806.4,1249.6C804.7,1252 799.1,1253 795.4,1251.5C793.4,1250.6 791.5,1248.8 792,1247.2C792.8,1244.7 798.8,1244 802.3,1244.3ZM895.6,1241.7C899,1242 900.4,1242.9 900.8,1243.2C903.1,1244.9 903.1,1247.7 901.8,1249.6C899.3,1253.2 890.9,1254.7 885.3,1252.4C882.3,1251.1 879.4,1248.4 880.2,1246C881.4,1242.3 890.4,1241.3 895.6,1241.7ZM621.2,1248.5C622.7,1248.9 623.9,1249.8 623.8,1250.6C623.7,1251.4 622.7,1252.1 621.2,1252.5C612.5,1254.7 610.2,1251.7 610.3,1250.4C610.4,1249.1 617.4,1247.5 621.2,1248.5ZM589.3,1245.7C589.7,1245.9 590.1,1246.3 590.1,1246.7C590.1,1247.1 589.8,1247.4 589.3,1247.6C588.1,1248.1 585.9,1247.2 585.9,1246.6C586,1246 588.1,1245.2 589.3,1245.7ZM845.8,1248.8C846.2,1249 846.6,1249.4 846.6,1249.8C846.6,1250.2 846.3,1250.5 845.8,1250.7C844.6,1251.2 842.4,1250.3 842.4,1249.7C842.5,1249.1 844.6,1248.3 845.8,1248.8ZM967.9,1248.8C968.3,1249 968.7,1249.4 968.7,1249.8C968.7,1250.2 968.4,1250.5 967.9,1250.7C966.7,1251.2 964.5,1250.3 964.5,1249.7C964.6,1249.1 966.7,1248.3 967.9,1248.8ZM1040.3,1247.2C1040.8,1247.4 1041.1,1247.8 1041.1,1248.2C1041.1,1248.6 1040.8,1248.9 1040.3,1249.1C1039.1,1249.6 1036.9,1248.7 1036.9,1248.1C1037,1247.5 1039.1,1246.7 1040.3,1247.2ZM1214.7,1240.6C1215.2,1240.8 1215.5,1241.2 1215.5,1241.6C1215.5,1242 1215.2,1242.3 1214.7,1242.5C1213.5,1243 1211.3,1242.1 1211.3,1241.5C1211.4,1240.9 1213.5,1240.1 1214.7,1240.6ZM1343.8,1250.3C1344.2,1250.5 1344.6,1250.9 1344.6,1251.3C1344.6,1251.7 1344.3,1252 1343.8,1252.2C1342.6,1252.7 1340.4,1251.8 1340.4,1251.2C1340.5,1250.6 1342.6,1249.8 1343.8,1250.3ZM1433.7,1249.5C1434.2,1249.7 1434.6,1250.1 1434.5,1250.5C1434.5,1250.9 1434.2,1251.2 1433.7,1251.4C1432.5,1251.9 1430.3,1251 1430.3,1250.4C1430.4,1249.8 1432.5,1249 1433.7,1249.5ZM922.1,1245.9C922.5,1246.1 922.9,1246.5 922.9,1246.9C922.9,1247.3 922.6,1247.6 922.1,1247.8C920.9,1248.3 918.7,1247.4 918.7,1246.8C918.8,1246.2 920.9,1245.4 922.1,1245.9ZM652.9,1241.9C654.7,1242.6 656.1,1244.2 655.9,1245.8C655.8,1247.3 654.6,1248.6 652.9,1249.3C648.4,1251.1 639.9,1247.9 640,1245.4C640.1,1242.9 648.4,1240 652.9,1241.9ZM994,1241.3C995.8,1242.1 997.2,1243.6 997,1245.2C996.9,1246.7 995.7,1248 994,1248.7C989.5,1250.5 981,1247.3 981.1,1244.8C981.2,1242.3 989.5,1239.4 994,1241.3ZM721.7,1239C724.1,1239.2 725,1239.8 725.1,1240C726.7,1241.1 726.7,1243.1 725.8,1244.3C724.1,1246.7 718.5,1247.7 714.8,1246.2C712.8,1245.3 710.9,1243.5 711.4,1241.9C712.2,1239.4 718.2,1238.7 721.7,1239ZM1405.8,1248.3C1406.8,1248.7 1407.6,1249.6 1407.4,1250.4C1407.4,1251.2 1406.7,1251.9 1405.8,1252.3C1403.3,1253.3 1398.7,1251.5 1398.8,1250.2C1398.9,1248.9 1403.3,1247.3 1405.8,1248.3ZM1423.2,1239.3C1424.9,1239.8 1426.2,1240.9 1426,1242C1425.9,1243 1424.8,1243.9 1423.2,1244.4C1419,1245.6 1411.1,1243.4 1411.2,1241.7C1411.3,1240 1419,1238 1423.2,1239.3ZM1360.3,1243.4C1362.6,1243.6 1363.5,1244.2 1363.7,1244.4C1365.3,1245.5 1365.3,1247.5 1364.4,1248.7C1362.7,1251.1 1357.1,1252.1 1353.4,1250.6C1351.4,1249.7 1349.5,1247.9 1350,1246.3C1350.8,1243.8 1356.8,1243.1 1360.3,1243.4ZM1158.3,1241.9C1161.7,1242.2 1163.1,1243.1 1163.5,1243.4C1165.8,1245.1 1165.8,1247.9 1164.5,1249.8C1162,1253.4 1153.6,1254.9 1148,1252.6C1145,1251.3 1142.1,1248.6 1142.9,1246.2C1144.1,1242.5 1153.1,1241.5 1158.3,1241.9ZM1456.4,1236.9C1460.8,1236.8 1462.6,1237.7 1463,1238C1466.2,1239.7 1466.6,1243.3 1465.3,1245.8C1462.8,1250.7 1452.5,1253.8 1445.2,1251.7C1441.2,1250.5 1437.2,1247.6 1437.8,1244.4C1438.7,1239.6 1449.8,1237.1 1456.4,1236.9ZM956.1,1243.4C955.2,1243 954.4,1242.2 954.3,1241.3C954.4,1240.6 955,1239.8 955.9,1239.4C958.3,1238.3 963,1239.9 963,1241.2C963,1242.6 958.6,1244.3 956.1,1243.4ZM1117.5,1248.7C1116.5,1248.3 1115.7,1247.5 1115.7,1246.6C1115.8,1245.9 1116.4,1245.1 1117.3,1244.7C1119.7,1243.6 1124.4,1245.2 1124.4,1246.5C1124.4,1247.9 1120,1249.6 1117.5,1248.7ZM1264.2,1238.4C1265.1,1238.7 1265.9,1239.6 1265.8,1240.5C1265.8,1241.3 1265.1,1242 1264.2,1242.4C1261.7,1243.4 1257.1,1241.6 1257.2,1240.3C1257.3,1239 1261.7,1237.4 1264.2,1238.4ZM1391.5,1242.4C1392.4,1242.8 1393.2,1243.6 1393.1,1244.5C1393.1,1245.3 1392.4,1246 1391.5,1246.4C1389,1247.4 1384.4,1245.6 1384.5,1244.3C1384.6,1243 1389,1241.4 1391.5,1242.4ZM1310.5,1243.9C1312.8,1244.1 1313.7,1244.7 1313.9,1244.9C1315.5,1246 1315.5,1248 1314.6,1249.2C1312.9,1251.6 1307.3,1252.6 1303.6,1251.1C1301.6,1250.2 1299.7,1248.4 1300.2,1246.8C1301,1244.3 1307,1243.6 1310.5,1243.9ZM597.8,1242.5C596.4,1242 595.3,1241 595.4,1240.1C595.6,1239.3 596.7,1238.7 598.2,1238.5C602.2,1238 610.8,1238.4 608.8,1241.8C608.2,1243 601.5,1243.9 597.8,1242.5ZM1235.1,1243C1237.5,1243.2 1238.4,1243.8 1238.5,1244C1240.1,1245.1 1240.1,1247.1 1239.2,1248.3C1237.5,1250.7 1231.9,1251.7 1228.2,1250.2C1226.2,1249.3 1224.3,1247.5 1224.8,1245.9C1225.6,1243.4 1231.6,1242.7 1235.1,1243ZM1713.4,1249.2C1714.3,1249.6 1715.1,1250.4 1715,1251.3C1715,1252.1 1714.3,1252.8 1713.4,1253.2C1710.9,1254.2 1706.3,1252.4 1706.4,1251.1C1706.5,1249.8 1710.9,1248.2 1713.4,1249.2ZM1800.3,1240.1C1801.9,1240.6 1803.2,1241.7 1803.1,1242.8C1803,1243.8 1801.9,1244.7 1800.3,1245.2C1796.1,1246.4 1788.2,1244.2 1788.3,1242.5C1788.4,1240.8 1796.1,1238.8 1800.3,1240.1ZM1679,1245.5C1678.3,1245.2 1677.8,1244.7 1677.9,1244.1C1678,1243.6 1678.4,1243.2 1679.1,1243C1680.9,1242.5 1684,1243.8 1683.9,1244.6C1683.8,1245.4 1680.7,1246.2 1679,1245.5ZM1668.2,1253.8C1666.6,1253.6 1666,1253.2 1665.7,1253.1C1664.7,1252.4 1664.7,1251.1 1665.4,1250.4C1666.7,1248.9 1670.7,1248.5 1673.3,1249.6C1674.7,1250.2 1676,1251.4 1675.6,1252.4C1675,1254 1670.6,1254.1 1668.2,1253.8ZM2211.2,1250.3C2209.6,1250.1 2208.9,1249.7 2208.7,1249.6C2207.7,1248.9 2207.7,1247.6 2208.4,1246.9C2209.7,1245.4 2213.7,1245 2216.3,1246.1C2217.7,1246.7 2219,1247.9 2218.6,1248.9C2218,1250.5 2213.6,1250.6 2211.2,1250.3ZM1737.3,1244.3C1739.7,1244.5 1740.6,1245 1740.7,1245.3C1742.3,1246.4 1742.3,1248.4 1741.4,1249.6C1739.7,1252 1734.1,1253 1730.4,1251.5C1728.4,1250.6 1726.5,1248.8 1727,1247.2C1727.8,1244.7 1733.8,1244 1737.3,1244.3ZM1830.6,1241.7C1834,1242 1835.4,1242.9 1835.8,1243.2C1838.1,1244.9 1838.1,1247.7 1836.8,1249.6C1834.3,1253.2 1825.9,1254.7 1820.3,1252.4C1817.3,1251.1 1814.4,1248.4 1815.2,1246C1816.4,1242.3 1825.4,1241.3 1830.6,1241.7ZM1556.2,1248.5C1557.7,1248.9 1558.9,1249.8 1558.8,1250.6C1558.7,1251.4 1557.7,1252.1 1556.2,1252.5C1547.5,1254.7 1545.2,1251.7 1545.3,1250.4C1545.4,1249.1 1552.4,1247.5 1556.2,1248.5ZM1524.3,1245.7C1524.7,1245.9 1525.1,1246.3 1525.1,1246.7C1525.1,1247.1 1524.8,1247.4 1524.3,1247.6C1523.1,1248.1 1520.9,1247.2 1520.9,1246.6C1521,1246 1523.1,1245.2 1524.3,1245.7ZM1780.8,1248.8C1781.2,1249 1781.6,1249.4 1781.6,1249.8C1781.6,1250.2 1781.3,1250.5 1780.8,1250.7C1779.6,1251.2 1777.4,1250.3 1777.4,1249.7C1777.5,1249.1 1779.6,1248.3 1780.8,1248.8ZM1902.9,1248.8C1903.3,1249 1903.7,1249.4 1903.7,1249.8C1903.7,1250.2 1903.4,1250.5 1902.9,1250.7C1901.7,1251.2 1899.5,1250.3 1899.5,1249.7C1899.6,1249.1 1901.7,1248.3 1902.9,1248.8ZM1975.3,1247.2C1975.8,1247.4 1976.1,1247.8 1976.1,1248.2C1976.1,1248.6 1975.8,1248.9 1975.3,1249.1C1974.1,1249.6 1971.9,1248.7 1971.9,1248.1C1972,1247.5 1974.1,1246.7 1975.3,1247.2ZM2149.7,1240.6C2150.2,1240.8 2150.5,1241.2 2150.5,1241.6C2150.5,1242 2150.2,1242.3 2149.7,1242.5C2148.5,1243 2146.3,1242.1 2146.3,1241.5C2146.4,1240.9 2148.5,1240.1 2149.7,1240.6ZM2278.8,1250.3C2279.2,1250.5 2279.6,1250.9 2279.6,1251.3C2279.6,1251.7 2279.2,1252 2278.8,1252.2C2277.6,1252.7 2275.4,1251.8 2275.4,1251.2C2275.5,1250.6 2277.6,1249.8 2278.8,1250.3ZM2368.7,1249.5C2369.2,1249.7 2369.6,1250.1 2369.5,1250.5C2369.5,1250.9 2369.1,1251.2 2368.7,1251.4C2367.5,1251.9 2365.3,1251 2365.3,1250.4C2365.4,1249.8 2367.5,1249 2368.7,1249.5ZM1857.1,1245.9C1857.5,1246.1 1857.9,1246.5 1857.9,1246.9C1857.9,1247.3 1857.6,1247.6 1857.1,1247.8C1855.9,1248.3 1853.7,1247.4 1853.7,1246.8C1853.8,1246.2 1855.9,1245.4 1857.1,1245.9ZM1587.9,1241.9C1589.7,1242.6 1591.1,1244.2 1590.9,1245.8C1590.8,1247.3 1589.6,1248.6 1587.9,1249.3C1583.4,1251.1 1574.9,1247.9 1575,1245.4C1575.1,1242.9 1583.4,1240 1587.9,1241.9ZM1929,1241.3C1930.8,1242.1 1932.2,1243.6 1932,1245.2C1931.9,1246.7 1930.7,1248 1929,1248.7C1924.5,1250.5 1916,1247.3 1916.1,1244.8C1916.2,1242.3 1924.5,1239.4 1929,1241.3ZM1656.7,1239C1659.1,1239.2 1660,1239.8 1660.1,1240C1661.7,1241.1 1661.7,1243.1 1660.8,1244.3C1659.1,1246.7 1653.5,1247.7 1649.8,1246.2C1647.8,1245.3 1645.9,1243.5 1646.4,1241.9C1647.2,1239.4 1653.2,1238.7 1656.7,1239ZM2340.8,1248.3C2341.8,1248.7 2342.6,1249.6 2342.4,1250.4C2342.4,1251.2 2341.7,1251.9 2340.8,1252.3C2338.3,1253.3 2333.7,1251.5 2333.8,1250.2C2333.9,1248.9 2338.3,1247.3 2340.8,1248.3ZM2358.2,1239.3C2359.9,1239.8 2361.2,1240.9 2361,1242C2360.9,1243 2359.8,1243.9 2358.2,1244.4C2354,1245.6 2346.1,1243.4 2346.2,1241.7C2346.3,1240 2354,1238 2358.2,1239.3ZM2295.3,1243.4C2297.6,1243.6 2298.5,1244.2 2298.7,1244.4C2300.3,1245.5 2300.3,1247.5 2299.4,1248.7C2297.7,1251.1 2292.1,1252.1 2288.4,1250.6C2286.4,1249.7 2284.5,1247.9 2285,1246.3C2285.8,1243.8 2291.8,1243.1 2295.3,1243.4ZM2093.3,1241.9C2096.7,1242.2 2098.1,1243.1 2098.5,1243.4C2100.8,1245.1 2100.8,1247.9 2099.5,1249.8C2097,1253.4 2088.6,1254.9 2083,1252.6C2080,1251.3 2077.1,1248.6 2077.9,1246.2C2079.1,1242.5 2088.1,1241.5 2093.3,1241.9ZM2391.4,1236.9C2395.8,1236.8 2397.6,1237.7 2398,1238C2401.2,1239.7 2401.6,1243.3 2400.3,1245.8C2397.8,1250.7 2387.5,1253.8 2380.2,1251.7C2376.2,1250.5 2372.2,1247.6 2372.8,1244.4C2373.7,1239.6 2384.8,1237.1 2391.4,1236.9ZM1891.1,1243.4C1890.2,1243 1889.4,1242.2 1889.3,1241.3C1889.4,1240.6 1890,1239.8 1890.9,1239.4C1893.3,1238.3 1898,1239.9 1898,1241.2C1898,1242.6 1893.6,1244.3 1891.1,1243.4ZM2052.5,1248.7C2051.5,1248.3 2050.7,1247.5 2050.7,1246.6C2050.8,1245.9 2051.4,1245.1 2052.3,1244.7C2054.7,1243.6 2059.4,1245.2 2059.4,1246.5C2059.4,1247.9 2055,1249.6 2052.5,1248.7ZM2199.2,1238.4C2200.1,1238.7 2200.9,1239.6 2200.8,1240.5C2200.8,1241.3 2200.1,1242 2199.2,1242.4C2196.7,1243.4 2192.1,1241.6 2192.2,1240.3C2192.3,1239 2196.7,1237.4 2199.2,1238.4ZM2326.5,1242.4C2327.4,1242.8 2328.2,1243.6 2328.1,1244.5C2328.1,1245.3 2327.4,1246 2326.5,1246.4C2324,1247.4 2319.4,1245.6 2319.5,1244.3C2319.6,1243 2324,1241.4 2326.5,1242.4ZM2245.5,1243.9C2247.8,1244.1 2248.7,1244.7 2248.9,1244.9C2250.5,1246 2250.5,1248 2249.6,1249.2C2247.9,1251.6 2242.3,1252.6 2238.6,1251.1C2236.6,1250.2 2234.7,1248.4 2235.2,1246.8C2236,1244.3 2242,1243.6 2245.5,1243.9ZM1532.8,1242.5C1531.4,1242 1530.3,1241 1530.4,1240.1C1530.6,1239.3 1531.7,1238.7 1533.2,1238.5C1537.2,1238 1545.8,1238.4 1543.8,1241.8C1543.2,1243 1536.5,1243.9 1532.8,1242.5ZM2170.1,1243C2172.5,1243.2 2173.4,1243.8 2173.5,1244C2175.1,1245.1 2175.1,1247.1 2174.2,1248.3C2172.5,1250.7 2166.9,1251.7 2163.2,1250.2C2161.2,1249.3 2159.3,1247.5 2159.8,1245.9C2160.6,1243.4 2166.6,1242.7 2170.1,1243Z"/> | |
<path | |
android:fillAlpha="0.19" | |
android:fillColor="#FFFFFF" | |
android:fillType="evenOdd" | |
android:pathData="M1579,1002l80,78.1l0,-78.1z" | |
android:strokeWidth="1" | |
android:strokeAlpha="0.19" | |
android:strokeColor="#00000000" /> | |
<path | |
android:fillColor="#A5D6A7" | |
android:fillType="evenOdd" | |
android:pathData="M1310,1118.5C1313.3,1057.8 1342.9,1074.3 1345.3,1084.9C1345.3,1084.9 1335.5,1077.9 1325.7,1086.3C1317.8,1093.1 1310,1118.5 1310,1118.5Z" | |
android:strokeWidth="1.0485" | |
android:strokeColor="#A5D6A7" | |
android:strokeLineCap="round" | |
android:strokeLineJoin="round" /> | |
<path | |
android:fillColor="#34A853" | |
android:fillType="evenOdd" | |
android:pathData="M1308.1,1118.5C1304.7,1062 1273,1075.9 1270.7,1089.1C1270.7,1089.1 1281.9,1082.4 1291.3,1088.4C1300.1,1094.1 1308.1,1118.5 1308.1,1118.5Z" | |
android:strokeWidth="1.0485" | |
android:strokeColor="#34A853" | |
android:strokeLineCap="round" | |
android:strokeLineJoin="round" /> | |
<path | |
android:fillColor="#34A853" | |
android:fillType="evenOdd" | |
android:pathData="M1310,1107.7C1311.7,1042.1 1344.5,1061 1348.4,1067.5C1348.4,1067.5 1338.6,1064 1328.8,1072.4C1321,1079.1 1310,1107.7 1310,1107.7Z" | |
android:strokeWidth="1.0485" | |
android:strokeColor="#34A853" | |
android:strokeLineCap="round" | |
android:strokeLineJoin="round" /> | |
<path | |
android:fillColor="#34A853" | |
android:fillType="evenOdd" | |
android:pathData="M1309.3,1113.5C1297.6,1048.6 1328.4,1045.7 1328.4,1045.7C1328.4,1045.7 1324.8,1056.8 1317,1071.5C1312.2,1080.6 1309.3,1113.5 1309.3,1113.5Z" | |
android:strokeWidth="1.0485" | |
android:strokeColor="#34A853" | |
android:strokeLineCap="round" | |
android:strokeLineJoin="round" /> | |
<path | |
android:fillColor="#A5D6A7" | |
android:fillType="evenOdd" | |
android:pathData="M1306.7,1115.9C1318.4,1051 1283.4,1048.1 1283.4,1048.1C1283.4,1048.1 1293.4,1061.4 1297.9,1073.9C1306.2,1096.8 1306.7,1115.9 1306.7,1115.9Z" | |
android:strokeWidth="1.0485" | |
android:strokeColor="#A5D6A7" | |
android:strokeLineCap="round" | |
android:strokeLineJoin="round" /> | |
<path | |
android:fillColor="#FF3D00" | |
android:fillType="evenOdd" | |
android:pathData="M1319.5,1106.9l-22.5,0l3.1,22.1l16.3,0z"/> | |
<path | |
android:fillColor="#EF9A9A" | |
android:fillType="evenOdd" | |
android:pathData="M1300.1,1129l16.3,0l3.1,-22.1z"/> | |
<path | |
android:fillColor="#EF9A9A" | |
android:fillType="evenOdd" | |
android:pathData="M1294.1,1101.7h28.3v8.4h-28.3z"/> | |
<path | |
android:fillColor="#A5D6A7" | |
android:fillType="evenOdd" | |
android:pathData="M1053,1118.5C1056.3,1057.8 1085.9,1074.3 1088.3,1084.9C1088.3,1084.9 1078.5,1077.9 1068.7,1086.3C1060.8,1093.1 1053,1118.5 1053,1118.5Z" | |
android:strokeWidth="1.0485" | |
android:strokeColor="#A5D6A7" | |
android:strokeLineCap="round" | |
android:strokeLineJoin="round" /> | |
<path | |
android:fillColor="#34A853" | |
android:fillType="evenOdd" | |
android:pathData="M1051.1,1118.5C1047.7,1062 1016,1075.9 1013.7,1089.1C1013.7,1089.1 1024.9,1082.4 1034.3,1088.4C1043.1,1094.1 1051.1,1118.5 1051.1,1118.5Z" | |
android:strokeWidth="1.0485" | |
android:strokeColor="#34A853" | |
android:strokeLineCap="round" | |
android:strokeLineJoin="round" /> | |
<path | |
android:fillColor="#34A853" | |
android:fillType="evenOdd" | |
android:pathData="M1053,1107.7C1054.7,1042.1 1087.5,1061 1091.4,1067.5C1091.4,1067.5 1081.6,1064 1071.8,1072.4C1064,1079.1 1053,1107.7 1053,1107.7Z" | |
android:strokeWidth="1.0485" | |
android:strokeColor="#34A853" | |
android:strokeLineCap="round" | |
android:strokeLineJoin="round" /> | |
<path | |
android:fillColor="#34A853" | |
android:fillType="evenOdd" | |
android:pathData="M1052.3,1113.5C1040.6,1048.6 1071.4,1045.7 1071.4,1045.7C1071.4,1045.7 1067.8,1056.8 1060,1071.5C1055.2,1080.6 1052.3,1113.5 1052.3,1113.5Z" | |
android:strokeWidth="1.0485" | |
android:strokeColor="#34A853" | |
android:strokeLineCap="round" | |
android:strokeLineJoin="round" /> | |
<path | |
android:fillColor="#A5D6A7" | |
android:fillType="evenOdd" | |
android:pathData="M1049.7,1115.9C1061.4,1051 1026.4,1048.1 1026.4,1048.1C1026.4,1048.1 1036.4,1061.4 1040.9,1073.9C1049.2,1096.8 1049.7,1115.9 1049.7,1115.9Z" | |
android:strokeWidth="1.0485" | |
android:strokeColor="#A5D6A7" | |
android:strokeLineCap="round" | |
android:strokeLineJoin="round" /> | |
<path | |
android:fillColor="#FF3D00" | |
android:fillType="evenOdd" | |
android:pathData="M1062.5,1106.9l-22.5,0l3.1,22.1l16.3,0z"/> | |
<path | |
android:fillColor="#EF9A9A" | |
android:fillType="evenOdd" | |
android:pathData="M1043.1,1129l16.3,0l3.1,-22.1z"/> | |
<path | |
android:fillColor="#EF9A9A" | |
android:fillType="evenOdd" | |
android:pathData="M1037.1,1101.7h28.3v8.4h-28.3z"/> | |
<path | |
android:fillColor="#4D4D4D" | |
android:fillType="evenOdd" | |
android:pathData="M2411.5,1208.2C2411.5,1211.7 2407.7,1211.1 2403,1211.1C2398.3,1211.1 2394.5,1211.7 2394.5,1208.2C2394.5,1204.7 2398.3,1201.8 2403,1201.8C2407.7,1201.8 2411.5,1204.7 2411.5,1208.2Z"/> | |
<path | |
android:fillColor="#616161" | |
android:fillType="evenOdd" | |
android:pathData="M2418.5,1211.4C2418.5,1215.3 2415.5,1214.6 2411.7,1214.6C2407.9,1214.6 2404.9,1215.3 2404.9,1211.4C2404.9,1207.5 2407.9,1204.3 2411.7,1204.3C2415.5,1204.3 2418.5,1207.5 2418.5,1211.4Z"/> | |
<path | |
android:fillColor="#424242" | |
android:fillType="evenOdd" | |
android:pathData="M2438,1216.9C2438,1219.7 2434.2,1219.2 2429.6,1219.2C2425,1219.2 2421.2,1219.7 2421.2,1216.9C2421.2,1214.1 2425,1211.8 2429.6,1211.8C2434.2,1211.8 2438,1214.1 2438,1216.9Z"/> | |
<path | |
android:fillColor="#424242" | |
android:fillType="evenOdd" | |
android:pathData="M2306.4,1212.5C2306.4,1215.3 2302.6,1214.8 2298,1214.8C2293.4,1214.8 2289.6,1215.3 2289.6,1212.5C2289.6,1209.7 2293.4,1207.4 2298,1207.4C2302.6,1207.4 2306.4,1209.7 2306.4,1212.5Z"/> | |
<path | |
android:fillColor="#424242" | |
android:fillType="evenOdd" | |
android:pathData="M2397.8,1218.6C2397.8,1219.4 2396.7,1219.3 2395.4,1219.3C2394.1,1219.3 2393,1219.4 2393,1218.6C2393,1217.8 2394.1,1217.1 2395.4,1217.1C2396.7,1217.1 2397.8,1217.8 2397.8,1218.6Z"/> | |
<path | |
android:fillColor="#424242" | |
android:fillType="evenOdd" | |
android:pathData="M2288.4,1215.2C2288.4,1216 2287.3,1215.9 2286,1215.9C2284.7,1215.9 2283.6,1216 2283.6,1215.2C2283.6,1214.4 2284.7,1213.7 2286,1213.7C2287.3,1213.7 2288.4,1214.4 2288.4,1215.2Z"/> | |
<path | |
android:fillColor="#4D4D4D" | |
android:fillType="evenOdd" | |
android:pathData="M2394.9,1207.3C2394.9,1211.6 2390.3,1210.8 2384.7,1210.8C2379.1,1210.8 2374.5,1211.6 2374.5,1207.3C2374.5,1203 2379.1,1199.6 2384.7,1199.6C2390.3,1199.6 2394.9,1203 2394.9,1207.3Z"/> | |
<path | |
android:fillColor="#424242" | |
android:fillType="evenOdd" | |
android:pathData="M2406.7,1211.7C2406.7,1216.3 2402.6,1215.5 2397.5,1215.5C2392.4,1215.5 2388.3,1216.3 2388.3,1211.7C2388.3,1207.1 2392.4,1203.3 2397.5,1203.3C2402.6,1203.3 2406.7,1207 2406.7,1211.7Z"/> | |
<path | |
android:fillColor="#424242" | |
android:fillType="evenOdd" | |
android:pathData="M2381.8,1212.8C2381.8,1216.3 2377.1,1215.7 2371.4,1215.7C2365.7,1215.7 2361,1216.3 2361,1212.8C2361,1209.3 2365.7,1206.5 2371.4,1206.5C2377.1,1206.5 2381.8,1209.3 2381.8,1212.8Z"/> | |
<path | |
android:fillColor="#616161" | |
android:fillType="evenOdd" | |
android:pathData="M2392.7,1215.4C2392.7,1220.7 2388.6,1219.8 2383.5,1219.8C2378.4,1219.8 2374.3,1220.7 2374.3,1215.4C2374.3,1210.1 2378.4,1205.8 2383.5,1205.8C2388.6,1205.8 2392.7,1210.1 2392.7,1215.4Z"/> | |
<path | |
android:fillColor="#4D4D4D" | |
android:fillType="evenOdd" | |
android:pathData="M50.5,1211.2C50.5,1214.7 46.7,1214.1 42,1214.1C37.3,1214.1 33.5,1214.7 33.5,1211.2C33.5,1207.7 37.3,1204.8 42,1204.8C46.7,1204.8 50.5,1207.7 50.5,1211.2Z"/> | |
<path | |
android:fillColor="#616161" | |
android:fillType="evenOdd" | |
android:pathData="M57.5,1214.4C57.5,1218.3 54.5,1217.6 50.7,1217.6C47,1217.6 43.9,1218.3 43.9,1214.4C43.9,1210.5 46.9,1207.3 50.7,1207.3C54.4,1207.3 57.5,1210.5 57.5,1214.4Z"/> | |
<path | |
android:fillColor="#424242" | |
android:fillType="evenOdd" | |
android:pathData="M77,1219.9C77,1222.7 73.2,1222.2 68.6,1222.2C64,1222.2 60.2,1222.7 60.2,1219.9C60.2,1217.1 64,1214.8 68.6,1214.8C73.2,1214.8 77,1217.1 77,1219.9Z"/> | |
<path | |
android:fillColor="#424242" | |
android:fillType="evenOdd" | |
android:pathData="M36.8,1221.6C36.8,1222.4 35.7,1222.3 34.4,1222.3C33.1,1222.3 32,1222.4 32,1221.6C32,1220.8 33.1,1220.1 34.4,1220.1C35.8,1220.1 36.8,1220.8 36.8,1221.6Z"/> | |
<path | |
android:fillColor="#4D4D4D" | |
android:fillType="evenOdd" | |
android:pathData="M33.9,1210.3C33.9,1214.6 29.3,1213.8 23.7,1213.8C18.1,1213.8 13.5,1214.6 13.5,1210.3C13.5,1206 18.1,1202.6 23.7,1202.6C29.3,1202.6 33.9,1206 33.9,1210.3Z"/> | |
<path | |
android:fillColor="#424242" | |
android:fillType="evenOdd" | |
android:pathData="M45.7,1214.7C45.7,1219.3 41.6,1218.5 36.5,1218.5C31.4,1218.5 27.3,1219.3 27.3,1214.7C27.3,1210.1 31.4,1206.3 36.5,1206.3C41.6,1206.3 45.7,1210 45.7,1214.7Z"/> | |
<path | |
android:fillColor="#424242" | |
android:fillType="evenOdd" | |
android:pathData="M20.8,1215.8C20.8,1219.3 16.1,1218.7 10.4,1218.7C4.7,1218.7 0,1219.3 0,1215.8C0,1212.3 4.7,1209.5 10.4,1209.5C16.1,1209.5 20.8,1212.3 20.8,1215.8Z"/> | |
<path | |
android:fillColor="#616161" | |
android:fillType="evenOdd" | |
android:pathData="M31.7,1218.4C31.7,1223.7 27.6,1222.8 22.5,1222.8C17.4,1222.8 13.3,1223.7 13.3,1218.4C13.3,1213.1 17.4,1208.8 22.5,1208.8C27.6,1208.8 31.7,1213.1 31.7,1218.4Z"/> | |
<path | |
android:name="stars" | |
android:fillColor="#FFFFFF" | |
android:fillType="evenOdd" | |
android:pathData="M422.1,297l5.9,-13l13,-5.9l-13,-5.9l-5.9,-13l-5.9,13l-13,5.9l13,5.9zZ M200.1,538l5.9,-13l13,-5.9l-13,-5.9l-5.9,-13l-5.9,13l-13,5.9l13,5.9zZ M546.1,404l5.9,-13l13,-5.9l-13,-5.9l-5.9,-13l-5.9,13l-13,5.9l13,5.9zZ M1165.1,365l5.9,-13l13,-5.9l-13,-5.9l-5.9,-13l-5.9,13l-13,5.9l13,5.9zZ M128,460m-5,0a5,5 0,1 1,10 0a5,5 0,1 1,-10 0Z M815,449m-5,0a5,5 0,1 1,10 0a5,5 0,1 1,-10 0Z M1005,184m-5,0a5,5 0,1 1,10 0a5,5 0,1 1,-10 0Z "/> | |
<path | |
android:fillColor="#424242" | |
android:fillType="evenOdd" | |
android:pathData="M493,767h1671v117h-1671z"/> | |
<path | |
android:fillColor="#CFD8DC" | |
android:fillType="evenOdd" | |
android:pathData="M489,884h1671v118h-1671z"/> | |
<path | |
android:fillColor="#CFD8DC" | |
android:fillType="evenOdd" | |
android:pathData="M493,717h1671v80h-1671z"/> | |
<path | |
android:fillColor="#00000000" | |
android:fillType="evenOdd" | |
android:pathData="M489,838L775,838" | |
android:strokeWidth="10" | |
android:strokeColor="#FFFFFF" /> | |
<path | |
android:fillColor="#ECEFF1" | |
android:fillType="evenOdd" | |
android:pathData="M452,685h49v199h-49z"/> | |
<path | |
android:fillColor="#C46035" | |
android:fillType="evenOdd" | |
android:pathData="M291,884h339v311h-339z"/> | |
<path | |
android:fillColor="#AF4925" | |
android:fillType="evenOdd" | |
android:pathData="M291,890.3l339,339.7l0,-340z"/> | |
<path | |
android:fillColor="#80DEEA" | |
android:fillType="evenOdd" | |
android:pathData="M305,1065h140v130h-140z"/> | |
<path | |
android:fillColor="#00000000" | |
android:fillType="evenOdd" | |
android:pathData="M322.9,1083.7h52.1v105h-52.1z" | |
android:strokeWidth="4" | |
android:strokeColor="#FFFFFF" /> | |
<path | |
android:fillColor="#00000000" | |
android:fillType="evenOdd" | |
android:pathData="M375,1083.7h52.1v105h-52.1z" | |
android:strokeWidth="4" | |
android:strokeColor="#FFFFFF" /> | |
<path | |
android:fillAlpha="0.38" | |
android:fillColor="#FFFFFF" | |
android:fillType="evenOdd" | |
android:pathData="M425,1190.9l0,-34l-51.3,-70.9l-24.6,0z" | |
android:strokeWidth="1" | |
android:strokeAlpha="0.38" | |
android:strokeColor="#00000000" /> | |
<path | |
android:fillAlpha="0.38" | |
android:fillColor="#FFFFFF" | |
android:fillType="evenOdd" | |
android:pathData="M386.1,1084l39.9,54l0,-54z" | |
android:strokeWidth="1" | |
android:strokeAlpha="0.38" | |
android:strokeColor="#00000000" /> | |
<path | |
android:fillColor="#E4594E" | |
android:fillType="evenOdd" | |
android:pathData="M1973,1097L555.6,1097C553.2,1097 551.2,1099 551.2,1101.4L551.2,1224.5C551.2,1226.9 553.2,1228.9 555.6,1228.9L1973,1228.9C1975.4,1228.9 1977.4,1226.9 1977.4,1224.5L1977.4,1101.4C1977.5,1099 1975.5,1097 1973,1097Z"/> | |
<path | |
android:fillColor="#FFFFFF" | |
android:fillType="evenOdd" | |
android:pathData="M721.3,1188.6C716.2,1185.7 712.2,1181.7 709.3,1176.7C706.4,1171.7 704.9,1166.1 704.9,1159.9C704.9,1153.8 706.4,1148.2 709.3,1143.1C712.2,1138 716.2,1134.1 721.3,1131.2C726.4,1128.3 732,1126.8 738.1,1126.8C747.7,1126.8 755.6,1130.3 761.8,1137.2L753.4,1145.3C749.2,1140.5 744.1,1138.1 738.2,1138.1C734.2,1138.1 730.6,1139 727.4,1140.8C724.2,1142.6 721.6,1145.2 719.7,1148.5C717.8,1151.8 716.9,1155.6 716.9,1159.9C716.9,1164.2 717.8,1168 719.7,1171.3C721.6,1174.6 724.2,1177.2 727.4,1179C730.6,1180.8 734.2,1181.7 738.2,1181.7C744.8,1181.7 750.4,1178.9 754.8,1173.4L763.4,1181.5C760.2,1185.3 756.5,1188.2 752.2,1190.1C748,1192.1 743.2,1193.1 738,1193.1C731.9,1193 726.3,1191.6 721.3,1188.6Z"/> | |
<path | |
android:fillColor="#FFFFFF" | |
android:fillType="nonZero" | |
android:pathData="M779.6,1190C776.1,1188 773.3,1185.2 771.3,1181.6C769.3,1178 768.3,1174 768.3,1169.6C768.3,1165.1 769.3,1161.1 771.3,1157.6C773.3,1154.1 776.1,1151.3 779.6,1149.3C783.1,1147.3 787.2,1146.3 791.6,1146.3C796,1146.3 800,1147.3 803.5,1149.3C807,1151.3 809.8,1154.1 811.8,1157.7C813.8,1161.3 814.8,1165.3 814.8,1169.7C814.8,1174.1 813.8,1178.1 811.8,1181.7C809.8,1185.3 807,1188.1 803.5,1190.1C800,1192.1 796,1193.1 791.6,1193.1C787.1,1193 783.1,1192 779.6,1190ZM797.4,1180.8C799.2,1179.8 800.6,1178.3 801.7,1176.4C802.8,1174.5 803.3,1172.3 803.3,1169.7C803.3,1167.2 802.8,1164.9 801.7,1163C800.6,1161.1 799.2,1159.6 797.4,1158.6C795.6,1157.6 793.7,1157.1 791.6,1157.1C789.5,1157.1 787.5,1157.6 785.7,1158.6C783.9,1159.6 782.5,1161.1 781.4,1163C780.3,1164.9 779.8,1167.1 779.8,1169.7C779.8,1172.2 780.3,1174.5 781.4,1176.4C782.5,1178.3 783.9,1179.8 785.7,1180.8C787.5,1181.8 789.5,1182.3 791.6,1182.3C793.7,1182.3 795.6,1181.8 797.4,1180.8Z"/> | |
<path | |
android:fillColor="#FFFFFF" | |
android:fillType="evenOdd" | |
android:pathData="M822.5,1147.7L833.4,1147.7L833.4,1153.4L834.1,1153.4C835.5,1151.2 837.3,1149.5 839.7,1148.2C842.1,1146.9 844.7,1146.3 847.5,1146.3C850.7,1146.3 853.4,1147 855.8,1148.5C858.1,1150 859.8,1151.9 860.8,1154.3C862.3,1151.9 864.3,1150 866.8,1148.5C869.3,1147 872.3,1146.3 875.6,1146.3C880.7,1146.3 884.6,1147.9 887.2,1151C889.8,1154.2 891.1,1158.4 891.1,1163.7L891.1,1191.6L879.6,1191.6L879.6,1165.8C879.6,1162.9 879,1160.7 877.7,1159.2C876.4,1157.7 874.6,1156.9 872.3,1156.9C869.3,1156.9 866.9,1158.1 865.2,1160.5C863.5,1162.9 862.6,1166 862.6,1169.9L862.6,1191.5L851,1191.5L851,1165.7C851,1159.8 848.4,1156.9 843.2,1156.9C840.4,1156.9 838.1,1158.1 836.5,1160.5C834.8,1162.9 834,1166 834,1169.9L834,1191.5L822.4,1191.5L822.4,1147.7L822.5,1147.7Z"/> | |
<path | |
android:fillColor="#FFFFFF" | |
android:fillType="nonZero" | |
android:pathData="M901.4,1147.7L912.3,1147.7L912.3,1152.9L913,1152.9C914.1,1151 915.8,1149.4 918.2,1148.2C920.5,1146.9 923.3,1146.3 926.4,1146.3C930.2,1146.3 933.8,1147.3 937,1149.3C940.2,1151.3 942.8,1154.1 944.7,1157.6C946.6,1161.1 947.5,1165.2 947.5,1169.6C947.5,1174.1 946.6,1178.1 944.7,1181.6C942.8,1185.1 940.3,1187.9 937,1189.9C933.8,1191.9 930.3,1192.9 926.4,1192.9C923.3,1192.9 920.5,1192.3 918.2,1191C915.9,1189.7 914.1,1188.1 913,1186.2L912.3,1186.2L913,1192.5L913,1210.6L901.4,1210.6L901.4,1147.7ZM929.9,1180.7C931.7,1179.6 933.2,1178.1 934.3,1176.2C935.4,1174.3 935.9,1172.1 935.9,1169.6C935.9,1167.1 935.4,1164.8 934.3,1162.9C933.2,1161 931.7,1159.5 929.9,1158.5C928.1,1157.5 926.1,1157 924.1,1157C922,1157 920.1,1157.5 918.3,1158.5C916.5,1159.5 915.1,1161 914,1162.9C912.9,1164.8 912.4,1167 912.4,1169.6C912.4,1172.1 912.9,1174.4 914,1176.3C915.1,1178.2 916.5,1179.7 918.3,1180.7C920.1,1181.7 922,1182.2 924.1,1182.2C926.2,1182.3 928.1,1181.8 929.9,1180.7Z"/> | |
<path | |
android:fillColor="#FFFFFF" | |
android:fillType="evenOdd" | |
android:pathData="M959.3,1188.1C956.5,1184.8 955.1,1180.2 955.1,1174.4L955.1,1147.8L966.7,1147.8L966.7,1173C966.7,1176 967.4,1178.3 968.8,1179.9C970.2,1181.5 972.2,1182.3 974.8,1182.3C977.9,1182.3 980.4,1181.1 982.2,1178.7C984,1176.3 984.9,1173.2 984.9,1169.5L984.9,1147.7L996.5,1147.7L996.5,1191.6L985.6,1191.6L985.6,1185.9L984.9,1185.9C983.5,1188.1 981.6,1189.8 979.2,1191.1C976.8,1192.4 974.2,1193 971.3,1193C966.2,1193 962.1,1191.4 959.3,1188.1Z"/> | |
<path | |
android:fillColor="#FFFFFF" | |
android:fillType="evenOdd" | |
android:pathData="M1021.3,1192C1019.5,1191.3 1018,1190.4 1016.8,1189.1C1014,1186.4 1012.6,1182.5 1012.6,1177.5L1012.6,1157.5L1005,1157.5L1005,1147.6L1012.7,1147.6L1012.7,1134.5L1024.3,1134.5L1024.3,1147.6L1035.1,1147.6L1035.1,1157.5L1024.3,1157.5L1024.3,1175.5C1024.3,1177.9 1024.8,1179.6 1025.8,1180.6C1026.6,1181.6 1028,1182.1 1029.9,1182.1C1030.9,1182.1 1031.8,1182 1032.6,1181.7C1033.4,1181.4 1034.3,1181 1035.3,1180.4L1035.3,1191.6C1032.8,1192.5 1030.2,1193 1027.3,1193C1025.1,1193 1023.1,1192.7 1021.3,1192Z"/> | |
<path | |
android:fillColor="#FFFFFF" | |
android:fillType="nonZero" | |
android:pathData="M1051.6,1190C1048.1,1188 1045.3,1185.2 1043.3,1181.6C1041.3,1178 1040.3,1174 1040.3,1169.6C1040.3,1165.4 1041.3,1161.5 1043.3,1158C1045.3,1154.4 1048,1151.6 1051.4,1149.5C1054.9,1147.4 1058.7,1146.3 1063,1146.3C1067.6,1146.3 1071.5,1147.3 1074.8,1149.3C1078.1,1151.3 1080.6,1154 1082.3,1157.4C1084,1160.8 1084.9,1164.7 1084.9,1169.1C1084.9,1169.9 1084.9,1170.6 1084.8,1171.2C1084.7,1171.9 1084.7,1172.3 1084.7,1172.4L1051.7,1172.4C1052.2,1175.8 1053.5,1178.3 1055.8,1180.1C1058.1,1181.9 1060.7,1182.8 1063.6,1182.8C1068.4,1182.8 1072.1,1180.7 1074.6,1176.4L1084.2,1181.1C1082.1,1184.9 1079.3,1187.8 1075.8,1189.9C1072.3,1192 1068.2,1193 1063.5,1193C1059,1193 1055.1,1192 1051.6,1190ZM1073.7,1164.1C1073.6,1162.9 1073.1,1161.6 1072.2,1160.3C1071.3,1159 1070.1,1157.9 1068.6,1157.1C1067,1156.2 1065.2,1155.8 1063,1155.8C1060.5,1155.8 1058.2,1156.6 1056.3,1158.1C1054.4,1159.6 1053,1161.6 1052.2,1164.2L1073.7,1164.2L1073.7,1164.1Z"/> | |
<path | |
android:fillColor="#FFFFFF" | |
android:fillType="evenOdd" | |
android:pathData="M1093.4,1147.7L1104.3,1147.7L1104.3,1153.7L1105,1153.7C1106.1,1151.6 1107.8,1149.8 1110.1,1148.4C1112.4,1147 1114.9,1146.3 1117.6,1146.3C1119.6,1146.3 1121.4,1146.7 1123.1,1147.4L1123.1,1158.9C1120.6,1157.8 1118.1,1157.3 1115.8,1157.3C1112.6,1157.3 1110,1158.5 1108,1160.9C1106.1,1163.3 1105.1,1166.3 1105.1,1170L1105.1,1191.6L1093.5,1191.6L1093.5,1147.7L1093.4,1147.7Z"/> | |
<path | |
android:fillColor="#FFFFFF" | |
android:fillType="evenOdd" | |
android:pathData="M1152.2,1128.2l11.9,0l0,25.3l26.7,0l0,-25.3l11.9,0l0,63.4l-11.9,0l0,-26.7l-26.7,0l0,26.7l-11.9,0z"/> | |
<path | |
android:fillColor="#FFFFFF" | |
android:fillType="nonZero" | |
android:pathData="M1216.4,1140.3C1215,1138.8 1214.2,1137.1 1214.2,1135C1214.2,1132.9 1214.9,1131.2 1216.4,1129.7C1217.9,1128.3 1219.6,1127.5 1221.6,1127.5C1223.7,1127.5 1225.4,1128.2 1226.9,1129.7C1228.4,1131.1 1229.1,1132.9 1229.1,1135C1229.1,1137.1 1228.4,1138.8 1226.9,1140.3C1225.4,1141.8 1223.7,1142.5 1221.6,1142.5C1219.6,1142.5 1217.9,1141.8 1216.4,1140.3ZM1215.9,1147.7L1227.5,1147.7L1227.5,1191.6L1215.9,1191.6L1215.9,1147.7Z"/> | |
<path | |
android:fillColor="#FFFFFF" | |
android:fillType="evenOdd" | |
android:pathData="M1243.1,1189.5C1239.8,1187.2 1237.4,1184.2 1236,1180.7L1246.4,1176.3C1247.3,1178.5 1248.7,1180.1 1250.3,1181.2C1252,1182.3 1253.9,1182.8 1256.2,1182.8C1258.2,1182.8 1259.9,1182.4 1261.2,1181.7C1262.5,1181 1263.1,1180 1263.1,1178.7C1263.1,1177.5 1262.6,1176.5 1261.5,1175.7C1260.4,1175 1258.6,1174.3 1256.1,1173.7L1250.3,1172.4C1247,1171.7 1244.1,1170.2 1241.6,1168C1239.1,1165.8 1237.9,1163 1237.9,1159.6C1237.9,1155.5 1239.6,1152.3 1242.9,1149.8C1246.3,1147.4 1250.5,1146.1 1255.6,1146.1C1260,1146.1 1263.7,1146.9 1266.9,1148.6C1270.1,1150.3 1272.4,1152.8 1273.9,1156.1L1264,1160.3C1263.2,1158.6 1262,1157.4 1260.5,1156.6C1259,1155.8 1257.4,1155.4 1255.6,1155.4C1253.8,1155.4 1252.3,1155.7 1251.1,1156.4C1249.9,1157.1 1249.3,1158 1249.3,1159.1C1249.3,1160.2 1249.8,1161 1250.8,1161.6C1251.8,1162.2 1253.2,1162.8 1255.1,1163.2L1261.7,1164.9C1266.1,1166 1269.4,1167.6 1271.6,1169.9C1273.8,1172.2 1275,1175 1275,1178.2C1275,1180.9 1274.2,1183.3 1272.6,1185.5C1271,1187.7 1268.8,1189.4 1265.9,1190.7C1263,1192 1259.8,1192.6 1256.3,1192.6C1250.8,1193 1246.5,1191.9 1243.1,1189.5Z"/> | |
<path | |
android:fillColor="#FFFFFF" | |
android:fillType="evenOdd" | |
android:pathData="M1295.8,1192C1294,1191.3 1292.5,1190.4 1291.3,1189.1C1288.5,1186.4 1287.1,1182.5 1287.1,1177.5L1287.1,1157.5L1279.4,1157.5L1279.4,1147.6L1287.1,1147.6L1287.1,1134.5L1298.7,1134.5L1298.7,1147.6L1309.5,1147.6L1309.5,1157.5L1298.7,1157.5L1298.7,1175.5C1298.7,1177.9 1299.2,1179.6 1300.2,1180.6C1301,1181.6 1302.4,1182.1 1304.3,1182.1C1305.3,1182.1 1306.2,1182 1307,1181.7C1307.8,1181.4 1308.7,1181 1309.7,1180.4L1309.7,1191.6C1307.2,1192.5 1304.6,1193 1301.7,1193C1299.5,1193 1297.5,1192.7 1295.8,1192Z"/> | |
<path | |
android:fillColor="#FFFFFF" | |
android:fillType="nonZero" | |
android:pathData="M1326,1190C1322.5,1188 1319.7,1185.2 1317.7,1181.6C1315.7,1178 1314.7,1174 1314.7,1169.6C1314.7,1165.1 1315.7,1161.1 1317.7,1157.6C1319.7,1154.1 1322.5,1151.3 1326,1149.3C1329.5,1147.3 1333.6,1146.3 1338,1146.3C1342.4,1146.3 1346.4,1147.3 1349.9,1149.3C1353.4,1151.3 1356.2,1154.1 1358.2,1157.7C1360.2,1161.3 1361.2,1165.3 1361.2,1169.7C1361.2,1174.1 1360.2,1178.1 1358.2,1181.7C1356.2,1185.3 1353.4,1188.1 1349.9,1190.1C1346.4,1192.1 1342.4,1193.1 1338,1193.1C1333.6,1193 1329.6,1192 1326,1190ZM1343.8,1180.8C1345.6,1179.8 1347,1178.3 1348.1,1176.4C1349.2,1174.5 1349.7,1172.3 1349.7,1169.7C1349.7,1167.2 1349.2,1164.9 1348.1,1163C1347,1161.1 1345.6,1159.6 1343.8,1158.6C1342,1157.6 1340.1,1157.1 1338,1157.1C1335.9,1157.1 1333.9,1157.6 1332.1,1158.6C1330.3,1159.6 1328.9,1161.1 1327.8,1163C1326.7,1164.9 1326.2,1167.1 1326.2,1169.7C1326.2,1172.2 1326.7,1174.5 1327.8,1176.4C1328.9,1178.3 1330.3,1179.8 1332.1,1180.8C1333.9,1181.8 1335.9,1182.3 1338,1182.3C1340.1,1182.3 1342,1181.8 1343.8,1180.8Z"/> | |
<path | |
android:fillColor="#FFFFFF" | |
android:fillType="evenOdd" | |
android:pathData="M1368.9,1147.7L1379.8,1147.7L1379.8,1153.7L1380.5,1153.7C1381.6,1151.6 1383.3,1149.8 1385.6,1148.4C1387.9,1147 1390.4,1146.3 1393.1,1146.3C1395.1,1146.3 1396.9,1146.7 1398.6,1147.4L1398.6,1158.9C1396.1,1157.8 1393.6,1157.3 1391.3,1157.3C1388.1,1157.3 1385.5,1158.5 1383.5,1160.9C1381.6,1163.3 1380.6,1166.3 1380.6,1170L1380.6,1191.6L1369,1191.6L1369,1147.7L1368.9,1147.7Z"/> | |
<path | |
android:fillColor="#FFFFFF" | |
android:fillType="evenOdd" | |
android:pathData="M1421.5,1189.5l-18.5,-41.8l13.2,0l11.1,26.8l0.7,0l10.7,-26.8l13,0l-27.4,63l-12.5,0z"/> | |
<path | |
android:fillColor="#FFFFFF" | |
android:fillType="evenOdd" | |
android:pathData="M1479.7,1128.2l15.4,0l16.8,44.5l0.7,0l16.9,-44.5l15.4,0l0,63.4l-11.9,0l0,-31.2l0.7,-10.5l-0.7,0l-16.1,41.8l-9.3,0l-16.2,-41.8l-0.7,0l0.7,10.5l0,31.2l-11.8,0l0,-63.4z"/> | |
<path | |
android:fillColor="#FFFFFF" | |
android:fillType="evenOdd" | |
android:pathData="M1560.3,1188.1C1557.5,1184.8 1556.1,1180.2 1556.1,1174.4L1556.1,1147.8L1567.7,1147.8L1567.7,1173C1567.7,1176 1568.4,1178.3 1569.8,1179.9C1571.2,1181.5 1573.2,1182.3 1575.8,1182.3C1578.9,1182.3 1581.4,1181.1 1583.2,1178.7C1585,1176.3 1585.9,1173.2 1585.9,1169.5L1585.9,1147.7L1597.5,1147.7L1597.5,1191.6L1586.6,1191.6L1586.6,1185.9L1585.9,1185.9C1584.5,1188.1 1582.6,1189.8 1580.2,1191.1C1577.8,1192.4 1575.2,1193 1572.3,1193C1567.2,1193 1563.1,1191.4 1560.3,1188.1Z"/> | |
<path | |
android:fillColor="#FFFFFF" | |
android:fillType="evenOdd" | |
android:pathData="M1612.1,1189.5C1608.8,1187.2 1606.4,1184.2 1605,1180.7L1615.4,1176.3C1616.3,1178.5 1617.7,1180.1 1619.3,1181.2C1621,1182.3 1622.9,1182.8 1625.2,1182.8C1627.2,1182.8 1628.9,1182.4 1630.2,1181.7C1631.5,1181 1632.1,1180 1632.1,1178.7C1632.1,1177.5 1631.6,1176.5 1630.5,1175.7C1629.4,1175 1627.6,1174.3 1625.1,1173.7L1619.3,1172.4C1616,1171.7 1613.1,1170.2 1610.6,1168C1608.1,1165.8 1606.9,1163 1606.9,1159.6C1606.9,1155.5 1608.6,1152.3 1611.9,1149.8C1615.3,1147.4 1619.5,1146.1 1624.6,1146.1C1629,1146.1 1632.7,1146.9 1635.9,1148.6C1639.1,1150.3 1641.4,1152.8 1642.9,1156.1L1633,1160.3C1632.2,1158.6 1631,1157.4 1629.5,1156.6C1628,1155.8 1626.4,1155.4 1624.6,1155.4C1622.8,1155.4 1621.3,1155.7 1620.1,1156.4C1618.9,1157.1 1618.3,1158 1618.3,1159.1C1618.3,1160.2 1618.8,1161 1619.8,1161.6C1620.8,1162.2 1622.2,1162.8 1624.1,1163.2L1630.7,1164.9C1635.1,1166 1638.4,1167.6 1640.6,1169.9C1642.8,1172.2 1644,1175 1644,1178.2C1644,1180.9 1643.2,1183.3 1641.6,1185.5C1640,1187.7 1637.8,1189.4 1634.9,1190.7C1632,1192 1628.8,1192.6 1625.3,1192.6C1619.8,1193 1615.5,1191.9 1612.1,1189.5Z"/> | |
<path | |
android:fillColor="#FFFFFF" | |
android:fillType="nonZero" | |
android:pathData="M1661.2,1190C1657.7,1188 1654.9,1185.2 1652.9,1181.6C1650.9,1178 1649.9,1174 1649.9,1169.6C1649.9,1165.4 1650.9,1161.5 1652.9,1158C1654.9,1154.4 1657.6,1151.6 1661,1149.5C1664.5,1147.4 1668.3,1146.3 1672.6,1146.3C1677.2,1146.3 1681.1,1147.3 1684.4,1149.3C1687.7,1151.3 1690.2,1154 1691.9,1157.4C1693.6,1160.8 1694.5,1164.7 1694.5,1169.1C1694.5,1169.9 1694.5,1170.6 1694.4,1171.2C1694.3,1171.9 1694.3,1172.3 1694.3,1172.4L1661.3,1172.4C1661.8,1175.8 1663.1,1178.3 1665.4,1180.1C1667.7,1181.9 1670.3,1182.8 1673.2,1182.8C1678,1182.8 1681.7,1180.7 1684.2,1176.4L1693.8,1181.1C1691.7,1184.9 1688.9,1187.8 1685.4,1189.9C1681.9,1192 1677.8,1193 1673.1,1193C1668.6,1193 1664.7,1192 1661.2,1190ZM1683.3,1164.1C1683.2,1162.9 1682.7,1161.6 1681.8,1160.3C1680.9,1159 1679.7,1157.9 1678.2,1157.1C1676.6,1156.2 1674.8,1155.8 1672.6,1155.8C1670.1,1155.8 1667.8,1156.6 1665.9,1158.1C1664,1159.6 1662.6,1161.6 1661.8,1164.2L1683.3,1164.2L1683.3,1164.1Z"/> | |
<path | |
android:fillColor="#FFFFFF" | |
android:fillType="evenOdd" | |
android:pathData="M1706.8,1188.1C1704,1184.8 1702.6,1180.2 1702.6,1174.4L1702.6,1147.8L1714.2,1147.8L1714.2,1173C1714.2,1176 1714.9,1178.3 1716.3,1179.9C1717.7,1181.5 1719.7,1182.3 1722.3,1182.3C1725.4,1182.3 1727.9,1181.1 1729.7,1178.7C1731.5,1176.3 1732.4,1173.2 1732.4,1169.5L1732.4,1147.7L1744,1147.7L1744,1191.6L1733.1,1191.6L1733.1,1185.9L1732.4,1185.9C1731,1188.1 1729.1,1189.8 1726.7,1191.1C1724.3,1192.4 1721.7,1193 1718.8,1193C1713.6,1193 1709.6,1191.4 1706.8,1188.1Z"/> | |
<path | |
android:fillColor="#FFFFFF" | |
android:fillType="evenOdd" | |
android:pathData="M1755.1,1147.7L1766,1147.7L1766,1153.4L1766.7,1153.4C1768.1,1151.2 1769.9,1149.5 1772.3,1148.2C1774.7,1146.9 1777.3,1146.3 1780.1,1146.3C1783.3,1146.3 1786,1147 1788.4,1148.5C1790.7,1150 1792.4,1151.9 1793.4,1154.3C1794.9,1151.9 1796.9,1150 1799.4,1148.5C1801.9,1147 1804.9,1146.3 1808.2,1146.3C1813.3,1146.3 1817.2,1147.9 1819.8,1151C1822.4,1154.2 1823.7,1158.4 1823.7,1163.7L1823.7,1191.6L1812.2,1191.6L1812.2,1165.8C1812.2,1162.9 1811.6,1160.7 1810.3,1159.2C1809,1157.7 1807.2,1156.9 1804.9,1156.9C1801.9,1156.9 1799.5,1158.1 1797.8,1160.5C1796.1,1162.9 1795.2,1166 1795.2,1169.9L1795.2,1191.5L1783.6,1191.5L1783.6,1165.7C1783.6,1159.8 1781,1156.9 1775.8,1156.9C1773,1156.9 1770.7,1158.1 1769.1,1160.5C1767.4,1162.9 1766.6,1166 1766.6,1169.9L1766.6,1191.5L1755,1191.5L1755,1147.7L1755.1,1147.7Z"/> | |
<path | |
android:fillColor="#AF4925" | |
android:fillType="evenOdd" | |
android:pathData="M331.7,983.6h24.3v8h-24.3z"/> | |
<path | |
android:fillColor="#AF4925" | |
android:fillType="evenOdd" | |
android:pathData="M343.7,991.6h24.3v8h-24.3z"/> | |
<path | |
android:fillColor="#AF4925" | |
android:fillType="evenOdd" | |
android:pathData="M468.7,1131.6h24.3v8h-24.3z"/> | |
<path | |
android:fillColor="#C46035" | |
android:fillType="evenOdd" | |
android:pathData="M545.7,938.6h24.3v8h-24.3z"/> | |
<path | |
android:fillColor="#C46035" | |
android:fillType="evenOdd" | |
android:pathData="M488.7,991.6h24.3v8h-24.3z"/> | |
<path | |
android:fillColor="#C46035" | |
android:fillType="evenOdd" | |
android:pathData="M533.7,930.6h24.3v8h-24.3z"/> | |
<path | |
android:fillColor="#C46035" | |
android:fillType="evenOdd" | |
android:pathData="M545.7,1056.6h24.3v8h-24.3z"/> | |
<path | |
android:fillColor="#C46035" | |
android:fillType="evenOdd" | |
android:pathData="M388.7,930.6h24.3v8h-24.3z"/> | |
<path | |
android:fillColor="#00000000" | |
android:fillType="evenOdd" | |
android:pathData="M582,784L582,885" | |
android:strokeWidth="4" | |
android:strokeColor="#FFFFFF" /> | |
<path | |
android:fillColor="#FFFFFF" | |
android:fillType="evenOdd" | |
android:pathData="M291,878h339v26h-339z"/> | |
<path | |
android:fillColor="#78909C" | |
android:fillType="evenOdd" | |
android:pathData="M1900,1002l29.1,29.1l0,-29.1z"/> | |
<path | |
android:fillColor="#78909C" | |
android:fillType="evenOdd" | |
android:pathData="M1658.9,1002l29.1,29.1l0,-29.1z"/> | |
<path | |
android:fillColor="#78909C" | |
android:fillType="evenOdd" | |
android:pathData="M1417.9,1002l29.1,29.1l0,-29.1z"/> | |
<path | |
android:fillColor="#BDBDBD" | |
android:fillType="evenOdd" | |
android:pathData="M935.9,1002l29.1,29.1l0,-29.1z"/> | |
<path | |
android:fillColor="#BDBDBD" | |
android:fillType="evenOdd" | |
android:pathData="M694.9,1002l29.1,29.1l0,-29.1z"/> | |
<path | |
android:fillAlpha="0.19" | |
android:fillColor="#FFFFFF" | |
android:fillType="evenOdd" | |
android:pathData="M724.5,1001.9l95.1,95.1l33.3,0l-94.9,-95z" | |
android:strokeWidth="1" | |
android:strokeAlpha="0.19" | |
android:strokeColor="#00000000" /> | |
<path | |
android:fillAlpha="0.19" | |
android:fillColor="#FFFFFF" | |
android:fillType="evenOdd" | |
android:pathData="M1289.5,1001.9l95.1,95.1l33.3,0l-94.9,-95z" | |
android:strokeWidth="1" | |
android:strokeAlpha="0.19" | |
android:strokeColor="#00000000" /> | |
<path | |
android:fillAlpha="0.19" | |
android:fillColor="#FFFFFF" | |
android:fillType="evenOdd" | |
android:pathData="M962.5,797.9l85.6,85.6l29.9,0l-85.4,-85.5z" | |
android:strokeWidth="1" | |
android:strokeAlpha="0.19" | |
android:strokeColor="#00000000" /> | |
<path | |
android:fillAlpha="0.19" | |
android:fillColor="#FFFFFF" | |
android:fillType="evenOdd" | |
android:pathData="M581.5,797.9l85.6,85.6l29.9,0l-85.4,-85.5z" | |
android:strokeWidth="1" | |
android:strokeAlpha="0.19" | |
android:strokeColor="#00000000" /> | |
<path | |
android:fillAlpha="0.19" | |
android:fillColor="#FFFFFF" | |
android:fillType="evenOdd" | |
android:pathData="M1264.5,796.9l85.6,85.6l29.9,0l-85.4,-85.5z" | |
android:strokeWidth="1" | |
android:strokeAlpha="0.19" | |
android:strokeColor="#00000000" /> | |
<path | |
android:fillAlpha="0.19" | |
android:fillColor="#FFFFFF" | |
android:fillType="evenOdd" | |
android:pathData="M1341.5,796.9l85.6,85.6l29.9,0l-85.4,-85.5z" | |
android:strokeWidth="1" | |
android:strokeAlpha="0.19" | |
android:strokeColor="#00000000" /> | |
<path | |
android:fillAlpha="0.19" | |
android:fillColor="#FFFFFF" | |
android:fillType="evenOdd" | |
android:pathData="M1953.5,797.9l85.6,85.6l29.9,0l-85.4,-85.5z" | |
android:strokeWidth="1" | |
android:strokeAlpha="0.19" | |
android:strokeColor="#00000000" /> | |
<path | |
android:fillAlpha="0.19" | |
android:fillColor="#FFFFFF" | |
android:fillType="evenOdd" | |
android:pathData="M1522.5,1001.9l95.1,95.1l33.3,0l-94.9,-95z" | |
android:strokeWidth="1" | |
android:strokeAlpha="0.19" | |
android:strokeColor="#00000000" /> | |
<path | |
android:fillAlpha="0.19" | |
android:fillColor="#FFFFFF" | |
android:fillType="evenOdd" | |
android:pathData="M2080,1002l80,78.1l0,-78.1z" | |
android:strokeWidth="1" | |
android:strokeAlpha="0.19" | |
android:strokeColor="#00000000" /> | |
<path | |
android:fillColor="#23893C" | |
android:fillType="evenOdd" | |
android:pathData="M2387.2,1120C2387.7,1117.9 2388,1115.7 2388,1113.4C2388,1098.8 2376.3,1086.9 2361.7,1086.7C2356.8,1066.4 2338.6,1051.4 2316.9,1051.4C2308.2,1051.4 2300.1,1053.8 2293.1,1058C2283,1044.5 2266.9,1035.8 2248.8,1035.8C2221.7,1035.8 2199.2,1055.2 2194.3,1080.9C2190.6,1079.5 2186.7,1078.7 2182.5,1078.7C2164.6,1078.7 2150,1093.2 2150,1111.2C2150,1114.3 2150.4,1117.3 2151.3,1120.1L2387.2,1120.1L2387.2,1120Z"/> | |
<path | |
android:fillColor="#53BA6F" | |
android:fillType="evenOdd" | |
android:pathData="M221.4,1231C221.1,1229.9 221,1228.7 221,1227.5C221,1219.8 227.2,1213.5 234.9,1213.3C237.5,1202.6 247.1,1194.6 258.6,1194.6C263.2,1194.6 267.5,1195.9 271.2,1198.1C276.6,1191 285.1,1186.4 294.7,1186.4C309,1186.4 321,1196.7 323.5,1210.3C325.4,1209.5 327.5,1209.1 329.7,1209.1C339.2,1209.1 346.9,1216.8 346.9,1226.3C346.9,1227.9 346.7,1229.5 346.2,1231L221.4,1231Z"/> | |
<path | |
android:fillColor="#FFFFFF" | |
android:fillType="evenOdd" | |
android:pathData="M501,717h276v81h-276z"/> | |
<path | |
android:fillColor="#FFFFFF" | |
android:fillType="evenOdd" | |
android:pathData="M772.8,884l0,107.6l-107.7,-107.7z"/> | |
<path | |
android:fillColor="#B0BEC5" | |
android:fillType="evenOdd" | |
android:pathData="M507,740.5h1654v3h-1654z"/> | |
<path | |
android:fillColor="#B0BEC5" | |
android:fillType="evenOdd" | |
android:pathData="M507,771.5h1654v3h-1654z"/> | |
<path | |
android:fillColor="#B0BEC5" | |
android:fillType="evenOdd" | |
android:pathData="M643.7,900h1517.4v3h-1517.4z"/> | |
<path | |
android:fillColor="#B0BEC5" | |
android:fillType="evenOdd" | |
android:pathData="M643.7,930.3h1517.4v3h-1517.4z"/> | |
<path | |
android:fillColor="#B0BEC5" | |
android:fillType="evenOdd" | |
android:pathData="M640,960.7h1517.4v3h-1517.4z"/> | |
<path | |
android:fillColor="#00000000" | |
android:fillType="evenOdd" | |
android:pathData="M640,992.5L2161.5,992.5" | |
android:strokeWidth="3" | |
android:strokeColor="#B0BEC5" /> | |
<path | |
android:fillAlpha="0.59" | |
android:fillColor="#CFD8DC" | |
android:fillType="evenOdd" | |
android:pathData="M664.7,884C664.7,884 783,1003 783.9,1002.2C784,1002 630,1002 630,1002L630,884L664.7,884Z" | |
android:strokeWidth="1" | |
android:strokeAlpha="0.59" | |
android:strokeColor="#00000000" /> | |
<path | |
android:fillColor="#00000000" | |
android:fillType="evenOdd" | |
android:pathData="M678,784L678,904" | |
android:strokeWidth="4" | |
android:strokeColor="#FFFFFF" /> | |
<path | |
android:fillColor="#90A4AE" | |
android:fillType="evenOdd" | |
android:pathData="M777,922h1388v44h-1388z"/> | |
<path | |
android:fillColor="#00000000" | |
android:fillType="evenOdd" | |
android:pathData="M1132,1056.8L1184,1056.8" | |
android:strokeWidth="3" | |
android:strokeColor="#757575" /> | |
<path | |
android:fillColor="#00000000" | |
android:fillType="evenOdd" | |
android:pathData="M1190,1056.8L1242,1056.8" | |
android:strokeWidth="3" | |
android:strokeColor="#757575" /> | |
<path | |
android:fillColor="#ECEFF1" | |
android:fillType="evenOdd" | |
android:pathData="M507,740.5L2161,740.5L2161,743.5L507,743.5L507,740.5ZM507,771.5L2161,771.5L2161,774.5L507,774.5L507,771.5Z"/> | |
<path | |
android:fillColor="#90A4AE" | |
android:fillType="evenOdd" | |
android:pathData="M773,607.5L780.5,607.5L780.5,983L773,983L773,607.5ZM859.5,607.5L867,607.5L867,983L859.5,983L859.5,607.5ZM946.1,607.5L953.6,607.5L953.6,983L946.1,983L946.1,607.5ZM1032.6,607.5L1040.1,607.5L1040.1,983L1032.6,983L1032.6,607.5ZM1119.1,607.5L1126.6,607.5L1126.6,983L1119.1,983L1119.1,607.5ZM1205.7,607.5L1213.2,607.5L1213.2,983L1205.7,983L1205.7,607.5ZM1292.2,607.5L1299.7,607.5L1299.7,983L1292.2,983L1292.2,607.5ZM1378.7,607.5L1386.2,607.5L1386.2,983L1378.7,983L1378.7,607.5ZM1465.2,607.5L1472.7,607.5L1472.7,983L1465.2,983L1465.2,607.5ZM2157.5,607.5L2165,607.5L2165,983L2157.5,983L2157.5,607.5ZM1551.8,607.5L1559.3,607.5L1559.3,983L1551.8,983L1551.8,607.5ZM1638.3,607.5L1645.8,607.5L1645.8,983L1638.3,983L1638.3,607.5ZM1724.8,607.5L1732.3,607.5L1732.3,983L1724.8,983L1724.8,607.5ZM1811.4,607.5L1818.9,607.5L1818.9,983L1811.4,983L1811.4,607.5ZM1897.9,607.5L1905.4,607.5L1905.4,983L1897.9,983L1897.9,607.5ZM1984.4,607.5L1991.9,607.5L1991.9,983L1984.4,983L1984.4,607.5ZM2071,607.5L2078.5,607.5L2078.5,983L2071,983L2071,607.5Z"/> | |
<path | |
android:fillColor="#90A4AE" | |
android:fillType="evenOdd" | |
android:pathData="M776.8,917.9L2161.3,917.9L2161.3,925.4L776.8,925.4L776.8,917.9ZM776.8,839.3L2161.3,839.3L2161.3,846.8L776.8,846.8L776.8,839.3ZM776.8,760.8L2161.3,760.8L2161.3,768.3L776.8,768.3L776.8,760.8Z"/> | |
<path | |
android:fillColor="#FFFFFF" | |
android:fillType="evenOdd" | |
android:pathData="M780.5,606.2L780.5,677.2L859.5,677.2L859.5,606.2L780.5,606.2ZM780.5,684.7L780.5,755.8L859.5,755.8L859.5,684.7L780.5,684.7ZM780.5,763.3L780.5,834.3L859.5,834.3L859.5,763.3L780.5,763.3ZM780.5,841.8L780.5,912.9L859.5,912.9L859.5,841.8L780.5,841.8ZM780.5,920.4L780.5,978L773,978L773,606.2L772.8,606.2L772.8,598.7L2165.3,598.7L2165.3,606.2L2165,606.2L2165,978L2157.5,978L2157.5,920.4L2078.5,920.4L2078.5,978L2071,978L2071,920.4L1991.9,920.4L1991.9,978L1984.4,978L1984.4,920.4L1905.4,920.4L1905.4,978L1897.9,978L1897.9,920.4L1818.9,920.4L1818.9,978L1811.4,978L1811.4,920.4L1732.3,920.4L1732.3,978L1724.8,978L1724.8,920.4L1645.8,920.4L1645.8,978L1638.3,978L1638.3,920.4L1559.3,920.4L1559.3,978L1551.8,978L1551.8,920.4L1472.7,920.4L1472.7,978L1465.2,978L1465.2,920.4L1386.2,920.4L1386.2,978L1378.7,978L1378.7,920.4L1299.7,920.4L1299.7,978L1292.2,978L1292.2,920.4L1213.2,920.4L1213.2,978L1205.7,978L1205.7,920.4L1126.6,920.4L1126.6,978L1119.1,978L1119.1,920.4L1040.1,920.4L1040.1,978L1032.6,978L1032.6,920.4L953.6,920.4L953.6,978L946.1,978L946.1,920.4L867,920.4L867,978L859.5,978L859.5,920.4L780.5,920.4ZM867,606.2L867,677.2L946.1,677.2L946.1,606.2L867,606.2ZM867,684.7L867,755.8L946.1,755.8L946.1,684.7L867,684.7ZM867,763.3L867,834.3L946.1,834.3L946.1,763.3L867,763.3ZM867,841.8L867,912.9L946.1,912.9L946.1,841.8L867,841.8ZM953.6,606.2L953.6,677.2L1032.6,677.2L1032.6,606.2L953.6,606.2ZM953.6,684.7L953.6,755.8L1032.6,755.8L1032.6,684.7L953.6,684.7ZM953.6,763.3L953.6,834.3L1032.6,834.3L1032.6,763.3L953.6,763.3ZM953.6,841.8L953.6,912.9L1032.6,912.9L1032.6,841.8L953.6,841.8ZM1040.1,606.2L1040.1,677.2L1119.1,677.2L1119.1,606.2L1040.1,606.2ZM1040.1,684.7L1040.1,755.8L1119.1,755.8L1119.1,684.7L1040.1,684.7ZM1040.1,763.3L1040.1,834.3L1119.1,834.3L1119.1,763.3L1040.1,763.3ZM1040.1,841.8L1040.1,912.9L1119.1,912.9L1119.1,841.8L1040.1,841.8ZM1126.6,606.2L1126.6,677.2L1205.7,677.2L1205.7,606.2L1126.6,606.2ZM1126.6,684.7L1126.6,755.8L1205.7,755.8L1205.7,684.7L1126.6,684.7ZM1126.6,763.3L1126.6,834.3L1205.7,834.3L1205.7,763.3L1126.6,763.3ZM1126.6,841.8L1126.6,912.9L1205.7,912.9L1205.7,841.8L1126.6,841.8ZM1213.2,606.2L1213.2,677.2L1292.2,677.2L1292.2,606.2L1213.2,606.2ZM1213.2,684.7L1213.2,755.8L1292.2,755.8L1292.2,684.7L1213.2,684.7ZM1213.2,763.3L1213.2,834.3L1292.2,834.3L1292.2,763.3L1213.2,763.3ZM1213.2,841.8L1213.2,912.9L1292.2,912.9L1292.2,841.8L1213.2,841.8ZM1299.7,606.2L1299.7,677.2L1378.7,677.2L1378.7,606.2L1299.7,606.2ZM1299.7,684.7L1299.7,755.8L1378.7,755.8L1378.7,684.7L1299.7,684.7ZM1299.7,763.3L1299.7,834.3L1378.7,834.3L1378.7,763.3L1299.7,763.3ZM1299.7,841.8L1299.7,912.9L1378.7,912.9L1378.7,841.8L1299.7,841.8ZM1386.2,606.2L1386.2,677.2L1465.2,677.2L1465.2,606.2L1386.2,606.2ZM1386.2,684.7L1386.2,755.8L1465.2,755.8L1465.2,684.7L1386.2,684.7ZM1386.2,763.3L1386.2,834.3L1465.2,834.3L1465.2,763.3L1386.2,763.3ZM1386.2,841.8L1386.2,912.9L1465.2,912.9L1465.2,841.8L1386.2,841.8ZM1472.7,606.2L1472.7,677.2L1551.8,677.2L1551.8,606.2L1472.7,606.2ZM1472.7,684.7L1472.7,755.8L1551.8,755.8L1551.8,684.7L1472.7,684.7ZM1472.7,763.3L1472.7,834.3L1551.8,834.3L1551.8,763.3L1472.7,763.3ZM1472.7,841.8L1472.7,912.9L1551.8,912.9L1551.8,841.8L1472.7,841.8ZM2157.5,912.9L2157.5,841.8L2078.5,841.8L2078.5,912.9L2157.5,912.9ZM2157.5,834.3L2157.5,763.3L2078.5,763.3L2078.5,834.3L2157.5,834.3ZM2157.5,755.8L2157.5,684.7L2078.5,684.7L2078.5,755.8L2157.5,755.8ZM2157.5,677.2L2157.5,606.2L2078.5,606.2L2078.5,677.2L2157.5,677.2ZM1559.3,606.2L1559.3,677.2L1638.3,677.2L1638.3,606.2L1559.3,606.2ZM1559.3,684.7L1559.3,755.8L1638.3,755.8L1638.3,684.7L1559.3,684.7ZM1559.3,763.3L1559.3,834.3L1638.3,834.3L1638.3,763.3L1559.3,763.3ZM1559.3,841.8L1559.3,912.9L1638.3,912.9L1638.3,841.8L1559.3,841.8ZM1645.8,606.2L1645.8,677.2L1724.8,677.2L1724.8,606.2L1645.8,606.2ZM1645.8,684.7L1645.8,755.8L1724.8,755.8L1724.8,684.7L1645.8,684.7ZM1645.8,763.3L1645.8,834.3L1724.8,834.3L1724.8,763.3L1645.8,763.3ZM1645.8,841.8L1645.8,912.9L1724.8,912.9L1724.8,841.8L1645.8,841.8ZM1732.3,606.2L1732.3,677.2L1811.4,677.2L1811.4,606.2L1732.3,606.2ZM1732.3,684.7L1732.3,755.8L1811.4,755.8L1811.4,684.7L1732.3,684.7ZM1732.3,763.3L1732.3,834.3L1811.4,834.3L1811.4,763.3L1732.3,763.3ZM1732.3,841.8L1732.3,912.9L1811.4,912.9L1811.4,841.8L1732.3,841.8ZM1818.9,606.2L1818.9,677.2L1897.9,677.2L1897.9,606.2L1818.9,606.2ZM1818.9,684.7L1818.9,755.8L1897.9,755.8L1897.9,684.7L1818.9,684.7ZM1818.9,763.3L1818.9,834.3L1897.9,834.3L1897.9,763.3L1818.9,763.3ZM1818.9,841.8L1818.9,912.9L1897.9,912.9L1897.9,841.8L1818.9,841.8ZM1905.4,606.2L1905.4,677.2L1984.4,677.2L1984.4,606.2L1905.4,606.2ZM1905.4,684.7L1905.4,755.8L1984.4,755.8L1984.4,684.7L1905.4,684.7ZM1905.4,763.3L1905.4,834.3L1984.4,834.3L1984.4,763.3L1905.4,763.3ZM1905.4,841.8L1905.4,912.9L1984.4,912.9L1984.4,841.8L1905.4,841.8ZM1991.9,606.2L1991.9,677.2L2071,677.2L2071,606.2L1991.9,606.2ZM1991.9,684.7L1991.9,755.8L2071,755.8L2071,684.7L1991.9,684.7ZM1991.9,763.3L1991.9,834.3L2071,834.3L2071,763.3L1991.9,763.3ZM1991.9,841.8L1991.9,912.9L2071,912.9L2071,841.8L1991.9,841.8Z"/> | |
<path | |
android:fillAlpha="0.59" | |
android:fillColor="#CFD8DC" | |
android:fillType="evenOdd" | |
android:pathData="M578,798l-77.2,0l0,-79z" | |
android:strokeWidth="1" | |
android:strokeAlpha="0.59" | |
android:strokeColor="#00000000" /> | |
<path | |
android:fillColor="#ECEFF1" | |
android:fillType="evenOdd" | |
android:pathData="M643.7,900L2161.1,900L2161.1,903L643.7,903L643.7,900ZM643.7,930.3L2161.1,930.3L2161.1,933.3L643.7,933.3L643.7,930.3ZM640,960.7L2157.4,960.7L2157.4,963.7L640,963.7L640,960.7Z"/> | |
<path | |
android:fillColor="#FFFFFF" | |
android:fillType="evenOdd" | |
android:pathData="M777,915h1388v44h-1388z"/> | |
<path | |
android:fillColor="#CFD8DC" | |
android:fillType="evenOdd" | |
android:pathData="M859.5,912.9L867,912.9L867,959L859.5,959L859.5,912.9ZM946.1,912.9L953.6,912.9L953.6,959L946.1,959L946.1,912.9ZM1032.6,912.9L1040.1,912.9L1040.1,959L1032.6,959L1032.6,912.9ZM1119.1,912.9L1126.6,912.9L1126.6,959L1119.1,959L1119.1,912.9ZM1205.7,912.9L1213.2,912.9L1213.2,959L1205.7,959L1205.7,912.9ZM1292.2,912.9L1299.7,912.9L1299.7,959L1292.2,959L1292.2,912.9ZM1378.7,912.9L1386.2,912.9L1386.2,959L1378.7,959L1378.7,912.9ZM1465.2,912.9L1472.7,912.9L1472.7,959L1465.2,959L1465.2,912.9ZM1551.8,912.9L1559.3,912.9L1559.3,959L1551.8,959L1551.8,912.9ZM1638.3,912.9L1645.8,912.9L1645.8,959L1638.3,959L1638.3,912.9ZM1724.8,912.9L1732.3,912.9L1732.3,959L1724.8,959L1724.8,912.9ZM1811.4,912.9L1818.9,912.9L1818.9,959L1811.4,959L1811.4,912.9ZM1897.9,912.9L1905.4,912.9L1905.4,959L1897.9,959L1897.9,912.9ZM1984.4,912.9L1991.9,912.9L1991.9,959L1984.4,959L1984.4,912.9ZM2071,912.9L2078.5,912.9L2078.5,959L2071,959L2071,912.9ZM2157.5,912.9L2165,912.9L2165,959L2157.5,959L2157.5,912.9Z"/> | |
<path | |
android:fillColor="#EF9A9A" | |
android:fillType="evenOdd" | |
android:pathData="M1973,1097L555.6,1097C553.2,1097 551.2,1099 551.2,1101.4L1977.4,1101.4C1977.5,1099 1975.5,1097 1973,1097Z"/> | |
<path | |
android:fillColor="#6D4C41" | |
android:fillType="evenOdd" | |
android:pathData="M653,1223h1240.7v6h-1240.7z"/> | |
<path | |
android:fillColor="#34A853" | |
android:fillType="evenOdd" | |
android:pathData="M2083.2,1228C2083.7,1226.1 2084,1224.1 2084,1222C2084,1208.8 2073.4,1198 2060.2,1197.8C2055.8,1179.5 2039.3,1165.9 2019.7,1165.9C2011.8,1165.9 2004.5,1168.1 1998.2,1171.9C1989.1,1159.7 1974.5,1151.9 1958.1,1151.9C1933.6,1151.9 1913.3,1169.5 1908.9,1192.6C1905.6,1191.3 1902,1190.6 1898.3,1190.6C1882.1,1190.6 1869,1203.7 1869,1219.9C1869,1222.7 1869.4,1225.4 1870.1,1228L2083.2,1228Z"/> | |
<path | |
android:fillColor="#34A853" | |
android:fillType="evenOdd" | |
android:pathData="M652.2,1231C652.7,1229.1 653,1227.1 653,1225C653,1211.8 642.4,1201 629.2,1200.8C624.8,1182.5 608.3,1168.9 588.7,1168.9C580.8,1168.9 573.5,1171.1 567.2,1174.9C558.1,1162.7 543.5,1154.9 527.1,1154.9C502.6,1154.9 482.3,1172.5 477.9,1195.6C474.6,1194.3 471,1193.6 467.3,1193.6C451.1,1193.6 438,1206.7 438,1222.9C438,1225.7 438.4,1228.4 439.1,1231L652.2,1231Z"/> | |
<path | |
android:fillColor="#FBC02D" | |
android:fillType="evenOdd" | |
android:pathData="M509.1,1182.4C507.7,1185.3 505,1187.6 503,1187.6C501,1187.6 498.3,1185.3 496.9,1182.4C495.5,1179.5 497.1,1177.2 500.3,1177.2L505.7,1177.2C509,1177.2 510.5,1179.5 509.1,1182.4ZM509.1,1196.8C510.5,1199.7 508.9,1202 505.7,1202L500.3,1202C497,1202 495.5,1199.7 496.9,1196.8C498.3,1193.9 501,1191.6 503,1191.6C505,1191.6 507.7,1193.9 509.1,1196.8ZM495.8,1183.5C498.7,1184.9 501,1187.6 501,1189.6C501,1191.6 498.7,1194.3 495.8,1195.7C492.9,1197.1 490.6,1195.5 490.6,1192.3L490.6,1186.9C490.6,1183.6 492.9,1182.1 495.8,1183.5ZM510.2,1183.5C513.1,1182.2 515.4,1183.7 515.4,1186.9L515.4,1192.3C515.4,1195.6 513.1,1197.1 510.2,1195.7C507.3,1194.3 505,1191.6 505,1189.6C505,1187.6 507.3,1184.9 510.2,1183.5Z"/> | |
<path | |
android:fillColor="#F57F17" | |
android:fillType="evenOdd" | |
android:pathData="M503,1189.6m-5.5,0a5.5,5.5 0,1 1,11 0a5.5,5.5 0,1 1,-11 0"/> | |
<path | |
android:fillColor="#FBC02D" | |
android:fillType="evenOdd" | |
android:pathData="M555.1,1204.4C553.7,1207.3 551,1209.6 549,1209.6C547,1209.6 544.3,1207.3 542.9,1204.4C541.5,1201.5 543.1,1199.2 546.3,1199.2L551.7,1199.2C555,1199.2 556.5,1201.5 555.1,1204.4ZM555.1,1218.8C556.5,1221.7 554.9,1224 551.7,1224L546.3,1224C543,1224 541.5,1221.7 542.9,1218.8C544.3,1215.9 547,1213.6 549,1213.6C551,1213.6 553.7,1215.9 555.1,1218.8ZM541.8,1205.5C544.7,1206.9 547,1209.6 547,1211.6C547,1213.6 544.7,1216.3 541.8,1217.7C538.9,1219.1 536.6,1217.5 536.6,1214.3L536.6,1208.9C536.6,1205.6 538.9,1204.1 541.8,1205.5ZM556.2,1205.5C559.1,1204.2 561.4,1205.7 561.4,1208.9L561.4,1214.3C561.4,1217.6 559.1,1219.1 556.2,1217.7C553.3,1216.3 551,1213.6 551,1211.6C551,1209.6 553.3,1206.9 556.2,1205.5Z"/> | |
<path | |
android:fillColor="#F57F17" | |
android:fillType="evenOdd" | |
android:pathData="M549,1211.6m-5.5,0a5.5,5.5 0,1 1,11 0a5.5,5.5 0,1 1,-11 0"/> | |
<path | |
android:fillColor="#FBC02D" | |
android:fillType="evenOdd" | |
android:pathData="M604.1,1184.4C602.7,1187.3 600,1189.6 598,1189.6C596,1189.6 593.3,1187.3 591.9,1184.4C590.5,1181.5 592.1,1179.2 595.3,1179.2L600.7,1179.2C604,1179.2 605.5,1181.5 604.1,1184.4ZM604.1,1198.8C605.5,1201.7 603.9,1204 600.7,1204L595.3,1204C592,1204 590.5,1201.7 591.9,1198.8C593.3,1195.9 596,1193.6 598,1193.6C600,1193.6 602.7,1195.9 604.1,1198.8ZM590.8,1185.5C593.7,1186.9 596,1189.6 596,1191.6C596,1193.6 593.7,1196.3 590.8,1197.7C587.9,1199.1 585.6,1197.5 585.6,1194.3L585.6,1188.9C585.6,1185.6 587.9,1184.1 590.8,1185.5ZM605.2,1185.5C608.1,1184.2 610.4,1185.7 610.4,1188.9L610.4,1194.3C610.4,1197.6 608.1,1199.1 605.2,1197.7C602.3,1196.3 600,1193.6 600,1191.6C600,1189.6 602.3,1186.9 605.2,1185.5Z"/> | |
<path | |
android:fillColor="#F57F17" | |
android:fillType="evenOdd" | |
android:pathData="M598,1191.6m-5.5,0a5.5,5.5 0,1 1,11 0a5.5,5.5 0,1 1,-11 0"/> | |
<path | |
android:fillColor="#FBC02D" | |
android:fillType="evenOdd" | |
android:pathData="M473,1216.6m-5.5,0a5.5,5.5 0,1 1,11 0a5.5,5.5 0,1 1,-11 0"/> | |
<path | |
android:fillColor="#FBC02D" | |
android:fillType="evenOdd" | |
android:pathData="M542,1177.6m-5.5,0a5.5,5.5 0,1 1,11 0a5.5,5.5 0,1 1,-11 0"/> | |
<path | |
android:fillColor="#FBC02D" | |
android:fillType="evenOdd" | |
android:pathData="M582,1216.6m-5.5,0a5.5,5.5 0,1 1,11 0a5.5,5.5 0,1 1,-11 0"/> | |
<path | |
android:fillColor="#FBC02D" | |
android:fillType="evenOdd" | |
android:pathData="M635,1216.6m-5.5,0a5.5,5.5 0,1 1,11 0a5.5,5.5 0,1 1,-11 0"/> | |
</vector> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Apache License | |
Version 2.0, January 2004 | |
http://www.apache.org/licenses/ | |
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION | |
1. Definitions. | |
"License" shall mean the terms and conditions for use, reproduction, | |
and distribution as defined by Sections 1 through 9 of this document. | |
"Licensor" shall mean the copyright owner or entity authorized by | |
the copyright owner that is granting the License. | |
"Legal Entity" shall mean the union of the acting entity and all | |
other entities that control, are controlled by, or are under common | |
control with that entity. For the purposes of this definition, | |
"control" means (i) the power, direct or indirect, to cause the | |
direction or management of such entity, whether by contract or | |
otherwise, or (ii) ownership of fifty percent (50%) or more of the | |
outstanding shares, or (iii) beneficial ownership of such entity. | |
"You" (or "Your") shall mean an individual or Legal Entity | |
exercising permissions granted by this License. | |
"Source" form shall mean the preferred form for making modifications, | |
including but not limited to software source code, documentation | |
source, and configuration files. | |
"Object" form shall mean any form resulting from mechanical | |
transformation or translation of a Source form, including but | |
not limited to compiled object code, generated documentation, | |
and conversions to other media types. | |
"Work" shall mean the work of authorship, whether in Source or | |
Object form, made available under the License, as indicated by a | |
copyright notice that is included in or attached to the work | |
(an example is provided in the Appendix below). | |
"Derivative Works" shall mean any work, whether in Source or Object | |
form, that is based on (or derived from) the Work and for which the | |
editorial revisions, annotations, elaborations, or other modifications | |
represent, as a whole, an original work of authorship. For the purposes | |
of this License, Derivative Works shall not include works that remain | |
separable from, or merely link (or bind by name) to the interfaces of, | |
the Work and Derivative Works thereof. | |
"Contribution" shall mean any work of authorship, including | |
the original version of the Work and any modifications or additions | |
to that Work or Derivative Works thereof, that is intentionally | |
submitted to Licensor for inclusion in the Work by the copyright owner | |
or by an individual or Legal Entity authorized to submit on behalf of | |
the copyright owner. For the purposes of this definition, "submitted" | |
means any form of electronic, verbal, or written communication sent | |
to the Licensor or its representatives, including but not limited to | |
communication on electronic mailing lists, source code control systems, | |
and issue tracking systems that are managed by, or on behalf of, the | |
Licensor for the purpose of discussing and improving the Work, but | |
excluding communication that is conspicuously marked or otherwise | |
designated in writing by the copyright owner as "Not a Contribution." | |
"Contributor" shall mean Licensor and any individual or Legal Entity | |
on behalf of whom a Contribution has been received by Licensor and | |
subsequently incorporated within the Work. | |
2. Grant of Copyright License. Subject to the terms and conditions of | |
this License, each Contributor hereby grants to You a perpetual, | |
worldwide, non-exclusive, no-charge, royalty-free, irrevocable | |
copyright license to reproduce, prepare Derivative Works of, | |
publicly display, publicly perform, sublicense, and distribute the | |
Work and such Derivative Works in Source or Object form. | |
3. Grant of Patent License. Subject to the terms and conditions of | |
this License, each Contributor hereby grants to You a perpetual, | |
worldwide, non-exclusive, no-charge, royalty-free, irrevocable | |
(except as stated in this section) patent license to make, have made, | |
use, offer to sell, sell, import, and otherwise transfer the Work, | |
where such license applies only to those patent claims licensable | |
by such Contributor that are necessarily infringed by their | |
Contribution(s) alone or by combination of their Contribution(s) | |
with the Work to which such Contribution(s) was submitted. If You | |
institute patent litigation against any entity (including a | |
cross-claim or counterclaim in a lawsuit) alleging that the Work | |
or a Contribution incorporated within the Work constitutes direct | |
or contributory patent infringement, then any patent licenses | |
granted to You under this License for that Work shall terminate | |
as of the date such litigation is filed. | |
4. Redistribution. You may reproduce and distribute copies of the | |
Work or Derivative Works thereof in any medium, with or without | |
modifications, and in Source or Object form, provided that You | |
meet the following conditions: | |
(a) You must give any other recipients of the Work or | |
Derivative Works a copy of this License; and | |
(b) You must cause any modified files to carry prominent notices | |
stating that You changed the files; and | |
(c) You must retain, in the Source form of any Derivative Works | |
that You distribute, all copyright, patent, trademark, and | |
attribution notices from the Source form of the Work, | |
excluding those notices that do not pertain to any part of | |
the Derivative Works; and | |
(d) If the Work includes a "NOTICE" text file as part of its | |
distribution, then any Derivative Works that You distribute must | |
include a readable copy of the attribution notices contained | |
within such NOTICE file, excluding those notices that do not | |
pertain to any part of the Derivative Works, in at least one | |
of the following places: within a NOTICE text file distributed | |
as part of the Derivative Works; within the Source form or | |
documentation, if provided along with the Derivative Works; or, | |
within a display generated by the Derivative Works, if and | |
wherever such third-party notices normally appear. The contents | |
of the NOTICE file are for informational purposes only and | |
do not modify the License. You may add Your own attribution | |
notices within Derivative Works that You distribute, alongside | |
or as an addendum to the NOTICE text from the Work, provided | |
that such additional attribution notices cannot be construed | |
as modifying the License. | |
You may add Your own copyright statement to Your modifications and | |
may provide additional or different license terms and conditions | |
for use, reproduction, or distribution of Your modifications, or | |
for any such Derivative Works as a whole, provided Your use, | |
reproduction, and distribution of the Work otherwise complies with | |
the conditions stated in this License. | |
5. Submission of Contributions. Unless You explicitly state otherwise, | |
any Contribution intentionally submitted for inclusion in the Work | |
by You to the Licensor shall be under the terms and conditions of | |
this License, without any additional terms or conditions. | |
Notwithstanding the above, nothing herein shall supersede or modify | |
the terms of any separate license agreement you may have executed | |
with Licensor regarding such Contributions. | |
6. Trademarks. This License does not grant permission to use the trade | |
names, trademarks, service marks, or product names of the Licensor, | |
except as required for reasonable and customary use in describing the | |
origin of the Work and reproducing the content of the NOTICE file. | |
7. Disclaimer of Warranty. Unless required by applicable law or | |
agreed to in writing, Licensor provides the Work (and each | |
Contributor provides its Contributions) on an "AS IS" BASIS, | |
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or | |
implied, including, without limitation, any warranties or conditions | |
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A | |
PARTICULAR PURPOSE. You are solely responsible for determining the | |
appropriateness of using or redistributing the Work and assume any | |
risks associated with Your exercise of permissions under this License. | |
8. Limitation of Liability. In no event and under no legal theory, | |
whether in tort (including negligence), contract, or otherwise, | |
unless required by applicable law (such as deliberate and grossly | |
negligent acts) or agreed to in writing, shall any Contributor be | |
liable to You for damages, including any direct, indirect, special, | |
incidental, or consequential damages of any character arising as a | |
result of this License or out of the use or inability to use the | |
Work (including but not limited to damages for loss of goodwill, | |
work stoppage, computer failure or malfunction, or any and all | |
other commercial damages or losses), even if such Contributor | |
has been advised of the possibility of such damages. | |
9. Accepting Warranty or Additional Liability. While redistributing | |
the Work or Derivative Works thereof, You may choose to offer, | |
and charge a fee for, acceptance of support, warranty, indemnity, | |
or other liability obligations and/or rights consistent with this | |
License. However, in accepting such obligations, You may act only | |
on Your own behalf and on Your sole responsibility, not on behalf | |
of any other Contributor, and only if You agree to indemnify, | |
defend, and hold each Contributor harmless for any liability | |
incurred by, or claims asserted against, such Contributor by reason | |
of your accepting any such warranty or additional liability. | |
END OF TERMS AND CONDITIONS | |
APPENDIX: How to apply the Apache License to your work. | |
To apply the Apache License to your work, attach the following | |
boilerplate notice, with the fields enclosed by brackets "[]" | |
replaced with your own identifying information. (Don't include | |
the brackets!) The text should be enclosed in the appropriate | |
comment syntax for the file format. We also recommend that a | |
file or class name and description of purpose be included on the | |
same "printed page" as the copyright notice for easier | |
identification within third-party archives. | |
Copyright 2018 Google Inc. | |
Licensed under the Apache License, Version 2.0 (the "License"); | |
you may not use this file except in compliance with the License. | |
You may obtain a copy of the License at | |
http://www.apache.org/licenses/LICENSE-2.0 | |
Unless required by applicable law or agreed to in writing, software | |
distributed under the License is distributed on an "AS IS" BASIS, | |
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
See the License for the specific language governing permissions and | |
limitations under the License. |
^yes please
Virginia drew this in Illustrator and sent me an SVG. I edited this a little: adding the sun arc and grouping the stars/clouds into single paths for easier animating later.
I then converted this SVG using Android Studio. For a non-demo app I might have spent more time cleaning up the source (e.g. merging paths together etc) and the resulting Vector (e.g. removing redundant attributes like android:fillType="evenOdd"
on non-compound paths) but for this… didn't bother.
I then added some gradients by hand and wrote the (trivial!) animations.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This might be a dumb question, but here it goes: what was your process when "translating" that illustration into a vector drawable? I get lost in those paths just by scrolling through 😅 .