Initiate repo
5
.firebaserc
Normal file
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"projects": {
|
||||
"default": "polymer-summit-2017-codelab-1"
|
||||
}
|
||||
}
|
||||
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
bower_components
|
||||
33
README.md
Normal file
@@ -0,0 +1,33 @@
|
||||
# \<whose-flag\>
|
||||
|
||||
A simple game that lets users guess a flag's country
|
||||
|
||||
## Install the Polymer-CLI
|
||||
|
||||
First, make sure you have the [Polymer CLI](https://www.npmjs.com/package/polymer-cli) installed. Then run `polymer serve` to serve your application locally.
|
||||
|
||||
## Viewing Your Application
|
||||
|
||||
```
|
||||
$ polymer serve
|
||||
```
|
||||
|
||||
## Building Your Application
|
||||
|
||||
```
|
||||
$ polymer build
|
||||
```
|
||||
|
||||
This will create builds of your application in the `build/` directory, optimized to be served in production. You can then serve the built versions by giving `polymer serve` a folder to serve from:
|
||||
|
||||
```
|
||||
$ polymer serve build/default
|
||||
```
|
||||
|
||||
## Running Tests
|
||||
|
||||
```
|
||||
$ polymer test
|
||||
```
|
||||
|
||||
Your application is already set up to be tested via [web-component-tester](https://github.com/Polymer/web-component-tester). Run `polymer test` to run your application's test suite locally.
|
||||
17
bower.json
Normal file
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"name": "whose-flag",
|
||||
"description": "A simple game that lets users guess a flag's country",
|
||||
"main": "index.html",
|
||||
"dependencies": {
|
||||
"polymer": "Polymer/polymer#^2.0.0",
|
||||
"app-layout": "^2.0.1",
|
||||
"iron-image": "^2.1.2",
|
||||
"paper-button": "^2.0.0",
|
||||
"paper-styles": "^2.0.0",
|
||||
"iron-ajax": "^2.0.5"
|
||||
},
|
||||
"devDependencies": {
|
||||
"web-component-tester": "Polymer/web-component-tester#^6.0.0",
|
||||
"webcomponentsjs": "webcomponents/webcomponentsjs#^1.0.0"
|
||||
}
|
||||
}
|
||||
33
build/default/404.html
Normal file
@@ -0,0 +1,33 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Page Not Found</title>
|
||||
|
||||
<style media="screen">
|
||||
body { background: #ECEFF1; color: rgba(0,0,0,0.87); font-family: Roboto, Helvetica, Arial, sans-serif; margin: 0; padding: 0; }
|
||||
#message { background: white; max-width: 360px; margin: 100px auto 16px; padding: 32px 24px 16px; border-radius: 3px; }
|
||||
#message h3 { color: #888; font-weight: normal; font-size: 16px; margin: 16px 0 12px; }
|
||||
#message h2 { color: #ffa100; font-weight: bold; font-size: 16px; margin: 0 0 8px; }
|
||||
#message h1 { font-size: 22px; font-weight: 300; color: rgba(0,0,0,0.6); margin: 0 0 16px;}
|
||||
#message p { line-height: 140%; margin: 16px 0 24px; font-size: 14px; }
|
||||
#message a { display: block; text-align: center; background: #039be5; text-transform: uppercase; text-decoration: none; color: white; padding: 16px; border-radius: 4px; }
|
||||
#message, #message a { box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24); }
|
||||
#load { color: rgba(0,0,0,0.4); text-align: center; font-size: 13px; }
|
||||
@media (max-width: 600px) {
|
||||
body, #message { margin-top: 0; background: white; box-shadow: none; }
|
||||
body { border-top: 16px solid #ffa100; }
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="message">
|
||||
<h2>404</h2>
|
||||
<h1>Page Not Found</h1>
|
||||
<p>The specified file was not found on this website. Please check the URL for mistakes and try again.</p>
|
||||
<h3>Why am I seeing this?</h3>
|
||||
<p>This page was generated by the Firebase Command-Line Interface. To modify it, edit the <code>404.html</code> file in your project's configured <code>public</code> directory.</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
994
build/default/data/countrycodes.json
Normal file
@@ -0,0 +1,994 @@
|
||||
{ "countrycodes":[
|
||||
{
|
||||
"code": "AF",
|
||||
"name": "Afghanistan"
|
||||
},
|
||||
{
|
||||
"code": "AL",
|
||||
"name": "Albania"
|
||||
},
|
||||
{
|
||||
"code": "DZ",
|
||||
"name": "Algeria"
|
||||
},
|
||||
{
|
||||
"code": "AS",
|
||||
"name": "American Samoa"
|
||||
},
|
||||
{
|
||||
"code": "AD",
|
||||
"name": "Andorra"
|
||||
},
|
||||
{
|
||||
"code": "AO",
|
||||
"name": "Angola"
|
||||
},
|
||||
{
|
||||
"code": "AI",
|
||||
"name": "Anguilla"
|
||||
},
|
||||
{
|
||||
"code": "AQ",
|
||||
"name": "Antarctica"
|
||||
},
|
||||
{
|
||||
"code": "AG",
|
||||
"name": "Antigua and Barbuda"
|
||||
},
|
||||
{
|
||||
"code": "AR",
|
||||
"name": "Argentina"
|
||||
},
|
||||
{
|
||||
"code": "AM",
|
||||
"name": "Armenia"
|
||||
},
|
||||
{
|
||||
"code": "AW",
|
||||
"name": "Aruba"
|
||||
},
|
||||
{
|
||||
"code": "AU",
|
||||
"name": "Australia"
|
||||
},
|
||||
{
|
||||
"code": "AT",
|
||||
"name": "Austria"
|
||||
},
|
||||
{
|
||||
"code": "AZ",
|
||||
"name": "Azerbaijan"
|
||||
},
|
||||
{
|
||||
"code": "BS",
|
||||
"name": "Bahamas"
|
||||
},
|
||||
{
|
||||
"code": "BH",
|
||||
"name": "Bahrain"
|
||||
},
|
||||
{
|
||||
"code": "BD",
|
||||
"name": "Bangladesh"
|
||||
},
|
||||
{
|
||||
"code": "BB",
|
||||
"name": "Barbados"
|
||||
},
|
||||
{
|
||||
"code": "BY",
|
||||
"name": "Belarus"
|
||||
},
|
||||
{
|
||||
"code": "BE",
|
||||
"name": "Belgium"
|
||||
},
|
||||
{
|
||||
"code": "BZ",
|
||||
"name": "Belize"
|
||||
},
|
||||
{
|
||||
"code": "BJ",
|
||||
"name": "Benin"
|
||||
},
|
||||
{
|
||||
"code": "BM",
|
||||
"name": "Bermuda"
|
||||
},
|
||||
{
|
||||
"code": "BT",
|
||||
"name": "Bhutan"
|
||||
},
|
||||
{
|
||||
"code": "BO",
|
||||
"name": "Bolivia"
|
||||
},
|
||||
{
|
||||
"code": "BQ",
|
||||
"name": "Bonaire"
|
||||
},
|
||||
{
|
||||
"code": "BA",
|
||||
"name": "Bosnia and Herzegovina"
|
||||
},
|
||||
{
|
||||
"code": "BW",
|
||||
"name": "Botswana"
|
||||
},
|
||||
{
|
||||
"code": "BV",
|
||||
"name": "Bouvet Island"
|
||||
},
|
||||
{
|
||||
"code": "BR",
|
||||
"name": "Brazil"
|
||||
},
|
||||
{
|
||||
"code": "IO",
|
||||
"name": "British Indian Ocean Territory"
|
||||
},
|
||||
{
|
||||
"code": "BN",
|
||||
"name": "Brunei Darussalam"
|
||||
},
|
||||
{
|
||||
"code": "BG",
|
||||
"name": "Bulgaria"
|
||||
},
|
||||
{
|
||||
"code": "BF",
|
||||
"name": "Burkina Faso"
|
||||
},
|
||||
{
|
||||
"code": "BI",
|
||||
"name": "Burundi"
|
||||
},
|
||||
{
|
||||
"code": "KH",
|
||||
"name": "Cambodia"
|
||||
},
|
||||
{
|
||||
"code": "CM",
|
||||
"name": "Cameroon"
|
||||
},
|
||||
{
|
||||
"code": "CA",
|
||||
"name": "Canada"
|
||||
},
|
||||
{
|
||||
"code": "CV",
|
||||
"name": "Cape Verde"
|
||||
},
|
||||
{
|
||||
"code": "KY",
|
||||
"name": "Cayman Islands"
|
||||
},
|
||||
{
|
||||
"code": "CF",
|
||||
"name": "Central African Republic"
|
||||
},
|
||||
{
|
||||
"code": "TD",
|
||||
"name": "Chad"
|
||||
},
|
||||
{
|
||||
"code": "CL",
|
||||
"name": "Chile"
|
||||
},
|
||||
{
|
||||
"code": "CN",
|
||||
"name": "China"
|
||||
},
|
||||
{
|
||||
"code": "CX",
|
||||
"name": "Christmas Island"
|
||||
},
|
||||
{
|
||||
"code": "CC",
|
||||
"name": "Cocos (Keeling) Islands"
|
||||
},
|
||||
{
|
||||
"code": "CO",
|
||||
"name": "Colombia"
|
||||
},
|
||||
{
|
||||
"code": "KM",
|
||||
"name": "Comoros"
|
||||
},
|
||||
{
|
||||
"code": "CG",
|
||||
"name": "Congo"
|
||||
},
|
||||
{
|
||||
"code": "CD",
|
||||
"name": "Democratic Republic of the Congo"
|
||||
},
|
||||
{
|
||||
"code": "CK",
|
||||
"name": "Cook Islands"
|
||||
},
|
||||
{
|
||||
"code": "CR",
|
||||
"name": "Costa Rica"
|
||||
},
|
||||
{
|
||||
"code": "HR",
|
||||
"name": "Croatia"
|
||||
},
|
||||
{
|
||||
"code": "CU",
|
||||
"name": "Cuba"
|
||||
},
|
||||
{
|
||||
"code": "CW",
|
||||
"name": "Curacao"
|
||||
},
|
||||
{
|
||||
"code": "CY",
|
||||
"name": "Cyprus"
|
||||
},
|
||||
{
|
||||
"code": "CZ",
|
||||
"name": "Czech Republic"
|
||||
},
|
||||
{
|
||||
"code": "CI",
|
||||
"name": "Cote d'Ivoire"
|
||||
},
|
||||
{
|
||||
"code": "DK",
|
||||
"name": "Denmark"
|
||||
},
|
||||
{
|
||||
"code": "DJ",
|
||||
"name": "Djibouti"
|
||||
},
|
||||
{
|
||||
"code": "DM",
|
||||
"name": "Dominica"
|
||||
},
|
||||
{
|
||||
"code": "DO",
|
||||
"name": "Dominican Republic"
|
||||
},
|
||||
{
|
||||
"code": "EC",
|
||||
"name": "Ecuador"
|
||||
},
|
||||
{
|
||||
"code": "EG",
|
||||
"name": "Egypt"
|
||||
},
|
||||
{
|
||||
"code": "SV",
|
||||
"name": "El Salvador"
|
||||
},
|
||||
{
|
||||
"code": "GQ",
|
||||
"name": "Equatorial Guinea"
|
||||
},
|
||||
{
|
||||
"code": "ER",
|
||||
"name": "Eritrea"
|
||||
},
|
||||
{
|
||||
"code": "EE",
|
||||
"name": "Estonia"
|
||||
},
|
||||
{
|
||||
"code": "ET",
|
||||
"name": "Ethiopia"
|
||||
},
|
||||
{
|
||||
"code": "FK",
|
||||
"name": "Falkland Islands (Malvinas)"
|
||||
},
|
||||
{
|
||||
"code": "FO",
|
||||
"name": "Faroe Islands"
|
||||
},
|
||||
{
|
||||
"code": "FJ",
|
||||
"name": "Fiji"
|
||||
},
|
||||
{
|
||||
"code": "FI",
|
||||
"name": "Finland"
|
||||
},
|
||||
{
|
||||
"code": "FR",
|
||||
"name": "France"
|
||||
},
|
||||
{
|
||||
"code": "GF",
|
||||
"name": "French Guiana"
|
||||
},
|
||||
{
|
||||
"code": "PF",
|
||||
"name": "French Polynesia"
|
||||
},
|
||||
{
|
||||
"code": "TF",
|
||||
"name": "French Southern Territories"
|
||||
},
|
||||
{
|
||||
"code": "GA",
|
||||
"name": "Gabon"
|
||||
},
|
||||
{
|
||||
"code": "GM",
|
||||
"name": "Gambia"
|
||||
},
|
||||
{
|
||||
"code": "GE",
|
||||
"name": "Georgia"
|
||||
},
|
||||
{
|
||||
"code": "DE",
|
||||
"name": "Germany"
|
||||
},
|
||||
{
|
||||
"code": "GH",
|
||||
"name": "Ghana"
|
||||
},
|
||||
{
|
||||
"code": "GI",
|
||||
"name": "Gibraltar"
|
||||
},
|
||||
{
|
||||
"code": "GR",
|
||||
"name": "Greece"
|
||||
},
|
||||
{
|
||||
"code": "GL",
|
||||
"name": "Greenland"
|
||||
},
|
||||
{
|
||||
"code": "GD",
|
||||
"name": "Grenada"
|
||||
},
|
||||
{
|
||||
"code": "GP",
|
||||
"name": "Guadeloupe"
|
||||
},
|
||||
{
|
||||
"code": "GU",
|
||||
"name": "Guam"
|
||||
},
|
||||
{
|
||||
"code": "GT",
|
||||
"name": "Guatemala"
|
||||
},
|
||||
{
|
||||
"code": "GG",
|
||||
"name": "Guernsey"
|
||||
},
|
||||
{
|
||||
"code": "GN",
|
||||
"name": "Guinea"
|
||||
},
|
||||
{
|
||||
"code": "GW",
|
||||
"name": "Guinea-Bissau"
|
||||
},
|
||||
{
|
||||
"code": "GY",
|
||||
"name": "Guyana"
|
||||
},
|
||||
{
|
||||
"code": "HT",
|
||||
"name": "Haiti"
|
||||
},
|
||||
{
|
||||
"code": "HM",
|
||||
"name": "Heard Island and McDonald Mcdonald Islands"
|
||||
},
|
||||
{
|
||||
"code": "VA",
|
||||
"name": "Holy See (Vatican City State)"
|
||||
},
|
||||
{
|
||||
"code": "HN",
|
||||
"name": "Honduras"
|
||||
},
|
||||
{
|
||||
"code": "HK",
|
||||
"name": "Hong Kong"
|
||||
},
|
||||
{
|
||||
"code": "HU",
|
||||
"name": "Hungary"
|
||||
},
|
||||
{
|
||||
"code": "IS",
|
||||
"name": "Iceland"
|
||||
},
|
||||
{
|
||||
"code": "IN",
|
||||
"name": "India"
|
||||
},
|
||||
{
|
||||
"code": "ID",
|
||||
"name": "Indonesia"
|
||||
},
|
||||
{
|
||||
"code": "IR",
|
||||
"name": "Iran, Islamic Republic of"
|
||||
},
|
||||
{
|
||||
"code": "IQ",
|
||||
"name": "Iraq"
|
||||
},
|
||||
{
|
||||
"code": "IE",
|
||||
"name": "Ireland"
|
||||
},
|
||||
{
|
||||
"code": "IM",
|
||||
"name": "Isle of Man"
|
||||
},
|
||||
{
|
||||
"code": "IL",
|
||||
"name": "Israel"
|
||||
},
|
||||
{
|
||||
"code": "IT",
|
||||
"name": "Italy"
|
||||
},
|
||||
{
|
||||
"code": "JM",
|
||||
"name": "Jamaica"
|
||||
},
|
||||
{
|
||||
"code": "JP",
|
||||
"name": "Japan"
|
||||
},
|
||||
{
|
||||
"code": "JE",
|
||||
"name": "Jersey"
|
||||
},
|
||||
{
|
||||
"code": "JO",
|
||||
"name": "Jordan"
|
||||
},
|
||||
{
|
||||
"code": "KZ",
|
||||
"name": "Kazakhstan"
|
||||
},
|
||||
{
|
||||
"code": "KE",
|
||||
"name": "Kenya"
|
||||
},
|
||||
{
|
||||
"code": "KI",
|
||||
"name": "Kiribati"
|
||||
},
|
||||
{
|
||||
"code": "KP",
|
||||
"name": "Korea, Democratic People's Republic of"
|
||||
},
|
||||
{
|
||||
"code": "KR",
|
||||
"name": "Korea, Republic of"
|
||||
},
|
||||
{
|
||||
"code": "KW",
|
||||
"name": "Kuwait"
|
||||
},
|
||||
{
|
||||
"code": "KG",
|
||||
"name": "Kyrgyzstan"
|
||||
},
|
||||
{
|
||||
"code": "LA",
|
||||
"name": "Lao People's Democratic Republic"
|
||||
},
|
||||
{
|
||||
"code": "LV",
|
||||
"name": "Latvia"
|
||||
},
|
||||
{
|
||||
"code": "LB",
|
||||
"name": "Lebanon"
|
||||
},
|
||||
{
|
||||
"code": "LS",
|
||||
"name": "Lesotho"
|
||||
},
|
||||
{
|
||||
"code": "LR",
|
||||
"name": "Liberia"
|
||||
},
|
||||
{
|
||||
"code": "LY",
|
||||
"name": "Libya"
|
||||
},
|
||||
{
|
||||
"code": "LI",
|
||||
"name": "Liechtenstein"
|
||||
},
|
||||
{
|
||||
"code": "LT",
|
||||
"name": "Lithuania"
|
||||
},
|
||||
{
|
||||
"code": "LU",
|
||||
"name": "Luxembourg"
|
||||
},
|
||||
{
|
||||
"code": "MO",
|
||||
"name": "Macao"
|
||||
},
|
||||
{
|
||||
"code": "MK",
|
||||
"name": "Macedonia, the Former Yugoslav Republic of"
|
||||
},
|
||||
{
|
||||
"code": "MG",
|
||||
"name": "Madagascar"
|
||||
},
|
||||
{
|
||||
"code": "MW",
|
||||
"name": "Malawi"
|
||||
},
|
||||
{
|
||||
"code": "MY",
|
||||
"name": "Malaysia"
|
||||
},
|
||||
{
|
||||
"code": "MV",
|
||||
"name": "Maldives"
|
||||
},
|
||||
{
|
||||
"code": "ML",
|
||||
"name": "Mali"
|
||||
},
|
||||
{
|
||||
"code": "MT",
|
||||
"name": "Malta"
|
||||
},
|
||||
{
|
||||
"code": "MH",
|
||||
"name": "Marshall Islands"
|
||||
},
|
||||
{
|
||||
"code": "MQ",
|
||||
"name": "Martinique"
|
||||
},
|
||||
{
|
||||
"code": "MR",
|
||||
"name": "Mauritania"
|
||||
},
|
||||
{
|
||||
"code": "MU",
|
||||
"name": "Mauritius"
|
||||
},
|
||||
{
|
||||
"code": "YT",
|
||||
"name": "Mayotte"
|
||||
},
|
||||
{
|
||||
"code": "MX",
|
||||
"name": "Mexico"
|
||||
},
|
||||
{
|
||||
"code": "FM",
|
||||
"name": "Micronesia, Federated States of"
|
||||
},
|
||||
{
|
||||
"code": "MD",
|
||||
"name": "Moldova, Republic of"
|
||||
},
|
||||
{
|
||||
"code": "MC",
|
||||
"name": "Monaco"
|
||||
},
|
||||
{
|
||||
"code": "MN",
|
||||
"name": "Mongolia"
|
||||
},
|
||||
{
|
||||
"code": "ME",
|
||||
"name": "Montenegro"
|
||||
},
|
||||
{
|
||||
"code": "MS",
|
||||
"name": "Montserrat"
|
||||
},
|
||||
{
|
||||
"code": "MA",
|
||||
"name": "Morocco"
|
||||
},
|
||||
{
|
||||
"code": "MZ",
|
||||
"name": "Mozambique"
|
||||
},
|
||||
{
|
||||
"code": "MM",
|
||||
"name": "Myanmar"
|
||||
},
|
||||
{
|
||||
"code": "NA",
|
||||
"name": "Namibia"
|
||||
},
|
||||
{
|
||||
"code": "NR",
|
||||
"name": "Nauru"
|
||||
},
|
||||
{
|
||||
"code": "NP",
|
||||
"name": "Nepal"
|
||||
},
|
||||
{
|
||||
"code": "NL",
|
||||
"name": "Netherlands"
|
||||
},
|
||||
{
|
||||
"code": "NC",
|
||||
"name": "New Caledonia"
|
||||
},
|
||||
{
|
||||
"code": "NZ",
|
||||
"name": "New Zealand"
|
||||
},
|
||||
{
|
||||
"code": "NI",
|
||||
"name": "Nicaragua"
|
||||
},
|
||||
{
|
||||
"code": "NE",
|
||||
"name": "Niger"
|
||||
},
|
||||
{
|
||||
"code": "NG",
|
||||
"name": "Nigeria"
|
||||
},
|
||||
{
|
||||
"code": "NU",
|
||||
"name": "Niue"
|
||||
},
|
||||
{
|
||||
"code": "NF",
|
||||
"name": "Norfolk Island"
|
||||
},
|
||||
{
|
||||
"code": "MP",
|
||||
"name": "Northern Mariana Islands"
|
||||
},
|
||||
{
|
||||
"code": "NO",
|
||||
"name": "Norway"
|
||||
},
|
||||
{
|
||||
"code": "OM",
|
||||
"name": "Oman"
|
||||
},
|
||||
{
|
||||
"code": "PK",
|
||||
"name": "Pakistan"
|
||||
},
|
||||
{
|
||||
"code": "PW",
|
||||
"name": "Palau"
|
||||
},
|
||||
{
|
||||
"code": "PS",
|
||||
"name": "Palestine, State of"
|
||||
},
|
||||
{
|
||||
"code": "PA",
|
||||
"name": "Panama"
|
||||
},
|
||||
{
|
||||
"code": "PG",
|
||||
"name": "Papua New Guinea"
|
||||
},
|
||||
{
|
||||
"code": "PY",
|
||||
"name": "Paraguay"
|
||||
},
|
||||
{
|
||||
"code": "PE",
|
||||
"name": "Peru"
|
||||
},
|
||||
{
|
||||
"code": "PH",
|
||||
"name": "Philippines"
|
||||
},
|
||||
{
|
||||
"code": "PN",
|
||||
"name": "Pitcairn"
|
||||
},
|
||||
{
|
||||
"code": "PL",
|
||||
"name": "Poland"
|
||||
},
|
||||
{
|
||||
"code": "PT",
|
||||
"name": "Portugal"
|
||||
},
|
||||
{
|
||||
"code": "PR",
|
||||
"name": "Puerto Rico"
|
||||
},
|
||||
{
|
||||
"code": "QA",
|
||||
"name": "Qatar"
|
||||
},
|
||||
{
|
||||
"code": "RO",
|
||||
"name": "Romania"
|
||||
},
|
||||
{
|
||||
"code": "RU",
|
||||
"name": "Russian Federation"
|
||||
},
|
||||
{
|
||||
"code": "RW",
|
||||
"name": "Rwanda"
|
||||
},
|
||||
{
|
||||
"code": "RE",
|
||||
"name": "Reunion"
|
||||
},
|
||||
{
|
||||
"code": "BL",
|
||||
"name": "Saint Barthelemy"
|
||||
},
|
||||
{
|
||||
"code": "SH",
|
||||
"name": "Saint Helena"
|
||||
},
|
||||
{
|
||||
"code": "KN",
|
||||
"name": "Saint Kitts and Nevis"
|
||||
},
|
||||
{
|
||||
"code": "LC",
|
||||
"name": "Saint Lucia"
|
||||
},
|
||||
{
|
||||
"code": "MF",
|
||||
"name": "Saint Martin (French part)"
|
||||
},
|
||||
{
|
||||
"code": "PM",
|
||||
"name": "Saint Pierre and Miquelon"
|
||||
},
|
||||
{
|
||||
"code": "VC",
|
||||
"name": "Saint Vincent and the Grenadines"
|
||||
},
|
||||
{
|
||||
"code": "WS",
|
||||
"name": "Samoa"
|
||||
},
|
||||
{
|
||||
"code": "SM",
|
||||
"name": "San Marino"
|
||||
},
|
||||
{
|
||||
"code": "ST",
|
||||
"name": "Sao Tome and Principe"
|
||||
},
|
||||
{
|
||||
"code": "SA",
|
||||
"name": "Saudi Arabia"
|
||||
},
|
||||
{
|
||||
"code": "SN",
|
||||
"name": "Senegal"
|
||||
},
|
||||
{
|
||||
"code": "RS",
|
||||
"name": "Serbia"
|
||||
},
|
||||
{
|
||||
"code": "SC",
|
||||
"name": "Seychelles"
|
||||
},
|
||||
{
|
||||
"code": "SL",
|
||||
"name": "Sierra Leone"
|
||||
},
|
||||
{
|
||||
"code": "SG",
|
||||
"name": "Singapore"
|
||||
},
|
||||
{
|
||||
"code": "SX",
|
||||
"name": "Sint Maarten (Dutch part)"
|
||||
},
|
||||
{
|
||||
"code": "SK",
|
||||
"name": "Slovakia"
|
||||
},
|
||||
{
|
||||
"code": "SI",
|
||||
"name": "Slovenia"
|
||||
},
|
||||
{
|
||||
"code": "SB",
|
||||
"name": "Solomon Islands"
|
||||
},
|
||||
{
|
||||
"code": "SO",
|
||||
"name": "Somalia"
|
||||
},
|
||||
{
|
||||
"code": "ZA",
|
||||
"name": "South Africa"
|
||||
},
|
||||
{
|
||||
"code": "GS",
|
||||
"name": "South Georgia and the South Sandwich Islands"
|
||||
},
|
||||
{
|
||||
"code": "SS",
|
||||
"name": "South Sudan"
|
||||
},
|
||||
{
|
||||
"code": "ES",
|
||||
"name": "Spain"
|
||||
},
|
||||
{
|
||||
"code": "LK",
|
||||
"name": "Sri Lanka"
|
||||
},
|
||||
{
|
||||
"code": "SD",
|
||||
"name": "Sudan"
|
||||
},
|
||||
{
|
||||
"code": "SR",
|
||||
"name": "Suriname"
|
||||
},
|
||||
{
|
||||
"code": "SJ",
|
||||
"name": "Svalbard and Jan Mayen"
|
||||
},
|
||||
{
|
||||
"code": "SZ",
|
||||
"name": "Swaziland"
|
||||
},
|
||||
{
|
||||
"code": "SE",
|
||||
"name": "Sweden"
|
||||
},
|
||||
{
|
||||
"code": "CH",
|
||||
"name": "Switzerland"
|
||||
},
|
||||
{
|
||||
"code": "SY",
|
||||
"name": "Syrian Arab Republic"
|
||||
},
|
||||
{
|
||||
"code": "TW",
|
||||
"name": "Taiwan, Province of China"
|
||||
},
|
||||
{
|
||||
"code": "TJ",
|
||||
"name": "Tajikistan"
|
||||
},
|
||||
{
|
||||
"code": "TZ",
|
||||
"name": "United Republic of Tanzania"
|
||||
},
|
||||
{
|
||||
"code": "TH",
|
||||
"name": "Thailand"
|
||||
},
|
||||
{
|
||||
"code": "TL",
|
||||
"name": "Timor-Leste"
|
||||
},
|
||||
{
|
||||
"code": "TG",
|
||||
"name": "Togo"
|
||||
},
|
||||
{
|
||||
"code": "TK",
|
||||
"name": "Tokelau"
|
||||
},
|
||||
{
|
||||
"code": "TO",
|
||||
"name": "Tonga"
|
||||
},
|
||||
{
|
||||
"code": "TT",
|
||||
"name": "Trinidad and Tobago"
|
||||
},
|
||||
{
|
||||
"code": "TN",
|
||||
"name": "Tunisia"
|
||||
},
|
||||
{
|
||||
"code": "TR",
|
||||
"name": "Turkey"
|
||||
},
|
||||
{
|
||||
"code": "TM",
|
||||
"name": "Turkmenistan"
|
||||
},
|
||||
{
|
||||
"code": "TC",
|
||||
"name": "Turks and Caicos Islands"
|
||||
},
|
||||
{
|
||||
"code": "TV",
|
||||
"name": "Tuvalu"
|
||||
},
|
||||
{
|
||||
"code": "UG",
|
||||
"name": "Uganda"
|
||||
},
|
||||
{
|
||||
"code": "UA",
|
||||
"name": "Ukraine"
|
||||
},
|
||||
{
|
||||
"code": "AE",
|
||||
"name": "United Arab Emirates"
|
||||
},
|
||||
{
|
||||
"code": "GB",
|
||||
"name": "United Kingdom"
|
||||
},
|
||||
{
|
||||
"code": "US",
|
||||
"name": "United States"
|
||||
},
|
||||
{
|
||||
"code": "UM",
|
||||
"name": "United States Minor Outlying Islands"
|
||||
},
|
||||
{
|
||||
"code": "UY",
|
||||
"name": "Uruguay"
|
||||
},
|
||||
{
|
||||
"code": "UZ",
|
||||
"name": "Uzbekistan"
|
||||
},
|
||||
{
|
||||
"code": "VU",
|
||||
"name": "Vanuatu"
|
||||
},
|
||||
{
|
||||
"code": "VE",
|
||||
"name": "Venezuela"
|
||||
},
|
||||
{
|
||||
"code": "VN",
|
||||
"name": "Viet Nam"
|
||||
},
|
||||
{
|
||||
"code": "VG",
|
||||
"name": "British Virgin Islands"
|
||||
},
|
||||
{
|
||||
"code": "VI",
|
||||
"name": "US Virgin Islands"
|
||||
},
|
||||
{
|
||||
"code": "WF",
|
||||
"name": "Wallis and Futuna"
|
||||
},
|
||||
{
|
||||
"code": "EH",
|
||||
"name": "Western Sahara"
|
||||
},
|
||||
{
|
||||
"code": "YE",
|
||||
"name": "Yemen"
|
||||
},
|
||||
{
|
||||
"code": "ZM",
|
||||
"name": "Zambia"
|
||||
},
|
||||
{
|
||||
"code": "ZW",
|
||||
"name": "Zimbabwe"
|
||||
}
|
||||
]}
|
||||
2440
build/default/data/svg/AC.svg
Normal file
|
After Width: | Height: | Size: 213 KiB |
285
build/default/data/svg/AD.svg
Normal file
|
After Width: | Height: | Size: 76 KiB |
5
build/default/data/svg/AE.svg
Normal file
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" width="1200" height="600" viewBox="0 0 12 6">
|
||||
<rect width="12" height="2" fill="#00732f" id="green"/>
|
||||
<rect width="12" height="2" y="2" fill="#fff"/>
|
||||
<rect width="12" height="2" y="4"/>
|
||||
<rect width="3" height="6" fill="#f00" id="red"/></svg>
|
||||
|
After Width: | Height: | Size: 321 B |
191
build/default/data/svg/AF.svg
Normal file
|
After Width: | Height: | Size: 46 KiB |
17
build/default/data/svg/AG.svg
Normal file
@@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="690" height="460" viewBox="0 0 138 92">
|
||||
<rect width="138" height="92" fill="#fff"/>
|
||||
<rect width="138" height="36" fill="#000"/>
|
||||
<g transform="translate(69,36)">
|
||||
<g id="c3">
|
||||
<!-- y3 = -y2 = 30*sin(11.25deg)/sqrt(5-4*cos(11.25deg)-sin^2(11.25deg)) -->
|
||||
<path id="c" d="M-30,0 0,-5.7423716V5.7423716z" fill="#fcd116"/>
|
||||
<use xlink:href="#c" transform="rotate(22.5)"/>
|
||||
<use xlink:href="#c" transform="rotate(45)"/>
|
||||
</g>
|
||||
<use xlink:href="#c3" transform="rotate(67.5)"/>
|
||||
<use xlink:href="#c3" transform="rotate(135)"/>
|
||||
</g>
|
||||
<rect y="36" width="138" height="20" fill="#0072c6"/>
|
||||
<path d="M0,0V92H138V0L69,92z" fill="#ce1126"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 754 B |
23
build/default/data/svg/AI.svg
Normal file
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="1200" height="600">
|
||||
<clipPath id="c">
|
||||
<path d="M0,0V150H700V300H600zM600,0H300V350H0V300z"/>
|
||||
</clipPath>
|
||||
<rect width="1200" height="600" fill="#00247d"/>
|
||||
<path d="M0,0 600,300M600,0 0,300" stroke="#fff" stroke-width="60"/>
|
||||
<path d="M0,0 600,300M600,0 0,300" stroke="#cf142b" stroke-width="40" clip-path="url(#c)"/>
|
||||
<path d="M300,0V350M0,150H700" stroke="#fff" stroke-width="100"/>
|
||||
<path d="M300,0V350M0,150H700" stroke="#cf142b" stroke-width="60"/>
|
||||
<path d="M0,300H600V0H800V400H0z" fill="#00247d"/>
|
||||
<g>
|
||||
<path fill="#cc3" d="m780.583,154.039c0,148.827,11.8732,201.675,52.6064,242.479,40.7332,40.8042,56.1659,47.2313,67.5231,53.4827,13.1015-7.21148,28.1971-15.1341,65.1152-52.0521,36.513-36.515,54.173-89.15,54.173-246.452-26.559,11.3712-39.7859,15.1175-63.0119,15.0513-17.202,1.68548-43.7399-9.33789-59.6086-16.5484-10.371,6.60246-25.4152,14.4763-52.4514,15.3604-31.2252,1.30952-41.1191-3.73522-64.3451-11.3217z"/>
|
||||
<path fill="#fff" d="m787.775,163.438c0,46.0434-2.72184,108.794,7.00639,145.1,9.77001,36.4622,12.0129,41.8034,19.3596,54.5282l171.206-1.27105c10.576-18.3181,11.1098-29.6647,18.9526-58.9348,7.8148-29.1649,9.7886-94.177,10.0167-142.6-17.216,8.72445-39.7613,14.9075-61.6436,12.1948-17.5423-1.2754-33.7513-5.09258-52.6268-15.2637-16.374,9.35261-22.0822,13.6217-49.1184,14.7138-21.0507,0.98975-38.1018,2.61503-63.1522-8.46789z"/>
|
||||
<path fill="#9cf" d="m814.51,362.056c12.1849,24.4477,69.6325,71.3032,86.433,81.0029,19.168-11.0667,69.8476-57.368,83.9727-81.0029h-170.406z"/>
|
||||
<path fill="#f90" d="m904.221,231.606c5.41355,12.1396,22.7699,25.5448,27.5414,32.1145-6.07314,6.56934-7.28706,5.85387-6.49064,18.0587,10.5604-10.534,10.7499-11.6322,17.5423-10.0346,14.8794,14.1555,2.66292,44.5571-9.63422,51.1666-12.2936,7.05101-10.0622-0.24417-28.4886,8.59299,8.44836,6.88711,18.237-1.01015,26.2362,1.10047,4.34697,4.91697-2.06648,13.8779,1.31216,22.317,7.06953-0.6489,6.22049-14.2559,7.86595-19.1896,5.16445-18.0757,36.2143-30.6826,37.7931-47.2631,6.54677-2.93012,13.09-0.9165,21.0507,3.34487-3.96455-15.5336-17.0792-15.3664-20.5946-20.2178-8.36767-12.1907-15.7845-26.0981-33.6566-29.7059-13.5672-2.73878-12.5532,0.82385-21.2472-4.83-5.41355-4.01853-21.8612-11.6181-19.2298-5.45416z"/>
|
||||
<path fill="#f90" d="m860.839,283.106c8.72935-10.2344,13.0534-31.1272,16.9171-38.2184,8.92956,2.05041,8.83312,3.40792,19.7799-2.96497-14.7027-3.98084-15.8096-3.62755-17.5012-10.0994,6.17695-19.1553,40.0786-23.0599,51.953-15.7817,12.2822,7.06894,4.4742,8.596,21.2779,20.0001,2.44044-10.3389-9.45634-14.9009-11.2359-22.6298,2.52932-5.96126,13.8358-4.74122,20.084-11.5316-3.90439-5.6561-16.127,1.41619-21.4712,2.33396-19.1762,4.09085-45.373-16.1931-61.4875-9.77821-5.77578-4.14976-6.96507-10.606-6.73193-19.3072-12.5539,10.5985-6.27225,21.5753-9.12921,26.805-7.39678,12.7485-16.8297,25.4974-11.8265,42.248,3.79803,12.7158,6.62838,10.1968,5.44639,20.1666-1.19785,6.44061-0.56211,23.8553,3.92513,18.7577z"/>
|
||||
<path fill="#f90" d="m931.763,290.302c-13.7027-1.82835-34.6943,5.45107-43.0585,5.96673-2.77851-8.34642-1.51002-8.96995-12.8934-14.605,4.03197,14.0554,4.9217,14.7758-0.0129,19.5038-20.3904,4.86884-41.4321-20.7724-41.0411-34.2257-0.008-13.6779,5.40195-8.09713,6.94685-27.7067-10.5433,3.35691-8.48447,15.4235-14.502,20.8735-6.65962,1.01994-11.4131-8.83635-20.7407-10.4218-3.05765,6.11145,9.61345,12.4257,13.2018,16.3114,13.5917,13.53,8.93457,45.397,23.0288,55.2268-0.7374,6.85915-5.91783,11.1692-13.8492,15.48,16.0079,4.76053,22.612-6.04289,28.7845-6.41709,15.2702-0.5594,31.594,0.5423,44.0424-12.2046,9.45-9.67656,5.72467-10.6828,15.2857-14.8756,6.40117-2.35427,21.7049-11.8813,14.8078-12.9056z"/>
|
||||
<circle fill="#fff" cx="266.239" cy="122.104" r="0.806" transform="matrix(3.5084546,0,0,3.3448778,6.3307176,-163.01097)"/>
|
||||
<circle fill="#fff" cx="266.239" cy="122.104" r="0.806" transform="matrix(-1.6389991,-2.9574373,3.1020668,-1.5625831,914.32327,1224.3275)"/>
|
||||
<circle fill="#fff" cx="266.239" cy="122.104" r="0.806" transform="matrix(-1.8069804,2.8671155,-3.007328,-1.7227325,1749.0027,-240.21318)"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.0 KiB |
6
build/default/data/svg/AL.svg
Normal file
|
After Width: | Height: | Size: 6.3 KiB |
6
build/default/data/svg/AM.svg
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="1200" height="600">
|
||||
<rect fill="#F2A800" width="1200" height="600"/>
|
||||
<rect fill="#0033A0" width="1200" height="400"/>
|
||||
<rect fill="#D90012" width="1200" height="200"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 260 B |
23
build/default/data/svg/AO.svg
Normal file
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="450" height="300">
|
||||
<rect width="450" height="300" fill="#000"/>
|
||||
<rect width="450" height="150" fill="#ce1126"/>
|
||||
<g fill="#f9d616">
|
||||
<path d="M231.115,91.82A58.5,58.5 0 1,1 187.916,195.244L179.358,205.685A72,72 0 1,0 232.526,78.394z"/>
|
||||
<g id="s3">
|
||||
<path id="s" d="M302.62435,142.35494C303.12516,147.43953 303.12516,152.56101 302.62435,157.6456L287.69659,156.17534C288.10106,152.06855 288.10106,147.93196 287.69659,143.82518z"/>
|
||||
<use xlink:href="#s" transform="rotate(22.5,225,150)"/>
|
||||
<use xlink:href="#s" transform="rotate(45,225,150)"/>
|
||||
</g>
|
||||
<use xlink:href="#s3" transform="rotate(-67.5,225,150)"/>
|
||||
<use xlink:href="#s3" transform="rotate(67.5,225,150)"/>
|
||||
<path d="M199.32444,114.65618H250.67551L209.1325,144.84033 224.99998,96.000328 240.86746,144.84033z"/>
|
||||
<path d="M287.87869,216.3146C291.71694,220.02891 296.88529,223.69038 300.6338,227.01716C304.38231,230.34392 307.25434,233.10958 309.57908,236.88884C312.98624,242.42773 309.16023,248.7008 303.85486,245.01872C300.98581,243.02751 299.18307,237.65214 294.78788,233.20395C291.53252,230.43267 288.96764,227.52745 280.78551,226.1257C280.39268,226.05841 280.27777,225.22842 280.58665,224.86618z"/>
|
||||
<path fill="#000" d="M231.36058,197.84505 251.60791,209.8174 256.00949,226.89558 279.24991,225.13494 289.46162,213.16262 251.60791,186.9291 231.36058,197.84505z"/>
|
||||
<path d="M279.66324,223.6894C253.62799,206.37539 237.07238,197.02622 212.12131,182.83938C202.31974,177.26634 187.0985,163.25747 199.1052,139.81914C199.86106,155.20638 260.67394,197.4423 286.3703,215.80679z"/>
|
||||
<path fill="none" stroke="#000" stroke-width="1.5" stroke-linecap="round" d="M216.08561,167.51949C236.13137,186.41034 261.37565,201.82127 283.89761,218.85496"/>
|
||||
<circle id="c" cx="290.4" cy="222.297" r="1.008" fill="#000"/>
|
||||
<use xlink:href="#c" x="7.41957" y="6.4655991"/>
|
||||
<use xlink:href="#c" x="13.93812" y="13.090317"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
11
build/default/data/svg/AQ.svg
Normal file
|
After Width: | Height: | Size: 6.7 KiB |
34
build/default/data/svg/AR.svg
Normal file
@@ -0,0 +1,34 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="800" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.0" height="500">
|
||||
<rect width="800" fill="#74acdf" height="500"/>
|
||||
<rect y="166.67" width="800" fill="#fff" height="166.67"/>
|
||||
<g id="rays">
|
||||
<path id="ray1" stroke-width="1.1116" stroke="#85340a" fill="#f6b40e" d="m396.84 251.31l28.454 61.992s0.4896 1.185 1.28 0.8586c0.7902-0.3267 0.2988-1.5116 0.2988-1.5116l-23.715-63.956m-0.68 24.12c-0.3465 9.4278 5.4526 14.613 4.6943 23.032-0.7569 8.42 3.8673 13.18 4.9396 16.454 1.0733 3.2744-1.16 5.2323-0.198 5.6982 0.96336 0.4662 3.07-2.1207 2.3833-6.7756-0.68675-4.6549-4.2204-6.0368-3.3898-16.32 0.83-10.283-4.206-12.678-2.98-22.058"/>
|
||||
<use xlink:href="#ray1" transform="rotate(22.5 400,250)"/>
|
||||
<use xlink:href="#ray1" transform="rotate(45 400,250)"/>
|
||||
<use xlink:href="#ray1" transform="rotate(67.5 400,250)"/>
|
||||
<path id="ray2" fill="#85340a" d="m404.31 274.41c0.45334 9.0538 5.5867 13.063 4.5787 21.314 2.2133-6.5249-3.1233-11.583-2.82-21.22m-7.6487-23.757l19.487 42.577-16.329-43.887"/>
|
||||
<use xlink:href="#ray2" transform="rotate(22.5 400,250)"/>
|
||||
<use xlink:href="#ray2" transform="rotate(45 400,250)"/>
|
||||
<use xlink:href="#ray2" transform="rotate(67.5 400,250)"/>
|
||||
</g>
|
||||
<use xlink:href="#rays" transform="rotate(90 400,250)"/>
|
||||
<use xlink:href="#rays" transform="rotate(180 400,250)"/>
|
||||
<use xlink:href="#rays" transform="rotate(270 400,250)"/>
|
||||
<circle r="27.778" stroke="#85340a" cy="250" cx="400" stroke-width="1.5" fill="#f6b40e"/>
|
||||
<path id="loweyecontour" fill="#843511" d="m409.47 244.06c-1.8967 0.00003-3.7131 0.82183-4.7812 2.5312 2.1367 1.9227 6.8565 2.1318 10.062-0.21875-1.3883-1.4954-3.3845-2.3125-5.2812-2.3125zm-0.0312 0.4375c1.8462-0.0335 3.5717 0.81446 3.8125 1.6562-2.1367 2.3504-5.5508 2.1463-7.6875 0.4375 0.9348-1.4957 2.4391-2.0677 3.875-2.0938z"/>
|
||||
<use xlink:href="#uppalpebra" transform="matrix(-1 0 0 1 800.25 0)"/>
|
||||
<use xlink:href="#eyebrow_nose" transform="matrix(-1 0 0 1 800.25 0)"/>
|
||||
<use xlink:href="#pupil" transform="translate(18.862)"/>
|
||||
<use xlink:href="#lowpalpebra" transform="matrix(-1 0 0 1 800.25 0)"/>
|
||||
<path d="m395.75 253.84c-0.91341 0.16668-1.5625 0.97727-1.5625 1.9062 0 1.0614 0.87748 1.9062 1.9375 1.9062 0.62667 0 1.2025-0.2968 1.5625-0.8125 0.73952 0.55614 1.7646 0.61511 2.3125 0.625 0.0843 0.002 0.19312 0 0.25 0 0.54791-0.01 1.573-0.0689 2.3125-0.625 0.36 0.5157 0.93583 0.8125 1.5625 0.8125 1.06 0 1.9375-0.84488 1.9375-1.9062 0-0.92898-0.64918-1.7396-1.5625-1.9062 0.513 0.1809 0.84375 0.6765 0.84375 1.2188 0 0.7074-0.57124 1.2812-1.2812 1.2812-0.6804 0-1.2413-0.54015-1.2812-1.2188-0.20862 0.41637-1.0341 1.6551-2.6562 1.7188-1.6222-0.0636-2.4476-1.3024-2.6562-1.7188-0.04 0.6786-0.60085 1.2188-1.2812 1.2188-0.71001 0-1.2812-0.57385-1.2812-1.2812 0-0.54225 0.33075-1.0378 0.84375-1.2188z" fill="#85340a"/>
|
||||
<path d="m397.84 259.53c-2.138 0-2.9829 1.9368-4.9062 3.2188 1.0687-0.42633 1.9096-1.2693 3.4062-2.125 1.496-0.85442 2.7717 0.1875 3.625 0.1875h0.0312c0.8532 0 2.129-1.0416 3.625-0.1875 1.4967 0.8559 2.3688 1.6987 3.4375 2.125-1.9233-1.282-2.7996-3.2188-4.9375-3.2188-0.4266 0-1.2716 0.23055-2.125 0.65625h-0.0312c-0.85334-0.42642-1.6983-0.65625-2.125-0.65625z" fill="#85340a"/>
|
||||
<path d="m397.12 262.06c-0.8439 0.0374-1.9596 0.20675-3.5625 0.6875 3.8473-0.85434 4.6962 0.4375 6.4062 0.4375h0.0312c1.71 0 2.5588-1.292 6.4062-0.4375-4.2744-1.282-5.1242-0.4375-6.4062-0.4375h-0.0312c-0.80125 0-1.4372-0.3124-2.8438-0.25z" fill="#85340a"/>
|
||||
<path d="m393.75 262.72c-0.24819 0.003-0.51871 0.005-0.8125 0.0312 4.488 0.42766 2.3306 3 7.0312 3h0.0312c4.7007 0 2.5745-2.5724 7.0625-3-4.7007-0.4266-3.2146 2.3438-7.0625 2.3438h-0.0312c-3.6075 0-2.4959-2.4215-6.2188-2.375z" fill="#85340a"/>
|
||||
<path d="m403.85 269.66c0-2.1234-1.7233-3.8465-3.8463-3.8465-2.1233 0-3.8463 1.723-3.8463 3.8465 0.423-1.781 2.0166-3.0393 3.8463-3.0393 1.8333 0 3.424 1.2586 3.8463 3.0393v0 0z" fill="#85340a"/>
|
||||
<path id="eyebrow_nose" fill="#85340a" d="m382.73 244.02c4.9146-4.2729 11.11-4.9147 14.53-1.7086 0.837 1.1207 1.3733 2.319 1.5934 3.5696 0.4302 2.433-0.3303 5.0617-2.2367 7.7559 0.2151-0.001 0.6435 0.2124 0.8568 0.4266 1.6967-3.244 2.2967-6.5761 1.74-9.7454-0.1458-0.828-0.3735-1.643-0.6696-2.4357-4.7007-3.8452-11.11-4.2729-15.811 2.1377z"/>
|
||||
<path id="uppalpebra" fill="#85340a" d="m390.42 242.74c2.7767 0 3.4186 0.6417 4.7007 1.71 1.2833 1.0683 1.9233 0.8541 2.1367 1.0683 0.2124 0.2142 0 0.8541-0.4266 0.6399s-1.2833-0.6399-2.5633-1.7086c-1.2833-1.0696-2.5633-1.0683-3.8463-1.0683-3.8463 0-5.983 3.2046-6.4094 2.9907-0.4266-0.2142 2.1367-3.6325 6.4094-3.6325z"/>
|
||||
<use xlink:href="#loweyecontour" transform="translate(-19.181)"/>
|
||||
<circle id="pupil" cy="246.15" cx="390.54" r="1.923" fill="#85340a"/>
|
||||
<path id="lowpalpebra" fill="#85340a" d="m385.29 247.44c3.6327 2.7783 7.265 2.5644 9.4017 1.282 2.1367-1.282 2.1367-1.7086 1.71-1.7086-0.4266 0-0.8532 0.4266-2.5633 1.281-1.71 0.8559-4.273 0.8559-8.546-0.8541z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.9 KiB |
110
build/default/data/svg/AS.svg
Normal file
@@ -0,0 +1,110 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="1000" height="500">
|
||||
<rect height="500" width="1000" fill="#006"/>
|
||||
<path d="M0,250 1000,0V500z" fill="#bd1021"/>
|
||||
<path d="M107.14,250 1000,26.79V473.21" fill="#fff"/>
|
||||
<g stroke="#000" stroke-width="1.72">
|
||||
<path d="m832.04,306.06s-6.2429-5.108,1.135-13.337c-3.973-3.4049-0.2834-9.9312-0.2834-9.9312s-6.8111-2.5547,0.2834-13.054c-5.108-3.4049-2.8381-11.068-2.8381-11.068s-16.742-6.2429-0.85018-12.201c-13.054,5.6748-25.257-7.6626-25.257-7.6626l-19.012,0.56816c-3.2161-15.797-28.283-2.0814-9.6482-47.39-4.8242-0.85142-10.216-2.27-15.607,1.7027-5.3916,3.9728-20.715,12.486-29.796,3.9728-9.0806-8.5131,5.9593-20.715,6.2431-20.999,0.28367-0.2838,20.148-10.5,22.986-17.31-0.28381-5.108-6.5269-9.0806-0.85142-20.148,6.5267-10.5,46.538-20.432,64.701-23.837,8.7962-3.9728,12.769-11.635,12.769-11.635l1.9865,7.378s40.296-11.918,42.282-17.594c1.9865-5.6755,0.85156,5.1078,0.85156,5.1078,15.891-1.4189,36.038-15.04,38.876-8.7969,13.337-2.5539,38.877-13.905,38.877-13.905s8.7962-0.28364,2.5533,9.3646c3.973,6.2429-1.135,11.635-1.4184,11.635-0.28477,0,1.7017,6.2429-3.4062,9.6482,1.7045,5.3916-3.1215,9.6482-3.1215,9.6482s2.2713,6.5267-6.8097,9.932c0.85157,5.6755-5.108,6.8106-5.108,6.8106s0.85156,5.9593-3.1215,8.5131c0,4.5404-4.5398,6.8106-4.5398,6.8106s2.8367,1.7026-1.1363,4.5404c-3.9716,2.8377-45.119,28.093-45.119,27.81,0-0.28366,30.08,5.3917,32.066,6.5268,1.9865,1.1351,24.688,16.175,24.688,16.175l-22.987,28.377s-25.539-2.8367-26.673-1.4184c-1.135,1.4184,5.3914,1.9865,6.8097,4.2564,1.4197,2.2699,3.6896,7.6627,8.2294,7.0945,4.5412-0.56816-8.5129,8.2295-17.026,9.081,0,3.1215,10.783,3.4049,13.621,0.85155,2.8381-2.5547-6.8111,7.3779-7.9461,8.7962s12.771-1.9865,12.771-1.9865-2.2713,9.3644-14.472,12.202c4.8232,7.946,2.8367,13.054,2.5533,13.054-0.28339,0-7.946-7.946-15.324-6.5277,1.9865,7.6627,7.9461,14.756,9.6492,15.892,1.7017,1.135-13.337,0.85018-15.324-3.4062-1.9865-4.2564-3.6896,10.216,1.7018,14.757-6.2416,0.2834-11.634-3.4062-11.634-3.4062s-3.6882,8.5128-1.135,12.771c2.5547,4.2564-8.7962-8.5142-8.7962-8.5142l-21.567,9.081-4.8246-8.2294z" fill="#9c3900" stroke-linejoin="round"/>
|
||||
<g fill="#ffc221">
|
||||
<path d="m665.36,289.17c0.50543,0,31.331-0.50627,45.48-8.5913,7.0747,11.117,16.676,18.697,16.676,18.697l4.5481-16.17s11.117,0.50489,12.128,3.032c-1.516,3.0307-2.0213,7.0739-2.0213,7.0739s7.58,0.50627,8.0853,1.516c0.5053,1.0111-2.0213,9.601-2.0213,9.601l32.342,7.5801s2.5266-12.633,5.0532-11.117c2.5268,1.516,13.644,17.181,29.31,18.192,15.665,1.0111,16.676-13.139,16.676-13.139l3.5369,2.0223s6.569-14.149,7.5801-14.149,2.5272,2.0209,11.117,2.0209c2.5272,3.032,3.5383,10.106,3.5383,10.106s-9.6024,9.6024-6.5704,17.183c3.032,7.5801,3.5383,5.5578,3.5383,5.5578l69.736,16.676s3.5383,5.5592-2.5258,8.5913c0,0.50489-70.242-16.171-70.242-16.171s-6.5704,7.5801-11.623,6.0641c-5.053-1.516-1.516,3.032-1.516,3.032l75.8,6.0641s5.5592,7.0752,1.516,9.0962c-5.053,0.50488-81.864-5.053-81.864-5.053s-4.5481,9.601-9.601,1.516c-3.5369,5.5578-7.5801-1.516-7.5801-1.516s-6.569,5.053-7.5801-0.50626c-5.5592,4.0432-9.0961-2.5258-9.0961-2.5258l-32.341-2.0223-2.0213,3.032s5.5587,1.516-3.032,5.0543c-8.5907,3.5369,51.544,2.0209,53.06,2.5258,1.516,0.50625-4.0418,5.0543-4.0418,5.0543s30.825,2.0209,36.383-4.5481c5.5592-6.5703-2.0209,8.5899-2.0209,8.5899s24.256-1.0098,24.256-2.0209-0.50626,7.5801-17.181,6.569c10.106,6.5704,22.739,10.612,22.739,10.612s-12.633,3.032-27.287-0.50488c2.5258,6.569,13.644,12.633,13.644,12.633s-8.0864,7.0752-26.279-10.107c5.0543,9.0962,1.0111,12.634,0.50625,11.623-0.50625-1.0111-9.0961-13.644-29.309-18.192,12.633,8.085,7.0739,11.623,7.0739,11.623s-6.569-11.623-17.181,0c-4.0432-10.612-19.708-16.676-38.911-17.687-6.064-7.0739-9.6014-5.0529-23.751-9.0961-8.0853-9.0948-19.708-19.202-19.708-19.202s0.5053-13.644,14.149-12.128c1.516,4.5481,1.516,3.032,1.516,3.032s15.16-5.5592,19.708,2.0209c6.5692-11.623,15.665-1.7375,17.181,2.3043,4.3537,0.63832,26.278,1.2326,26.278,1.2326s-2.5272-4.5481-1.0112-4.0418c1.516,0.50488,13.644-4.5481,13.139-6.0641-0.50625-1.516-1.0111-6.569,1.0098-6.0641,2.0223,0.50489-17.181-2.5272-27.793,5.5592-3.5373-3.5383-1.0106-13.139-1.0106-13.139l-31.331-6.569-1.516,8.085s-9.096,1.516-8.5907-0.50487c0.50529-2.0223-2.0213,7.0739-2.0213,7.0739s-12.128-3.0321-12.128-3.5369c0-0.50489,3.5374-18.192,3.5374-17.687,0,0.50626-10.107,1.0112-24.256,11.623-4.0426-12.633-35.879-29.309-35.879-29.814z"/>
|
||||
<path d="m704.78,247.73s-21.224,18.191,0,28.803c1.0106-7.0752,2.5268-8.085,2.5268-8.085s17.687,6.569,28.299-9.0961c-4.5481-6.569-12.633-4.0418-12.633-4.0418s-16.676-0.001-18.192-7.5801z"/>
|
||||
</g>
|
||||
<path d="m722.47,255.82-14.655,12.633" fill="none"/>
|
||||
<g fill="#fff">
|
||||
<path d="m705.48,247.88,0,0s2.8377-2.8381,3.6891-6.2429c0.85129-3.4049-1.1351-7.0945,2.2702-10.216,3.4051-3.1215,48.241-22.134,51.93-25.823,3.6891-3.6888,10.499-11.634,11.351-13.337,0.85129-1.7027,3.4053,8.5131-4.2566,13.054,8.2293-2.2707,13.621-4.8243,17.026-3.6892-3.4058,4.8242-12.486,12.77-16.743,12.77,9.932-3.6896,19.012-6.8111,21.567-4.8246,2.5533,1.9865-12.202,11.919-18.162,12.486,9.932-2.5533,23.27-6.5263,24.971-2.2699-5.3914,1.7031-3.6896,3.1201-14.756,9.3644-1.4188,1.1363-8.5131,1.4184-8.5131,1.4184,8.5131-0.85156,20.147-4.2564,21.282,1.9865-6.8097,2.5533-9.3639,5.9595-15.039,7.3779-5.6755,1.4197-18.729,3.973-26.675,7.0945-7.9455,3.1215-19.58,12.202-19.58,12.202s-25.256,0.85155-25.256,0.56678c0-0.28339-4.824-11.634-5.1078-11.918z" stroke-linejoin="round"/>
|
||||
<path d="m921.99,230.57,49.092,9.3644s5.3928-6.2429,2.5547-9.6478c7.3779-1.7017,5.3914-11.351,5.3914-11.351s8.5128-3.6883,1.4183-12.202c4.826-4.8239-1.135-8.5128-1.135-8.5128s1.9865-8.5131-4.2564-9.3644c1.7031-6.8104-10.783-9.0807-10.783-9.0807s-25.823,7.0944-43.985,7.6618c5.9595,5.9593-2.2699,9.6482-2.2699,9.6482s4.8246,3.4053,3.4049,6.2429c-1.4183,2.8382,0.85157,5.9597-5.3914,7.9462,8.2294,3.6896-0.85156,9.9312-0.85156,9.9312s9.081,6.2429,6.8111,9.3644z"/>
|
||||
</g>
|
||||
<g fill="none">
|
||||
<path d="m742.17,293.72-6.5694,29.309"/>
|
||||
<path d="m748.24,304.83-2.0213,9.601"/>
|
||||
<path d="m780.58,312.41-3.032,9.0962"/>
|
||||
<path d="m836.67,374.06c-0.50489,0-16.17,2.0209-18.192,1.516-2.0209-0.50489,24.761,8.085,24.761,11.622"/>
|
||||
<path d="m808.37,377.6s-15.666-10.106-18.192-9.0961c-2.5269,1.0111,15.665-0.50489,17.181-2.0209"/>
|
||||
<path d="m776.03,365.98s-16.171,0.50488-17.687-1.0111,15.665,11.117,18.697,10.107"/>
|
||||
<path d="m744.7,358.9c-0.5053,0-11.117-4.0418-15.665-5.0543,4.0426,4.0432,7.0747,9.6024,17.181,11.623"/>
|
||||
<path d="m748.74,352.34c-0.50529-1.0111-20.213-7.0752-20.213-10.107,4.5481,1.516,11.117,3.5369,17.181,2.0209"/>
|
||||
<path d="m853.35,329.09-2.0209,9.0948"/>
|
||||
<path d="m767.6,343.56s3.3779,3.724,0.34585,8.2721"/>
|
||||
<path d="m838.69,347.28-5.5578,0.50625"/>
|
||||
<path d="m793.21,344.25,10.106,1.516"/>
|
||||
<path d="m820.4,318.26s0.2834,10.216-8.2294,9.9326c-8.5128-0.28477-5.6762,0.2834-5.6762,0.2834"/>
|
||||
<path d="m826.93,316.55s3.4049,1.135,2.5547,3.6896c-0.85155,2.5533,0.85018,9.9312-9.081,17.026-10.501,2.2699-9.3644-8.7962-9.3644-8.7962"/>
|
||||
<path d="m830.62,319.68s6.2429-3.6883,7.0945,2.2713c0.85018,5.9582-5.108,17.026-9.3644,18.729-4.2578,1.7018-9.081-0.28476-8.5142-3.1215"/>
|
||||
<path d="m838.28,322.23s5.6762-4.5412,7.3779,1.4184c1.7031,5.9596-4.5398,19.297-7.0945,19.58"/>
|
||||
<path d="m846.23,323.65s2.8381-1.4184,4.8232,0.28339"/>
|
||||
<path d="m837.15,344.08c-1.135,0.28339-5.9595,0.56678-7.6613-3.1215"/>
|
||||
<path d="m811.61,334.15c-0.28339,0-5.9582,0.28476-5.9582,0.28476"/>
|
||||
<path d="m833.46,356.57-0.56679-9.3644-2.2699-3.1215-3.973,3.973s-0.56816,9.3644-2.2699,10.216"/>
|
||||
<path d="m826.65,347.77c-0.28339-0.56678-3.1215-5.9582-3.1215-5.9582l-4.8246,5.9582s-0.5668,8.5142-2.2699,9.3658"/>
|
||||
<path d="m818.7,347.49c0-0.28339-1.9865-5.6748-1.9865-5.6748s-5.6748,3.1215-6.2429,5.3914c-0.56679,2.2699-0.85156,8.5128-2.2699,9.081"/>
|
||||
<path d="m810.47,346.07s0.56816-5.108-1.135-5.108c-1.7018,0-9.3644,7.0945-9.6478,13.337"/>
|
||||
<path d="m717.39,245.9s0.28382-5.6748,2.8377-7.6613c2.554-1.9865,15.324-6.8111,18.161-11.068,2.8377-4.2564-4.2566,7.3779-3.1215,10.499"/>
|
||||
<path d="m722.5,237.38s6.2431,2.2713,4.8242,7.0945"/>
|
||||
<path d="m57.344,126.01a3.9192,3.9192,0,1,1,-7.8384,0,3.9192,3.9192,0,1,1,7.8384,0z" transform="matrix(1.1946929,0,0,1.1946929,661.37184,90.106184)" stroke-width="1pt"/>
|
||||
<path d="m917.17,220.07,0,0s43.417,5.108,45.404,5.108c1.9865,0,9.6478,2.5547,11.068,5.108"/>
|
||||
<path d="m919.44,217.52,60.443,1.4184"/>
|
||||
<path d="m919.72,216.1s57.321-3.4049,61.294-9.3644"/>
|
||||
<path d="m921.43,203.61s57.606-6.2429,58.174-5.3916"/>
|
||||
<path d="m919.44,196.52s55.903-8.7969,56.47-7.378"/>
|
||||
<path d="m759.96,160.48s17.594,19.296,15.891,32.35"/>
|
||||
<path d="m774.72,182.61s5.6753,8.2293,7.9455,9.0806c2.2702,0.85128,22.134,1.9864,23.269,10.5,1.135,5.3916-4.2564,3.6885-3.4049,7.6616,1.4184,5.108,14.756,11.634,29.228,3.973"/>
|
||||
<path d="m818.42,217.8s11.918,17.594,29.512-1.4183"/>
|
||||
<path d="m838.85,224.05s14.472,7.6613,26.39-12.202"/>
|
||||
<path d="m849.92,225.75s7.0945,5.9596,21.852-1.9851"/>
|
||||
<path d="m892.2,215.82s21.85,4.5398,23.27,5.9596"/>
|
||||
<path d="m900.43,210.99c0.28339,0,15.324,0.56817,15.324,0.56817"/>
|
||||
<path d="m891.06,202.48s26.107-1.7026,29.513,3.6895"/>
|
||||
<path d="m879.71,194.25s36.607,1.4188,38.309,3.4053"/>
|
||||
<path d="m887.94,231.71s6.2429-1.7017,7.0945-0.85019"/>
|
||||
<path d="m873.75,247.03s8.2294,7.0945,18.73,3.973"/>
|
||||
<path d="m878.29,258.95s9.3644,4.2564,20.432,1.7018"/>
|
||||
<path d="m881.41,266.04s9.3644,6.2429,15.607,5.1066"/>
|
||||
<path d="m877.16,269.73s6.5263,4.8246,6.8097,7.3779"/>
|
||||
<path d="m868.08,275.41s1.9865,10.215,9.081,13.904"/>
|
||||
<path d="m863.25,279.95s-3.1215,13.337,4.8246,21.567"/>
|
||||
<path d="m855.02,290.45c0,0.28339-0.56679,6.2429-0.2834,6.8111"/>
|
||||
<path d="m803.94,238.8,15.324-0.85157s5.6748-2.2699,1.7017-5.9582"/>
|
||||
<path d="m822.96,235.4c0.28477,0,14.472,1.135,18.162,5.3914,3.6882,4.2564,8.2294,12.769,10.783,14.189,2.5547,1.4184,3.1215-0.56816,3.1215-0.56816"/>
|
||||
<path d="m848.78,252.14s-7.6613,13.054-1.7018,17.027"/>
|
||||
<path d="m844.52,266.61s-6.8097,9.081-1.4184,13.621"/>
|
||||
<path d="m841.69,279.1s-5.3914,8.7976,1.1363,14.756"/>
|
||||
<path d="m839.3,255.76c-0.36594,0.36594-6.591,4.7599-8.788,3.6621"/>
|
||||
<path d="m832.71,269.68s2.5629,2.5629,4.7599,2.197"/>
|
||||
<path d="m833.01,282.98,4.09,2.805"/>
|
||||
<path d="m833.56,293.17,3.5383,2.1351"/>
|
||||
<path d="m769.47,154.01s7.4602,3.8794,13.428,0c5.9688-3.8792,34.615-18.501,42.075-20.888,7.4591-2.3873,11.637-16.114,13.13-22.082"/>
|
||||
<path d="m832.44,127.15,41.777-12.235s6.8634-5.6697,7.1619-16.114"/>
|
||||
<path d="m878.39,110.14s41.776-4.1776,41.776-19.695"/>
|
||||
<path d="m913.6,101.19s43.866-11.936,48.044-16.412"/>
|
||||
<path d="m791.26,163.55s26.558-13.727,30.736-15.219c4.1766-1.4921,13.725-13.428-0.59705-13.428"/>
|
||||
<path d="m804.09,168.93c0.29852,0,21.783-14.025,28.945-15.815,3.8795-5.3712,1.7912-11.041-4.7737-9.8473"/>
|
||||
<path d="m834.82,149.53c0.59705-0.29839,11.638-0.59678,7.759,8.0569-5.6679,4.1776-30.139,16.412-30.139,16.412"/>
|
||||
<path d="m829.15,140.28,46.551-15.517s3.8795-8.0569-1.7898-9.2505"/>
|
||||
<path d="m912.71,101.49c0,0.29839,5.9692,3.5808,2.3882,8.9521-6.5648,3.8793-37.599,11.339-37.599,11.339"/>
|
||||
<path d="M959.85,96.712,915.99,108.95"/>
|
||||
<path d="m956.57,106.56-38.195,11.638"/>
|
||||
<path d="M953.29,116.11,919.57,126.25"/>
|
||||
<path d="m947.02,125.66c-0.89558,0-25.065,7.4602-25.065,7.4602"/>
|
||||
<path d="m941.65,133.12-15.518,6.2665"/>
|
||||
<path d="m937.77,141.47c-0.59705,0-13.428,5.6697-13.428,5.6697"/>
|
||||
<path d="m933.89,148.34-11.936,5.6695"/>
|
||||
<path d="m913.3,161.17s1.4926,0.59678,1.1941,2.3873"/>
|
||||
<path d="m883.16,177.58s5.0736,1.7903,0.29853,6.5649c-2.3868,3.2824-9.2502,2.3874-13.428,8.3553"/>
|
||||
<path d="m915.69,110.74s6.2677,1.4919,1.4926,9.5489c-12.534,4.7745-37.898,12.533-37.898,12.533s-1.1927,2.0889-4.4752,3.8793c-3.2824,1.7904-39.389,11.936-39.389,11.936"/>
|
||||
<path d="m917.78,119.99s6.8634,2.984,0,8.0569c-7.759,4.476-34.914,12.831-34.914,12.831s-0.29854,2.3871-1.4913,3.2824c-1.1941,0.89517-37.002,12.831-37.002,12.831"/>
|
||||
<path d="m919.57,128.04s7.1619,2.0889,0.89558,8.0568c-7.4604,4.4761-31.333,12.533-31.333,12.533s-2.3868,2.9839-6.2663,4.1776c-3.8795,1.1936-28.646,11.339-28.646,11.339"/>
|
||||
<path d="m921.36,136.1c2.0897,0.89517,7.759,1.7905,0.89559,7.1618-8.0561,3.5808-27.751,11.339-27.751,11.339l-1.7912,3.2824-31.332,13.428"/>
|
||||
<path d="m923.15,144.16s2.9839,3.581-3.581,7.7586c-7.1619,3.8792-22.678,9.8473-22.678,9.8473"/>
|
||||
<path d="m919.57,152.51s3.2824,2.0889-0.8942,5.0729c-4.7751,2.3873-23.574,12.235-23.574,12.235l-12.236,8.0569"/>
|
||||
<path d="m876.6,125.06c0,0.29839,5.0736,4.4761,3.2824,9.2505,4.4765,3.2824,3.581,6.8634,3.581,6.8634s6.2663,3.5808,5.3721,8.6537c6.2663,1.4921,5.9678,5.0729,5.9678,5.0729l-2.0897,3.2824s6.2663-0.29839,0.89558,7.7586c3.2824,1.7905,1.7912,3.8792,1.7912,3.8792"/>
|
||||
<path d="m893.61,166.24c-0.89558,0-21.783,7.7586-27.155,12.533"/>
|
||||
<path d="m843.18,156.99s6.2663-0.29839,5.3721,6.5648c7.1619-2.3873,5.6693,4.476,5.6693,4.476s8.3546-3.2824,6.8634,7.1618c5.3707-1.1936,4.4752,4.1776,4.4752,4.1776s4.7751-0.29839,4.7751,2.3873c3.2824-2.984,6.8634-1.492,6.8634-1.492s2.3868-3.2826,5.6693-2.3872"/>
|
||||
<path d="m848.85,163.26c0,0.59706-28.051,16.114-28.051,16.114"/>
|
||||
<path d="m854.22,168.33-21.187,13.13"/>
|
||||
<path d="m861.38,174.89c0,0.29839-18.502,11.041-18.502,11.041"/>
|
||||
<path d="m865.56,179.07s-13.13,10.743-16.114,10.146"/>
|
||||
<path d="m870.04,182.35s-7.4604,5.6698-13.727,8.3553"/>
|
||||
<path d="m877.79,179.97s2.3868,2.984-12.533,10.742"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 13 KiB |
5
build/default/data/svg/AT.svg
Normal file
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="900" height="600">
|
||||
<rect fill="#ed2939" width="900" height="600"/>
|
||||
<rect fill="#fff" y="200" width="900" height="200"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 213 B |
27
build/default/data/svg/AU.svg
Normal file
@@ -0,0 +1,27 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1280" height="640" viewBox="0 0 10080 5040">
|
||||
<defs>
|
||||
<clipPath id="c">
|
||||
<path d="M0,0V1.5H7V3H6zM6,0H3V3.5H0V3z"/>
|
||||
</clipPath>
|
||||
<path id="Star7" d="M0,-360 69.421398,-144.155019 281.459334,-224.456329 155.988466,-35.603349 350.974048,80.107536 125.093037,99.758368 156.198146,324.348792 0,160 -156.198146,324.348792 -125.093037,99.758368 -350.974048,80.107536 -155.988466,-35.603349 -281.459334,-224.456329 -69.421398,-144.155019z"/>
|
||||
<path id="Star5" d="M0,-210 54.859957,-75.508253 199.721868,-64.893569 88.765275,28.841586 123.434903,169.893569 0,93.333333 -123.434903,169.893569 -88.765275,28.841586 -199.721868,-64.893569 -54.859957,-75.508253z"/>
|
||||
<use id="Cstar" xlink:href="#Star7" transform="scale(2.1)"/>
|
||||
</defs>
|
||||
<g transform="scale(840)">
|
||||
<rect width="12" height="6" fill="#00008b"/>
|
||||
<path d="M0,0 6,3M6,0 0,3" stroke="#fff" stroke-width="0.6"/>
|
||||
<path d="M0,0 6,3M6,0 0,3" stroke="#f00" stroke-width="0.4" clip-path="url(#c)"/>
|
||||
<path d="M3,0V3.5M0,1.5H7" stroke="#fff"/>
|
||||
<path d="M3,0V3.5M0,1.5H7" stroke="#f00" stroke-width="0.6"/>
|
||||
<path d="M0,3H6V0H8V4H0z" fill="#00008b"/>
|
||||
</g>
|
||||
<g fill="#fff">
|
||||
<use id="Comwlth" xlink:href="#Cstar" x="2520" y="3780"/>
|
||||
<use id="αCrucis" xlink:href="#Star7" x="7560" y="4200"/>
|
||||
<use id="βCrucis" xlink:href="#Star7" x="6300" y="2205"/>
|
||||
<use id="γCrucis" xlink:href="#Star7" x="7560" y="840"/>
|
||||
<use id="δCrucis" xlink:href="#Star7" x="8680" y="1869"/>
|
||||
<use id="εCrucis" xlink:href="#Star5" x="8064" y="2730"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
9
build/default/data/svg/AW.svg
Normal file
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="900" height="600" viewBox="0 0 27 18">
|
||||
<path d="M0,0H27V18H0z" fill="#4189dd"/>
|
||||
<path d="M0,12H27v1H0v1H27v1H0z" fill="#f9d616"/>
|
||||
<g fill="#fff" transform="translate(4,4)">
|
||||
<path id="s" d="M0,-3 0.707107,-0.707107 3,0 0.707107,0.707107 0,3 -0.707107,0.707107 -3,0 -0.707107,-0.707107z"/>
|
||||
<use xlink:href="#s" transform="scale(0.770376)" fill="#d21034"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 495 B |
13
build/default/data/svg/AX.svg
Normal file
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg height="850" width="1300" version="1.1" xmlns="http://www.w3.org/2000/svg" id="Flag of Åland">
|
||||
<rect fill="#0053a5" height="850" width="1300" />
|
||||
<g fill="#ffce00">
|
||||
<rect height="850" width="250" x="400" />
|
||||
<rect height="250" width="1300" y="300" />
|
||||
</g>
|
||||
<g fill="#d21034">
|
||||
<rect height="850" width="100" x="475" />
|
||||
<rect height="100" width="1300" y="375" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 534 B |
8
build/default/data/svg/AZ.svg
Normal file
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" width="1200" height="600">
|
||||
<rect width="1200" height="600" style="fill:#0098c3"/>
|
||||
<rect width="1200" height="200" y="200" style="fill:#e00034"/>
|
||||
<rect width="1200" height="200" y="400" style="fill:#00ae65"/>
|
||||
<circle fill="#fff" cx="581" cy="300" r="90"/>
|
||||
<circle fill="#e00034" cx="600" cy="300" r="75"/>
|
||||
<path d="M 716.38014,335.33055 690.58329,323.09028 681.03508,350 671.44912,323.1037 645.66947,335.38014 657.90973,309.58329 631,300.03508 l 26.89631,-9.58596 -12.27645,-25.77965 25.79686,12.24026 9.54821,-26.90973 9.58596,26.8963 25.77965,-12.27644 -12.24026,25.79686 26.90973,9.5482 -26.8963,9.58596 z" style="fill:#fff"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 714 B |
1
build/default/data/svg/BA.svg
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="800" height="400" viewBox="0 0 16 8"><rect width="16" height="8" fill="#002395"/><path d="m4.24,0h8v8z" fill="#fecb00"/><g id="g"><path d="M2.353283,0.5248529 2.8,-0.85 3.246717,0.524853 2.077197,-0.324853H3.522803z" fill="#fff" id="s"/><use xlink:href="#s" x="1" y="1"/><use xlink:href="#s" x="2" y="2"/></g><use xlink:href="#g" x="3" y="3"/><use xlink:href="#g" x="6" y="6"/></svg>
|
||||
|
After Width: | Height: | Size: 512 B |
10
build/default/data/svg/BB.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="1500" height="1000" viewBox="0 0 24000 16000">
|
||||
<title>Flag of Barbados</title>
|
||||
<rect width="24000" height="16000" fill="#00267f" />
|
||||
<rect width="8000" height="16000" fill="#ffc726" x="8000" />
|
||||
<path id="h" fill="#000"
|
||||
d="M 12000,4124 C 11740,4833 11475,5571 10908,6136 C 11084,6078 11392,6026 11590,6031 L 11590,9013 L 10748,9138 C 10718,9135 10708,9088 10708,9024 C 10627,8098 10408,7320 10156,6515 C 10138,6405 9819,5985 10065,6059 C 10095,6063 10424,6197 10372,6133 C 9924,5669 9269,5335 8633,5236 C 8577,5222 8544,5250 8594,5315 C 9438,6614 10144,8147 10138,9966 C 10466,9966 11261,9772 11590,9772 C 11590,9772 11590,11876 11590,11876 L 12005,11876 12100, 6000 z"/>
|
||||
<use xlink:href="#h" transform="translate(24000,0) scale(-1,1)"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 985 B |
1
build/default/data/svg/BD.svg
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" width="500" height="300" viewBox="0 0 20 12"><rect width="20" height="12" fill="#006a4e"/><circle cx="9" cy="6" r="4" fill="#f42a41"/></svg>
|
||||
|
After Width: | Height: | Size: 219 B |
5
build/default/data/svg/BE.svg
Normal file
@@ -0,0 +1,5 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="450" height="390">
|
||||
<rect width="450" height="390" fill="#ED2939"/>
|
||||
<rect width="300" height="390" fill="#FAE042"/>
|
||||
<rect width="150" height="390"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 202 B |
15
build/default/data/svg/BF.svg
Normal file
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg version="1.0" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="900" height="600">
|
||||
<rect width="900" height="600" fill="#009e49"/>
|
||||
<rect width="900" height="300" fill="#ef2b2d"/>
|
||||
<g transform="translate(450,300)" fill="#fcd116">
|
||||
<g id="c">
|
||||
<path id="t" d="M 0,-100 V 0 H 50" transform="rotate(18 0,-100)"/>
|
||||
<use xlink:href="#t" transform="scale(-1,1)"/>
|
||||
</g>
|
||||
<use xlink:href="#c" transform="rotate(72)"/>
|
||||
<use xlink:href="#c" transform="rotate(144)"/>
|
||||
<use xlink:href="#c" transform="rotate(216)"/>
|
||||
<use xlink:href="#c" transform="rotate(288)"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 659 B |
6
build/default/data/svg/BG.svg
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="1000" height="600" viewBox="0 0 5 3">
|
||||
<rect width="5" height="3" fill="#fff"/>
|
||||
<rect width="5" height="2" y="1" fill="#00966E"/>
|
||||
<rect width="5" height="1" y="2" fill="#D62612"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 288 B |
5
build/default/data/svg/BH.svg
Normal file
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="1500" height="900" viewBox="0 0 150 90">
|
||||
<path d="M0,0H150V90H0" fill="#fff"/>
|
||||
<path fill="#ce1126" d="M150,0 37,0l23,9 -23,9 23,9 -23,9 23,9 -23,9 23,9 -23,9 23,9 -23,9H150"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 270 B |
27
build/default/data/svg/BI.svg
Normal file
@@ -0,0 +1,27 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="500" height="300">
|
||||
<defs>
|
||||
<g id="b" fill="#1eb53a">
|
||||
<g id="s">
|
||||
<g id="t">
|
||||
<g id="c">
|
||||
<path id="h" d="M0,-20V0H20" transform="rotate(30,0,-20)"/>
|
||||
<use xlink:href="#h" transform="scale(-1,1)"/>
|
||||
</g>
|
||||
<use xlink:href="#c" transform="rotate(120)"/>
|
||||
<use xlink:href="#c" transform="rotate(240)"/>
|
||||
</g>
|
||||
<use xlink:href="#t" transform="rotate(180)"/>
|
||||
</g>
|
||||
<use xlink:href="#s" fill="#ce1126" transform="scale(0.82)"/>
|
||||
</g>
|
||||
<use id="star" xlink:href="#b" x="250" y="106"/>
|
||||
</defs>
|
||||
<path d="M0,0H500L0,300H500z" fill="#ce1126"/>
|
||||
<path d="M0,0V300L500,0V300z" fill="#1eb53a"/>
|
||||
<path d="M0,0 500,300M500,0 0,300" stroke="#fff" stroke-width="40"/>
|
||||
<circle cx="250" cy="150" r="85" fill="#fff"/>
|
||||
<use xlink:href="#star"/>
|
||||
<use xlink:href="#star" transform="rotate(120,250,150)"/>
|
||||
<use xlink:href="#star" transform="rotate(240,250,150)"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 960 B |
6
build/default/data/svg/BJ.svg
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="1500" height="1000" viewBox="0 0 15 10">
|
||||
<rect width="15" height="10" fill="#fcd116" id="Yellow"/>
|
||||
<rect width="15" height="5" y="5" fill="#e8112d" id="Red"/>
|
||||
<rect width="6" height="10" fill="#008751" id="Green"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 324 B |
2
build/default/data/svg/BL.svg
Normal file
@@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="900" height="600"><rect width="900" height="600" fill="#ED2939"/><rect width="600" height="600" fill="#fff"/><rect width="300" height="600" fill="#002395"/></svg>
|
||||
|
After Width: | Height: | Size: 249 B |
245
build/default/data/svg/BM.svg
Normal file
|
After Width: | Height: | Size: 55 KiB |
59
build/default/data/svg/BN.svg
Normal file
@@ -0,0 +1,59 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1440" height="720">
|
||||
<rect width="1440" height="720" fill="#f7e017"/>
|
||||
<path d="M0,50V370L1440,520V350z" fill="#fff"/>
|
||||
<path d="M0,220V370L1440,670V520z" fill="#000"/>
|
||||
<g fill="#cf1126">
|
||||
<path d="M695.74,569.72c-19.36-2.57-37.11-8.73-49.44-17.17-2.39-1.64-4.64-2.98-4.99-2.98-0.36,0-0.65,1.82-0.65,4.07,0,6.37-2.56,9.58-9,11.25-6.16,1.6-15.56-1.63-23.18-7.95-7.89-6.55-17-11.55-24.71-13.55-6.35-1.66-14.78-1.39-20.87,0.65-2.83,0.95-6.05,2.29-7.17,2.98-1.11,0.69-2.36,1.25-2.76,1.25-1.08,0-0.93-6.85,0.2-9.04,1.49-2.87,5.16-5.7,9.44-7.26,2.16-0.79,3.93-1.8,3.93-2.25s-0.73-2.1-1.62-3.65c-2.9-5.08-1.71-10,3.35-13.87,5.18-3.96,13.95-4.64,21.7-1.69,1.95,0.74,3.77,1.35,4.04,1.35,1.02,0,0.4-1.43-2.41-5.52-3.24-4.74-3.88-7.08-3.48-12.72,0.52-7.14,6.34-12.98,13.47-13.5,5.82-0.42,9.44,1.54,18.03,9.72,25.65,24.46,53.54,37.94,86.07,41.59,8.21,0.92,24.73,0.43,34.42-1.03,29.27-4.41,58.76-19.13,81.79-40.82,6.38-6.01,9.45-7.6,14.68-7.62,4.55-0.02,7.74,1.45,11,5.05,2.97,3.3,3.98,6.43,3.66,11.44-0.21,3.21-0.73,4.79-2.64,7.9-2.82,4.59-2.34,5.01,3.24,2.85,7.54-2.94,16.83-1.58,21.84,3.18,4.41,4.19,4.83,8.38,1.4,14.06-1.25,2.08-2.27,4.03-2.27,4.34,0,0.57,0.95,0.84,5.53,1.58,5.99,0.96,9.42,5.41,9.42,12.21,0,2.04-0.25,3.7-0.56,3.7-0.3,0-2.57-0.83-5.04-1.85-6.98-2.88-10.95-3.62-19.11-3.57-6.21,0.04-8.35,0.33-12.68,1.74-6.63,2.17-13.72,6.35-19.5,11.5-6.37,5.68-10.38,7.47-16.58,7.42-5.76-0.06-9.7-1.73-11.78-5.02-1.11-1.76-1.27-2.83-1-6.81,0.18-2.59,0.14-4.71-0.07-4.71-0.22,0-2.46,1.42-4.99,3.17-6.64,4.56-10.87,6.82-18.47,9.83-23.18,9.17-56.63,13.14-82.24,9.75z"/>
|
||||
<path d="m706.34,525.17c-38.58-3.7033-75.494-23.798-97.939-55.657-24.37-33.235-32.05-77.117-24.611-117.24,3.9535-18.267,11.929-36.546,25.544-49.554-10.85,23.003-14.516,49.369-8.7299,74.29,8.989,49.753,51.036,91.87,101.34,99.156,19.9,5.761,40.487-0.32356,59.496-6.4934,41.935-14.779,73.879-54.583,77.777-99.079,3.3363-24.078-0.36023-49.114-11.207-70.916,6.1825,3.2692,13.987,16.087,18.589,24.707,16.003,31.003,16.734,68.155,7.3126,101.24-12.78,42.097-44.965,78.978-87.511,92.382-19.308,6.3081-39.842,8.2315-60.058,7.1679z"/>
|
||||
<g id="hand">
|
||||
<path d="m512.02,469.9c-2.5284-0.39577-5.3161,2.092-4.3628,4.6971,1.823,2.633,4.9641,3.9201,7.798,5.1795,6.7915,2.7224,14.179,3.7823,21.471,3.6055-2.5133-0.006,0.86258,0.026,1.8015-0.00068,5.774,0.0171,11.516-1.0234,16.944-2.98,3.018-1.0614,6.8641-2.0244,8.1009-5.3629,1.2069-2.1744-0.98008-4.3462-3.1859-3.9108-3.0714,0.67078-5.9433,2.064-8.9896,2.8576-6.5725,1.8534-13.494,2.5704-20.303,2.0116-4.9792-0.60782-9.8039-2.2005-14.41-4.1433-1.5972-0.70457-3.0962-1.7322-4.8648-1.9536z"/>
|
||||
<path d="m514.83,459.52c-2.5558-0.38057-4.7577,2.5607-3.6917,4.9076,1.965,2.8484,5.2671,4.3651,8.356,5.6992,5.3706,2.1486,11.204,3.0471,16.975,2.8752-2.1917-0.006,0.75258,0.026,1.5651-0.00068,4.9069,0.006,9.7882-0.96448,14.325-2.8311,2.7732-1.0787,6.1693-2.1246,7.3241-5.177,0.89621-1.6768,0.21293-4.1165-1.8997-4.2476-1.9288-0.0953-3.5928,1.1322-5.3782,1.6831-6.4849,2.6815-13.622,3.8183-20.614,3.2146-4.3567-0.56071-8.519-2.1681-12.47-4.0312-1.4847-0.71699-2.8205-1.8356-4.4909-2.092z"/>
|
||||
<path d="m518.28,449.57c-2.1908-0.26295-3.6978,2.2088-3.3288,4.1816,0.32687,1.7334,1.8824,2.8984,3.1689,3.9607,5.3292,3.8973,12.083,5.5573,18.626,5.3398-2.5415-0.009,3.4093,0.0418,1.5947-0.007,4.1442-0.0169,8.2378-1.0309,11.966-2.825,2.4889-1.0824,5.4115-2.3356,6.2502-5.1771,0.40122-1.3236,0.65233-3.227-0.84101-3.97-1.5638-0.87412-3.1169,0.47031-4.5388,1.0156-4.7891,2.4374-10.125,3.7932-15.507,3.7682-4.6507,0.15705-9.0334-1.799-13.068-3.9072-1.464-0.74578-2.6708-2.0422-4.3214-2.3798z"/>
|
||||
<path d="m481.53,302.7c-3.2575,3.2606-0.7701,9.2712-0.94626,13.543,1.6879,13.158,3.785,26.484,8.697,38.87,6.015,12.102,18.791,18.573,26.533,29.268,2.7675,5.155,1.7849,11.355,2.3681,16.994,0.45808,15.366,0.31593,30.743,0.047,46.111,6.9387,3.4817,14.474,6.9863,22.456,5.6471,4.7306-1.13,13.512-1.8326,14.496-6.5436-0.38235-26.5-0.6304-53.01-0.98289-79.506-2.6903-8.1185-10.951-12.32-17.129-17.514-5.0992-5.0259-9.844-10.435-14.188-16.099-2.6218-4.4175-12.868-6.0092-9.1612,1.6764,2.1735,6.6538,7.7204,11.61,9.1091,18.602,0.30342,3.8316,4.8776,10.879,0.97314,13.114-2.4837-4.2216-6.0823-7.815-10.682-9.9574-4.4324-3.3044-11.759-4.68-13.359-10.517-1.1745-8.2799-5.4152-15.782-10.887-21.986,1.4102-7.4368,0.005-16.737-6.4234-21.49l-0.92101-0.21254-0.00013-0.00002z"/>
|
||||
<path d="m491.44,304.19c-2.9629,0.47847-2.8621,4.2538-1.491,6.239,1.4583,4.2881,1.8554,8.9449,1.0659,13.409,5.2675,6.1665,9.3467,13.543,10.576,21.64,0.0299,3.0437,3.2327,4.0512,5.309,5.5551,4.8712,3.1016,10.348,5.3512,14.686,9.2326,0.91286,0.97602,1.6017,2.0271,0.9566,0.035-0.67695-2.5463-1.0251-5.3576-3.0207-7.2849-2.7345-2.939-6.15-5.5628-10.133-6.4593-0.33199-4.114-2.2913-7.8931-4.1017-11.532-2.0066-3.4792-4.1026-7.2065-7.5407-9.4626,0.13834-6.098,0.0385-12.495-2.5857-18.122-0.7696-1.4455-1.9032-3.163-3.7197-3.2499z"/>
|
||||
<path d="m499.73,306.62c-2.0642,0.61274-1.6695,3.1587-1.0158,4.7165,0.98881,4.3156,1.1436,8.7732,1.063,13.184,3.7911,3.0003,6.1624,7.3501,8.3216,11.586,1.3534,2.8304,2.6366,5.7518,3.1556,8.8651,3.0757,1.0188,5.7672,2.946,8.171,5.0773-0.95256-2.8824-3.0766-5.1129-4.5042-7.7441-1.5516-2.7372-3.0336-5.5913-3.6904-8.6923-2.9581-3.1576-4.5872-7.6305-3.9408-11.952,0.13267-4.7762-1.4093-9.7114-4.6059-13.311-0.8049-0.79276-1.7658-1.6692-2.954-1.7296z"/>
|
||||
<path d="m509.16,307.97c-1.1224,0.1984-1.8054,1.2662-2.4064,2.1373-0.23225,0.87316,0.83776,1.8114,1.0081,2.7596,1.3127,3.2919,1.8084,6.903,1.4162,10.426-0.0864,2.5018,0.80881,4.9458,2.0839,7.0649,0.36793-1.5628,1.8164-2.6864,3.3865-2.8406,0.57114-0.10043,1.4107,0.18835,1.0779-0.68251-0.39881-4.7853-1.128-9.5978-2.8007-14.119-0.64833-1.615-1.3844-3.3147-2.7835-4.4203-0.28367-0.20186-0.62304-0.3745-0.98205-0.32512z"/>
|
||||
</g>
|
||||
<use xlink:href="#hand" transform="matrix(-1,0,0,1,1440,0)"/>
|
||||
<path d="m715.67,475.98c-13.493-1.2846-25.667-11.12-29.829-24,0.22423-2.2187,2.9867,1.2413,4.2917,1.4741,2.4503,1.3606,5.0998,2.4802,7.9211,2.6539,3.5571,1.529,5.7565,5.0346,9.1516,6.8629,1.5764,1.2278,7.1544,3.641,6.1182-0.26421-1.307-2.04-2.2057-4.6242-1.0806-6.9613,1.8918-4.1503,4.8018-7.7638,7.7306-11.226,2.1527-0.71996,3.5939,3.5262,5.1338,4.9568,2.1308,3.2786,4.7004,7.2793,3.447,11.352-1.2198,1.5087-2.0216,6.0472,1.2409,4.5219,4.0213-1.7692,7.3158-4.7418,10.651-7.5175,2.9183-2.0384,6.6539-2.1824,9.7125-3.9699,1.4177-0.35921,4.3706-3.1946,4.9861-1.6225-1.6759,4.4876-4.4822,8.5068-7.4822,12.211-4.8588,5.5503-11.432,9.7247-18.786,10.902-4.3459,0.79562-8.806,0.96352-13.207,0.62747z"/>
|
||||
<path d="m731.53,460.22c0.29719-2.7079-0.31965-5.4735-1.703-7.9349-2.123-4.3258-5.1213-8.1663-8.0456-11.961-2.7573-1.615-4.2871,3.6582-6.1205,5.1714-2.8566,4.2769-6.4434,8.6562-6.617,14.036-1.6071,2.5012-4.6044-2.0411-5.8962-3.5357-2.4673-3.4911-4.3356-7.6206-4.0297-11.987-0.29227-7.0356,1.0571-14.041,3.6204-20.581,1.9348-5.5826,5.0755-11.006,4.7564-17.105,0.22416-4.5905-0.70745-9.6582-4.4262-12.745-3.538-2.7758,2.2916-3.3674,4.1432-1.928,3.1686,0.21257,4.8825,5.4481,7.7771,4.152,1.1532-2.7346,1.3824-5.9968,3.7595-8.1295,2.3338-3.1959,4.773,1.3562,5.5715,3.488,1.6467,1.8723-0.0931,6.5066,2.5817,6.6282,3.2062-2.2473,5.4923-6.0227,9.5918-6.8447,1.6623-0.94835,4.5034-0.12664,2.3114,1.7848-3.0339,2.8443-5.6262,6.4002-6.1786,10.631-0.92788,5.3074,0.39912,10.69,2.7124,15.47,4.4468,9.3901,7.8854,19.996,5.6361,30.444-1.0432,4.644-4.1982,8.6454-8.0313,11.341-0.4847,0.29274-1.2499,0.27192-1.4134-0.39473z"/>
|
||||
<path d="m726.73,389.63c-1.4562-2.6239-3.2238-5.2103-5.673-6.9945-2.3812-0.005-3.8508,2.9985-5.468,4.5721-1.134,2.11-2.5118,5.6386-5.3053,2.8796-4.4442-2.5928-5.2306-8.2748-5.202-12.958-0.27951-7.5908,2.777-14.674,5.4923-21.587,1.7275-4.3277,1.3019-9.1991,0.24806-13.634-1.3266-5.0918-5.4137-8.6231-8.5601-12.595,0.214-1.5365,4.235-0.69686,5.7483-0.40478,3.3588,0.85136,5.3664,3.8249,7.8703,5.9259,1.7818-0.53937,1.0545-4.1395,1.8839-5.833,0.0613-2.3821,3.233-5.5228,4.5407-2.1121,1.9588,2.1674-0.0626,6.4643,2.4686,7.8144,2.4113-0.89283,3.6009-3.5283,5.8666-4.72,2.2295-1.5204,5.3776-1.69,7.7781-0.49647,0.84484,2.2126-2.6402,4.0548-3.6496,5.9771-4.052,5.0056-5.4756,11.91-3.7401,18.112,1.3759,4.8649,3.8133,9.4058,4.6546,14.434,1.0126,5.6525,0.97903,11.589-0.48403,17.159-0.87455,3.3816-3.8021,5.6402-6.8258,7.0448-0.74602-0.69428-1.1395-1.7142-1.6436-2.583z"/>
|
||||
<path d="M711.61,326.89c-3.36-2.46-4.47-4.81-4.47-9.46,0-2.38,0.44-3.67,2.01-5.83,2.31-3.2,1.89-4.21-1.38-3.27-5.26,1.51-7.77,0.13-7.95-4.35-0.08-2.19,0.38-3.12,3.33-6.66,2.36-2.84,3.22-4.33,2.75-4.8-0.46-0.46-3.25,1.96-8.98,7.79-4.57,4.65-9.71,9.4-11.42,10.56-9.84,6.64-19.24,7.67-23.53,2.56-2.2-2.61-2.08-4.08,0.46-5.66,1.17-0.72,3.14-2.38,4.39-3.69,2.95-3.07,11.74-9.41,16.1-11.61,3.54-1.79,4.38-3,2.08-3-2.98,0-12.54,6.22-19.79,12.88-2.13,1.97-5.2,4.16-6.81,4.87-3.62,1.6-10.73,2.19-13.89,1.15-2.23-0.74-6.3-4.58-6.3-5.95,0-0.36,0.93-1.16,2.06-1.77,1.13-0.6,3.16-2.07,4.5-3.24,5.8-5.09,16.79-10.33,25.51-12.16,2.77-0.58,1.75-1.98-1.34-1.84-5.99,0.26-17.88,5.83-24.98,11.69-8.32,6.86-20.87,6.21-24.91-1.29-0.7-1.29-1.11-2.5-0.91-2.69,0.19-0.19,2.66-0.93,5.49-1.65,3.06-0.77,9.12-3.28,14.91-6.17,9.11-4.54,11.81-5.51,18.08-6.52,2.82-0.45,2.97-1.83,0.23-2.15-3.53-0.42-8.94,1.35-18.5,6.05-12.28,6.04-15.72,7.08-22.19,6.7-5.9-0.36-9.23-1.87-14.02-6.4-3.13-2.97-7.57-10.51-6.7-11.38,0.21-0.21,1.65,0,3.2,0.45,1.72,0.51,6.65,0.85,12.59,0.86,8.31,0.02,10.52-0.2,14.95-1.48,7.41-2.14,17.26-7.15,24-12.18,12.89-9.64,23.4-13.51,36.8-13.57,12.37-0.05,20.24,2.81,27.21,9.88,2.36,2.39,4.37,3.94,4.7,3.61,0.31-0.31,0.65-4.49,0.75-9.29,0,0,3.64-0.35,4.41,0.67,0,7.79,0.09,8.4,1.22,8.4,0.74,0,1.53-0.76,2.02-1.94,1.06-2.55,4.98-6.04,9.17-8.16,9.05-4.59,24.71-4.73,37.29-0.34,5.3,1.86,11.18,5.18,16.78,9.5,5.62,4.32,17.11,10.1,23.9,12.03,6.87,1.95,18.98,2.44,25.19,1.03,2.56-0.58,4.96-1.06,5.34-1.06,2.29,0-1.61,7.63-6.19,12.1-8.37,8.18-19.26,8.14-34.58-0.12-9.55-5.14-20.97-7.95-20.97-5.15,0,0.58,0.6,0.97,1.49,0.97,3.32,0,9.73,2.23,18.67,6.47,9.67,4.6,15.1,6.54,18.32,6.54,2.34,0,2.41,1.45,0.23,4.65-2.31,3.41-6.23,5.1-11.77,5.09-5.29-0.02-8.23-1.18-12.96-5.11-7.91-6.58-27.62-13.92-26.86-10,0.15,0.78,1.1,1.26,3.13,1.57,6.86,1.05,14.91,4.89,23.15,11.06,2.54,1.91,5.18,3.79,5.85,4.19,1.13,0.66,1.15,0.86,0.26,2.53-1.48,2.76-5.21,4.9-9.25,5.32-5.23,0.54-9.78-1.02-14.49-4.96-9.94-8.32-19.31-14.34-22.31-14.34-2.45,0-1.35,1.35,2.97,3.64,5.68,3.01,11.52,7.08,15.82,11.03,2.03,1.88,4.32,3.74,5.08,4.15,1.8,0.96,1.73,2.37-0.25,4.96-2.02,2.64-5.36,3.8-9.69,3.34-8.64-0.91-15.38-5.08-25.97-16.07-4.14-4.29-7.83-7.8-8.21-7.8-1.41,0-0.58,1.91,2.15,4.97,3.38,3.78,4.03,5.91,2.75,8.98-1.13,2.72-3.01,3.35-6.87,2.31-3.95-1.07-4.57-0.1-1.98,3.12,3.86,4.81,3.29,10.7-1.44,14.75-1.47,1.25-3.01,2.28-3.43,2.28-0.41,0-1.45-1.07-2.32-2.38-3.04-4.62-5.71-4.59-8.67,0.08-1.03,1.63-1.9,2.95-1.93,2.94-0.04-0.01-1.43-1.01-3.08-2.23z"/>
|
||||
<path d="M726.67,233.03,721.54,237.09,716.94,233.62,716.94,261.36,726.67,261.48z"/>
|
||||
<path d="M694.89,204.25c-1.02,13.11-4.35,22.26-8.98,32.35l11.1-10.29,7.72,9.17,8.36-9.33,8.53,7.88,8.2-8.2,8.52,9.97,7.4-8.2,12.54,9c-4.55-10.09-10.71-18.64-9.94-32.84-12.15,9.03-41.02,10.66-53.45,0.49z"/>
|
||||
<path d="M716.95,197.56c-4.46,0.08-9.16,0.14-13.39,0.97-2.93,0.58-5.59,1.53-7.81,3.1,0.36,8.53,41,12.09,51.9,0.16-2.29-1.67-5.09-2.66-8.17-3.26-4.07-0.79-8.57-0.87-12.84-0.94,0,2.34,0.02,4.69,0.02,7.04l-9.71-0.03v-7.04z"/>
|
||||
<path d="M724.9,153.97,718.59,154.02,718.59,203.4,725.03,203.43z"/>
|
||||
<path d="M724.89,155.24,722.48,178.88,746.8,190.76,734.49,174.3,751.3,168.85z"/>
|
||||
<path d="M722.18,149.08c-3.69,0-6.42,1.38-6.42,3.02s2.73,3.03,6.42,3.03,6.4-1.39,6.4-3.03-2.71-3.02-6.4-3.02z"/>
|
||||
</g>
|
||||
<g fill="#f7e017">
|
||||
<path d="M711.05,563.82c3.99-1.32,6.26-3.74,7.89-8.4,0.81-2.32,1.36-4.73,1.22-5.36-0.34-1.49-2.06-1.41-3.96,0.17-1.3,1.09-1.46,1.64-1.09,3.86,0.95,5.6-1.04,6.99-11.64,8.13-1.05,0.11-4.09-0.07-6.77-0.4-5.04-0.63-6.84-0.13-5.01,1.39,0.55,0.46,1.95,1.08,3.11,1.37,2.83,0.73,13.22,0.24,16.25-0.76z"/>
|
||||
<path d="M733.02,562.89c0.6-0.55,2.66-1.5,4.58-2.12,2.56-0.82,3.88-1.7,4.96-3.31,3.11-4.63,2.53-8.62-2.04-14-2.48-2.92-3.58-2.84-5.56,0.4-1.71,2.8-1.67,2.98,0.79,3.62,1.29,0.33,2.53,1.28,3.21,2.45,2.68,4.64,1.89,7.51-2.08,7.54-3.6,0.03-4.59,0.54-5.56,2.87-0.51,1.21-0.92,2.5-0.92,2.87,0,0.98,1.36,0.81,2.62-0.32z"/>
|
||||
<path d="M725.81,557.65c0.68-1.84,0.92-5.15,0.84-11.9-0.05-5.14-0.25-9.5-0.45-9.7-0.6-0.6-3.56,1.31-3.95,2.54-0.2,0.64,0.13,2.12,0.73,3.28,0.92,1.79,1.04,3.46,0.76,10.47-0.36,8.86,0.22,10.35,2.07,5.31z"/>
|
||||
<path d="M708.89,553.43c0.36-1.65,0.82-5.03,1.03-7.5s0.72-5.59,1.12-6.94c1.02-3.46-0.01-4.37-2.74-2.43l-2.03,1.45,0.42,4.97c0.39,4.48-0.32,12.83-1.35,16.07-0.28,0.86,0.12,0.64,1.25-0.68,0.91-1.06,1.95-3.29,2.3-4.94z"/>
|
||||
<path d="m693.88,555.84c3.6514-3.0546,3.2318-8.2704,4.04-12.52-0.0835-2.8248,1.8038-6.2116,0.58588-8.6828-3.4119,0.62408-5.5147,3.8554-3.7684,7.0746,0.14546,3.7382,0.0129,7.8076-1.9089,11.113-1.5698,2.1618-6.5419,1.6234-6.3131-1.4406,1.2477-4.6065-4.2718-2.3648-6.4264-1.1571-1.6657,1.1597-5.1825,1.2451-3.9601-1.6569-0.80663-3.8664-5.7798-1.4479-8.4816-1.4651-2.552-0.0466-0.21096-5.1708-3.8736-4.271-6.8058-0.53675-14.319,0.0602-20.21-4.0515-3.4486-1.6577-2.937-5.8052-1.1415-8.4888,2.1442-3.6651,2.7555-8.249,6.1588-11.093,3.369-3.231-3.1775-1.8666-4.6517-0.77788-3.2819,1.7962-0.23302,6.4226-2.9192,8.9886-1.5695,2.6611-3.6362,6.3361-7.2698,5.8296-5.2398-0.9908-8.2605-5.8651-12.017-9.1317-3.218-0.64222-1.4087,5.2218,0.25284,6.4543,3.2878,2.4618,7.1291,4.2558,11.092,5.3187,3.9439-0.63072,4.0717,4.5336,7.4444,5.3437,6.1873,2.883,13.083,3.7467,19.833,4.0986,2.6511,0.22107,1.16,4.9425,4.6458,4.0096,1.948,0.50493,6.3478-0.72487,6.5682,1.5381-2.9527,3.5059,2.8341,3.4276,4.9757,2.7999,2.742-0.41905,6.2461-1.4668,6.9708,2.2924,2.289,2.413,6.4921,2.057,9.2796,0.67619,0.39162-0.22691,0.75972-0.49483,1.0937-0.80043z"/>
|
||||
<path d="M634.12,525.57c1.11-1.41,2.77-4.26,3.69-6.34,0.91-2.09,2.28-4.46,3.03-5.27,1.76-1.9,0.78-3.07-2.06-2.44-1.5,0.33-2.11,0.88-2.36,2.18-0.85,4.24-2.39,8.58-3.76,10.6-2.48,3.66-2.54,3.81-1.52,3.81,0.53,0,1.87-1.14,2.98-2.54z"/>
|
||||
<path d="M596.66,502.09c-2.8,0-2.92,1.77-0.19,2.72,1.32,0.46,2.44,1.57,3.34,3.38,2.66,5.29,4.22,6.23,11.28,6.84l4.53,0.41,0.22,2.75c0.11,1.52,0.47,2.78,0.82,2.78s2.1-0.76,3.87-1.66c3.32-1.68,6.47-5.6,6.47-8.03,0-1.59-2.65-3.31-5.06-3.31-1.07,0-3.11,0.86-4.72,2.03-5.04,3.65-10.43,2.91-13.38-1.84-2.42-3.92-4.95-6.07-7.18-6.07zm24.46,9.75c1.34,0,1.67,0.99,0.94,2.88-0.5,1.3-2.13,1.34-2.62,0.06-0.58-1.51,0.23-2.94,1.68-2.94z"/>
|
||||
<path d="M810.84,505.69c-1.83,0.07-2.37,0.47-3.53,2.19-1.9,2.82-2.09,8.93-0.34,11.09,1.09,1.34,1.25,1.37,3.56,0.41,3.22-1.35,3.76-1.3,3.75,0.43-0.02,4.42-6.36,12.94-13,17.47-1.79,1.22-3.39,2.58-3.56,3.03-0.48,1.26,1.98,0.98,5-0.56,4.12-2.1,9.53-7.62,11.75-11.97,1.76-3.47,2.01-4.65,2.22-10.72,0.19-5.59,0.04-7.23-0.91-9.09-1.06-2.09-1.4-2.28-4.06-2.28-0.32,0-0.61-0.01-0.88,0zm0.22,3.9c1.38,0,1.62,0.31,1.78,2.29,0.14,1.64-0.15,2.64-1.06,3.46-1.24,1.12-1.34,1.11-2.44-0.56-1.54-2.36-0.59-5.19,1.72-5.19z"/>
|
||||
<path d="M780.7,552.27c5.85-2.88,9.3-6.12,11.52-10.81,1.05-2.23,1.91-4.33,1.91-4.69,0-0.81-2.88-2.15-4.61-2.15-1.72,0-2.07-1.19-1.33-4.48,0.72-3.21-0.15-7.23-1.56-7.23-0.51,0-1.41,0.75-2.01,1.66-0.92,1.41-0.97,2.01-0.29,4.06,1,3.04,0.21,5.31-2.51,7.25-1.29,0.92-2,1.98-2,3.01,0,0.87,0.11,1.58,0.24,1.58,0.14,0,1.56-0.74,3.16-1.63l2.92-1.63,1.72,1.35c0.94,0.74,1.72,1.95,1.72,2.69,0,3.56-10.15,9.54-17.12,10.1-3.71,0.3-4.34,0.17-5.63-1.11-1.05-1.05-1.35-1.93-1.09-3.17,0.2-0.95,0.56-2.68,0.8-3.84,0.64-3.1-0.69-2.68-2.99,0.94-1.89,2.99-2.45,6.18-1.39,7.86,0.87,1.37,6.65,2.68,10.74,2.43,2.57-0.15,5.11-0.87,7.8-2.19z"/>
|
||||
<path d="M819.74,530.49c3.68-3.67,5.24-8.14,5.26-15.05l0.01-5.19,3.04-1.44c3.95-1.88,7.69-5.62,7.69-7.7,0-2.14-0.95-2.03-2.67,0.3-1.25,1.69-2.92,2.71-9.03,5.52-1.54,0.71-1.64,1.09-1.99,7.55-0.41,7.45-1.42,10.24-5.58,15.33-2.55,3.1-2.64,3.51-0.87,3.51,0.73,0,2.59-1.27,4.14-2.83z"/>
|
||||
<path d="M779.66,526.33c0.35-1.07-1.68-1.83-2.56-0.96-0.37,0.37-0.47,1.01-0.22,1.42,0.58,0.93,2.42,0.62,2.78-0.46z"/>
|
||||
<path d="M834.93,512.02c0.36-1.07-1.68-1.83-2.55-0.96-0.38,0.38-0.48,1.02-0.23,1.43,0.58,0.93,2.42,0.62,2.78-0.47z"/>
|
||||
<path d="m768.41,473.28c-1.4296,0.68071-2.1713,2.2244-3.165,3.4028-0.71516,0.48622-0.14203,0.9405,0.26976,1.3988,2.5225,2.7171,3.5898,6.3866,4.7883,9.8088,1.177,4.0402,2.659,8.3784,1.4283,12.588-0.48423,1.6123-1.7525,3.2813-3.6466,2.746-3.0304-0.18916-6.0122-0.99351-9.0512-0.96152-2.705,0.14095-4.7956,2.6024-7.5614,2.3341-1.767,0.11638-1.6925-3.618-3.3341-2.6194-0.8128,1.9472-0.41254,4.1196-0.50932,6.1787,0.30628,0.29508,1.165,0.0377,1.6799,0.1242h5.4451c0.38492,1.8802,0.33677,4.0358,1.6875,5.5312,1.8899,0.67214,4.0159,0.0917,5.8116-0.64309,1.9256-0.89569,2.1834-3.2112,2.7274-5.0153,0.57858-1.9384,3.117-1.4302,4.6149-2.1913,3.6648-1.0697,6.0666-4.8789,5.852-8.6268-0.23686-5.722-2.4198-11.105-4.0759-16.521-0.83346-2.386-1.4104-4.875-2.377-7.2045-0.11331-0.20034-0.34573-0.36894-0.58432-0.32903zm-9.07,32.72c2.0364-0.13276,2.9212,2.3697,2.4899,4.0293-0.76215,2.2555-3.5349,0.80928-4.0958-0.81602-1.0301-1.4517-0.39353-3.4044,1.6058-3.2133z"/>
|
||||
<path d="M683.94,487.22c-0.91-0.02-1.93,0.32-2.94,1.03-5.31,3.72-6.67,8.12-3.06,9.84,2.65,1.27,1.98,2.76-2.19,4.85-5.97,2.98-11.24,2.61-21.25-1.53-2.46-1.02-3.1-0.63-2.53,1.62,0.55,2.21,2.57,3.42,7.59,4.56,5.4,1.24,11.93,0.84,16.13-0.97,2.05-0.88,4.48-2.73,6.53-4.96l3.25-3.57,3.78,0.47c4.66,0.57,4.75,0.62,4.75,2.85,0,1.77,0.1,1.81,4.38,2.21,2.41,0.23,5.58,0.44,7.06,0.44,1.89,0.01,2.96,0.34,3.59,1.22,0.84,1.17,1.34,1.23,8.38,0.6,6.58-0.6,7.87-0.55,10.84,0.46,2.11,0.72,4.43,1.01,6.19,0.82,5.04-0.57,11.99-4.69,13-7.72,0.12-0.37,1.95-1.02,4.06-1.44,5.09-1.02,5.31-2.13,0.56-2.72-2.06-0.26-5.15-1.01-6.87-1.69-1.73-0.68-4.09-1.25-5.25-1.25-2.56,0-4.97,1.6-4.97,3.25,0,1.08,0.38,1.19,3.41,0.88,2.85-0.29,3.68-0.13,5.18,1.06,0.99,0.78,1.65,1.7,1.44,2.03-0.67,1.09-6.62,3.8-9.25,4.22-1.76,0.28-3.18,0.09-4.56-0.62-2.31-1.2-5.71-1.38-6.35-0.35-0.27,0.45-1,0.16-2-0.78l-1.56-1.47-3.53,1.47c-3.59,1.49-4.91,1.43-4.91-0.28,0-0.78-1.05-0.87-6.34-0.53-5.83,0.38-6.44,0.28-7.53-0.94-1.01-1.12-1.03-1.51-0.31-2.66,0.66-1.06,0.66-1.52,0.03-2.15s-1.45-0.62-3.75,0c-5.8,1.55-7.44,0.68-7.44-3.85,0-2.72-1.56-4.37-3.56-4.4zm-1.44,4.16c0.31,0,0.57,0.19,0.97,0.59,0.51,0.51,0.78,1.4,0.56,1.97-0.52,1.35-2.98,1.3-3.5-0.06-0.25-0.66,0.07-1.4,0.81-1.94,0.52-0.38,0.85-0.57,1.16-0.56z"/>
|
||||
<path d="M672.1,495.6c3.53-2.24,3.45-2.07,3.96-8.29,0.35-4.39,0.29-4.72-0.9-4.72-1.73,0-2.63,1.9-2.63,5.52,0,2.32-0.36,3.36-1.6,4.59-2.94,2.94-10.24,1.6-11.16-2.05-0.31-1.25,0.09-2.38,1.62-4.55,3.19-4.53,2.47-5.64-1.44-2.2-2.69,2.35-3.17,2.42-2.66,0.39,0.47-1.87-0.51-2.61-2.7-2.06-1.12,0.28-1.73,0.98-2,2.34-0.26,1.33-0.87,2.07-1.93,2.33-1.77,0.45-4.79-1.23-4.79-2.66,0-1.06,4.52-6.58,10.32-12.6,2.19-2.28,3.98-4.4,3.98-4.72s-1.17-0.58-2.6-0.58c-2.09,0-2.6,0.23-2.6,1.2,0,0.66-2.92,4.49-6.5,8.52-7.46,8.4-8.08,10.15-4.39,12.39,2.97,1.82,6.78,1.68,9.77-0.35l2.42-1.65v2.99c0,3.82,0.76,5.19,3.76,6.78,3.77,1.99,8.33,1.75,12.07-0.62z"/>
|
||||
<path d="m828.66,443.69c-2.7668,1.6519-0.60168,5.1236-0.18254,7.4288-1.1299,3.146-5.1718,3.9934-8.1183,4.5774-4.1736,0.69135-7.1308,4.1827-8.7186,7.8921-0.86037,2.4089-2.9366,6.1445-5.1993,2.4767-1.9667-1.9933-5.5819-3.5732-7.9078-1.2462-1.7668,1.6824-2.2148,4.1568-2.8735,6.4025-1.0427-1.7262-1.5104-4.2966-3.7201-4.8424-3.5276,0.49628-2.2527,4.9439-0.594,6.7779,1.5076,2.1378,2.9558,4.9578,1.4779,7.4969-1.303,3.0516-5.8095,5.11-8.4565,2.4995-2.4722-1.305-0.81896-5.9649-3.254-6.221-1.204,0.86977-1.3032,5.7458-3.2303,3.1024-1.3906-2.2586-0.65318-5.3523-2.3547-7.3843-2.0106,0.24966-3.6272,3.7115-2.9583,5.5709,2.6825,3.6176,3.7849,8.1558,4.8314,12.467,0.65196,1.7264-0.0951,5.2267,1.5199,5.9106,1.1196-2.7787,0.0791-5.9306,0.96044-8.7358,2.6182-0.32901,5.5303,0.86591,8.2761,0.23077,3.9286-0.50981,6.9646-3.825,8.3424-7.3555,0.41644-2.6542-0.079-5.3476-0.15274-8.0168,3.1034,0.48084,6.3281,0.47101,9.3135,1.4788,1.4804,2.2709-0.46974,5.4485-0.87913,7.9295-1.5586,5.0524-5.5163,8.7194-9.366,12.097-1.6101,0.95299-1.8264,3.4782,0.55162,2.118,5.1735-2.2122,9.0295-6.8975,11.248-11.969,1.619-3.9019,0.31744-8.2474,1.3744-12.238,1.5617-2.9959,5.3215-2.3646,8.1035-2.3553,2.879-0.10959,5.3363-3.464,4.3747-6.2619-0.91607-3.2468,2.519-4.8109,4.8661-5.9714,3.1119-1.5702,5.4981-4.7591,5.2571-8.3583-0.12787-1.8402-0.0371-5.3318-2.5312-5.5zm-11.031,18.75c3.3336,0.88568-0.60342,7.2524-2.375,3.2188-0.54528-1.539,0.75001-3.2741,2.375-3.2188zm-15.47,4.56c4.3385-0.25338,2.7806,6.0812-0.88479,3.2048-1.9006-0.95441-1.2718-3.3229,0.88479-3.2048z"/>
|
||||
<path d="M645.1,491.48c0.12-0.63-0.2-1.08-0.77-1.08-1.21,0-1.94,1.06-1.37,1.98,0.59,0.95,1.89,0.41,2.14-0.9z"/>
|
||||
<path d="M695.94,485.8c0-0.93-0.35-1.28-1.13-1.13-1.7,0.32-1.89,2.48-0.22,2.48,0.93,0,1.35-0.42,1.35-1.35z"/>
|
||||
<path d="m633.03,455.28c-2.029-0.41667-3.3053,1.3004-4,2.9375-1.5174,2.5503-3.3705,5.1587-6.0931,6.5091-1.9578,0.54422-4.0937-0.20046-5.7819-1.2102-2.0147-1.0029-1.5567-3.4259-2.4202-5.1005-1.457-1.1443-4.0407,0.4921-3.9834,2.2714-0.16115,2.3862,2.0713,3.7641,3.9242,4.6869,1.5747,0.96445,3.8577,1.5009,4.4871,3.4529-0.0437,1.6587,0.6235,3.5571,2.6435,2.9166,2.2597-0.0372,2.8449,2.7155,1.9326,4.3671-0.92932,1.8613-1.5564,4.0416-1.1119,6.1154,1.08,0.90934,2.1827-1.5301,2.9652-2.2268,0.53138-0.70851,1.0628-1.417,1.5941-2.1255,3.9984,0.21679,7.9929,0.72673,12.001,0.5846,2.8505-0.0516,5.2778-1.8114,7.0906-3.875,2.5633-2.6802,4.6693-5.8294,7.597-8.142,2.0839-0.50859,0.96439-4.4336-1.2124-3.3001-1.9608,0.7355-2.578,2.9513-3.9368,4.3632-2.3146,2.8028-4.6762,5.6471-7.5941,7.8434-2.1245,0.8812-4.5705,0.49663-6.7532-0.00022-0.91062-0.79618,1.8087-1.445,2.188-2.33,1.252-1.2507,2.7385-2.438,3.4639-4.0814-0.69398-1.5148-2.8167-1.6373-4.3126-1.6678-3.6856,0.44249-6.5007,3.5363-10.223,3.8277-2.8253,0.099-1.355-2.9607-0.0813-4.0046,2.4916-2.9589,5.1844-5.7458,7.7858-8.6074,0.73816-0.88845,3.4086-1.732,1.7006-2.98-0.59723-0.21503-1.2431-0.21478-1.8694-0.22424zm1.8125,14.969c1.8586,1.0454-1.1858,2.7567-2.4681,2.5229-1.6823,0.50416-1.7125-1.2116-0.2183-1.5533,0.8401-0.43711,1.7274-0.89316,2.6864-0.96961zm-5.7188,3.9062c1.0579-0.0202,3.2748,0.99623,1.1931,1.6469-1.4494,1.1234-3.0867-1.1434-1.1931-1.6469z"/>
|
||||
<path d="M674.15,476.74c0-1.41-2.53-1.21-2.81,0.22-0.18,0.92,0.11,1.14,1.29,0.97,0.84-0.12,1.52-0.65,1.52-1.19z"/>
|
||||
<path d="M786.2,466.82c0.26-1.35-1.62-2.25-2.61-1.26s-0.08,2.87,1.26,2.61c0.62-0.12,1.23-0.73,1.35-1.35z"/>
|
||||
<path d="M611.82,453.09c1.76-1.51,1.78-1.61,1.02-4.93-1.08-4.65-1.01-5.15,0.76-5.59,2.24-0.57,7.93,2.48,9.19,4.92,0.98,1.89,0.95,2.02-0.71,3.56-1.79,1.65-1.78,3.58,0.01,3.58,1.48,0,5.57-3.87,5.57-5.26,0-1.93-4.54-6.49-8.13-8.16-2.22-1.04-4.44-1.52-7.01-1.53-4.6,0-5.22,0.99-3.98,6.34,1.46,6.27-0.52,7.12-5.57,2.39-3.75-3.51-5.23-7.16-5.21-12.91,0.01-6.17,2.37-9.22,7.69-9.94,3.53-0.47,3.44-1.3-0.19-1.84-5.3-0.8-9.78,2.74-11.48,9.06-1.89,7.01,2.44,15.55,10.1,19.95,4.01,2.3,5.61,2.37,7.94,0.36z"/>
|
||||
<path d="M820.66,445.4c0.43-0.43,0.78-1.4,0.78-2.15s0.73-2.36,1.62-3.57c0.9-1.21,1.63-2.45,1.63-2.75,0-1.23-2.03-1.19-3.63,0.08-1.64,1.28-2.87,1.31-2.87,0.06,0-0.31,0.78-0.95,1.74-1.42,2.38-1.16,2.58-2.31,0.57-3.23-2.58-1.17-5.17,0.97-5.44,4.5-0.17,2.36,0.02,2.77,1.84,3.84,1.66,0.98,1.97,1.5,1.69,2.9-0.48,2.43,0.53,3.28,2.07,1.74z"/>
|
||||
<path d="M840.29,443.18c1.44-1.29,2.61-2.76,2.61-3.25s1.24-1.79,2.76-2.88c4.31-3.1,5.26-6.23,3.33-11.04-0.75-1.89-3.11-4.5-8.24-9.12-3.94-3.56-7.57-6.47-8.04-6.47-1.4,0-1.15,5.15,0.27,5.6,2.56,0.82,4.11,1.87,8.14,5.5,4.68,4.23,6.84,8.18,5.66,10.38-1.13,2.13-2.63,1.47-6.76-2.96-2.17-2.33-4.32-4.23-4.76-4.23-0.48,0.01-0.82,0.85-0.82,2.03,0,1.48,0.79,2.89,2.93,5.27,3.49,3.88,3.83,6.21,1.21,8.27-0.94,0.74-1.91,1.35-2.15,1.35-0.23,0-1-1.16-1.7-2.57-1.46-2.96-10.39-12.39-11.73-12.39-0.61,0-0.91,0.76-0.91,2.26,0,1.81,0.36,2.45,1.8,3.19,1.77,0.92,6.15,5.33,10.55,10.65,1.26,1.52,2.5,2.75,2.77,2.76,0.26,0,1.65-1.06,3.08-2.35z"/>
|
||||
<path d="M849.05,418.11c-0.58-1.87-12.56-14.2-13.79-14.2-0.64,0-0.84,0.76-0.69,2.72,0.17,2.38,0.43,2.79,2.07,3.22,1.02,0.27,4.18,2.75,7.01,5.5,2.82,2.75,5.3,4.84,5.5,4.63,0.2-0.2,0.16-1.04-0.1-1.87z"/>
|
||||
<path d="m777.5,556.89a1.7806,1.6322,0,1,1,-3.5612,0,1.7806,1.6322,0,1,1,3.5612,0z"/>
|
||||
<path d="m783.79,554.79a1.7806,1.6322,0,1,1,-3.5612,0,1.7806,1.6322,0,1,1,3.5612,0z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 24 KiB |
8
build/default/data/svg/BO.svg
Normal file
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="1100" height="750">
|
||||
<rect fill="#007934" width="1100" height="750"/>
|
||||
<rect fill="#F9E300" width="1100" height="500"/>
|
||||
|
||||
<rect fill="#D52B1E" width="1100" height="250"/>
|
||||
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 262 B |
5
build/default/data/svg/BQ.svg
Normal file
@@ -0,0 +1,5 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="900" height="600" viewBox="0 0 9 6">
|
||||
<rect fill="#21468B" width="9" height="6"/>
|
||||
<rect fill="#FFF" width="9" height="4"/>
|
||||
<rect fill="#AE1C28" width="9" height="2"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 220 B |
90
build/default/data/svg/BR.svg
Normal file
@@ -0,0 +1,90 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="504" width="720" version="1.0" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="-2100 -1470 4200 2940">
|
||||
<defs>
|
||||
<path id="D" fill-rule="evenodd" d="m-31.5 0h33a30 30 0 0 0 30 -30v-10a30 30 0 0 0 -30 -30h-33zm13-13h19a19 19 0 0 0 19 -19v-6a19 19 0 0 0 -19 -19h-19z"/>
|
||||
<path id="E" transform="translate(-31.5)" d="m0 0h63v-13h-51v-18h40v-12h-40v-14h48v-13h-60z"/>
|
||||
<path id="e" d="m-26.25 0h52.5v-12h-40.5v-16h33v-12h-33v-11h39.25v-12h-51.25z"/>
|
||||
<g id="G">
|
||||
<clipPath id="gcut">
|
||||
<path d="m-31.5 0v-70h63v70zm31.5-47v12h31.5v-12z"/>
|
||||
</clipPath>
|
||||
<use xlink:href="#O" clip-path="url(#gcut)"/>
|
||||
<rect y="-35" x="5" height="10" width="26.5"/>
|
||||
<rect y="-35" x="21.5" height="35" width="10"/>
|
||||
</g>
|
||||
<path id="M" d="m-31.5 0h12v-48l14 48h11l14-48v48h12v-70h-17.5l-14 48-14-48h-17.5z"/>
|
||||
<path id="O" fill-rule="evenodd" d="m0 0a31.5 35 0 0 0 0 -70 31.5 35 0 0 0 0 70m0-13a18.5 22 0 0 0 0 -44 18.5 22 0 0 0 0 44"/>
|
||||
<path id="P" fill-rule="evenodd" d="m-31.5 0h13v-26h28a22 22 0 0 0 0 -44h-40zm13-39h27a9 9 0 0 0 0 -18h-27z"/>
|
||||
<g id="R">
|
||||
<use xlink:href="#P"/>
|
||||
<path d="m28 0c0-10 0-32-15-32h-19c22 0 22 22 22 32"/>
|
||||
</g>
|
||||
<path id="S" d="m-15.75-22c0 7 6.75 10.5 16.75 10.5s14.74-3.25 14.75-7.75c0-14.25-46.75-5.25-46.5-30.25 0.25-21.5 24.75-20.5 33.75-20.5s26 4 25.75 21.25h-15.25c0-7.5-7-10.25-15-10.25-7.75 0-13.25 1.25-13.25 8.5-0.25 11.75 46.25 4 46.25 28.75 0 18.25-18 21.75-31.5 21.75-11.5 0-31.55-4.5-31.5-22z"/>
|
||||
<g id="star" fill="#fff">
|
||||
<g id="c">
|
||||
<path id="t" transform="rotate(18 0,-1)" d="m0-1v1h0.5"/>
|
||||
<use xlink:href="#t" transform="scale(-1,1)"/>
|
||||
</g>
|
||||
<use xlink:href="#c" transform="rotate(72)"/>
|
||||
<use xlink:href="#c" transform="rotate(-72)"/>
|
||||
<use xlink:href="#c" transform="rotate(144)"/>
|
||||
<use xlink:href="#c" transform="rotate(216)"/>
|
||||
</g>
|
||||
<use id="star1" xlink:href="#star" transform="scale(31.5)"/>
|
||||
<use id="star2" xlink:href="#star" transform="scale(26.25)"/>
|
||||
<use id="star3" xlink:href="#star" transform="scale(21)"/>
|
||||
<use id="star4" xlink:href="#star" transform="scale(15)"/>
|
||||
<use id="star5" xlink:href="#star" transform="scale(10.5)"/>
|
||||
</defs>
|
||||
<rect y="-50%" x="-50%" height="100%" fill="#009b3a" width="100%"/>
|
||||
<path d="m-1743 0 1743 1113 1743-1113-1743-1113z" fill="#fedf00"/>
|
||||
<circle r="735" fill="#002776"/>
|
||||
<clipPath id="band">
|
||||
<circle r="735"/>
|
||||
</clipPath>
|
||||
<path fill="#fff" d="m-2205 1470a1785 1785 0 0 1 3570 0h-105a1680 1680 0 1 0 -3360 0z" clip-path="url(#band)"/>
|
||||
<g transform="translate(-420,1470)" fill="#009b3a">
|
||||
<use y="-1697.5" xlink:href="#O" transform="rotate(-7)"/>
|
||||
<use y="-1697.5" xlink:href="#R" transform="rotate(-4)"/>
|
||||
<use y="-1697.5" xlink:href="#D" transform="rotate(-1)"/>
|
||||
<use y="-1697.5" xlink:href="#E" transform="rotate(2)"/>
|
||||
<use y="-1697.5" xlink:href="#M" transform="rotate(5)"/>
|
||||
<use y="-1697.5" xlink:href="#e" transform="rotate(9.75)"/>
|
||||
<use y="-1697.5" xlink:href="#P" transform="rotate(14.5)"/>
|
||||
<use y="-1697.5" xlink:href="#R" transform="rotate(17.5)"/>
|
||||
<use y="-1697.5" xlink:href="#O" transform="rotate(20.5)"/>
|
||||
<use y="-1697.5" xlink:href="#G" transform="rotate(23.5)"/>
|
||||
<use y="-1697.5" xlink:href="#R" transform="rotate(26.5)"/>
|
||||
<use y="-1697.5" xlink:href="#E" transform="rotate(29.5)"/>
|
||||
<use y="-1697.5" xlink:href="#S" transform="rotate(32.5)"/>
|
||||
<use y="-1697.5" xlink:href="#S" transform="rotate(35.5)"/>
|
||||
<use y="-1697.5" xlink:href="#O" transform="rotate(38.5)"/>
|
||||
</g>
|
||||
<use id="αCMi" y="-132" x="-600" xlink:href="#star1"/>
|
||||
<use id="αCMa" y="177" x="-535" xlink:href="#star1"/>
|
||||
<use id="βCMa" y="243" x="-625" xlink:href="#star2"/>
|
||||
<use id="γCMa" y="132" x="-463" xlink:href="#star4"/>
|
||||
<use id="δCMa" y="250" x="-382" xlink:href="#star2"/>
|
||||
<use id="εCMa" y="323" x="-404" xlink:href="#star3"/>
|
||||
<use id="αVir" y="-228" x="228" xlink:href="#star1"/>
|
||||
<use id="αSco" y="258" x="515" xlink:href="#star1"/>
|
||||
<use id="βSco" y="265" x="617" xlink:href="#star3"/>
|
||||
<use id="εSco" y="323" x="545" xlink:href="#star2"/>
|
||||
<use id="θSco" y="477" x="368" xlink:href="#star2"/>
|
||||
<use id="ιSco" y="551" x="367" xlink:href="#star3"/>
|
||||
<use id="κSco" y="419" x="441" xlink:href="#star3"/>
|
||||
<use id="λSco" y="382" x="500" xlink:href="#star2"/>
|
||||
<use id="μSco" y="405" x="365" xlink:href="#star3"/>
|
||||
<use id="αHya" y="30" x="-280" xlink:href="#star2"/>
|
||||
<use id="γHya" y="-37" x="200" xlink:href="#star3"/>
|
||||
<use id="αCru" y="330" xlink:href="#star1"/>
|
||||
<use id="βCru" y="184" x="85" xlink:href="#star2"/>
|
||||
<use id="γCru" y="118" xlink:href="#star2"/>
|
||||
<use id="δCru" y="184" x="-74" xlink:href="#star3"/>
|
||||
<use id="εCru" y="235" x="-37" xlink:href="#star4"/>
|
||||
<use id="αTrA" y="495" x="220" xlink:href="#star2"/>
|
||||
<use id="βTrA" y="430" x="283" xlink:href="#star3"/>
|
||||
<use id="γTrA" y="412" x="162" xlink:href="#star3"/>
|
||||
<use id="αCar" y="390" x="-295" xlink:href="#star1"/>
|
||||
<use id="σOct" y="575" xlink:href="#star5"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.9 KiB |
6
build/default/data/svg/BS.svg
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="600" height="300">
|
||||
<rect width="600" height="300" fill="#00abc9"/>
|
||||
<rect width="600" height="100" y="100" fill="#fae042"/>
|
||||
<path d="M0,0V300L259.8076,150z" fill="#000"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 263 B |
467
build/default/data/svg/BT.svg
Normal file
@@ -0,0 +1,467 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="900" height="600">
|
||||
<rect width="900" height="600" fill="#ffd520"/>
|
||||
<path d="M0,600H900V0z" fill="#ff4e12"/>
|
||||
<g stroke="#000" stroke-width="0.5208">
|
||||
<g fill="#fff">
|
||||
<path d="m481.74,187.59c-4.9875-1.7708-8.2083,0.805-8.0458,7.2442,0.15833,6.4392,3.5417,10.142,8.5292,7.7271l-0.48334-14.971z"/>
|
||||
<path d="m486.12,175.53c-4.1542-3.28-8.0292-1.8738-9.9458,4.2758-1.9167,6.1492,0.0958,10.742,5.5958,10.058l4.35-14.333z"/>
|
||||
<path d="m493.04,163.86c-3.5792-3.9046-7.6292-3.1383-10.508,2.6246-2.875,5.7633-1.625,10.618,3.9167,10.825l6.5917-13.45z"/>
|
||||
<path d="m488.5,220.59c-6.1167,2.2538-6.7625,10.625-2.8958,15.776,3.8625,5.1512,10.946,6.1171,14.808,0l-11.91-15.78z"/>
|
||||
<path d="m481.42,202.88c-5.7958-1.9317-11.017,5.8525-11.913,12.878-1.125,8.8538-13.683,11.751-6.7583,25.113,1.4458-8.5317,7.0833-13.2,11.588-13.522,4.5083-0.32208,11.271-1.2879,14.167-6.7613l-7.0833-17.708z"/>
|
||||
<path d="m499.77,237.33c-6.7625,1.6096-7.7292,10.625-2.9,17.064,4.1333,5.5129,17.063,4.1854,16.742-1.2879l-13.842-15.776z"/>
|
||||
<path d="m518.93,291.58c0.32084-5.795-9.0125-8.0488-13.521-6.9221-4.5083,1.1271-13.121-0.16083-15.133-4.9904-1.6083,3.8638,0.72501,8.0492,7.2458,10.142,4.9333,1.5846,4.8292,5.1512,3.3792,6.7613,3.7042,0.64375,14.65,0.64375,18.029-4.9904z"/>
|
||||
<path d="m513.62,254.56c-6.6-2.8975-10.513,1.5158-13.038,5.795-3.7042,6.2783-15.133-1.7704-18.996,6.6004,5.2333-2.2538,10.558,2.5525,13.038,4.1854,7.0833,4.6683,20.767,3.2196,22.7-7.7271l-3.7042-8.8538z"/>
|
||||
<path d="m517.48,262.28c-6.6,4.99-9.175,10.946-9.0125,14.971,0.1625,4.0246,5.7958,12.878,11.913,13.361,3.5417-7.2442,5.3125-22.537-2.9-28.332z"/>
|
||||
<path d="m490.12,293.35c0-2.4146,3.5417-3.3804,5.9542-2.5758,2.4167,0.805,6.1167,3.2196,4.8292,5.7954l-10.783-3.2196z"/>
|
||||
<path d="m453.73,280.15c-0.64167-2.8975,4.025-7.8879,10.304-5.1513,6.275,2.7367,7.0833,8.0492,4.5042,10.142l-14.808-4.9904z"/>
|
||||
<path d="m469.02,285.46c-0.48333-1.61,4.0375-4.8254,11.754-2.8979,7.725,1.9321,9.6208,6.9067,9.3375,10.786l-21.092-7.8879z"/>
|
||||
<path d="m452.93,280.15c4.025-3.0583,2.5-8.855-1.1292-10.625-6.6-3.2196-4.1833-11.59-8.3708-13.2-4.1833-1.61-8.2083-4.5075-8.3708-7.405-2.0917,4.0242-0.80417,7.7271,2.0958,10.303,2.8958,2.5758-2.2542,13.039,1.4458,15.776l14.329,5.1513z"/>
|
||||
<path d="m366.64,277.9c-3.3804-5.3121-11.43-4.3463-14.81-0.64375-3.3804,3.7025-2.8975,9.1758,0.32208,11.59l14.488-10.947z"/>
|
||||
<path d="m385.96,270.01c-1.2879-7.0829-9.82-7.8879-14.488-6.1171-4.6683,1.7708-7.8879,8.8538-4.8292,14.005l19.318-7.8879z"/>
|
||||
<path d="m398.84,269.04c3.0583-5.9563-2.8975-14.81-9.6588-16.098-5.6446-1.0738-12.315-1.0462-14.488-6.6-1.3683,4.8296,2.2542,7.8879,6.4396,10.625,4.185,2.7367-0.80542,9.82,5.9558,13.844l11.752-1.7708z"/>
|
||||
<path d="m398.2,269.25c-1.4088-4.2667,1.4488-9.9434,7.2325-9.5454,5.7842,0.39792,9.08,4.6013,6.53,9.8558l-13.763-0.31041z"/>
|
||||
<path d="m411.07,269.57c-0.79583-4.4221,2.83-9.6404,8.5008-8.435s8.3417,5.83,5.0833,10.675l-13.584-2.2396z"/>
|
||||
<path d="m423.86,271.6c-0.575-4.4575,3.3083-9.4875,8.9125-8.0013,5.6042,1.4871,8.0417,6.2404,4.5417,10.915l-13.454-2.9142z"/>
|
||||
<path d="m326.72,345.35c-10.786,0-13.42,2.5679-14.971,13.683-1.9317,13.844,16.903,15.454,14.971-13.683z"/>
|
||||
<path d="m331.55,330.86c-16.581-6.2783-25.595,19.961-42.015,15.293,5.8754,9.3367,20.118,0.0167,25.434,0.96583,9.015,1.61,28.493-1.7708,16.581-16.259z"/>
|
||||
<path d="m320.76,366.76c-8.21-3.7021-17.064,8.8542-15.454,14.327,2.0438,6.9521,20.766,1.2879,15.454-14.327z"/>
|
||||
<path d="m282.45,420.85c4.5075,1.2833,9.9804,3.8625,9.0146,12.554-0.96583,8.6917-17.385,26.4-32.195,27.367-14.81,0.96667-20.123,18.833-32.84,13.842,11.912-2.25,11.912-15.775,21.249-19.958-6.7612-2.4167-10.303,12.879-18.995,12.879-8.6929,0-12.878,13.842-23.503,12.875-10.625-0.9625-11.743,16.854-33,17.067-16.259,0.15834-36.381,19.154-43.625,10.946,15.776-2.2542,22.142-10.996,31.552-20.608,15.132-15.45,32.196-8.5292,37.991-22.213-6.9225,4.6667-14.971,6.9208-22.859,6.7625-9.9017-0.20417-20.766,15.775-31.874,8.6917,6.4392-0.80416,10.625-3.5417,17.386-10.625,6.9238-7.2542,17.083-2.5667,25.113-9.9792,12.556-11.592,23.342-1.9333,35.415-16.421-3.3808-1.6083-10.625-0.48334-17.386,3.0583-6.7613,3.5417-15.454-2.4167-23.181,1.7708,0.96583-9.4958,18.995-4.0625,30.264-10.625,12.718-7.4042,23.262-5.2333,33.323-4.3458-14.005-0.0792-19.478-13.363-38.795-9.5-8.425,1.6875-15.132-11.588-23.503-4.8292,0.24125-4.9875,9.015-9.0134,18.03-4.1833,9.0146,4.8292,12.648-4.2258,30.586,7.0833,7.405,4.6667,20.122-2.9,28.171,2.0917-1.0462-3.0583-5.6346-4.9917-11.027-4.5875,3.3808-6.9208,25.193-6.0375,34.691,0.8875z"/>
|
||||
<path d="m296.78,410.38c-7.0829-5.4733-16.903,1.1283-23.664-1.4488,0,4.5062,2.2538,11.269,9.6588,13.844,2.2538-1.6083,12.395-10.463,14.005-12.395z"/>
|
||||
<path d="m307.89,394.77c-11.108-5.6342-13.039,8.3708-21.732,5.4733,0.32209,4.0246,3.5417,9.015,10.625,10.142l11.108-15.615z"/>
|
||||
<path d="m314.49,382.05c-16.42-6.4392-18.513,9.3367-28.171,6.2779,2.2538,5.4733,16.098,8.3708,23.181,6.4392l4.9904-12.717z"/>
|
||||
<path d="m337.02,312.99c-4.3467-6.1171-13.522-1.1267-14.971,6.1171-1.4488,7.2442,2.0925,17.386,8.21,15.132l6.7608-21.249z"/>
|
||||
<path d="m348.13,293.67c-7.5658-1.7704-16.259-0.96584-15.293,6.4392-2.8979,1.2879-3.7025,10.786,4.1854,12.878l11.108-19.318z"/>
|
||||
<path d="m353.12,288.68c-7.405-8.6929-15.663-8.4908-20.283-4.8296-8.5321,6.7613-16.823,2.8979-17.064,9.6588,5.1517-3.9438,9.6588,0.805,13.844-0.64375,4.1854-1.4488,7.2442,6.6,18.835,3.2196l4.6683-7.405z"/>
|
||||
<path d="m335.25,418.6c1.1271,2.0917,8.0488,3.0583,11.43-0.48334,4.4804-4.6958-0.48291-17.709-7.5663-18.675-7.0829-0.96583-7.7267,14.65-3.8633,19.158z"/>
|
||||
<path d="m327.2,418.92c10.141,3.7,14.488-4.6708,9.0146-9.9813-1.4488,1.7708-6.7613,8.2104-9.0146,9.9813z"/>
|
||||
<path d="m289.21,432.76c-1.9321,5.7958-11.913,6.7625-23.181,24.792-11.269,18.029-22.054,10.463-24.791,22.858,13.522-10.946,24.142-3.675,32.195-14.488,12.235-16.421,22.309-14.063,27.045-25.113,6.7608-15.775,36.381-15.454,37.991-40.244-9.9808-1.9321-41.533,24.79-49.259,32.194z"/>
|
||||
<path d="m543.24,189.36c12.879,4.1854,13.2,20.927,28.008,26.4,14.813,5.4733,16.263,18.673,28.333,15.454-11.267-3.0588-10.463-16.098-22.213-19.318-13.783-3.7758-18.996-24.791-29.946-28.01"/>
|
||||
<path d="m602.32,276.77c2.2542,5.1512,1.9333,14.327-6.1167,16.742,4.3458,2.7367,10.783,0.16084,14.325-5.795-5.3125,11.751-1.7708,22.376,6.6,24.469-4.025-8.21,4.9917-12.074,2.0958-17.386,5.3125,2.2538,9.9792,9.4979,9.8167,14.005,6.925-7.7271-5.15-18.03-2.8958-25.273l-23.825-6.7613z"/>
|
||||
<path d="m518.93,359.51c-7.8875-6.9221-11.254,1.8096-15.133-1.2075-3.6208-2.8171-8.45-3.2196-10.3-0.4025,6.7625,0.24167,3.4583,5.4733,16.579,6.7613-13.121,0.88541-10.704,15.535-19.479,14.81,9.3375,8.8538,14.167-7.8879,21.733-5.1512-2.2542,0.64375,3.5417,5.9562-0.48333,13.039,6.5208-0.16084,9.175-9.1758,9.9833-13.844l-2.9-14.005z"/>
|
||||
<path d="m345.23,434.69c-2.8979-2.4125-11.269-3.5417-14.488-1.6083-3.2192,1.9292-2.0925,2.4125,1.7708,2.7375,3.8638,0.32084,8.8525,6.5708,0.48291,6.9208-3.8633,0.15834-2.5754,9.4958-10.625,10.142,3.3,4.025,12.718,1.3667,16.098-3.0583-0.64375,3.6208,4.1854,6.9208,2.2538,11.267,5.9562,0.64584,2.495-12.071,11.913-11.429-3.8638,0.48334-2.2538,9.175,4.5071,6.9208-4.0242,1.9333-1.9317,6.6,2.5758,5.475-2.8975,0.96667-3.8638,4.6667,0.16084,6.7625,3.8638-5.3125-0.48292-24.308-14.649-34.129z"/>
|
||||
<path d="m695.85,257.07c12.321,0,22.308-9.9896,22.308-22.312,0-12.32-9.9875-22.31-22.308-22.31-12.325,0-22.313,9.99-22.313,22.31,0,12.322,9.9875,22.312,22.313,22.312z"/>
|
||||
<path d="m579.3,284.02c6.7625-6.4392,17.067-9.6588,24.146-4.8296,7.0833,4.8296,30.588,10.625,42.179,2.5758,11.588-8.0492,17.063-12.235,22.213-11.269,3.8667,5.7954,8.5334,8.5321,14.329,9.015,1.7708,1.9317,8.05,3.5417,11.592,3.0583,5.15,1.2879,11.429-0.32166,16.417-5.795,7.7292,1.1267,14.971-4.6683,17.708-13.361,8.2083-0.96583,8.6917-10.142,3.5417-16.259-4.8292-0.96584-1.125-17.225-18.675-14.005,7.4083,4.5071,1.7708,13.522,7.8917,17.708-4.1875,0-9.5792,1.7708-10.867,8.0488,1.6083-4.3462-0.24167-7.2438-1.3708-8.2096,0.1625-3.7025-8.0458-12.798-15.775-9.4979,5.5542,1.2075,2.4167,10.142,6.4417,13.522-2.9,0.16125-5.9583,1.61-7.7292,4.1854-2.0917-3.7025-9.4958-7.5658-14.004-7.8879,0-1.2879-0.24166-3.8633-0.80416-5.1512-2.0125-3.8633-3.7042-8.4508-2.9-14.327-3.8625,4.1854-7.0833,9.9808-9.0125,14.166-6.1167-4.1854-21.25,1.9317-28.333,3.5412-7.0833,1.61-30.908-2.2533-36.383-8.0488-5.4708-5.795-16.096-9.3367-26.075-12.234-13.725-3.9833-13.846-18.995-28.979-29.298-0.32083,18.674,28.013,77.914,34.45,84.353z"/>
|
||||
<path d="m421.54,426.32c11.913,0,21.571-9.6583,21.571-21.571s-9.6583-21.57-21.571-21.57-21.571,9.6575-21.571,21.57c0,11.913,9.6575,21.571,21.571,21.571z"/>
|
||||
<path d="m370.02,409.74c4.3462,5.6346,11.751,5.3138,14.81,4.8304,2.5758,6.7583,10.785,6.6,14.327,10.3,3.5417,3.7042,15.613,3.3833,19.155,1.2875-3.2167-0.32083-7.4033-2.25-11.428-5.6333-4.8579-4.0792-2.5758-12.234-6.4392-15.131,2.8975-3.2196,3.3804-8.5317,2.7367-10.625,3.0588-1.7708,5.3121-4.6683,5.6342-6.1171,5.3129-0.32208,9.9796-3.0588,11.913-5.1512,2.7375,2.5754,9.6583-0.805,13.363,3.5412,0.80417-10.625-9.3375-16.259-16.1-12.717-2.7375-1.4488-9.9804-0.48292-11.268,1.4488-2.2538-0.96584-8.5321,2.2538-11.43,4.3462,3.2196-1.7704,3.7025-7.0829,2.4146-9.0146,2.7367-1.1267,5.7954-4.8292,6.1171-7.5658,3.8638,0.64375,9.6575-1.9321,12.233-1.2879-4.1833-5.4733-11.105-7.405-18.189-6.9221-7.325,0.40292-10.463,5.5542-11.429,11.108-4.3467,2.5754-5.7954,11.268-4.1854,14.327-2.4958-0.08-4.8296,2.3346-5.7954,3.7025-3.3804-1.4488-8.21-2.4946-11.671-2.4946"/>
|
||||
<path d="m366.32,373.2c-1.4488-4.1854,0.47-7.9533,1.4488-11.268,2.495-8.4508,0.96584-10.625-6.6-9.4975-0.64375,4.0242,3.2196,17.225,5.1513,20.766z"/>
|
||||
<path d="m360.77,352.91c1.9317,1.9317,8.7738,2.8175,9.4979-3.2996,0.83167-7.0225-2.0121-9.74-8.1292-7.0033-0.48292,1.61-1.0471,8.21-1.3688,10.303z"/>
|
||||
<path d="m362.22,342.37c2.5758,1.0458,8.13,3.1388,11.188-2.8175,2.5658-4.9954-0.80458-8.8538-6.1167-8.5321-1.2883,1.4488-3.8638,6.6004-5.0717,11.35z"/>
|
||||
<path d="m366.97,330.54c0.64375,1.9317,7.2442,8.3708,12.073,3.7025,4.8296-4.6683,4.8296-11.59-2.4146-14.166-1.9321,0.32166-7.7271,7.0829-9.6588,10.463z"/>
|
||||
<path d="m376.62,320.08c1.4488,4.0242,5.9558,10.946,14.327,7.7267,8.3713-3.2196,4.8296-13.683,0.96625-15.776-2.2538,0.16125-11.43,4.3467-15.293,8.0492z"/>
|
||||
<path d="m391.92,312.03c-0.64417,3.5417,0,13.2,11.429,13.039,11.428-0.16083,8.2113-13.522,5.3125-15.454-4.6683,0-12.556,0.16083-16.742,2.4146z"/>
|
||||
<path d="m409.14,310.09c-1.2879,2.7367-4.1896,20.75,18.191,15.776,2.8958-0.64375,10.463-17.225-18.191-15.776z"/>
|
||||
<path d="m421.37,311.7c-2.25,2.2533,3.5417,20.444,18.675,17.385,15.133-3.0588,2.4167-20.283-18.675-17.385z"/>
|
||||
<path d="m434.25,314.44c-2.4125,4.9904,1.2125,19.8,19.883,19.8,16.921,0-0.8875-19.478-19.883-19.8z"/>
|
||||
<path d="m448.9,318.79c-1.2125,2.7662-2.6958,18.468,19.317,19.8,15.938,0.96583,12.075-21.571-19.317-19.8z"/>
|
||||
<path d="m472.57,325.39c-2.7333,4.8296-5.6333,16.903,18.513,17.869,15.471,0.61917,5.9583-17.547-18.513-17.869z"/>
|
||||
<path d="m492.69,329.09c-3.5417,4.8296-0.93333,14.303,8.0458,16.098,11.271,2.2538,12.879-8.3708,5.1542-13.522-7.7292-5.1513-13.2-2.5758-13.2-2.5758z"/>
|
||||
<path d="m503.64,331.34c-2.575,4.5075-0.97917,15.454,16.096,15.454,3.5417,0,17.067-13.844-16.096-15.454z"/>
|
||||
<path d="m371.48,541.27c13.83,0,25.042-11.213,25.042-25.042,0-13.833-11.212-25.046-25.042-25.046-13.831,0-25.043,11.213-25.043,25.046,0,13.829,11.212,25.042,25.043,25.042z"/>
|
||||
<path d="m555.15,177.13c-1.9333,1.9317-5.9542,7.7267-6.7625,9.9804-8.3708,25.113,13.975,43.871,27.046,70.83,10.304,21.249,9.0167,54.733-7.0833,75.982-5.5083,7.2683-3.8625,9.3367-10.946,16.742-2.7167,2.8408-5.7958,6.4392-4.8292,16.742,4.5083-1.61,10.946,2.5758,12.233,6.1171,3.2208-1.6096,7.7292-0.96584,9.3375,0.96583,5.4708-2.5754,9.9792-1.2879,14.808,3.8638,4.1875-0.64416,8.6958,0,12.879,4.5071,2.2542-4.5071,6.7625-6.1171,9.9792-5.1512-0.32083-5.795,5.475-9.9804,10.625-7.7267-1.6083-7.7271,5.475-13.523,12.238-11.269,5.7917-4.5075,17.383-4.8292,23.179,1.9317-10.304-2.8975-9.9792,8.0492-18.675,7.0833,2.2542,6.4392-3.5417,10.142-9.3334,12.234,3.7-1.7708,7.725-3.8633,9.0125-1.6096,3.2208-2.8167,9.6584-1.7708,11.271-0.32208,4.2625-1.3679,8.3708-0.32208,10.3,4.8292,5.7958,3.5417,9.6583,12.556,5.475,19.318-1.2875-7.0829-6.1167-6.7613-8.05-9.6588-4.5083,1.61-9.0167,1.61-10.304-1.2879-2.575,2.5758-11.267,4.8296-15.129,0.96584-1.45,5.7954-6.4417,10.625-12.238,10.625,1.6125,4.5071-2.8958,12.236-6.4375,16.098,5.475,2.8958,3.8625,9.3375,2.575,13.2,8.3708,1.2875,1.2875,8.6917,15.775,13.521-7.0792,2.2542-20.925,0-22.858-8.6917-7.0833-0.32083-11.913-7.4042-11.588-14.813-5.475-5.15-6.2792-12.554,1.2875-17.705-6.4417,1.9317-9.9834-8.3708-19.321-4.1854-4.6417,2.0825-16.9-1.4488-16.738-5.7954-1.9333,3.2196-13.683,1.9321-15.296-3.5412-3.8625,2.0925-12.879-1.4488-12.717-6.7613-4.9917,2.2538-11.75-1.7708-11.429-6.9221-4.6667-0.64375-5.15-4.8292-4.8292-8.3708-4.1875-1.9317-3.0583-5.9563-1.45-10.785-2.8958-3.2196-1.6083-7.7271,0.64583-11.913-3.2208-3.2196-2.575-7.0829-1.6125-11.59-15.454-1.2879-34.813-5.015-79.2-18.673-66.967-20.605-84.997,27.688-70.187,57.952,17.087,34.919-1.9317,42.5,3.8638,68.579,6.1171,1.2875,9.3367,6.4375,9.015,11.913,3.6208,0.15834,6.1967,3.5375,4.9088,9.9792,3.0588-0.5625,7.0034,0.32083,9.5788,2.8958,2.2538-4.1833,9.6588-5.15,13.523-0.32084,8.3688-0.64583,12.556,6.1167,12.235,14.488,4.5042,8.05,2.8958,17.871-1.9333,24.146,0.48334-3.3792,0-8.2084-0.15833-11.104-0.3-5.3292-7.7292-6.4417-6.9242-10.788-3.8633,0.32083-7.5663-1.7708-8.8538-4.6667-2.2538,1.9292-5.4733,2.575-8.21,1.6083,4.3462,1.9333,7.7271,9.6583,6.4392,14.808,2.2538,3.8667,1.7708,10.95-0.96583,14.008-1.2879,6.275-6.1171,8.5292-12.395,5.7917,3.5417-2.25,4.8292-6.275,4.6683-9.6583-2.2538-1.9292-3.3804-5.6333-3.5417-7.8875-6.2779,0.96667-14.971-4.3458-16.574-6.4458-13.831,0-25.043,11.213-25.043,25.046-0.64375-5.1542-7.1588-10.229-6.3542-14.575-3.8633-11.913,1.61-23.021,17.386-25.271-1.9317-4.5083,4.8292-9.1792,2.2538-14.329-3.2904-6.5792-9.3367-15.133-18.351-25.113,5.4733-9.3375,3.8633-21.892,0.64375-29.62-4.6233-11.096-9.015-8.3708-25.435,9.6579-26.76,29.383-62.46,21.25-94.012,40.567-8.3838,5.1333-16.741,7.0833-7.7267-1.9292,9.015-9.0167,32.84-18.029,48.293-25.758,28.94-14.471,53.445-38.635,63.104-85.64,22.697-110.46,106.24-74.05,159.04-53.445,49.571,19.346,40.567-24.469,15.454-50.869-30.183-31.732-24.146-56.664-9.9792-76.626,25.433-3.5412,74.213,5.3125,64.392,13.845z"/>
|
||||
<path d="m644.82,448.48c15.217,0,27.554-12.333,27.554-27.55,0-15.218-12.338-27.554-27.554-27.554-15.217,0-27.554,12.336-27.554,27.554,0,15.217,12.338,27.55,27.554,27.55z"/>
|
||||
</g>
|
||||
<g fill="none">
|
||||
<path d="m539.7,178.41c-6.1167,27.045-0.96667,39.279,8.05,51.191,18.629,24.621,33.483,80.811,12.233,117.51"/>
|
||||
<g stroke-linecap="round">
|
||||
<path d="m571.89,315.41c2.575-0.96583,7.4042-4.0242,8.5333-9.3367"/>
|
||||
<path d="m573.82,303.66c0.80417-4.6683,8.0458-6.68,8.2083-11.67"/>
|
||||
<path d="m573.98,285.46c-0.48334-4.8296,7.2458-9.1758,6.1167-14.005"/>
|
||||
<path d="m569.8,268.08c-0.64584-2.7367,6.4375-7.8879,4.5083-12.234"/>
|
||||
<path d="m564.49,251.18c-1.45-3.0588,3.3792-6.6004,1.2875-9.82"/>
|
||||
<path d="m556.76,237.65c-0.48334-2.0925,2.4958-6.68,0.8875-9.4163"/>
|
||||
<path d="m549.03,221.72c0.64167-0.805,3.2208-2.7367,2.1708-5.1513"/>
|
||||
<path d="m543.72,210.05c1.0458-0.56375,4.1833-1.53,3.7833-3.8633"/>
|
||||
<path stroke-linejoin="round" d="m382.58,513.57c-6.4392-2.2542-14.488,0.96667-16.098,6.4417"/>
|
||||
<path stroke-linejoin="round" d="m371.31,525c0.805-5.4708,9.1758-7.8875,11.751-5.3125-5.3121-2.8958-7.8879,7.4042-3.2196,7.7292"/>
|
||||
<path stroke-linejoin="round" d="m423.15,397.67c-3.8625,1.9321-4.9875,9.015,0,14.329"/>
|
||||
<path stroke-linejoin="round" d="m428.94,399.28c-2.7333,2.2538-2.575,9.0146,1.45,10.625-3.3792-2.4146,0-6.6,2.4167-6.7612,2.4125-0.16084,4.0208,2.7367,1.125,5.6342"/>
|
||||
<path stroke-linejoin="round" d="m655.12,415.21c-9.0125-2.4125-16.258,8.05-8.05,17.388-0.15833-9.0167,6.2792-14.971,14.167-13.363"/>
|
||||
<path stroke-linejoin="round" d="m657.61,425.47c-2.2167,0-3.4625,1.7333-3.4625,3.4208,0,1.7708,1.5292,3.4625,4.025,3.4625,1.6125,0,2.9-1.85,2.9-3.3"/>
|
||||
<path stroke-linejoin="round" d="m689.4,227.83c1.45,5.4733,9.0167,7.7271,14.971,6.4392"/>
|
||||
<path stroke-linejoin="round" d="m704.37,230.73c-4.6667,0.16125-8.5292-4.1854-8.2083-7.8879,0,2.7367,6.2792,4.0246,8.2083,2.2538"/>
|
||||
<path d="m384.83,414.57c-1.2875-3.2208,3.8638-6.4404,4.0246-9.4992,0.16125-3.0583,5.795-5.4729,11.59,0.32209"/>
|
||||
<path d="m397.71,371.11c-1.1267,0.48292-2.0929,1.1267-3.0588,1.4488"/>
|
||||
<path d="m408.82,388.65c-1.3688,0.0813-4.1854-0.08-5.715-1.1271"/>
|
||||
<path d="m403.19,394.77c-1.1267,0.56417-3.6229,1.53-5.0717,1.8521"/>
|
||||
<path d="m347.97,492c-0.16125,2.9,2.7367,7.0833,4.3462,8.3708"/>
|
||||
<path d="m360.53,485.08c-1.61,2.4125-2.5754,6.6-1.61,9.4958"/>
|
||||
<path d="m384.51,494.74c-2.8979-1.9333-0.96583-6.925-1.2879-10.142-0.32208-3.2208,3.3808-8.3708,10.625-4.025"/>
|
||||
<path d="m357.47,476.39c2.8979-0.48333,5.9563-0.325,7.8879,0.47917"/>
|
||||
<path d="m394.17,467.21c-1.2875,1.7708-1.6096,3.7042-1.7704,4.9917"/>
|
||||
<path d="m407.69,466.89c-2.2538,0-4.1854,1.6083-5.1513,3.2208"/>
|
||||
<path d="m376.46,384.47c2.5758,0.88584,9.2558,4.9904,9.4979,9.2567"/>
|
||||
<path d="m403.83,363.54c-7.8875-0.16125-10.946-8.21-4.99-8.21"/>
|
||||
<path d="m418,374.32c-3.0583,1.2879-1.6083,6.6,2.7375,9.1758"/>
|
||||
<path d="m399.16,424.87c-1.5296-1.9292,0.48291-7.5625,5.4733-5.875"/>
|
||||
<path d="m410.91,483.63c0.32-4.9083,6.52-7.8083,9.0158-2.2542"/>
|
||||
<path d="m388.05,497.63c-0.40292-5.3917,2.3338-7.1625,4.7483-7.4833,2.4146-0.32084,5.8767,1.6875,7.4863,5.2292"/>
|
||||
<path d="m340.08,501.66c0.32208-3.2208,3.0588-6.6,5.9562-6.1167"/>
|
||||
<path d="m634.67,358.71c-2.0958,1.53-3.4625,8.3708,4.5042,9.015"/>
|
||||
<path d="m622.44,369.98c0,0.80459,1.0458,1.9317,1.6917,2.4146"/>
|
||||
<path d="m660.43,382.86c-2.0917-1.6096-7.4875,4.9104-2.575,9.6588"/>
|
||||
<path d="m609.24,436.95c-1.2083-4.5875,3.0583-5.7958,7.0833-4.8292"/>
|
||||
<path d="m598.94,404.43c2.4125-1.6096,4.8292-3.3804,7.8875-4.1854"/>
|
||||
<path d="m597.65,422.13c0-3.8625,1.9292-7.0792,3.7-8.0458"/>
|
||||
<path d="m611.81,377.71c-0.32083,4.6683,1.6125,9.1758,3.0625,11.59"/>
|
||||
<path d="m650.13,378.03c-2.3375,0.725-4.4292,1.6096-5.3125,3.5417"/>
|
||||
<path d="m647.55,391.23c1.1292-0.96583,2.4167-2.0925,2.9792-2.8975"/>
|
||||
<path d="m708.4,250.69c0,4.5071-5.6333,6.9217-9.3333,4.0242"/>
|
||||
<path d="m720.64,250.85c2.4917,1.9317,11.104,0.0812,9.0917-4.9092"/>
|
||||
<path d="m710.17,276.77c-1.7708-0.32209-4.8292-2.2538-6.1167-3.8633"/>
|
||||
<path d="m727.88,263.41c-2.8958,0.64375-4.8292,0-6.2792-0.64375"/>
|
||||
<path d="m682.16,279.51c1.6083,0,5.4708-0.64417,8.1292-2.0117"/>
|
||||
<path d="m677.33,251.02c-2.0917-0.24083-3.625,0.16125-4.8292,0.96584"/>
|
||||
<path d="m709.77,258.9c-0.5625,2.0129-2.0125,5.1512-3.7833,6.5204"/>
|
||||
<path stroke-linejoin="round" d="m671.86,265.99c4.025-1.7708,9.0167,11.912,18.675,7.0829"/>
|
||||
<path stroke-linejoin="round" d="m691.34,258.9c-1.2875,1.7708-2.0917,4.5075-2.2542,6.9221"/>
|
||||
</g>
|
||||
<path d="m498.81,237.98c1.2875-0.16083,3.5417-0.64375,4.025-2.2538"/>
|
||||
<path d="m333.16,387.85c4.8296,2.7367,8.2104,7.405,6.1175,14.327"/>
|
||||
<path d="m554.5,223.17c1.45,0.96583,6.925,0.96583,9.9833-0.16083"/>
|
||||
<path d="m568.35,226.39c-0.1625,2.2538,0.48333,10.785-3.8625,12.556"/>
|
||||
<path d="m566.1,237.82c4.025,1.2879,12.075,0.80459,14.65-6.6"/>
|
||||
<path d="m575.11,237.49c2.0917,3.2196,2.7333,9.4979-3.5417,12.878"/>
|
||||
<path d="m576.72,242.81c4.6667,1.6096,15.454,1.7704,14.325-7.405"/>
|
||||
<path d="m587.35,242.81c3.2208,4.5071,17.388,9.8196,15.133,0.48292"/>
|
||||
<path d="m574.31,255.84c5.4708,1.2879,13.2-2.415,9.9792-12.073"/>
|
||||
<path d="m599.74,248.6c0.80416,3.7025,18.833,7.5658,16.421-0.805"/>
|
||||
<path d="m612.78,252.63c3.3833,7.7267,21.25,7.0829,15.617-3.2196"/>
|
||||
<path d="m625.5,257.45c3.5417,4.3467,19.321,1.7708,13.042-8.6929"/>
|
||||
<path d="m638.37,257.29c9.8208,7.405,21.25-3.2196,8.8542-10.947"/>
|
||||
<path d="m652.86,254.88c8.6958,6.9221,19.321-5.6346,11.754-9.1758"/>
|
||||
<path d="m584.12,251.98c2.7375,0.805,8.5333,0.48292,9.8208-4.5071"/>
|
||||
<path d="m591.77,250.85c-0.32083,7.325,11.996,10.142,15.133,1.6908"/>
|
||||
<path d="m602.8,257.13c2.2542,4.8292,13.038,6.7608,14.808-0.16125"/>
|
||||
<path d="m615.84,260.19c1.7708,4.8296,11.108,4.3467,13.683-0.64375"/>
|
||||
<path d="m626.14,262.77c2.8958,6.2779,14.808,6.2779,17.546-2.8979"/>
|
||||
<path d="m641.6,263.89c4.6667,2.8979,14.65,1.7708,13.842-7.2438"/>
|
||||
<path d="m653.51,263.09c6.9208,5.6346,16.742,0.16125,11.913-9.3367"/>
|
||||
<path d="m664.94,270.49c3.7042-0.64375,5.6333-8.0488,1.7708-9.9804"/>
|
||||
<path d="m579.14,271.78c7.725-4.1854,9.175-11.268,3.8625-18.19"/>
|
||||
<path d="m585.74,264.7c4.8292,2.8975,14.004-0.16083,15.613-7.2442"/>
|
||||
<path d="m592.34,265.5c2.7333,3.5413,3.2167,7.8879-0.325,11.912"/>
|
||||
<path d="m594.59,270.01c8.5292-5.3121,19.154,4.5075,11.267,10.464"/>
|
||||
<path d="m604.41,269.53c1.9333-0.48291,5.3125-4.0242,5.6333-8.0488"/>
|
||||
<path d="m608.27,273.23c3.5417-3.7025,27.692,3.8638,12.396,11.59"/>
|
||||
<path d="m619.54,263.09c4.6667,1.7708,7.0833,8.3713,0,10.625"/>
|
||||
<path d="m625.66,279.19c5.15-5.3121,21.25-1.9317,15.454,4.8296"/>
|
||||
<path d="m637.25,277.09c2.8958-9.82,20.121-3.7025,14.488,0.32167"/>
|
||||
<path d="m633.71,267.27c0.48333,1.9321,0.64166,6.7613-2.575,9.3371"/>
|
||||
<path d="m648.2,265.34c0.64167,1.61,0.48334,4.6683-0.96667,6.6004"/>
|
||||
<path d="m659.14,265.5c0.96666,1.7704,2.575,5.1513-0.96667,7.8879"/>
|
||||
<path d="m521.35,191.45c0.15833,9.1754,3.3792,15.293,15.775,9.4975"/>
|
||||
<path d="m525.21,202.4c-6.1167,8.21,0.80417,17.064,12.879,8.21"/>
|
||||
<path d="m506.37,206.42c8.3708,9.0146,23.342,2.4146,13.683-11.269"/>
|
||||
<path d="m530.2,214.15c-1.6125,8.8538,5.6333,10.625,11.588,6.6"/>
|
||||
<path d="m498.97,207.87c1.525,8.9013,10.625,15.937,19.479,10.464"/>
|
||||
<path d="m509.92,220.11c0,12.718,17.546,14.166,21.571,0.96625"/>
|
||||
<path d="m525.21,229.12c5.6333,11.59,17.867,6.9221,21.892-0.16084"/>
|
||||
<path d="m512.81,210.61c2.2542,5.6342,6.7625,11.913,17.225,7.2442"/>
|
||||
<path d="m480.62,207.87c1.45,4.6683,9.8208,10.303,19.479,3.8633"/>
|
||||
<path d="m486.57,213.83c-5.1542,7.5658,5.15,14.649,17.546,3.3804"/>
|
||||
<path d="m492.69,223.17c2.0917,10.625,6.275,19.157,21.408,5.4733"/>
|
||||
<path d="m506.53,234.11c5.475,6.7608,13.846,10.946,21.733-0.48292"/>
|
||||
<path d="m534.06,236.04c-0.48333,8.0488,1.125,12.073,7.4042,11.751,4.95-0.25334,9.6584-4.1854,12.396-8.3708"/>
|
||||
<path d="m540.34,247.8c-0.1625,9.1758,7.0792,16.42,20.604,7.0833"/>
|
||||
<path d="m545.97,258.58c-2.575,6.9221,5.15,18.19,20.283,12.395"/>
|
||||
<path d="m513.94,240.23c-0.9625,8.8538,7.2458,14.81,20.446,3.3804"/>
|
||||
<path d="m520.38,250.05c0.48334,7.2442,8.6917,15.937,20.767,3.3804"/>
|
||||
<path d="m526.17,259.23c-0.96667,12.395,10.463,15.937,20.121,6.4392"/>
|
||||
<path d="m508.95,250.05c2.575,0.16125,4.6667-2.0925,5.9542-3.7025"/>
|
||||
<path d="m514.42,259.06c2.2542,0.48292,6.1208-1.61,7.4083-4.1854"/>
|
||||
<path d="m520.06,273.71c2.575,2.7367,11.267,0.805,12.392-2.8975"/>
|
||||
<path d="m529.72,273.55c4.8292,11.268,17.704,10.785,23.017-1.9317"/>
|
||||
<path d="m550.32,276.13c2.4125,6.6,8.5333,10.785,18.513,8.5317"/>
|
||||
<path d="m555.15,282.89c-5.6333,9.1758,1.7708,19.961,14.325,9.3367"/>
|
||||
<path d="m558.21,296.57c-0.64167,5.795,4.6708,12.395,11.913,13.2"/>
|
||||
<path d="m534.38,279.67c-1.9333,13.039,7.4042,19.318,19.158,12.395"/>
|
||||
<path d="m520.7,285.95c3.0583,2.4146,8.5333,2.7367,13.683,0.805"/>
|
||||
<path d="m540.66,294.32c-2.9,10.947,8.3708,18.835,18.029,6.6"/>
|
||||
<path d="m525.05,287.72c0.1625,5.6342,5.6375,11.751,15.133,9.9804"/>
|
||||
<path d="m566.74,308.97c-6.4417,4.3462-7.7292,12.073,1.2875,17.063"/>
|
||||
<path d="m550.96,306.71c0.325,6.6,3.3833,10.303,10.625,10.946"/>
|
||||
<path d="m541.47,303.33c-9.6583,8.8542-0.1625,19.157,11.267,10.464"/>
|
||||
<path d="m548.23,316.53c-3.2208,10.142,8.8542,16.259,15.292,5.9562"/>
|
||||
<path d="m528.27,294.96c-3.5417,9.9808,0.96667,16.581,9.175,15.937"/>
|
||||
<path d="m515.55,293.03c0.48334,5.9562,5.6333,8.0488,11.429,6.7612"/>
|
||||
<path d="m519.25,299.31c-4.3458,8.3708,2.2542,12.878,10.95,9.6588"/>
|
||||
<path d="m556.6,327.64c-1.45,5.3121-0.64583,9.1758,7.2417,10.947"/>
|
||||
<path d="m557.08,335.21c-9.5,4.3467-10.304,13.523-2.9,19.478"/>
|
||||
<path d="m549.43,324.99c-4.9875,4.5075-4.025,12.314,1.45,15.373"/>
|
||||
<path d="m507.18,295.61c-5.475,5.3933-0.24167,20.283,11.829,12.155"/>
|
||||
<path d="m538.57,314.44c-7.4083,6.1175-4.025,17.225,8.2083,14.166"/>
|
||||
<path d="m526.33,309.77c-3.8625,10.947-0.15834,14.81,8.5333,14.971"/>
|
||||
<path d="m499.13,295.12c-6.6,4.99-4.8292,12.073-1.9292,15.293,2.8958,3.2196,8.3667,1.7708,10.138-2.4146"/>
|
||||
<path d="m485.28,290.78c-7.4042,9.4979,0,20.766,10.467,17.386"/>
|
||||
<path d="m524.89,318.95c-7.5667,2.7367-13.338,9.6071-8.6958,15.615,2.7375,3.5417,14.65,4.0246,18.029-9.6588"/>
|
||||
<path d="m511.2,310.09c-4.3458,6.2783-2.9,12.235,5.15,15.293"/>
|
||||
<path d="m510.72,321.85c-4.6708,2.5758-7.7292,5.6346-6.6,11.269"/>
|
||||
<path d="m500.26,312.03c-1.7708,7.5663,0.32083,12.235,4.9875,14.488"/>
|
||||
<path d="m500.1,321.04c-7.2458-0.48292-10.946,2.5754-8.5333,9.6588"/>
|
||||
<path d="m492.21,322.81c-7.0833-2.5758-8.2125-8.6929-5.1542-15.132"/>
|
||||
<path d="m486.09,317.18c-7.7292,0.32208-11.108,4.1854-11.108,9.4979"/>
|
||||
<path d="m475.62,287.07c-5.6333,2.4146-7.4042,9.9808-5.3125,14.166,2.0958,4.1854,8.6958,4.5075,12.721,1.7708"/>
|
||||
<path d="m459.85,281.12c-5.15,5.7954,0.80417,17.064,9.9834,14.327"/>
|
||||
<path d="m446.65,276.61c-4.8292,6.7608,0.48333,18.03,12.879,14.81"/>
|
||||
<path d="m460.17,322.81c-1.2875-8.0492,7.0833-13.361,17.388-2.8979"/>
|
||||
<path d="m472.57,303.66c-3.0583,2.7367-4.5042,7.0829-4.025,10.625"/>
|
||||
<path d="m433.45,272.75c-5.3125,9.015,1.1292,17.225,12.558,14.005"/>
|
||||
<path d="m463.23,295.12c-7.5667,7.5658-4.9917,15.132,0.64167,19.478"/>
|
||||
<path d="m458.4,303.98c-11.429,0.16084-12.071,13.361-2.7333,17.547"/>
|
||||
<path d="m449.71,290.78c-4.6667,3.2196-6.1167,12.073,1.9333,15.615"/>
|
||||
<path d="m449.39,310.58c-4.8292-2.2538-10.625,0.48292-10.142,6.1171"/>
|
||||
<path d="m442.14,310.74c-4.3458-10.303-17.063-8.5317-15.933,2.0929"/>
|
||||
<path d="m445.68,298.02c-2.7333,0.48291-8.2083,2.0925-10.3,6.2783"/>
|
||||
<path d="m436.19,286.43c-5.15,5.795-1.1292,12.717,3.0583,14.166"/>
|
||||
<path d="m420.9,270.17c-0.96667,6.9221,1.7708,10.303,10.463,9.6588"/>
|
||||
<path d="m423.95,279.03c-3.3833,8.3708,1.125,12.073,9.8167,11.59"/>
|
||||
<path d="m425.88,289.33c-5.15,6.1171-1.6083,12.718,3.3792,15.454"/>
|
||||
<path d="m423.47,297.06c-9.175-1.1271-10.625,9.4975-7.5667,14.488"/>
|
||||
<path d="m416.06,269.37c-5.6321,2.4146-8.8517,9.4975-5.7933,13.844,3.06,4.3463,9.1767,2.8975,12.556,0.64375"/>
|
||||
<path d="m412.2,285.14c-4.6675,7.0829-0.48333,12.395,4.5083,14.488"/>
|
||||
<path d="m394.17,268.56c-3.7021,3.8633-1.4488,11.752,7.5663,11.913,7.2579,0.13,10.946-6.7612,8.6929-11.59"/>
|
||||
<path d="m400.45,280.47c-2.8975,6.4392-1.1267,13.361,9.8196,12.234"/>
|
||||
<path d="m414.94,302.85c-6.7608-3.0583-15.776,0-11.912,8.0492"/>
|
||||
<path d="m402.06,291.42c-2.7367,3.8633-1.7708,9.3367,1.2875,12.717"/>
|
||||
<path d="m401.58,301.72c-4.5075,0.805-8.8542,3.2196-6.1175,10.303"/>
|
||||
<path d="m394.81,306.23c-5.795-1.7708-13.2,2.4146-8.6929,8.3708"/>
|
||||
<path d="m385.16,308.97c-4.9904-0.80501-10.946,4.5071-6.1171,9.8196"/>
|
||||
<path d="m377.11,314.44c-4.5075,1.1271-9.8196,6.2783-5.1517,10.303"/>
|
||||
<path d="m399.81,289.17c-6.4392,2.8975-7.0833,10.142-4.0246,15.454"/>
|
||||
<path d="m393.04,275.81c-9.6588,3.7025-9.4975,16.581,1.1267,20.605"/>
|
||||
<path d="m389.66,293.51c-5.795,3.3804-6.9221,9.8196-3.0583,14.005"/>
|
||||
<path d="m379.52,270.98c-3.8638,1.2879-3.5417,13.2,6.7613,12.878"/>
|
||||
<path d="m368.9,275c-7.7271,5.1513,1.6096,18.19,14.166,8.8538"/>
|
||||
<path d="m376.14,287.07c-1.1267,5.3125,0.32209,11.108,8.8542,11.752"/>
|
||||
<path d="m376.62,294.16c-6.1175,2.2533-7.2442,14.81,3.8633,15.776"/>
|
||||
<path d="m357.15,282.73c-7.8879,7.2442,6.4392,13.522,11.752,3.0588"/>
|
||||
<path d="m346.2,294.8c-3.8638,4.6683,9.6583,16.903,15.615-3.5417"/>
|
||||
<path d="m363.26,290.94c0.32167,4.8292,3.2196,7.7267,9.1754,8.0488"/>
|
||||
<path d="m372.28,303.66c-9.4975,1.4488-12.556,13.361-1.9317,15.937"/>
|
||||
<path d="m354.73,302.05c-0.32208,4.5071,4.3463,8.2096,9.6588,7.405"/>
|
||||
<path d="m369.22,319.27c-8.6925,1.9317-9.8196,13.2-2.0925,12.556"/>
|
||||
<path d="m363.1,342.29c-7.2446-2.1729-7.4054-10.786-0.96625-14.005"/>
|
||||
<path d="m357.15,334.72c-6.1167,3.7025-3.7021,12.556-0.48292,13.844,3.2196,1.2879,5.7954-0.32166,6.1175-3.0583"/>
|
||||
<path d="m362.3,357.9c0.64417,4.1854-14.891,2.5758-6.9217-10.463"/>
|
||||
<path d="m355.29,358.63c-5.2313,8.21,3.3008,14.89,8.6929,7.8883"/>
|
||||
<path d="m356.02,368.53c-2.0929,6.6004,5.875,11.35,11.026,6.1983"/>
|
||||
<path d="m338.63,306.71c-2.8979,5.9563,11.59,8.2096,12.556-4.0246"/>
|
||||
<path d="m334.61,315.57c-2.8975,11.59,18.995,9.1758,13.361-5.7954"/>
|
||||
<path d="m348.45,317.5c3.0583,1.7708,12.235,1.9317,14.488-7.8879"/>
|
||||
<path d="m356.34,317.82c0.64375,3.0583,3.3804,6.7608,5.9558,7.8879"/>
|
||||
<path d="m345.88,320.88c-0.96583,6.2783,5.3121,11.43,12.556,10.947"/>
|
||||
<path d="m347,327c-3.5412,4.8296-4.6683,14.166,6.4396,14.81"/>
|
||||
<path d="m330.1,328.61c-1.7708,4.9904,8.6929,10.142,14.81,1.9317"/>
|
||||
<path d="m326.88,341.32c-0.88625,3.7838,8.5317,8.8542,13.844-7.2438"/>
|
||||
<path d="m336.54,342.29c2.2538,4.0242,9.8196,7.2438,14.488-0.64417"/>
|
||||
<path d="m343.46,346.48c-1.9317,5.6342,3.3808,10.946,9.8196,9.3367"/>
|
||||
<path d="m331.39,345.19c-1.2879,8.0488,8.0488,12.717,13.844,8.5317"/>
|
||||
<path d="m325.27,348.73c-2.7362,10.303,10.464,14.166,15.454,6.4388"/>
|
||||
<path d="m337.35,358.23c0.48333,5.7954,9.4983,10.785,16.581,5.9563"/>
|
||||
<path d="m321.25,363.06c-0.64375,2.5754,10.142,5.1513,11.751-3.8638"/>
|
||||
<path d="m327.53,365.31c2.5754,6.6004,11.268,8.21,16.259,0.16125"/>
|
||||
<path d="m340.89,368.69c1.1271,6.1171,9.015,9.4975,15.937,5.3121"/>
|
||||
<path d="m359.72,376.42c-1.7704,8.21,6.7613,14.81,12.073,10.303"/>
|
||||
<path d="m346.04,374.97c-2.5754,9.015,8.6929,14.166,14.971,9.1758"/>
|
||||
<path d="m332.52,370.46c-0.64375,8.3708,5.9562,13.361,13.522,9.6583"/>
|
||||
<path d="m318.19,371.27c-2.2542,5.4733,9.6588,9.9808,15.293,5.3125"/>
|
||||
<path d="m310.78,386.24c3.0588,3.5412,13.683,0,14.649-7.8879"/>
|
||||
<path d="m322.54,384.14c3.8633,4.5075,13.039,6.9221,16.742-2.7367"/>
|
||||
<path d="m336.06,386.4c-0.16125,6.9221,12.235,11.913,16.259-0.805"/>
|
||||
<path d="m366.88,388.09c-1.1271,3.3808,1.53,8.7729,7.0829,9.4167"/>
|
||||
<path d="m356.66,386c-0.805,3.8633,4.8296,9.2554,10.786,7.0829"/>
|
||||
<path d="m368.58,394.69c-1.6096,4.1854-0.24208,10.221,5.3921,10.141"/>
|
||||
<path d="m369.14,402.5c-4.1854,3.5412-2.415,9.8204,3.6229,10.062"/>
|
||||
<path d="m366.97,408.45c-5.9563,4.0225-3.8633,12.877,4.0242,12.398"/>
|
||||
<path d="m348.94,391.39c0,8.6929,10.785,9.9804,12.878,1.9317"/>
|
||||
<path d="m357.63,398.47c-1.61,5.1512,2.5754,10.142,9.1754,8.6929"/>
|
||||
<path d="m358.92,460.61c1.4492,2.0958,7.405-1.4458,5.7954-4.9875s-7.9192-1.6167-7.2442,2.0917"/>
|
||||
<path d="m363.26,454.17c0.80459-7.0833-7.5663-8.2083-9.6588-2.0917"/>
|
||||
<path d="m356.66,448.54c2.0929-3.5417-4.99-8.3708-7.8879-3.2208"/>
|
||||
<path d="m351.35,443.22c1.9317-5.1542-6.1171-7.4042-6.7613-2.7375"/>
|
||||
<path d="m342.82,433.72c0.96625-2.575,9.9808-0.96667,6.1175,4.3458"/>
|
||||
<path d="m355.86,444.51c3.5417-3.2208-2.4142-9.8208-6.1171-7.4042"/>
|
||||
<path d="m379.68,454.33c-2.8179,0.32084-5.7158,2.1708-3.6229,8.1292,1.4512,4.1333,7.6471,4.3458,8.5317,1.85"/>
|
||||
<path d="m375.58,457.31c-2.7367-1.7708-8.6929,1.2083-5.9562,7.0042,2.0604,4.3625,7.2442,2.575,8.0488,0.32083"/>
|
||||
<path d="m360.2,465.6c1.3675,2.4125,8.2088,1.3708,9.4167-1.2875"/>
|
||||
<path d="m364.87,457.63c1.4488-0.96667,4.1042,0.2375,4.6683,1.4458"/>
|
||||
<path d="m364.39,417.95c-4.6683,3.0583-1.7708,12.396,5.4733,9.9792"/>
|
||||
<path d="m362.94,425.52c-3.7025,2.8958-0.32208,11.913,6.6,8.5333"/>
|
||||
<path d="m364.07,434.05c-2.5754,2.575-0.0808,9.7375,6.6004,8.3708"/>
|
||||
<path d="m363.1,437.59c-1.4492-0.64584-5.2325-0.1625-6.8425,2.25"/>
|
||||
<path d="m358.92,404.99c-3.5412,3.3804-1.8517,10.304,4.7483,10.866"/>
|
||||
<path d="m357.63,412.07c-5.0717,2.4958-5.0717,12.554,5.07,12.958"/>
|
||||
<path d="m357.23,423.42c-2.8167,2.2542-1.4488,10.946,5.7954,9.8167"/>
|
||||
<path d="m359.56,432.92c-1.0471,1.0458-1.2083,3.7042-0.32208,4.8292"/>
|
||||
<path d="m356.34,429.62c-2.5754,0.0792-5.9562,1.9333-6.8425,4.5875"/>
|
||||
<path d="m344.83,424.87c0.96583-2.575,8.9354-2.4125,9.4979,5.1542"/>
|
||||
<path d="m355.13,421.01c-1.1271,0.24167-3.2996,1.2875-3.8633,3.4625"/>
|
||||
<path d="m351.67,397.43c-3.4617,3.1388-5.1512,13.04,5.3921,14.97"/>
|
||||
<path d="m344.67,417.87c0-2.6583,7.1642-4.9125,9.6588-0.96666"/>
|
||||
<path d="m340.08,403.46c1.0458,2.0129,6.0362,4.7496,9.095,2.4958"/>
|
||||
<path d="m314.16,387.69c-0.16042,4.6683,3.7029,8.8538,9.015,8.21,5.3121-0.64417,6.4392-5.3125,4.8292-8.3713"/>
|
||||
<path d="m323.98,396.06c-3.5417,4.3463,0.805,10.464,4.8292,8.6929"/>
|
||||
<path d="m328.01,393c2.0929-0.805,9.015-1.7708,11.108,1.4488"/>
|
||||
<path d="m305.63,394.29c-1.61,2.4146,8.3712,4.8296,11.751,0.16083"/>
|
||||
<path d="m314,396.86c-0.3225,3.2196,1.2875,8.6925,9.4975,6.4392"/>
|
||||
<path d="m324.79,408.29c1.2875-2.7367-4.8296-7.2438-9.4979-2.2538-4.6683,4.9904,0.64375,10.625,3.5417,8.6917"/>
|
||||
<path d="m303.38,397.51c-2.4146,4.1854,6.9221,11.833,12.235,4.7496"/>
|
||||
<path d="m297.18,404.75c-3.3804,3.4617,0.805,9.8208,5.8763,7.8875,5.0704-1.9313,4.5875-7.2438,3.3808-8.6113"/>
|
||||
<path d="m290.66,411.19c-2.7367,2.4942-0.0813,8.3692,3.7025,8.3692,3.7821,0,6.1171-2.975,5.3921-6.7583"/>
|
||||
<path d="m306.03,410.71c-0.48333,3.7021,4.99,6.2771,8.5317,2.8188"/>
|
||||
<path d="m314.73,406.76c0.48292-0.805,0.0813-2.1742-0.72334-2.8179"/>
|
||||
<path d="m284.79,416.18c-3.1383,2.4958,3.6229,9.4167,7.8879,3.0583"/>
|
||||
<path d="m309.01,414.81c-2.0129,1.9292,1.2067,7,4.4262,5.4708"/>
|
||||
<path d="m297.99,418.35c0.48292,3.4583,7.2442,6.0333,11.51,0.725"/>
|
||||
<path d="m301.69,421.81c-1.0458,2.175,1.0471,5.6375,3.6225,5.1542"/>
|
||||
<path d="m365.76,441.7c-2.4942,4.9083,5.4733,10.625,11.269,4.6667"/>
|
||||
<path d="m371.55,449.02c-1.2067,2.6542,0.24209,6.3583,2.4146,7.725"/>
|
||||
<path d="m363.99,454.57c0.56417-2.4167,4.0242-4.6708,7.1642-3.5417"/>
|
||||
<path d="m359.8,448.21c0.48292-2.1708,3.3804-4.3458,5.5542-3.7792"/>
|
||||
<path d="m549.35,347.76c-11.429,0.16125-6.6,18.513,3.2208,14.81"/>
|
||||
<path d="m545.65,361.29c-2.2542,3.7025,2.0917,9.5788,6.9208,6.1171"/>
|
||||
<path d="m551.29,368.13c-3.3833,5.6342,8.6917,14.246,13.521,5.3921"/>
|
||||
<path d="m560.95,376.9c0.15834,5.3125,15.613,8.6929,13.363-1.9317"/>
|
||||
<path d="m572.86,380.76c3.7,6.2779,17.546,6.9221,16.096-2.4146"/>
|
||||
<path d="m585.9,384.79c2.9,4.1854,16.421,6.7608,15.938-1.9321"/>
|
||||
<path d="m531,331.83c1.9292,4.9904,8.5292,6.7613,15.775,3.8633"/>
|
||||
<path d="m526.82,335.37c4.5083,2.8975-2.0917,16.098-9.0125,10.785"/>
|
||||
<path d="m526.82,343.58c4.9917,2.415,11.108,0.64417,12.879-6.4392"/>
|
||||
<path d="m536.64,342.61c0.48334,3.7025,5.7958,6.6004,12.717,5.1512"/>
|
||||
<path d="m524.24,346.48c6.4417,5.4733-2.8958,16.742-7.0833,11.59"/>
|
||||
<path d="m526.66,350.66c3.0583,2.2538,10.946,0.96584,11.75-4.9904"/>
|
||||
<path d="m534.87,350.66c0.64583,3.8633,3.7042,5.3121,8.05,5.4733"/>
|
||||
<path d="m524.89,355.97c3.2167,4.5075,11.267,5.7954,14.808-0.16083"/>
|
||||
<path d="m536.15,359.19c-0.32083,4.3467,4.5083,7.8879,9.5,6.9221"/>
|
||||
<path d="m518.61,368.85c4.1833,2.0925,8.6917-5.795,5.15-11.268"/>
|
||||
<path d="m523.44,377.22c4.9917,0.32208,5.6333-7.2438,0.96667-11.43"/>
|
||||
<path d="m534.87,384.14c4.1875-0.96583,2.8958-10.142-7.2458-10.947"/>
|
||||
<path d="m547.58,390.91c4.025-1.1271,0.80417-11.269-10.3-10.625"/>
|
||||
<path d="m562.88,394.45c2.7333-4.1854-6.2792-11.268-13.683-7.5658"/>
|
||||
<path d="m570.44,400.24c4.9917,1.4488,8.3708-11.751-7.4042-9.6588"/>
|
||||
<path d="m579.62,400.24c4.35-1.1267,7.4084-9.015-5.3083-6.4392"/>
|
||||
<path d="m589.28,400.89c3.8625,1.9321,5.6333-9.3367-6.1208-6.2779"/>
|
||||
<path d="m524.4,365.79c4.8292,2.7367,12.396-0.48291,11.75-6.6"/>
|
||||
<path d="m534.22,364.51c1.6125,2.8975,0.96667,8.5317-2.0917,9.9804"/>
|
||||
<path d="m534.7,371.27c3.2208,1.2879,7.5667,0.16125,10.142-4.99"/>
|
||||
<path d="m540.34,371.27c0.9625,2.2538,1.2875,6.7613-0.80833,9.015"/>
|
||||
<path d="m541.15,375.13c3.5417,1.9317,7.725-0.64417,9.4958-4.3467"/>
|
||||
<path d="m548.39,374c2.575,1.61,4.8292,9.1758,0.48333,12.235"/>
|
||||
<path d="m551.29,382.7c3.0583,0.16083,7.5667,0.16083,10.463-3.7025"/>
|
||||
<path d="m559.66,381.09c2.7375,0.805,5.9542,5.3125,4.8292,9.3371"/>
|
||||
<path d="m564.65,388.97c3.0625-0.32209,8.3708-2.415,9.8208-6.1175"/>
|
||||
<path d="m573.02,385.27c2.5792,1.4488,4.35,4.5071,4.025,8.0488"/>
|
||||
<path d="m577.04,390.74c3.0583-0.16084,5.7958-1.7704,6.6-5.1513"/>
|
||||
<path d="m582.84,387.85c2.2542,0.805,4.9917,3.3804,5.1542,6.4392"/>
|
||||
<path d="m587.67,392.35c2.2542-0.32209,3.8625-1.7708,5.3125-4.0246"/>
|
||||
<path d="m599.1,388.01c2.9,2.8979-0.9625,12.557-6.9208,10.786"/>
|
||||
<path d="m537.28,192.9c-5.9583,3.5412-22.863,2.4146-14.492-11.59"/>
|
||||
<path d="m538.89,183.4c-11.75,4.6683-26.242-4.3462-11.108-14.166"/>
|
||||
<path d="m523.76,166.02c-9.8208,0-16.421,15.776-3.2167,21.249"/>
|
||||
<path d="m485.61,172.62c-2.575,4.99,6.6,10.463,12.879,5.4733,4.8625-3.8662,4.5042-14.327,1.6083-18.352"/>
|
||||
<path d="m480.62,184.53c-3.2208,10.624,20.446,11.268,16.742-5.6346"/>
|
||||
<path d="m479.33,200.31c0.80417,8.0488,22.7,5.4733,15.613-10.786"/>
|
||||
<path d="m497.52,185.01c1.7708,2.4146,6.6,6.6,14.808,5.795"/>
|
||||
<path d="m501.38,173.58c0.725,2.8975,5.6333,5.1512,11.913,2.9788"/>
|
||||
<path d="m281.73,418.51c-5.5533,3.9458,2.9788,10.142,6.1171,3.3"/>
|
||||
<path d="m277.38,421.57c-5.5529,3.9417,2.9788,10.138,6.1175,3.2958"/>
|
||||
<path d="m272.79,424.55c-5.5546,3.9458,2.9775,10.142,6.1171,3.3"/>
|
||||
<path d="m267.96,427.29c-5.3125,2.8167,0.88458,9.7375,6.2779,3.6208"/>
|
||||
<path d="m262.73,429.95c-5.3125,2.8125,0.88584,9.7375,6.2783,3.6208"/>
|
||||
<path d="m289.7,421.65c-0.0813,4.1042,7.7271,5.7958,10.543-0.325"/>
|
||||
<path d="m294.61,425.44c-2.4146,3.0583,2.0129,6.8417,4.4275,5.4708"/>
|
||||
<path d="m284.22,424.87c-0.24208,3.4625,6.5188,5.475,9.8196,1.6917"/>
|
||||
<path d="m287.93,428.5c-2.1738,2.8167,2.0925,6.6,4.8292,5.4708"/>
|
||||
<path d="m279.72,428.01c0.24083,2.7375,4.1042,5.875,8.29,4.1042"/>
|
||||
<path d="m282.21,431.71c-1.61,1.45-0.80459,4.8333,1.4488,5.8792"/>
|
||||
<path d="m273.84,431.47c-0.64375,2.4958,3.6225,6.925,7.9688,4.025"/>
|
||||
<path d="m274.72,434.37c-2.5754,2.0125-2.2538,5.0708,1.0458,5.4708"/>
|
||||
<path d="m268.53,434.05c-0.32167,1.6875,1.8521,4.425,4.5888,4.1042"/>
|
||||
<path d="m254.76,433.89c-2.5754,1.3667,4.0246,8.3708,8.1288,1.85"/>
|
||||
<path d="m248.4,436.78c-3.2196,1.5333,4.7492,9.2584,8.2913,1.3708"/>
|
||||
<path d="m269.25,436.46c-2.4958,0.5625-4.1054,4.1875-2.0129,5.6333"/>
|
||||
<path d="m261.12,437.75c-0.32208,1.45,2.7367,3.8625,5.2329,2.9792"/>
|
||||
<path d="m259.03,438.4c-2.4146,1.5292-1.1271,5.7917,1.6908,5.15"/>
|
||||
<path d="m250.42,441.21c-2.2538,1.6875-0.725,5.0708,2.4146,4.2667"/>
|
||||
<path d="m254.52,440.97c0.0813,0.88333,2.0929,2.2542,3.7838,1.6917"/>
|
||||
<path d="m242.61,439.52c-2.8162,1.2083-2.6554,8.2917,6.8425,4.4292"/>
|
||||
<path d="m236.25,442.34c-3.9446,1.9333-2.6567,7.2458,5.9562,2.175"/>
|
||||
<path d="m242.93,444.92c-1.0458,0.80416-2.1725,4.3458,1.7708,2.975"/>
|
||||
<path d="m235.69,446.6c-1.6096,1.45-0.5625,4.4292,2.9792,3.3"/>
|
||||
<path d="m227.4,447.09c-2.8975,1.6917,3.4604,3.9458,7.7271-0.5625"/>
|
||||
<path d="m229.33,449.18c-1.2883,1.2875-1.2883,5.0708,2.0925,3.7042"/>
|
||||
<path d="m221.12,450.71c-1.9317,1.45,1.3679,3.3833,7.405,0.725"/>
|
||||
<path d="m223.53,452.8c-2.2538,1.85-2.0129,4.1833,1.2875,3.4583"/>
|
||||
<path d="m216.85,453.85c-2.4946,2.2542,1.1267,3.7833,5.4733,1.9292"/>
|
||||
<path d="m216.93,456.35c-4.2667,1.9292-2.415,5.4708,0.24084,4.1042"/>
|
||||
<path d="m359.4,468.66c-0.98917,2.1292,2.2538,3.8625,5.3125,3.3792,2.9379-0.4625,5.7483-2.8833,3.5413-6.275"/>
|
||||
<path d="m368.41,469.95c2.8975,2.2542,8.0488-0.32083,8.0488-3.7042"/>
|
||||
</g>
|
||||
<g fill="#fff">
|
||||
<path d="m545.97,128.83c-12.879-6.4392-39.6-18.352-47.167-8.6929,6.9208-2.8975,27.204,0.16125,43.946,15.615l3.2208-6.9221z"/>
|
||||
<path d="m553.78,128.15c-14.892-17.347-23.663-13.464-34.371-19.439-10.058-5.6142-26.079-6.7612-29.183,2.1671,14.696-7.1575,28.188,3.8488,36.475,5.1804,11.383,1.8279,17.808,10.628,21.138,14.675l5.9417-2.5833z"/>
|
||||
<path d="m609.88,125.93c-7.7292-17.708-24.254-13.083-31.554-20.605-10.621-10.946-37.504-21.088-48.613-13.522,24.467-1.2879,34.888,16.865,47.971,23.181,9.3375,4.5075,19.317,14.166,32.196,10.947z"/>
|
||||
<path d="m580.91,124c-13.2-16.42-33.488-30.908-42.821-25.435,12.233,0.64375,16.096,9.1758,24.792,14.649,8.6917,5.4733,4.8292,13.361,18.029,10.786z"/>
|
||||
<path d="m518.12,152.98c-13.846-5.1513-40.888-7.7267-53.446,8.0492,20.929,3.5413,52.479,1.6096,53.446-8.0492z"/>
|
||||
<path d="m515.55,159.1c-13.846-6.4392-24.658,2.555-37.671,1.2875-24.788-2.4146-42.496-0.96584-44.75,10.947,14.167-12.717,37.992-2.2538,47.65-4.8292,9.6584-2.5758,45.396-0.32208,56.663,4.5071-5.7958-7.0829-14.808-9.0146-21.892-11.912z"/>
|
||||
<path d="m559.01,122.23c-3.2167-10.625-3.0583-21.893,12.879-21.088-4.025-4.9904-18.833-7.5658-21.25,11.108-17.546-12.878-36.704-15.132-40.242-4.0242,9.0125-7.7271,23.017-2.0929,39.758,16.903,1.45-0.805,5.3125-2.4146,8.8542-2.8975z"/>
|
||||
<path d="m534.87,136.88c-9.9792-6.4388-23.504-16.903,0.1625-21.088-10.142-5.4733-24.954-3.0588-23.342,15.615-27.046-10.947-46.467-7.2521-50.55,3.5413-4.5083,11.913,12.238,18.513,15.133,10.947-3.0583,1.2879-13.521-2.2538-8.05-9.015,5.475-6.7608,33.525-1.6854,60.208,12.235,7.4042,3.8633,32.838,3.2196,6.4375-12.235z"/>
|
||||
<path d="m527.78,154.59c-7.7-15.722-32.679-1.4488-37.713-16.678-6.8792,22.312,35.521,9.9658,37.713,16.678z"/>
|
||||
<path d="m686.67,171.65c5.2375,2.6025,9.7667-1.4888,1.7542-4.6979,5.2417,2.6012,9.8125-1.3925,1.8-4.6029,5.2417,2.6012,9.8125-1.3921,1.8-4.6025-2.1375,2.1517-5.1958,10.04-5.3542,13.903z"/>
|
||||
<path d="m689.4,141.39c11.592-12.234-0.9625-16.42,13.2-28.976,11.592-10.273,2.2125-17.12,13.204-25.113,3.5417-2.5754,11.267-7.7267,11.913-12.878,4.6667,11.59-14.492,13.2-13.204,31.874,0.82084,11.89-7.2167,10.851-10.3,30.908-0.64583,4.1854-3.5417,13.522-14.813,4.1854z"/>
|
||||
<path d="m694.56,146.86c6.4375-13.844,13.829-13.578,17.383-18.995,6.7625-10.303,21.088,1.7708,33.163-7.405-2.0917,13.039-18.35,8.3708-25.433,16.742-7.0833,8.3708-12.879,12.235-25.113,9.6588z"/>
|
||||
<path d="m696.17,151.37c11.271-9.015,19.575-3.0008,27.367-7.7271,19.638-11.913,27.529,2.4146,45.075-3.2196-4.6708,11.268-30.588,1.61-41.854,9.9808-11.271,8.3708-50.871,16.42-30.588,0.96583z"/>
|
||||
<path d="m663.33,215.6c-0.1625-5.1513-4.9917-11.752-11.754-12.556-6.7583-0.805-9.6583-7.8883-14.808-8.21-5.15-0.32209-8.5333-10.625-15.617-10.464-7.0833,0.16125-9.9792,9.3367,6.6,17.708,16.583,8.3713,34.933,18.03,35.579,13.523z"/>
|
||||
<path d="m642.4,219.95c-7.0833,0.32209-8.05,10.625-14.808,10.947,9.3334,4.9904,16.096-2.2538,20.925-8.6929l-6.1167-2.2538z"/>
|
||||
<path d="m648.2,221.23c-6.1167,5.1513-7.8875,15.937,0.96667,18.995-5.3125-7.3246,9.3375-10.625,4.8292-17.386l-5.7958-1.6096z"/>
|
||||
<path d="m654.31,221.56c-4.8292,9.3367,7.5667,10.463,4.3458,17.547,7.0833-1.61,8.2125-14.971,1.7708-18.513l-6.1167,0.96625z"/>
|
||||
<path d="m606.98,201.59c11.592-0.64375,22.192,5.6267,29.3,15.776,4.5083,6.4388,19.638,9.0146,24.792,3.8633,5.15-5.1512,2.2542-16.098-10.625-12.556-3.2208-5.4733-12.558-3.5417-17.063-8.0492-4.5083-4.5071-21.896-17.385-26.404,0.96584z"/>
|
||||
<path stroke-linecap="round" d="m650.45,208.68c-3.0583,0.64375-4.025,5.9562-2.0958,8.6929"/>
|
||||
<path stroke-linecap="round" d="m657.05,211.9c0.96667,1.6096,0.32083,3.8633-0.1625,4.9904"/>
|
||||
<path stroke-linecap="round" d="m625.34,202.08c5.9542,0.32209,7.0833,4.6688,13.521,6.2783"/>
|
||||
<path d="m621.4,187.43c20.571,5.1512,36.892,9.6588,47.013,15.454,10.121,5.7954,25.792,7.405,39.504,3.5417,13.713-3.8633,40.154-7.405,38.85,9.6588,7.1875-8.5321-1.9583-17.708-20.242-19.318,0.32916-8.3708-8.6292-15.937-15.071-10.947,5.9583-0.80459,11.1,10.303-0.65,14.81,2.2833-8.3708-6.0417-15.937-14.692-12.234,5.55,1.6096,11.163,10.917-1.2542,14.488-7.8375,2.2538-19.263-0.64375-27.75-5.795-8.4875-5.1517-56.154-23.825-45.708-9.6588z"/>
|
||||
<path d="m673.31,179.06c-6.4375,2.8975-2.2542,9.6588-12.233,13.522-9.9833,3.8633-16.904,12.717-14.65,20.283,6.7625-14.81,18.675-14.166,22.858-19.961,4.1875-5.7954,10.304-14.327,4.025-13.844z"/>
|
||||
<path d="m675.08,180.02c-0.32083,11.751-9.5708,7.4704-5.9583,23.986,1.1292,5.1512,3.2208,13.522-0.32083,21.893,10.383-7.5658,3.7042-23.46,8.3708-29.459,2.2542-2.8975,5.15-7.405,6.2792-11.268-2.4167,6.7608-2.2542,19.318,4.3458,22.537-5.3125-12.557,14.329-22.859,0.80417-37.347-1.9292,3.5417-8.05,9.8196-13.521,9.6588z"/>
|
||||
<path d="m642.24,168.27c1.6125,2.4146,3.2208,8.5321,1.7708,11.913,3.2208-1.9317,7.8917-6.9221,9.3375-10.303,6.6,0.96584,9.175,9.1758,2.9,12.717,3.8625,0,10.463,0,14.163-4.3462-4.5042-4.9904-18.508-12.718-28.171-9.9808z"/>
|
||||
<path d="m542.11,145.18c-1.0417-0.94916-2.8-1.8517-5.9542-2.4996-9.7458-1.9988-4.7125-10.784,3.5833-10.706,17.704-19.317,27.646-4.4262,49.217-10.543,7.55-2.1404,12.733-1.5079,16.846,0.27167,9.6583-6.4392,20.988-4.64,29.2,2.9262,0.9125-1.4517,2.1375-2.5592,3.8583-3.0371,7.5625-2.1004,13.679,4.3479,15.771,12.719,5.8958-1.0921,12.629,1.8262,17.058,5.8504,6.1333-3.15,10.358-3.29,11.913-0.0512,5.475-2.5758,12.567-4.1908,16.108,4.5021,3.5417,8.6929-8.3708,6.1171-10.304,24.469-1.1917,11.321-13.842,15.776-23.825,9.015-15.967-10.817-31.55-12.557-39.279,3.8633-7.725,16.42-13.779,25.96-32.517,20.605-6.7583-1.9321-15.454,0.64375-20.925,8.0488-5.475,7.405-13.846,0.48291-23.825,1.2879,12.554-1.9317,7.7458-5.0896,18.675-5.7954,9.9792-0.64375,7.4042-9.9804,13.842-11.268-25.113,6.4392-24.146-2.8979-44.75,3.5412,9.0125-11.59,23.179-5.1513,30.263-11.912-18.675-0.32208-27.025-12.522-35.417-7.405-13.2,8.0488-7.4083,30.965-41.854,28.976-16.742-0.96583-27.367,1.2879-37.346,11.269,17.388-36.059,41.038-16.249,52.479-27.688,6.7625-6.7613,11.913-11.913,15.454-18.352,1.2458-2.2667,2.9333-3.5621,5.0417-4.0629-28.654-9.015-11.325-23.058,16.688-24.023z"/>
|
||||
<path stroke-linecap="round" d="m683.59,140.11c0.4375,0.90542,0.6625,2.08,0.6625,3.5325,0,7.0829-10.625,7.405-11.267,17.869-0.3375,5.4733-0.96666,8.5317-4.6708,7.8879-3.7-0.64417-6.9208-6.4392-3.3792-13.2"/>
|
||||
<path d="m547.42,134.63c-2.6667-1.8738-5.3333-2.635-7.725-2.6571"/>
|
||||
<path d="m605.74,121.65c8.525,3.6908,12.683,12.546,25.067,12.98,11.921,0.41833,19.321,17.708,39.279,6.4388,0.54167-0.305,1.0708-0.58959,1.5833-0.85375"/>
|
||||
<path d="m635,124.63c-1.7792,2.8292-2.1833,6.7783-1.6958,10.244"/>
|
||||
<path d="m596.04,161.03c-15.129,0-18.996,7.7267-18.996,15.132,0,7.405,7.0833,17.064,19.642,17.064,12.554,0,19.317-7.7267,19.317-16.098s-7.7292-16.098-19.963-16.098z"/>
|
||||
<path d="m598.77,192.9c-0.32084-4.1854-7.8875-3.5417-7.5667-6.7613,0.32084-3.2196,4.1875-4.5075,4.1875-9.0146,0-4.5075,6.7583-4.8296,9.0125-1.2879,2.2542,3.5412,9.0167,10.463,10.467,6.9221"/>
|
||||
<path d="m604.41,175.84c-3.5417,3.5412-5.15,10.785-0.48334,16.42"/>
|
||||
<path d="m609.24,181.31c-1.125,2.4146-1.4458,6.1171-0.15833,8.3708"/>
|
||||
<path fill="none" d="m669.36,169.48c11.833,0.96583,13.846-12.074,4.9917-12.878"/>
|
||||
<path fill="none" d="m654.8,134.31c-4.1042-5.2313-13.521-7.0021-13.683,4.1054"/>
|
||||
<path d="m639.99,151.05c-4.025-9.9808-14.329-11.43-19.804-6.4392-4.5542,4.1533-4.6667,14.971,5.1542,17.225,3.3792-4.0242,9.9792-9.3367,14.65-10.785z"/>
|
||||
<path d="m635.56,144.77c-5.7958-5.1517-14.329,4.5883-6.6,13.522"/>
|
||||
<path d="m525.31,169.16c3.8792-0.92083,9.55,0.9775,18.246,5.0675,5.475,2.5758,21.896,8.0492,32.196,2.5758-10.625,3.8633-18.671-12.235-26.721-10.303-8.05,1.9317-22.779,4.9096-28.975-0.96625,15.129,0.96625,23.267-11.021,40.563-0.64375,4.8333,2.8975,10.95,4.8296,16.421,4.5075-14.163-17.064-32.838-6.1175-34.771-19.961,8.5333,9.1758,29.379-2.0929,40.004,15.132"/>
|
||||
<path d="m545.33,152.01c-1.9917-2.4792-1.0917-4.9504-3.2292-6.9054"/>
|
||||
</g>
|
||||
<path fill="#000" stroke="none" d="m654.8,134.31c-3.5417-3.7829-11.267-0.805-9.0958,6.8421,1.6917-3.5413,5.3125-6.52,9.0958-6.8421z"/>
|
||||
<path fill="#000" stroke="none" d="m632.91,154.93c2.4375-1.7696,4.9542-3.2233,7.075-3.8817-1.1583-2.8642-2.8292-5.0262-4.7583-6.5346-1.8417-1.2721-7.1333,5.8442-2.3167,10.416z"/>
|
||||
<g fill="none" stroke-linecap="round">
|
||||
<path d="m623.4,141.87c-5.7958-3.8633-11.108-3.5413-12.879-0.32167-4.1833-0.16125-7.6458,2.8975-7.8083,9.0146"/>
|
||||
<path d="m611.65,153.14c-6.9208-4.7483-16.421-2.9775-15.775,7.6471"/>
|
||||
<path d="m591.69,166.82c3.3792-2.7367,8.2083-4.6683,11.913,0.16125"/>
|
||||
<path d="m643.37,156.36c-1.2875,1.7704-2.2542,4.5071-0.1625,8.6929-2.575-3.3808-9.0125-3.3808-15.938,5.6338"/>
|
||||
<path d="m658.66,155.88c-8.3708,0.96583-8.2083,6.4388-1.45,8.8538"/>
|
||||
<path d="m599.1,135.43c-7.0833-1.4488-12.233,2.7367-2.4125,6.2783"/>
|
||||
<path d="m612.62,130.6c-9.9834-2.4146-14.008,0.16084-9.5,2.4146"/>
|
||||
<path d="m583.8,170.69c-0.32083,3.5417,1.6083,8.21,7.4042,2.8979"/>
|
||||
<path d="m585.74,181.31c0,0.96583-0.1625,2.0925-0.80833,2.8975"/>
|
||||
<path d="m562.55,134.14c-6.1167-1.7708-7.2417-7.405-0.15834-6.9221"/>
|
||||
<path d="m560.46,147.18c-6.7625-2.2538-6.7625-8.8538-1.1292-8.21"/>
|
||||
<path d="m573.02,143.8c-7.8875-1.9321-8.2083-7.4054-2.25-6.6004"/>
|
||||
<path d="m573.98,127.06c-4.1833-0.32166-10.625,4.3467,0.1625,7.0833"/>
|
||||
<path d="m585.74,136.4c-9.8208-1.4488-9.6583,2.5758-3.8667,5.1517"/>
|
||||
<path d="m593.14,127.06c-7.5667-1.4488-10.142,3.0588-4.9917,4.9904"/>
|
||||
<path d="m569.32,154.91c-1.8542-1.5288-3.3792-8.8542,5.4708-6.68"/>
|
||||
<path d="m587.67,152.66c-5.9542-1.61-11.588,4.1854-6.1167,7.5658"/>
|
||||
<path d="m595.55,145.74c-6.275-1.1271-11.588,0.64375-8.2083,2.8975"/>
|
||||
</g>
|
||||
<path fill="#fff" d="m654.46,134.31c-3.5375,0.65541-6.7083,2.7342-8.7625,6.8396"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 47 KiB |
9
build/default/data/svg/BV.svg
Normal file
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="1100" height="800">
|
||||
<rect width="1100" height="800" fill="#ef2b2d"/>
|
||||
<rect width="200" height="800" x="300" fill="#fff"/>
|
||||
<rect width="1100" height="200" y="300" fill="#fff"/>
|
||||
<rect width="100" height="800" x="350" fill="#002868"/>
|
||||
<rect width="1100" height="100" y="350" fill="#002868"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 517 B |
6
build/default/data/svg/BW.svg
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="1200" height="800" viewBox="0 0 36 24">
|
||||
<rect width="36" height="24" fill="#75aadb"/>
|
||||
<rect y="9" width="36" height="6" fill="#fff"/>
|
||||
<rect y="10" width="36" height="4"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 264 B |
16
build/default/data/svg/BY.svg
Normal file
@@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="900" height="450" viewBox="0 0 1098 549">
|
||||
<title>Flag of Belarus</title>
|
||||
<rect fill="#C8313E" width="1098" height="549"/>
|
||||
<rect y="366" fill="#4AA657" width="1098" height="183"/>
|
||||
<rect fill="#FFF" width="122" height="549"/>
|
||||
<g id="h">
|
||||
<g id="q" fill="#C8313E" fill-rule="evenodd" transform="scale(5.304347826,9)">
|
||||
<path d="M4,0h3v1h1v1h1v1h1v1h1v1h-1v1h-1v1h-1v1h-1v1h-1v1h-1v-1h-1v-1h-1v-1h-1v-1h-1v-1h-1v-1h1v-1h1v-1h1v-1h1zM5,2h1v1h1v1h1v1h-1v1h-1v1h-1v-1h-1v-1h-1v-1h1v-1h1zM5,4h1v1h-1zM0,1h1v1h-1zM0,7h1v1h-1zM11,0h0.6v2h-.6zM11,7h.6v2h-.6zM2,9h1v1h1v1h1v1h-1v1h-1v1h-1v-1h-1v-1h-1v-1h1v-1h1zM2,11h1v1h-1zM8,9h1v1h1v1h1v1h-1v1h-1v1h-1v-1h-1v-1h-1v-1h1v-1h1zM8,11h1v1h-1zM0,15h1v1h-1zM11,14h.6v2h-.6z"/>
|
||||
<path d="M0,18h1v-1h1v-1h1v-1h1v-1h1v-1h1v1h1v1h1v1h1v1h1v1h1v1h.6v4h-.6v1h-1v1h-1v1h-1v1h-1v1h-1v2.6h-2v-0.6h-1v-1h-1v-1h-1v-1h-1 v-3h1v1h1v1h1v1h1v-1h1v-1h1v-1h1v-1h1v-1h1v-1h-1v-1h-1v-1h-3v1h2v1h-1v1h-1v1h-1v-1h-1v-1h-1v-1h-1zM0,22h1v1h-1zM11,25h.6v1h-.6zM9,27h1v1h1v1h.6v1.6h-.6v-.6h-1v-1h-1zM7,30h1v.6h-1z"/>
|
||||
</g>
|
||||
<use xlink:href="#q" transform="translate(122,0) scale(-1,1)"/>
|
||||
</g>
|
||||
<use xlink:href="#h" transform="translate(0,549) scale(1,-1)"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
414
build/default/data/svg/BZ.svg
Normal file
@@ -0,0 +1,414 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="750" height="500">
|
||||
<defs>
|
||||
<radialGradient id="white_skin">
|
||||
<stop stop-color="#ffef5d" offset="0"/>
|
||||
<stop stop-color="#ea5700" offset="1"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="black_skin">
|
||||
<stop stop-color="#952d1a" offset="0"/>
|
||||
<stop stop-color="#570a00" offset="1"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
<rect width="750" height="500" fill="#ce1126"/>
|
||||
<rect width="750" height="428.57" y="35.714" fill="#003f87"/>
|
||||
<circle cx="375" cy="250" r="196.429" fill="#fff"/>
|
||||
<g id="leaves">
|
||||
<circle cx="375" cy="249" r="162.812" fill="none" stroke="#552300" stroke-width="4.103"/>
|
||||
<g fill="#007f00">
|
||||
<path d="m356.19,76.241c14.725-15.798,28.039,2.4507,27.684,11.002-0.3554,8.551-15.207,27.416-28.646,12.234,13.922,3.5647,18.083-12.003,25.125-12.157-7.0412,0.1553-9.9194-15.259-24.163-11.078z"/>
|
||||
<path d="m202.92,200.12c-7.7422-20.102,14.644-23.856,22.208-19.751,7.5668,4.1055,18.021,25.681-1.648,30.908,9.3905-10.806-2.8239-21.409,0.15681-27.741-2.9807,6.3319-18.179,2.0599-20.717,16.585z"/>
|
||||
<path d="m533.28,180.24c20.168,7.9048,7.8468,26.827-0.31445,29.594-8.1602,2.7672-31.256-4.1438-21.861-22.074,1.6914,14.171,17.821,12.387,20.515,18.846-2.696-6.4591,10.741-14.701,1.6598-26.366z"/>
|
||||
<path d="m269.58,393.14c-21.576-2.1447-14.921-23.685-7.8322-28.556,7.091-4.8715,31.211-4.4746,27.099,15.318-5.5216-13.174-20.548-7.0918-24.915-12.576,4.3657,5.484-6.2951,17.05,5.6483,25.814z"/>
|
||||
<path d="m487.64,377.55c0.30792,21.517-22.013,17.408-27.698,10.973-5.6837-6.4355-8.0314-30.262,12.251-28.463-12.559,6.9449-4.7606,21.069-9.7539,25.998,4.9946-4.9288,17.788,4.2661,25.201-8.5071z"/>
|
||||
<path d="m218.64,159.24c-1.9676-21.431,20.606-19.029,26.768-13.044,6.1629,5.985,10.342,29.564-10.021,29.31,11.99-7.8783,3.1238-21.369,7.7226-26.663-4.5986,5.2951-18.063-2.9011-24.47,10.398z"/>
|
||||
<path d="m241.76,360.29c-21.382-3.5869-13.276-24.631-5.8711-29.018,7.4053-4.3845,31.444-2.3722,25.994,17.1-4.6126-13.517-20.019-8.4531-24.003-14.218,3.9841,5.7662-7.4394,16.593,3.8795,26.135z"/>
|
||||
<path d="m410.72,77.127c19.418-9.5784,25.333,12.174,21.94,20.043-3.3906,7.8684-24.026,20.269-31.157,1.3374,11.738,8.2404,21.201-4.8453,27.839-2.5074-6.6376-2.3379-3.812-17.762-18.622-18.873z"/>
|
||||
<path d="m452.04,404.49c-9.6263,19.283-27.594,5.5118-29.689-2.7897-2.0948-8.3027,6.78-30.564,23.996-19.769-14.369,0.4845-13.93,16.586-20.64,18.708,6.7098-2.1223,13.861,11.854,26.333,3.8502z"/>
|
||||
<path d="m546.33,218.38c16.316,14.177-1.7046,27.883-10.325,27.764-8.6232-0.11792-28.03-14.337-13.104-28.086-3.2108,13.909,12.583,17.614,12.931,24.595-0.34923-6.9808,15.097-10.257,10.498-24.273z"/>
|
||||
<path d="m272.4,105.04c4.8689-20.971,25.559-11.699,29.535-4.1028,3.9742,7.5954,0.52937,31.289-18.735,24.743,13.866-3.7717,9.6858-19.334,15.718-22.939-6.033,3.6047-16.249-8.3527-26.517,2.2992z"/>
|
||||
<path d="m208.27,284.73c-19-10.373-4.3648-27.596,4.0818-29.318,8.4457-1.7219,30.477,8.033,18.871,24.64,0.12873-14.266-16.099-14.523-17.948-21.267,1.8494,6.7447-12.528,13.235-5.0055,25.945z"/>
|
||||
<path d="m482.8,118.48c21.462-3.0857,20.24,19.412,14.544,25.837-5.6962,6.4248-29.2,11.816-30.023-8.3775,8.5614,11.464,21.665,1.9624,27.238,6.2392-5.5702-4.2766,1.9632-18.055-11.759-23.698z"/>
|
||||
<path d="m360.73,425.12c-19.798,8.7796-24.808-13.195-21.094-20.92,3.7135-7.7222,24.846-19.272,31.186-0.066-11.388-8.7111-21.384,3.9768-27.919,1.3715,6.5354,2.6044,3.0754,17.899,17.827,19.614z"/>
|
||||
<path d="m538.37,305.08c8.9398,19.606-13.18,24.682-20.979,21.034-7.7997-3.6483-19.538-24.565-0.21646-30.949-8.7227,11.342,4.1096,21.201,1.5145,27.699,2.5954-6.4987,18.024-3.1351,19.681-17.783z"/>
|
||||
<path d="m199.66,241.93c-12.438-17.629,8.355-26.675,16.7-24.519,8.3453,2.155,23.778,20.558,5.978,30.377,6.4598-12.748-7.988-20.083-6.6474-26.945-1.3413,6.8604-17.129,6.3866-16.031,21.087z"/>
|
||||
<path d="m316.63,412.08c-20.35,7.4333-23.854-14.831-19.622-22.286,4.2319-7.4571,26.1-17.562,31.12,2.0239-10.77-9.455-21.604,2.5349-27.949-0.50364,6.3434,3.0365,1.8485,18.064,16.451,20.765z"/>
|
||||
<path d="m310.76,84.939c12.058-17.887,28.08-1.9258,29.076,6.5749,0.99594,8.5009-10.703,29.437-26.369,16.525,14.312,1.3628,15.973-14.659,22.903-15.902-6.9308,1.2424-12.2-13.535-25.61-7.1978z"/>
|
||||
<path d="m519.27,347.62c1.3017,21.482-21.187,18.39-27.16,12.218-5.9754-6.171-9.4198-29.868,10.927-28.989-12.229,7.5055-3.7863,21.262-8.5468,26.412,4.7613-5.1492,17.965,3.4549,24.78-9.641z"/>
|
||||
<path d="m513.74,145.08c21.257,4.2586,12.48,25.038,4.9383,29.187-7.5416,4.1491-31.503,1.3792-25.433-17.913,4.1754,13.655,19.738,9.0811,23.535,14.969-3.7956-5.8864,7.969-16.347-3.0401-26.243z"/>
|
||||
<path d="m244.54,129.94c0.20546-21.52,22.423-16.885,27.95-10.317,5.5281,6.5692,7.3058,30.445-12.929,28.166,12.723-6.6462,5.2638-20.95,10.374-25.761-5.1098,4.811-17.679-4.6825-25.395,7.9121z"/>
|
||||
<path d="m217.66,323.91c-19.346-9.7227-5.311-27.431,3.0719-29.438,8.3832-2.0056,30.735,6.9965,19.708,23.987-0.36375-14.264-16.59-13.969-18.669-20.648,2.0802,6.6789-12.066,13.651-4.1108,26.099z"/>
|
||||
<path d="m450,94.806c20.287-7.5997,23.976,14.632,19.809,22.124-4.1688,7.4921-25.952,17.778-31.136-1.7668,10.848,9.3657,21.584-2.7129,27.952,0.27353-6.3698-2.9872-2.0005-18.051-16.625-20.631z"/>
|
||||
<path d="m406.94,422.71c-15.777,14.795-27.803-4.2965-26.862-12.805,0.94167-8.5102,17.054-26.357,29.418-10.32-13.645-4.4746-18.865,10.787-25.902,10.475,7.037,0.30977,8.8493,15.882,23.345,12.65z"/>
|
||||
<path d="m545.18,258.13c14.802,15.728-4.5106,27.572-13.077,26.598-8.567-0.97341-26.442-17.053-10.202-29.248-4.5982,13.52,10.741,18.778,10.382,25.758,0.3591-6.981,16.059-8.7056,12.897-23.108z"/>
|
||||
</g>
|
||||
<g fill="#005800">
|
||||
<path d="M355.23,99.477c13.92,3.563,17.41-11.815,24.45-11.969-4.11,4.909-14.83,17.422-24.45,11.969z"/>
|
||||
<path d="m356.19,76.241c14.725-15.798,28.039,2.4507,27.684,11.002-11.95-20.833-15.69-17.62-27.68-11.002z"/>
|
||||
<path d="m223.48,211.27c9.3905-10.806-2.9519-20.727,0.0279-27.06,2.6138,5.8324,9.1602,20.92-0.0279,27.06z"/>
|
||||
<path d="m202.92,200.12c-7.7422-20.102,14.644-23.856,22.208-19.751-24.115,1.3999-22.87,6.1503-22.208,19.751z"/>
|
||||
<path d="m511.11,187.76c1.6914,14.171,17.4,11.833,20.094,18.291-6.0994-2.0263-21.734-7.4196-20.094-18.291z"/>
|
||||
<path d="m533.28,180.24c20.168,7.9048,7.8468,26.827-0.31445,29.594,15.24-18.601,10.869-20.896,0.31445-29.594z"/>
|
||||
<path d="m288.85,379.91c-5.5212-13.175-19.992-6.6743-24.358-12.158,6.424,0.29832,22.948,1.2555,24.358,12.158z"/>
|
||||
<path d="m269.58,393.14c-21.576-2.1447-14.921-23.685-7.8322-28.556-9.5509,22.019-4.7128,23.044,7.8322,28.556z"/>
|
||||
<path d="m472.19,360.06c-12.559,6.9449-4.4041,20.473-9.3974,25.402-0.43343-6.3686-1.3565-22.769,9.3974-25.402z"/>
|
||||
<path d="m487.64,377.55c0.30792,21.517-22.013,17.408-27.698,10.973,23.133,6.9103,23.61,2.0234,27.698-10.973z"/>
|
||||
<path d="m235.39,175.5c11.99-7.8777,2.8118-20.747,7.412-26.041,0.92366,6.3177,3.1083,22.6-7.412,26.041z"/>
|
||||
<path d="m218.64,159.24c-1.9676-21.431,20.606-19.029,26.768-13.044-23.597-5.1329-23.694-0.2253-26.768,13.044z"/>
|
||||
<path d="m261.88,348.37c-4.6118-13.515-19.492-7.9979-23.476-13.762,6.3881,0.72693,22.81,2.7896,23.476,13.762z"/>
|
||||
<path d="m241.76,360.29c-21.382-3.5869-13.276-24.631-5.8711-29.018-11.026,21.332-6.2714,22.678,5.8711,29.018z"/>
|
||||
<path d="m401.51,98.508c11.738,8.2404,20.506-4.906,27.143-2.5684-5.5987,3.14-20.103,11.055-27.143,2.5684z"/>
|
||||
<path d="m410.72,77.127c19.418-9.5784,25.333,12.174,21.94,20.043-3.7188-23.688-8.364-22.003-21.94-20.043z"/>
|
||||
<path d="m446.35,381.93c-14.369,0.4845-13.339,16.217-20.048,18.338,2.544-5.8613,9.2688-20.871,20.048-18.338z"/>
|
||||
<path d="m452.04,404.49c-9.6263,19.283-27.594,5.5118-29.689-2.7897,17.401,16.631,20.072,12.501,29.689,2.7897z"/>
|
||||
<path d="m522.9,218.06c-3.2108,13.909,12.375,16.952,12.723,23.933-5.0562-3.9438-17.952-14.243-12.723-23.933z"/>
|
||||
<path d="m546.33,218.38c16.316,14.177-1.7046,27.883-10.325,27.764,20.656-12.427,17.317-16.049,10.325-27.764z"/>
|
||||
<path d="m283.2,125.68c13.866-3.7717,9.1965-18.839,15.23-22.445-1.1105,6.2874-4.1537,22.434-15.23,22.445z"/>
|
||||
<path d="m272.4,105.04c4.8689-20.971,25.559-11.699,29.535-4.1028-20.806-12.184-22.441-7.5529-29.535,4.1028z"/>
|
||||
<path d="m231.22,280.05c0.12854-14.267-15.753-13.92-17.6-20.664,5.7918,2.7734,20.614,10.085,17.6,20.664z"/>
|
||||
<path d="m208.27,284.73c-19-10.373-4.3648-27.596,4.0818-29.318-17.488,16.54-13.445,19.366-4.0818,29.318z"/>
|
||||
<path d="m467.32,135.94c8.5614,11.464,21.025,1.689,26.596,5.9648-6.3073,1.2503-22.577,4.2785-26.596-5.9648z"/>
|
||||
<path d="m482.8,118.48c21.462-3.0857,20.24,19.412,14.544,25.837,3.9152-23.657-1.0279-23.493-14.544-25.837z"/>
|
||||
<path d="m370.82,404.14c-11.388-8.7111-20.692,4.0668-27.226,1.4586,5.7249-2.9075,20.544-10.226,27.226-1.4586z"/>
|
||||
<path d="m360.73,425.12c-19.798,8.7796-24.808-13.195-21.094-20.92,2.7366,23.82,7.4485,22.324,21.094,20.92z"/>
|
||||
<path d="m517.17,295.17c-8.7224,11.344,4.1973,20.516,1.6022,27.014-2.959-5.6678-10.404-20.339-1.6022-27.014z"/>
|
||||
<path d="m538.37,305.08c8.9398,19.606-13.18,24.682-20.979,21.034,23.99-2.8304,22.459-7.4984,20.979-21.034z"/>
|
||||
<path d="m222.34,247.79c6.4598-12.748-7.9446-19.392-6.6042-26.253,3.9612,5.0267,14.011,18.08,6.6042,26.253z"/>
|
||||
<path d="m199.66,241.93c-12.438-17.629,8.355-26.675,16.7-24.519-23.048,7.1806-20.675,11.487-16.7,24.519z"/>
|
||||
<path d="m328.12,391.82c-10.77-9.455-20.921,2.6694-27.263-0.36673,5.9091-2.5197,21.192-8.8282,27.263,0.36673z"/>
|
||||
<path d="m316.63,412.08c-20.35,7.4333-23.854-14.831-19.622-22.286,1.1087,23.948,5.9109,22.773,19.622,22.286z"/>
|
||||
<path d="m313.47,108.04c14.312,1.3629,15.338-14.369,22.268-15.613-3.2857,5.4866-11.91,19.508-22.268,15.613z"/>
|
||||
<path d="m310.76,84.939c12.058-17.887,28.08-1.9258,29.076,6.5749-15.089-18.723-18.276-14.97-29.076-6.5749z"/>
|
||||
<path d="m503.03,330.85c-12.229,7.5055-3.4571,20.65-8.2188,25.801-0.72619-6.3423-2.4047-22.684,8.2188-25.801z"/>
|
||||
<path d="m519.27,347.62c1.3017,21.482-21.187,18.39-27.16,12.218,23.427,5.8525,23.677,0.95221,27.16-12.218z"/>
|
||||
<path d="m493.24,156.35c4.1763,13.654,19.227,8.6096,23.023,14.497-6.3616-0.92834-22.709-3.5075-23.023-14.497z"/>
|
||||
<path d="m513.74,145.08c21.257,4.2586,12.48,25.038,4.9383,29.187,11.708-20.971,6.9971-22.467-4.9383-29.187z"/>
|
||||
<path d="m259.57,147.78c12.723-6.6462,4.8939-20.363,10.002-25.173,0.28139,6.3765,0.81212,22.795-10.002,25.173z"/>
|
||||
<path d="m244.54,129.94c0.20546-21.52,22.423-16.885,27.95-10.317-22.959-7.4535-23.552-2.5797-27.95,10.317z"/>
|
||||
<path d="m240.44,318.46c-0.36376-14.264-16.222-13.379-18.303-20.056,5.8837,2.5758,20.949,9.3825,18.303,20.056z"/>
|
||||
<path d="m217.66,323.91c-19.346-9.7227-5.311-27.431,3.0719-29.438-16.91,17.121-12.771,19.808-3.0719,29.438z"/>
|
||||
<path d="m438.67,115.16c10.848,9.3657,20.896-2.8423,27.266,0.14355-5.8878,2.5682-21.119,9.002-27.266-0.14355z"/>
|
||||
<path d="m450,94.806c20.287-7.5997,23.976,14.632,19.809,22.124-1.3118-23.94-6.1016-22.724-19.809-22.124z"/>
|
||||
<path d="m409.5,399.59c-13.645-4.4746-18.182,10.643-25.216,10.331,4.4355-4.6275,15.994-16.407,25.216-10.331z"/>
|
||||
<path d="m406.94,422.71c-15.777,14.795-27.803-4.2965-26.862-12.805,10.497,21.576,14.446,18.617,26.862,12.805z"/>
|
||||
<path d="m521.9,255.48c-4.5972,13.52,10.602,18.098,10.242,25.078-4.6329-4.4262-16.424-15.956-10.242-25.078z"/>
|
||||
<path d="m545.18,258.13c14.802,15.728-4.5106,27.572-13.077,26.598,21.809-10.312,18.852-14.247,13.077-26.598z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="coa">
|
||||
<g id="tree" stroke-width="0.5087">
|
||||
<g fill="#730000" stroke="#000">
|
||||
<path d="m405.26,125.34s0.61-1.426,1.73-0.61c1.018,0.812,1.321,4.375,1.321,4.375l-1.628,0.812c0.001,0.001,0.917-1.319-1.423-4.577z"/>
|
||||
<path d="m396.01,157.29s0.813-1.118-0.305-3.563l1.628-0.508s0.609,1.932-0.204,4.072l-1.119-0.001"/>
|
||||
<path d="m424.19,151.69-3.865,2.342,1.934,0.916,4.679-2.748-2.748-0.51"/>
|
||||
<path d="m372.4,166.85c-1.019,0.815-1.12,2.24-1.73,3.052-0.506,0.814-2.034,1.932-2.135,3.154-0.203,1.22-0.304,2.034,0.204,3.664,0.607,1.626,3.152,8.851,2.135,14.347-1.12,5.493-0.71,7.833-0.303,8.649,0.404,0.814,1.627,3.051,2.339,3.051,1.628-0.203,0.916-0.711,1.525-1.729,1.526-2.646,0-23.098-0.712-28.796-0.507-4.375-2.545-8.345-2.745-8.75-0.203-0.511-0.609-1.832-0.916-2.647-1.525-3.664-3.357-6.815-3.357-14.451,0,0-4.986,1.122-9.257-8.547-2.238-4.883-5.495-4.375-9.359-6.001l1.729-1.122s3.256,1.629,4.884,1.629,1.12-3.256,1.12-3.256l1.628-1.63v7.126c0,3.256,4.476,7.732,7.121,9.055,1.628,0.812,3.765-2.545,3.257-5.799-0.509-3.256,0-7.631,0-7.631l2.238,1.321s-0.814,1.424-0.61,2.238c0.303,0.816,1.422-0.813,2.236-1.629,0,0,0.203,0.205,1.018,0.205,0,0-1.628,2.745-2.44,4.172-0.812,1.324-0.812,6.514-0.812,8.447,0,1.934,0.712,6.409,0.712,7.833,0,1.021,1.931,5.19,3.46,7.736,0.507,1.016,1.728,3.661,1.728,3.661,1.221,1.933,1.321,3.256,2.035,4.886,0.406,0.812,1.12,3.153,1.628,7.225,0.204,1.016,0.406,4.883,0.714,7.425,0.304,2.442,2.34,0.511,4.779-1.219,2.442-1.832,2.442-6.207,2.442-6.207s1.934-1.628,1.628-0.712c-0.204,1.018,1.019,2.035,1.019,2.035-1.525,3.458-0.609,3.052,0.916,2.95,1.525-0.206,6.814-4.172,6.814-4.172,0.713-0.205,3.867-0.205,3.358,0-0.61,0.306-1.425,1.832-1.425,1.832l3.46-0.408c-1.221,0.916-5.801,3.561-6.815,4.172-1.12,0.714-6.611,3.361-8.952,4.274-2.34,1.016-6.919,3.256-7.122,5.596-0.103,2.342,0.304,8.649,0,10.683-0.204,2.035-1.019,11.093-1.019,11.093h-10.886s2.137-7.937-0.103-10.073c-2.136-2.238-7.122-8.752-10.377-10.992-3.257-2.135,2.135-0.505,2.135-0.505v-2.24l4.984,6.006s8.647-7.632,0-18.011c-2.746-3.256-5.494-8.241-7.629-8.752-2.238-0.61-3.358-1.119-7.123,0-3.866,1.118-13.124,1.118-16.99-4.988l3.257-0.508,2.744-1.119s-1.118,3.867,6.613,3.867c7.631,0,8.749,0,8.139-7.123l2.238-1.119,1.629,1.63s-1.12,3.866-0.509,5.493c0.509,1.627,3.257,2.748,5.393,4.375,0.916,0.713,1.628,0.815,2.238,0.815,0.915-0.102,1.118-0.102,2.339-1.324,1.832-2.035,1.424-1.933,3.256-3.559,0,0,0.916-1.426,1.12-1.63l1.12,2.952h-0.006z"/>
|
||||
<path d="m374.03,161.46c0.405-0.404,1.221-1.934,1.933-3.256,1.221-2.035,2.646-3.256,4.272-5.801,1.525-2.34,2.137-5.798,1.525-8.239l1.424,0.814,0.104,3.866s1.934-1.63,2.748-2.035l0.812,0.405s-6.104,6.31-11.802,16.485l-1.018-2.237,0.002-0.002z"/>
|
||||
<path d="m320.52,140.3c0.814,1.421,1.629,4.172,4.07,6.307l1.628-0.508s-3.764-4.375-3.764-6.307l-1.934,0.508"/>
|
||||
<path d="m330.08,137.85s0.508,5.19-0.812,7.123l1.627-0.811s1.119-3.561,0.813-5.496l-1.628-0.812v-0.004z"/>
|
||||
<path d="m383.7,121.47s-0.307,7.325,1.119,11.803l1.932-0.608s-0.304-1.327,1.322-1.937c1.629-0.508,5.494-2.135,7.426-3.765l-0.608-1.626s-2.95,2.34-4.375,2.949c-1.322,0.51-2.136,1.119-3.256,0.816-1.12-0.306-2.44-2.138-1.628-6.311l-1.932-1.321"/>
|
||||
<path d="m405.26,155.66s-0.507,5.189-0.202,7.429l1.729,0.408s-0.404-6.207,0.712-6.716l-2.239-1.121"/>
|
||||
<path d="m413,159.53s-1.933,3.358-4.17,3.664l3.561-0.714s1.019-0.508,2.544-2.135l-1.935-0.815"/>
|
||||
</g>
|
||||
<g fill="#289400" stroke="#030">
|
||||
<path d="m381.87,144.16,1.321,0.811,1.424,0.206s1.525,1.424,3.256,2.745c1.321,1.122,1.321-0.202,1.321-0.202l0.812,3.256h1.12s-0.306,2.136-0.306,3.256l1.934-1.629,2.238,1.934s1.628-1.424,2.441-1.424c0.812,0,1.118-0.812,1.118-0.812h0.104c-5.393-2.546-7.731-5.19-6.104-7.938,2.646-4.578,7.02-1.629,8.443-1.016l19.737,10.581s1.322-0.814,0.406-1.63c-1.019-0.811-1.425-2.848-1.12-3.661,0.306-0.814,2.544,2.542,3.662,2.847,1.12,0.306,3.661,0.714,3.661,0.714l-0.102-1.018s3.256,2.237,3.256,3.358c0,0,2.341-1.221,1.525-1.934-0.813-0.71,3.562,1.731,3.866,3.055l0.915-1.021c-0.103,0,0.306-3.256,1.424-4.782,1.019-1.524,2.137-1.933,2.137-1.933s1.019-1.731,2.034-1.731c0,0-1.019-0.71-1.425-1.524-0.508-0.816-1.729-1.222-1.729-1.222s1.525-1.118,1.934-1.628c0.406-0.608,0.814-0.714,0.814-0.714s-2.342-1.932-3.97-2.235c0,0-0.102-2.648-2.136-2.85h0.916s-1.526-2.849-2.951-2.95c0,0,0.916-1.017,1.73-1.119,0,0-1.73-2.238-4.068-1.424l1.525-0.608s-1.119-1.22-4.576-0.61c0,0,0.303-1.424-1.221-2.545,0,0-1.322,0.1-1.322,1.118,0,0-1.221-1.118-2.746-1.118-1.526,0,0.508,1.629,0.508,1.629s-2.034-1.324-3.256-0.916c0,0,0.508-2.34-0.814-3.563,0,0-1.523,0.815-1.933,1.832l-0.406-1.017s-2.036,2.442-2.441,1.73c-0.305-0.406-0.609-2.135-0.609-2.135l-1.219,1.832,0.202-2.546s-1.424,0.815-2.543,3.458c0,0-1.425,1.324-1.425,2.542,0,0-1.119-1.32-2.137,0-0.916,1.424,0,1.122,0,1.122s-0.407,0.505-1.424,0.71l0.204,0.812s-1.321-0.71-2.339-0.404l0.507,1.219s-2.645,0.205-2.745-1.93c0,0-2.238-1.121-2.544,0.101l-1.628,1.018s-0.509-1.018-1.425-1.22c-1.019-0.306-0.204,1.32-0.204,1.32s-0.304-1.219-1.525-1.832c-1.219-0.505-0.203,1.122-0.203,1.122s-1.628-1.324-0.812-2.34c0,0-1.526,1.424-0.814,2.748l-1.018,0.711s-0.509-0.508-0.408-0.916c0.104-0.408-1.729,1.219-1.729,1.219s-1.119-2.643,0-2.643c0.102,0-1.933-0.102-2.237,2.24,0,0-1.322,0.101-2.544,0.505-1.322,0.408,0.916,1.324,0.916,1.324s-1.934-0.408-3.053,0.204l0.713,0.916s-0.713-0.713-2.442-0.104c-1.832,0.508,0.406,0.814,0.406,0.814s-1.832-0.406-2.747,0c-0.916,0.408,0.305,1.119,0.305,1.119s-3.357-1.017-3.866-0.71c-0.507,0.304,1.12,1.934,1.12,1.934s-2.035,0.508-2.44,2.035l1.831,0.71s-0.812,0.406-1.222,1.222c-0.403,0.814,1.222,0.405,1.222,0.405s-2.237,1.63-2.237,2.849c0,0,1.627,0.508,2.848-0.711s0.406-0.814,0.406-0.814l0.102,0.814s2.341-1.016,2.341-1.626c0-0.508-0.406,0.812-0.406,0.812l2.341-1.22,1.524,1.018v-0.002h0.001z"/>
|
||||
<path d="m379.93,112.42-0.509-2.238l5.188,0.608,0.915-2.135s2.441,1.118,3.256,1.929c0,0,4.781-1.219,6.207-0.71l-0.61,2.24s4.373,0.303,5.799,0.812c1.322,0.508-0.609,1.63-0.609,1.63s4.984,0.608,7.122,1.932c2.238,1.321,2.238,2.442,1.12,2.745l2.744,4.375s-4.373,0.508-5.187,1.626c-0.814,1.119-1.628-1.118-1.628-1.118l-0.814,3.052s-2.746-1.426-3.865-2.442c0,0-1.321,1.629-0.508,2.442l-4.986-3.256s-2.137-0.304-2.137,1.63c0,0-2.439-2.748-3.051-3.563l-2.748,0.815s-0.812-1.118-1.83-1.426c-1.12-0.201-0.306,1.426-0.306,1.426l-1.628-1.934-1.627-1.929s-1.425,1.929-2.544,1.929c-1.02,0-1.02-1.321-0.814-2.237,0.305-0.814-3.256-1.016-3.561,0,0,0-1.019-4.07,2.746-5.188,3.866-1.018,3.866-1.018,3.866-1.018l-0.001,0.003z"/>
|
||||
<path d="m360.2,126.36-1.729,1.629-1.019-0.508-2.034,2.237-0.407-1.223-1.119,1.832-1.729-0.609-0.814,1.322-1.525-0.306s-1.322,1.222-2.137,1.526c-0.813,0.206,0-1.829,0-1.829s-1.221,2.034-2.137,2.034c-0.812,0-0.507-0.916-0.507-0.916s-0.508,1.319-1.525,1.525c-0.916,0.102-0.51-1.017-0.51-1.017l-1.629,1.219v-1.017l-0.712-0.304s0.406-1.832,1.12-2.238c0.712-0.408-0.712-1.626-0.712-1.626l0.712-0.815s-2.036-0.508-2.036-0.101c0,0,1.019-2.745,2.441-3.258l0.103-3.051s1.425-1.219,2.747-1.324c1.423-0.203-0.406-2.34-0.406-2.34l3.255-1.929,0.406-2.34,4.984,0.403,1.018-2.135,3.969,1.016,3.356-1.73,2.441,2.849,3.662,0.307s-0.102,2.542-0.102,3.256c0,0,4.373,1.321,4.883,1.73,0,0-0.814,2.645-0.814,3.153,0,0,3.054-0.814,3.97-0.61,0,0,0.306,2.85,0.405,3.561,0,0,5.188,1.63,5.494,2.546,0,0-1.12,0.71-1.729,1.626,0,0,0.608,3.156,0.608,4.172l-0.406,0.61s-1.526-1.424-2.747-1.627l-1.019,2.237-1.83-1.22-1.119,0.102s-0.916-1.119-1.629-1.119l-0.103-1.018-1.424,0.916s-2.237-1.12-2.237-1.832c0-0.609,0.102-1.63,0.102-1.63l-2.34,1.63s-0.508-1.219-0.405-1.73c0.103-0.508-0.915,1.222-0.915,1.222s-1.222-2.138-1.12-2.546l-0.306,1.732s-2.441-0.812-2.745-2.442v-0.002z"/>
|
||||
<path d="m327.64,136.33s4.274,2.14,4.274,3.156c0,0,1.12-2.24,0.508-3.054l1.629,1.122s0.506-2.034-0.103-2.647c-0.509-0.508,3.66-2.235,4.576,0.51,0,0,2.545-2.645-2.339-4.885,0,0-0.405-1.626,2.544-1.219,0,0-0.203-1.018-0.916-1.424h2.849s-1.729-1.426-4.273-1.832c-2.44-0.408-0.916-0.711-1.018-1.224-0.204-0.508,0-2.34,0-2.34s-1.424-0.508-2.544,0.102l0.406-0.51s-2.646-0.71-3.661-0.101c0,0-1.526-0.61-1.322-2.24,0,0-1.526-0.1-2.236,1.526,0,0-1.425,1.629-3.357,1.629-0.406,0-1.832-0.815-1.832-0.815l-1.222,2.85-1.932-0.102,0.609,1.118s-2.95-0.811-3.866,0c0,0,1.12,1.732,0.813,2.951,0,0-2.341,0.408-2.849,0.815-0.61,0.403,0.813,0.71,0.813,0.71s-2.645,0.814-3.257,1.63l1.02,0.811-1.222,1.631,1.019,0.201s-1.729,0.51-2.644,0.815c-0.916,0.303,1.627,0.508,1.627,0.508l-1.219,1.118,1.933,0.303s-1.525,4.072-1.628,6.006c0,0,2.341-2.85,2.949-3.052l-1.83,3.052s3.46-1.118,3.766-1.631c0.304-0.608,0.609-1.117,0.609-1.117l0.103,1.73s1.322-1.832,1.525-2.545c0.103-0.71,2.136,0.713,2.136,0.713v-1.02s1.832,0.609,2.441,0.714c0.712,0.101,0.813-0.306,0.813-0.306l1.729-0.203-0.306,1.421s1.22-0.812,1.525-1.627c0.204-0.815,0.813,0,0.813,0l0.812-3.256h1.729l0.006,0.008z"/>
|
||||
<path d="m313.7,150.78,1.628,3.358c-1.322,0.1-3.256,1.626-3.256,1.626,0.304,5.597-1.118,5.291-1.118,5.291,0.403,1.018-0.259,2.905-0.259,2.905l8.092-4.837,0.102-0.508,9.564-4.48,0.303,0.508,2.748-1.524,1.933,5.085-1.933,1.119c0.103,1.73,2.137,4.784,2.137,4.784l2.544-0.608,2.747-1.021s0.103,1.526,0.103,1.021c0-0.411,2.949-1.424,2.949-1.424l1.322,1.322c1.02-0.101,2.848-2.546,2.848-2.546l2.137,0.816s0.712-1.22,0.712-2.136c0-0.814,2.645-0.814,2.645-0.814l1.832,1.321,2.34-1.931s0.712,1.424,1.628,1.626c1.019,0.102,3.561,2.034,3.561,1.63,0-0.406,1.12-2.646,1.12-2.646l4.271,1.73c-0.608-1.933-2.032-4.273-2.032-4.273s2.032-1.626,1.627-2.034-1.627,0-1.627,0l1.219-2.442h-1.627l0.507-0.608-2.645-1.118,1.423-2.85c-0.61-0.714-7.629-2.138-7.629-2.138l1.628-1.526s-0.814-1.219-1.628-1.219-5.087,0.102-5.291-0.303c-0.103-0.408-1.832-1.937-1.832-1.937l-2.646,1.937-1.322-0.408-2.34,0.916s0,1.321-0.307,0.405c-0.303-0.816-2.44-2.951-2.44-2.951-0.406,0.71-3.153,3.967-3.153,3.967s-0.406,1.732-1.322,0.508c-1.019-1.219-3.154-2.542-3.46-1.524-0.305,1.121-2.236,2.135-2.646,1.832-0.405-0.308-2.645-0.102-2.849,0.508-0.102,0.71-2.544,2.542-2.544,2.542-1.526-0.71-3.969-0.302-3.969-0.302s-0.712,1.118-0.812,2.034l-4.984,1.319h0.004v-0.002z"/>
|
||||
<path d="m359.69,191.99v-2.138l2.44,1.629,1.425-1.629,1.832,1.83,1.119-1.83v2.952l2.747-2.44,1.626,0.71v-2.34s1.935-3.258,1.12-3.866l1.628-0.508s-2.748-2.748-3.562-3.258c-0.812-0.608-1.932-0.608-1.932-0.608s-2.137-2.14-3.561-2.748c-1.322-0.508-2.138,0.608-2.138,0.608s-0.813-1.626-2.237-1.933c-1.32-0.303-1.32,1.119-1.32,1.119s-1.02-1.018-2.341-1.526c-1.322-0.608-0.407,1.22-0.407,1.22l-4.681-1.422,0.609,1.422-4.373-1.115,0.506,1.627-3.051-0.512-0.203,1.326-4.375,0.812,0.814,1.424-2.747-1.119v1.934l-3.052,1.118,1.119,1.02s-4.068,1.933-4.884,2.543c-0.812,0.508,1.629,1.626,1.629,1.626l-4.375-0.61,1.629,1.426-3.866,3.562,2.746,1.934-1.628,2.44,4.069,0.812,1.628,2.748,3.357-0.61v3.051l4.884-3.865s3.562,3.154,3.866,2.238c0.203-0.814,0.203-3.562,0.203-3.562h1.729v-2.745l1.322,1.118,2.238-3.258,2.949,4.072,2.237-5.188,3.256,0.508,0.006,0.001z"/>
|
||||
<path d="m379.63,179.68-0.508-4.68-1.423,1.424,0.607-4.375-2.235-0.408,0.812-4.272-1.627-0.816,0.404-2.034,1.629-1.219,2.95-2.85,6.814,0.105,0.813-2.24l4.885,0.815c0.812,0.916,3.355-1.832,3.355-1.832h1.019l1.12,2.134s3.561-0.508,5.188,0.61l-1.934,2.646,3.561,0.304,2.44,0.512,2.544-0.816,3.257-0.206,0.813,1.324h3.053l-1.019,1.219,3.968,1.832-0.812,0.815s2.237,0.814,3.865,0.814h0.813s0.813,1.931-0.307,2.745c0,0,1.12,2.748,3.562,3.258,2.441,0.508,2.441,0.508,2.746,1.117,0.307,0.51,0,3.258-2.746,3.258v2.748s-2.137,1.933-2.441,2.745l-1.629-1.119s-1.422,1.63-1.422,2.748c0,0-3.562-4.682-4.885-4.887-1.424-0.303-1.12,2.647-1.12,2.647l-3.864-3.256-0.509,2.237-3.256-2.745-1.934,1.319-3.46-3.559-3.357,0.408,1.321-1.731h-4.069l-0.812-3.559-0.61,2.949-2.44-1.626-3.154,3.458s-0.406-0.409-0.916-2.036c-0.507-1.628-1.933,1.932-1.933,1.932l-1.12-2.542-1.322,2.542s-1.12-1.932-2.238-2.542c-1.018-0.508-2.135,3.051-2.439,4.681l0.002,0.004z"/>
|
||||
<path d="m380.24,190.36,0.203-1.626,5.798-2.24,4.885-1.832,2.439-1.118,1.12,1.932,1.424-2.745,2.238,2.847,1.221-1.526,1.932,1.424h1.628l0.305,2.14s4.07,0.303,4.374-0.508c0.305-0.815,0.812,2.745,0.812,2.745l3.865,0.508,0.814,4.375s1.931,4.072,1.322,5.699c-0.51,1.73-2.138-2.136-2.138-2.136s-0.304,3.052-0.609,3.866c-0.203,0.812-5.188-0.814-5.188-0.814l-2.136,4.07s-2.237-3.256-3.255-3.256c-1.12,0-1.12,3.256-1.12,3.256s-3.256-3.867-4.681-5.496c-1.322-1.626-1.628,1.629-1.628,1.629s-2.136-3.562-2.136-4.578c0-1.119-1.934-2.24-1.934-2.24s-3.358,3.867-5.801,4.886c0,0,0.306-2.442-0.507-3.256-0.813-0.815-3.257,1.626-3.257,1.626s-1.729-3.764,0-7.631l0.01-0.001z"/>
|
||||
</g>
|
||||
<g fill="none" stroke="#004b00">
|
||||
<path d="m407.1,129.71,0.509,2.035s1.83-0.408,3.053-0.305c0,0-0.305,1.627-0.712,2.34,0,0,2.441-0.406,3.561,0.304l-0.509,1.219,2.849,1.222-2.645,2.136s4.271,1.524,5.087,2.748c0,0-2.746,1.932-3.154,1.832-0.406-0.206-0.102,0.811,0.61,1.727l-2.341-0.101s0.916,2.138,0.813,2.95c-0.102,0.814-3.866,0.609-3.866,0.609"/>
|
||||
<path d="m425,142.94s0.712-4.07-0.404-5.088c0,0,2.644,2.24,4.373,2.34,1.832,0.105-0.103-3.357-0.103-3.357s2.544,1.322,3.765,1.627c1.221,0.205-0.916-2.543-0.916-2.543s0.712-1.324,2.746-0.102"/>
|
||||
<path d="m387.16,119.64s0.1-0.916-0.308-1.424c-2.44-3.358,2.545,2.545,3.561,2.748"/>
|
||||
<path d="m395.09,120.96s1.628,1.219,2.442,1.219c0.813,0-0.508-3.256-0.916-3.661-0.406-0.408,2.95,1.321,4.172,1.526,1.221,0.303,1.423-2.035,1.423-2.035s3.765,0.609,4.579,1.119"/>
|
||||
<path d="m380.64,118.42s-0.305-2.136-0.405-3.052"/>
|
||||
<path d="m355.01,128.6c-0.204-0.408,1.02-2.24,0.509-3.054,0,0,0.712,0.612,1.424,0.714,0.61,0.101,0.404-2.342,0.404-2.342l0.814,0.304s2.137-1.018,1.729-1.832c-0.408-0.812,1.424,1.219,1.424,1.219s1.222-1.219,1.222-1.727c0-0.513,1.422,1.219,1.422,1.219s1.525-0.306,1.525-1.219c0-0.916,1.934,0.303,1.934,0.303s0.812-1.118,0.712-1.832" stroke-width="0.5087"/>
|
||||
<path d="m347.58,130.53s0.914-2.135-0.103-3.559"/>
|
||||
<path d="m322.86,137.24c0.103-1.016,0.609-3.764,0.103-4.172-0.508-0.403,1.019,0.408,2.238,0.713"/>
|
||||
<path d="m334.86,133.38c-1.221-1.223-1.934-1.832-3.864-1.832"/>
|
||||
<path d="m314.21,140.19c0.306-0.71,0.813-2.441,0.508-3.458"/>
|
||||
<path d="m340.76,190.66,1.322-2.748,1.628,3.866,1.118-2.442,0.406,0.815,2.441-2.645,2.646,3.968"/>
|
||||
<path d="m392.75,174.28,1.729-3.458,2.342,1.222,1.12-3.358,2.439,1.526,1.424-3.153,2.747,0.711,0.202-2.238s1.933,1.118,2.442,1.932c0.608,0.816,0-2.745,0-2.745l2.237,1.016s1.628-1.629-0.609-2.545"/>
|
||||
<path d="m399.57,169.91,2.441,3.562,2.033-2.34,1.832,3.967,2.34-1.424,3.356,1.933,1.525-1.219,3.662,2.645,1.526-3.153,3.256,1.017,2.135-3.661"/>
|
||||
<path d="m335.78,161.67s1.425-2.4453,0.91601-3.5637c-0.61133-1.1188,2.9492,1.934,2.9492,1.934s0.81249-2.443,0.30469-3.5605c-0.61055-1.1188,4.0703,3.2558,4.0703,3.2558s0.81446-3.764,0-4.5801c-0.81445-0.81406,4.4766,1.1215,4.4766,1.1215s2.1367-0.60897,1.3222-1.7305c-0.81445-1.1184,3.5586,1.6269,3.5586,1.6269s1.0184-2.7445,0-3.7656c-1.1184-1.1172,3.2566,1.3238,3.2566,1.3238l-1.6277-2.9508,3.5605,0.20273-0.30469-3.2562"/>
|
||||
<path d="m389.8,194.73,2.3398-1.1187,2.0351,2.0348,2.2383-3.5605,2.7461,2.6445,0.40625-2.6445,2.9492,1.223,0.61133-1.6312,3.2551,1.7324,0.3039-2.443,1.6277,0.50977,0.30664-1.6293"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="shield">
|
||||
<path fill="#9dd7ff" d="m336.59,310.53c-2.646-4.477-4.681-9.055-6.207-13.531l44.052-38.77,44.055,38.666c-1.526,4.475-3.562,9.26-6.409,13.84l-0.352,0.563c-0.812-0.303-3.312-1.276-3.312-1.276s-1.425,1.324-2.541,1.424c-1.526,0.205-2.849-1.32-2.849-1.32s-1.934,1.627-3.866,1.32c-1.934-0.201-2.748-1.424-2.748-1.424s-2.034,1.629-3.459,1.324c-1.322-0.309-2.238-1.225-2.238-1.225s-1.22,1.529-2.95,1.225c-1.627-0.309-3.153-1.225-3.153-1.225s-2.541,1.117-4.171,1.322c-1.626,0.308-3.052-1.424-3.052-1.424s-2.136,1.424-2.949,1.424c-0.814,0-3.866-1.424-3.866-1.424s-3.154,1.018-4.272,1.018c-1.019,0-4.171-1.321-4.171-1.321s-2.95,0.812-4.271,0.812c-1.426,0-3.459-0.812-3.459-0.812s-2.438,1.119-3.764,0.812c-1.424-0.303-2.544-0.812-2.544-0.812s-2.645,1.119-4.375,0.812c-1.628-0.303-3.561-1.42-3.561-1.42s-0.305,0.812-3.458,1.42h-0.104"/>
|
||||
<path fill="#fff" stroke="#000" stroke-width="0.7123" d="m374.44,213.66v44.566l-44.053,38.974c-4.272-12.414-4.577-23.504-4.577-28.285v-55.254h48.63"/>
|
||||
<path fill="#ffd83c" stroke="#000" stroke-width="0.7123" d="m374.44,213.66v44.566l43.951,38.974c4.271-12.414,4.577-23.504,4.577-28.285v-55.254h-48.528"/>
|
||||
<g id="boat" stroke="#000" stroke-width="0.5087">
|
||||
<path fill="#730000" d="m346.02,301.27c3.312,1.795,2.19,1.229,9.055,3.66,5.597,1.937,12.106,2.849,21.567,2.849,8.278,0,12.938-0.656,15.56-1.38,2.719-0.78,3.363-1.877,3.363-1.877l-6.814,6.92s-27.394,1.479-32.354-1.729c-1.931-1.019-6.104-4.375-10.376-8.444v0.001z"/>
|
||||
<g fill="none">
|
||||
<path d="m386.21,288.35s8.75,4.984,0,14.549"/>
|
||||
<path d="m346.84,301.78,12.615-12.01-1.424,16.078"/>
|
||||
<path d="m364.64,307.27v-26.86"/>
|
||||
<path d="m386.21,307.27v-28.489"/>
|
||||
<path d="m375.32,307.78v-30.625"/>
|
||||
</g>
|
||||
<g fill="#ff0018">
|
||||
<path d="m364.64,281.84-5.698,1.832,5.698,0.61v-2.442"/>
|
||||
<path d="m375.32,277.66-6.001,2.24,6.001,0.203v-2.443"/>
|
||||
<path d="m386.21,279.29-6.002,2.24,6.002,0.303v-2.546,0.003z"/>
|
||||
<path d="m389.77,292.22c-0.305-1.222,3.562-1.118,3.562-1.118s1.12,4.068,0,6.611l-3.255-0.609s0.305-2.746-0.307-4.884z"/>
|
||||
</g>
|
||||
<g fill="#fff">
|
||||
<path d="m348.77,300.15,0,0,10.683-10.379-0.509,6.207s-5.493,3.559-5.493,6.104l-4.681-1.932"/>
|
||||
<path d="m354.46,302.29s1.12-3.256,4.171-4.883l-0.305,6.512-3.864-1.629h-0.002z"/>
|
||||
<path d="m369.83,284.28s4.373-0.61,7.63,0c0,0-0.509,4.375,0,5.188,0,0-6.003-1.425-8.443,0.812-0.001,0-0.815-4.069,0.813-6z"/>
|
||||
<path d="m360.57,285.4s4.375-0.61,7.629,0c0,0-0.812,4.886-0.305,5.699,0,0-4.885-2.748-7.324-0.512,0,0-1.629-3.355,0-5.187z"/>
|
||||
<path d="m360.26,291.09s4.374-0.508,7.631,0c0,0-0.509,4.375,0,5.191,0,0-5.698-1.324-8.141,0.812,0.001,0.001-1.119-4.069,0.51-6.003z"/>
|
||||
<path d="m369.01,290.28s6.308-0.811,9.562-0.303c0,0-1.322,3.561,0.307,6.002,0,0-6.817-1.832-9.361,0.303-0.001,0-2.135-4.069-0.508-6.002z"/>
|
||||
<path d="m359.76,297.1l8.442,0.609s-0.812,6.207-0.305,7.021c0,0-6.815-1.629-8.141,0.608,0,0-2.238-5.696,0-8.241h0.003v0.003z"/>
|
||||
<path d="m369.32,297.1s7.322-0.51,10.682,0c0,0-1.936,4.683,0.204,8.75,0,0-9.565-2.744-10.889-0.51,0,0-2.235-5.697,0-8.24h0.003z"/>
|
||||
<path d="m380.51,284.28s4.373-0.61,7.63,0c0,0-0.507,4.375,0,5.188,0,0-6.002-1.425-8.442,0.812-0.002,0-0.816-4.069,0.812-6z"/>
|
||||
<path d="m380.51,290.28s4.373-0.508,7.63,0c0,0-0.507,4.375,0,5.189,0,0-6.002-1.322-8.442,0.815-0.002,0.001-0.816-4.071,0.812-6.004z"/>
|
||||
<path d="m381.02,296.59s4.373-0.607,7.73,0c0,0-1.119,6.817-0.609,7.631,0,0-4.982-2.34-7.324-0.303,0,0-1.423-5.392,0.203-7.328z"/>
|
||||
<path d="m390.07,297.1s1.422,5.187,3.254,5.799l-2.44,2.951s-2.95-2.137-3.256-4.576c0,0,1.932-2.241,2.442-4.174z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="waves" stroke="#000" stroke-width="0.6104">
|
||||
<path fill="#006ac8" stroke="none" d="m411.88,311.14c-7.019,11.703-18.516,22.689-37.438,29.506-19.229-6.916-30.928-18.414-37.847-30.016l0.103-0.102c3.153-0.613,3.459-1.424,3.459-1.424s1.933,1.119,3.561,1.424c1.729,0.303,4.374-0.814,4.374-0.814s1.119,0.51,2.543,0.814c1.322,0.303,3.765-0.814,3.765-0.814s2.034,0.814,3.458,0.814c1.322,0,4.273-0.814,4.273-0.814s3.153,1.32,4.17,1.32c1.12,0,4.272-1.018,4.272-1.018s3.053,1.426,3.866,1.426c0.812,0,2.95-1.426,2.95-1.426s1.423,1.729,3.051,1.426c1.628-0.203,4.171-1.321,4.171-1.321s1.525,0.916,3.154,1.22c1.729,0.307,2.95-1.22,2.95-1.22s0.916,0.916,2.238,1.22c1.424,0.307,3.458-1.322,3.458-1.322s0.813,1.222,2.748,1.424c1.933,0.306,3.866-1.32,3.866-1.32s1.32,1.525,2.848,1.32c1.12-0.102,2.542-1.424,2.542-1.424s2.544,0.812,3.459,1.121"/>
|
||||
<path fill="none" stroke-width="0.5087" d="m410.15,313.79c-1.525,0.104-1.729-0.916-1.729-0.916s-2.032,1.731-3.967,1.425c-2.034-0.303-2.95-1.627-2.95-1.627s-2.137,1.73-3.562,1.424c-1.423-0.203-2.439-1.222-2.439-1.222s-1.322,1.528-3.053,1.222c-1.729-0.203-3.257-1.222-3.257-1.222s-2.746,1.122-4.477,1.425c-1.729,0.307-3.153-1.627-3.153-1.627s-3.968,1.324-4.781,1.324c-0.916,0-3.766-1.324-3.766-1.324s-1.932,1.223-3.051,1.223c-1.22,0-4.476-1.426-4.476-1.426s-3.054,0.816-4.478,0.816c-1.425,0-3.561-0.816-3.561-0.816s-2.645,1.119-4.069,0.816c-1.424-0.307-2.544-0.816-2.544-0.816s-2.849,1.119-4.578,0.816c-1.729-0.307-3.765-1.424-3.765-1.424s-0.304,0.709-3.661,1.424h-0.103"/>
|
||||
<path fill="#5ac800" d="m346.97,317.94s-0.28444,0.66512-2.9375,1.25c-0.0568-0.004-0.71875,0.15625-0.71875,0.15625,0.24453-0.0444,0.44305-0.0788,0.65625-0.125-0.0936,0.0356-0.303,0.11225-0.75,0.25,3,4.334,7.4939,8.268,12.177,11.423,4.6833,3.1547,10.065,6.9209,19.229,9.6085,9.6351-3.7615,12.206-5.1929,18.503-9.4102,6.297-4.5987,9.5783-7.4642,13.09-12.184-2.75,1.562-2.3552,1.58-3.7812,1.375-1.424-0.303-2.4688-1.3438-2.4688-1.3438s-1.3002,1.5488-3.0312,1.3438c-1.729-0.303-3.25-1.3438-3.25-1.3438s-2.26,1.5375-4.5,1.4375c-1.73-0.104-3.1562-1.625-3.1562-1.625s-3.9692,1.3125-4.7812,1.3125c-0.916,0-3.75-1.3125-3.75-1.3125s-1.9445,1.2188-3.0625,1.2188c-1.22,0-4.4688-1.4375-4.4688-1.4375s-3.0448,0.8125-4.4688,0.8125c-1.425,0-3.5625-0.8125-3.5625-0.8125s-2.5375,1.1175-4.0625,0.8125c-1.425-0.303-2.5625-0.8125-2.5625-0.8125s-2.8345,1.1175-4.5625,0.8125c-1.73-0.303-3.7812-1.4062-3.7812-1.4062z"/>
|
||||
<path fill="#ffd800" d="m374.63,340.51c9.953-4.143,11.751-5.27,17.771-8.951-1.05,0.029-4.104-0.957-2.999-1.272,0,0-1.224,1.103-2.444,1.103-1.12,0-4.375-1.42-4.375-1.42s-3.051,0.811-4.476,0.811-3.561-0.811-3.561-0.811-2.646,1.116-4.07,0.811c-1.425-0.303-2.544-0.811-2.544-0.811s-2.949,1.116-4.577,0.811c-1.729-0.303-3.765-1.424-3.765-1.424s-2.504,1.328-4.076,1.481c4.809,3.522,9.872,6.961,19.116,9.672z"/>
|
||||
</g>
|
||||
<g id="weapons" stroke="#000" stroke-width="0.5087">
|
||||
<path fill="#b34b00" stroke-width="0.509" d="m367.88,259.34c1.977-1.61,3.112-3.159,2.452-4.362-0.743-1.033-1.905,0.646-3.214,0.252,0,0-1.976-1.222-2.515-2.098-1.153-1.281-2.636-2.434-3.49-3.535-0.905-1.021-4.31-5.522-9.492-10.704-1.49-0.972-1.149-4.65-2.217-5.792-0.091-0.796-10.358-10.96-14.022-14.637-1.481-1.09-2.262-1.797-4.865,0.563-2.055,1.854-2.794,3.767-0.098,6.077l13.356,12.144c1.951,1.896,4.676,2.241,5.819,3.223l13.576,13.883c1.709,1.477,2.529,2.524,1.563,3.787-1.073,2.077,0.075,2.357,0.319,2.42,0.156,0.086,1.115,0.084,1.755-0.41l1.073-0.811z"/>
|
||||
<path fill="none" stroke-width="0.5" d="m334.02,222.92,13.958,13.792"/>
|
||||
<path fill="#fff" stroke-width="0.5713" d="m352.92,229.22c0.216-0.415,0.688-1.473,1.187-2.627,0.196-0.456,3.951-6.444,5.823-6.62,0,0,11.677,8.495,11.686,8.607,0.039,0.458-5.065,8.093-5.509,7.513-0.002-0.001-13.68-5.743-13.187-6.873z"/>
|
||||
<path fill="#ccb8c8" stroke="none" d="m360.36,231.22c-1.599-1.242-4.242-2.453-6.375-3.875l-0.958,2c0.771,0.863,10.487,5.381,12.083,6.25,0,0-1.851-2.122-4.75-4.375z"/>
|
||||
<path fill="none" stroke-width="0.4" d="m353.98,227.09c1.25,0.875,3.625,2.375,5.125,3.25,2.875,2,4.695,4.203,6.75,5.375"/>
|
||||
<path fill="#782121" d="m330.32,263.48,26.587-32.904c0.498-0.456,2.963-0.481,3.297,2.068l-25.179,34.315c0.001,0-2.868-0.284-4.705-3.479z"/>
|
||||
<path fill="#730000" d="m419.44,263.84c-0.916,0.715-2.473,0.9-2.473,0.9-1.729-2.035-3.156-4.172-5.597-6.816l-26.555-32.663,2.747-2.645,23.907,27.981c0.712,0.711,4.886,5.088,8.854,10.274,0.002,0.002,0.348,2.032-0.883,2.969z"/>
|
||||
<path fill="#fff" d="m393.87,229.43-4.274-5.088s-3.255,0.406-3.864,2.138c0,0-2.341,3.867-8.547,4.274,0,0,1.729,7.223,8.953,11.089,0,0,2.646-7.429,5.188-8.752-0.001,0.001,2.644-1.934,2.544-3.661z"/>
|
||||
<path fill="#730000" d="m383.19,252.02c-0.609-0.205-1.221,0-2.137,0.509-0.812,0.51-1.83,0.304-1.729-0.714,0.102-0.916,0-0.812,1.119-1.524,1.629-0.916,3.765-1.019,5.087-0.51l-2.34,2.239"/>
|
||||
<path fill="#730000" d="m412.18,223.12c-0.204-0.71-0.405-1.421,0.305-2.337,0.713-0.814,0.713-2.24-1.019-1.528-1.729,0.714-2.339,2.646-0.914,5.597l1.626-1.732h0.002z"/>
|
||||
<path fill="#fff" d="m382.58,252.63,30.114-29.915,7.425,7.937s-1.524-0.612-2.136-0.206c-0.508,0.408,0.61,1.934,0.61,1.934s-1.424-0.508-2.034-0.102c-0.712,0.405,0,2.136,0,2.136s-1.221-0.916-1.832-0.51c-0.508,0.408,0,2.339,0,2.339s-1.628-0.507-2.033-0.102c-0.408,0.408,0,2.138,0,2.138s-1.629-0.814-2.442,0c-0.812,0.812,0.406,1.934,0.406,1.934s-2.034-0.815-2.848,0.405c-0.813,1.222,0.102,2.34,0.102,2.34s-1.627-0.812-2.033-0.408c-0.407,0.408,0,2.34,0,2.34s-1.424-0.814-2.34,0.206c-0.916,1.119,0.102,2.035,0.102,2.035s-1.321-0.816-2.036-0.411c-0.712,0.411,0.204,2.34,0.204,2.34s-1.321-0.916-2.237,0c-0.916,1.021,0,2.035,0,2.035s-1.12-1.018-2.238,0c-1.019,1.121,0,2.239,0,2.239s-1.626-0.813-2.236,0c-0.712,0.812,0.202,1.935,0.202,1.935s-1.219-0.713-2.033-0.309c-0.812,0.408,0,2.24,0,2.24s-1.22-1.324-1.729-0.609c-0.61,0.711,0.102,2.441,0.102,2.441s-1.12-1.324-1.729-0.609c-0.713,0.609,0.405,2.137,0.405,2.137s-2.034-0.916-1.525-0.916z"/><!--c0.102,0-6.207-7.022-6.207-7.022-->
|
||||
<g fill="#7e4b7e" stroke="none">
|
||||
<path d="m410.96,225.16-2.34,2.34,0.508,8.039s0.509-2.34,1.221-0.714c0,0,0.204-1.932,0.712-1.626-0.409-0.206-0.102-8.039-0.101-8.039"/>
|
||||
<path d="m406.59,229.53-1.729,1.626,0.609,8.039s0.51-3.051,1.22-0.609c0,0-0.102-2.034-0.102-2.748,0.002,0.509,0.002-6.308,0.002-6.308"/>
|
||||
<path d="m388.38,247.55-1.628,1.727,0.408,4.886s0.508-3.153,1.22-0.714c0,0-0.204-2.031-0.204-2.746,0,0.509,0.204-3.155,0.204-3.155"/>
|
||||
</g>
|
||||
<g fill="none" stroke="#7e4b7e" stroke-width="0.9156">
|
||||
<path d="m386.34,227.4c1.12,1.119,4.274,5.187,4.274,5.187"/>
|
||||
<path d="m387.77,229.64c-0.202,0.612-0.607,2.34-1.523,3.256"/>
|
||||
<path d="m388.27,230.04c-0.102,0.406-0.102,1.73-1.523,3.054"/>
|
||||
<path d="m388.78,230.66c-0.204,0.71-0.305,1.22-0.812,1.731"/>
|
||||
<path d="m389.09,231.27c0,0.508-0.303,0.61-0.405,0.916"/>
|
||||
<path d="m385.33,229.33c-0.406,0.405-3.358,2.338-4.985,2.95"/>
|
||||
<path d="m384.51,230.45c-0.406,0.408-2.238,1.832-3.256,2.24"/>
|
||||
<path d="m384.21,231.67c-0.609,0.41-1.628,1.424-2.441,1.73"/>
|
||||
<path d="m383.6,232.89c-0.406,0.508-1.018,0.916-1.525,1.222"/>
|
||||
<path d="m365.94,234.01c0.332-0.613,0.911-1.816,1.667-2.917,0.959-1.397,1.372-1.633,1.875-2.125" stroke-linecap="square"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="supporters">
|
||||
<path fill="#289400" stroke="#060" stroke-width="0.5087" d="m267.72,316.03c1.526,0.711,0-4.987,0.507-7.123,0.61-2.238,4.984,5.494,7.123,6.514,2.238,1.118,15.87-5.395,15.87-5.395l3.256-6.104,1.73,4.985s3.763-4.375,4.883-6.002c1.119-1.627,0,3.257-1.12,4.884-1.12,1.629,3.256,2.239,2.746,5.495-0.508,3.257,4.375-2.239,4.375-2.239l12.615,1.119s2.135-7.632,5.493-12.007l1.018,4.887,5.188-5.29c5.799,15.263,18.009,31.849,43.035,40.903,23.501-8.547,35.608-23.709,41.913-38.159l7.021,7.228s5.494-1.631,6.511-2.238c1.118-0.51,12.92,4.172,12.92,4.172s2.136,0.814,3.256,1.63c1.118,0.812,0.304-3.563,0.304-3.563s6.003,1.118,5.493,4.375c0,0,1.322-3.051,2.442-3.56s3.763,2.748,4.375,3.866c0.508,1.02,13.43,2.646,15.26,3.765,0,0,1.425,1.63,1.425,2.748,0,0,2.748-0.306,4.885-0.306,0,0-1.628,0.811-1.628,2.543,0,1.629-0.814,2.953-2.442,3.764-1.628,0.816,0,1.424,2.137,1.63,2.238,0.304,0,3.052-4.375,4.683,0,0-1.018,2.439,0.814,3.252,0,0-3.766,0.308-4.375-0.812,0,0-1.32,2.543-1.32,3.867,0,0-4.069-1.324-5.188-1.933,0,0-1.629,1.625-0.51,2.439,0,0-7.425-0.811-8.851-3.559,0,0-2.646,0.813-2.137,1.729,0,0-5.188-3.56-6.815-3.56l-1.119,1.828s-3.561-2.135-4.681-2.135c-1.02,0-0.204,1.627-0.204,1.627l-4.983-3.053-1.933,3.053s-4.07-1.935-5.188-2.746c-1.019-0.813-1.32,1.627-2.136,1.931,0,0-1.628-2.235-3.866-1.931,0,0-0.813,2.746-0.508,3.561,0,0-6.308-1.322-7.426-1.63-1.12-0.304-0.508,1.323,0,2.444,0,0-4.681-1.323-5.698-2.139l-0.305,2.139s-3.864-0.307-4.679-1.121l-2.442,3.356h-3.561l-0.812,2.95s-6.815-1.93-7.427-0.811c-0.508,1.117,0.306,2.744,0.306,2.744l-6.002-0.812-0.507,2.441s-6.919-2.138-8.547-1.121c0,0-2.137,2.24-3.562,2.748-1.319,0.61,0-0.814,0-0.814l-2.135-2.949s-2.441,1.322-3.866,0.814c-1.321-0.613-5.697,2.135-7.123,1.32,0,0,0-1.935-1.117-2.442-1.019-0.509-2.95-0.509-3.766,0.815,0,0-0.812-1.121-2.237-3.257-1.322-2.239-3.257,0.203-3.257,0.203l-0.305-2.646-3.765-0.307c-2.238-0.305-2.746-2.24-2.746-2.24s-5.799,0.611-6.613,0.308l1.423-1.324s-7.935,1.632-9.562,1.021c-1.73-0.508,1.832-2.748,1.832-2.748s-7.327-1.828-8.751-2.135c-1.321-0.305-9.258,1.318-10.378,1.318-1.119,0-1.628-1.832-1.628-1.832s-1.935,1.631-3.562,2.141c0,0-1.322-3.256-0.507-3.563,0,0-5.188,1.424-5.494,2.748,0,0-1.322-2.136-1.12-3.052,0,0-2.441,3.867-3.561,4.679-1.12,0.815-0.204-1.933-0.204-1.933s-3.05,3.865-4.17,4.172v-2.748s-8.751,4.681-11.191,4.072c0,0,0-1.936,0.813-2.442l-5.494-0.306c-1.32-0.203-2.949-0.812-4.373-1.119-1.322-0.205,1.933-1.627,4.171-1.018,0,0-6.104-2.238-7.937-1.121,0,0-0.814-2.236,2.44-3.052,0,0-4.172-4.069-6.614-3.765,0,0,2.748-1.627,4.986-0.815,0,0-2.544-6.917-4.172-7.731,0,0,5.8-1.018,7.427-0.201l0.002-0.002z"/>
|
||||
<g id="axe">
|
||||
<path fill="#730000" stroke="#000" stroke-width="0.5087" d="m259.27,196.67,74.064-38.361c0.355-1.982-0.771-3.54-1.932-5.088-21.18,10.387-40.456,22.992-63.992,30.628-1.322,0.51-13.022,5.393-19.025,12.619-1.903,1.908-2.043,4.724-2.043,4.724s0.146,3.231,0.825,4.104c0,0,0.176,0.887,1.282,1.596-0.012,0,0.684,0.341,1.166,0.169,0.538,0.101,1.413,0.094,2.635-2.045,1.222-2.037,5.189-6.716,7.02-8.346z"/>
|
||||
<path d="m318.89,158.72,9.562-4.58s3.257,2.442,2.951,5.19c0,0,0.712,6.307,8.547,10.682,0,0-6.615,8.241-18.211,8.955,0,0,1.33-10.876-1.11-14.032,0,0-0.406,0.389-0.23-0.15,0.347-1.058-0.235-4.688-1.72-5.487-0.181-0.099,0.118-0.396,0.211-0.578z" stroke="#000" stroke-width="0.50870001" fill="#FFF"/>
|
||||
<g fill="none" stroke="#7e4b7e" stroke-width="0.8139">
|
||||
<path d="m330.08,160.04c-2.034,0.814-8.647,4.272-8.647,4.272"/>
|
||||
<path d="m326.93,162.07c-0.103,1.017-0.713,3.459,0,5.189"/>
|
||||
<path d="m326.01,162.38c0,0.508-0.813,2.34,0.103,4.783"/>
|
||||
<path d="m325,162.89c-0.204,1.021-0.406,1.63,0,2.751"/>
|
||||
<path d="m324.18,163.5c-0.203,0.609,0,0.916,0,1.321"/>
|
||||
<path d="m330.18,163.19c0.304,0.812,3.052,5.086,4.68,6.816"/>
|
||||
<path d="m330.59,165.12c0.307,0.814,1.832,3.765,2.951,4.886"/>
|
||||
<path d="m330.39,166.85c0.406,1.018,1.221,2.85,2.034,3.866"/>
|
||||
<path d="m330.39,168.89c0.204,0.815,0.61,1.832,1.221,2.546"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="paddle" stroke="#000" stroke-width="0.5087">
|
||||
<path fill="#b34b00" d="m398.22,154.46,27.207,13.322c5.451,2.65,7.411,0.202,10.487,1.539l53.694,27.351c4.606,2.012,7.185,2.656,6.523,5.039-0.112,3.786,1.79,3.843,2.31,3.883,0.376,0.101,2.191-0.165,2.949-1.172,0.568-0.656,0.589-0.724,0.589-0.724,0.608-0.608,0.498-0.663,0.687-0.934,2.258-3.249,3.509-6.065,1.146-7.905-2.702-1.266-3.013,1.607-5.858,1.304,0,0-5.087-1.933-6.919-3.256-3.374-1.837-8.084-4.015-9.155-5.211-3.428-0.642-29.233-15.157-43.852-22.442-1.568-1.313-2.422-6.166-5.503-7.79-0.904-1.312-20.694-10.347-31.043-15.52-3.814-1.425-5.949-2.401-8.697,2.28-2.398,4.59-1.815,7.094,5.435,10.236z"/>
|
||||
<path fill="none" d="m400.52,148.76,30.458,15.208"/>
|
||||
</g>
|
||||
<g id="white_man" fill="#ffa54b" stroke="#000" stroke-width="0.5087">
|
||||
<path fill="url(#white_skin)" d="m309.73,165.12c-0.203,0.61-0.712,0.203-0.712,0.408-0.405,2.135-0.305,3.253-0.813,4.475-0.712,1.424-3.256,2.748-3.154,2.645-2.034,0.609-4.475,3.054-8.442,0.814-0.204-0.101-0.406-0.306-0.61-0.508,0,0,1.117,4.169-2.95,6.204-1.424,0.713-15.77,8.244-15.77,8.244s-1.526,2.748-0.509,6.512c0.103,0.61,0.305,1.118-0.305,1.526-0.916,0.71-2.646,2.748-3.662,6.004,0,0-3.053-1.324-3.053-3.256,0-1.934,1.221-2.951,1.526-4.378,0.304-1.321,1.117-4.679,0.712-5.698-0.406-1.119-2.238-1.526-2.95-1.933-0.61-0.408-1.425,0.406-1.322,1.322,0.103,1.018,0.813,0.812,1.628,1.018,0,0-0.916,1.932-0.813,3.356l-9.258,4.783s1.22,1.626,1.627,2.34c0.405,0.712,1.321,10.175,4.069,14.653,2.747,4.477,3.663,3.256,4.273,3.866,0.508,0.508,1.321,1.321,2.034,1.934,0.712,0.508,3.865,0.811,4.477-0.916,0.712-1.631,1.22-2.647,3.154-4.174,1.933-1.524,5.899-5.391,5.899-7.123,0,0,2.34,6.716,2.034,12.313,0,0,8.546,1.731,16.177,1.932,7.632,0.105,11.497-1.524,11.497-1.524s1.018-6.409,0.608-7.631c0,0,1.221,4.172,2.137,5.596,1.019,1.727,2.136,5.288,4.374,5.493,2.137,0.101,3.969-2.135,4.171-3.051v-6.716h8.647c0-0.101,3.866,1.424,5.086,1.22,1.221-0.102,1.933-1.22,0.813-1.628l-0.405-0.303c1.117,0,2.543,0.71,2.543,0.71h4.271c0.103-0.101,0-0.408-0.103-0.508-0.305-1.222-2.544-2.24-4.17-2.95-1.629-0.609-3.459-1.324-4.681-1.424-1.932-0.206-3.256-0.101-6.206,0.408-0.813,0.101-3.865,0.405-5.799,1.321-0.509,0.306-1.019,0.406-0.813-0.916,0.306-1.426,0.204-7.835-1.32-10.583-1.12-1.932-1.018-3.562-0.814-5.188,0.104-1.63,0.204-7.225,0-8.854-0.306-1.627-2.544-3.867-6.611-4.375-3.866-0.511-7.123-3.664-7.325-6.207-0.305-2.542,0.408-7.223,0.814-9.257"/>
|
||||
<g fill="none">
|
||||
<path fill="url(#white_skin)" d="m292.44,153.63c-0.712,3.253-0.712,6.104-0.609,9.257,0.102,2.135,1.118,4.577,2.034,6.715,0.609,1.426,1.425,3.052,2.746,3.867,3.562,2.34,6.919-0.203,8.852-1.017,0.916-0.308,2.341-1.626,2.747-2.442,0.508-1.219,0.303-2.135,0.812-4.475-0.103,0.1,0.813-0.408,0.712-0.408,0.916-1.526,0.712-2.034,1.221-3.054,0.509-1.018-0.609-2.136-1.832-1.931,0.609-1.933,1.019-4.072,0.405-5.904-0.202-0.608,0.51-2.235-0.608-1.832-4.579,1.832-9.97,1.426-14.854,1.426-0.406,0-0.712-0.815-1.321-0.71-0.103,0-0.204,0.303-0.307,0.505"/>
|
||||
<path fill="#000" d="m292.03,155.35c-0.508-0.406-0.61-1.319,0-3.256,0.712-1.929,0-2.034,1.119-3.153,1.12-1.12,0.814-1.629,1.526-1.932,0.712-0.206,2.849-0.206,3.562-0.508,0.609-0.308,1.525-0.714,2.947-0.916,1.526-0.308,4.579-0.206,6.003,0.608,1.526,0.812,2.544,2.85,3.46,3.561,1.02,0.71,1.63,3.661,1.426,7.938-0.307,4.272-1.12,3.458-1.12,3.458s-1.222-2.034-2.238-0.308c0,0,0-1.626,0.204-2.848,0.102-1.219-0.61-3.458,0.102-4.985,0,0-5.8,1.832-8.751,1.729-3.051-0.202-7.322-0.916-7.526-1.626l-0.714,2.238"/>
|
||||
<path fill="#fff" stroke="#fff" d="m294.98,151.8c-0.305-0.61-1.832-2.85-0.609-3.561,1.12-0.612,0.406,2.745,1.935,3.458,0,0-0.509,1.526-1.321,0.102l-0.005,0.001z"/>
|
||||
<path d="m298.34,160.14c-0.508,1.732-0.712,2.138-0.916,3.156"/>
|
||||
<path d="m308.01,164.92c0.204,0.61,0.404,0.303,0.914,0.405"/>
|
||||
<path d="m309.33,161.36c0.509-0.609,1.221-0.303,0.813,1.223"/>
|
||||
<path d="m292.44,157.7c0.916,0.303,1.832,0.608,2.748,1.02,1.526,0.61,0.61,2.845,0.204,4.271-0.204,0.714-1.019,1.933-0.609,2.546,0.508,0.811,1.119,0.303,2.035,0.403,0-0.303,0.609-0.508,0.813-0.508,0.712-0.1,1.12,0.508,1.627,0.308,0.61-0.308,0.51-1.224,0.306-1.731"/>
|
||||
<path d="m299.46,159.53c0.102-0.403,1.018-0.811,1.526-0.915,2.136-0.405,3.661-0.712,5.393,0.511"/>
|
||||
<path d="m300.68,170.21c-1.729,0.408-3.561,0.71-5.188-0.206"/>
|
||||
<path d="m295.49,169.2c0.813-0.408,1.12-0.816,2.137-0.308,0-0.101,1.12-0.405,1.12-0.405,0.812,0,1.322,0.304,2.136,0.812"/>
|
||||
<path d="m295.39,169.6c0.916-0.306,3.358-0.306,5.394,0.102"/>
|
||||
<path fill="#fff" stroke-width="0.3052" d="m292.34,160.14c0.713-0.1,1.526-0.916,3.154,0.306,1.12,0.712-1.832,1.426-1.322,1.324-1.32,0.202-1.729-0.508-1.828-1.122,0-0.202-0.204-0.508,0-0.508h-0.004z"/>
|
||||
<path fill="#fff" stroke-width="0.3052" d="m300.68,160.95c0.712-1.426,1.832-1.119,2.849-0.816,1.019,0.306,0.713,0.105,1.629,0.613-1.12,0.203-0.814,0.303-1.629,0.71-0.916,0.408-1.729,0.61-2.341,0.206-0.204-0.206-0.712-0.508-0.712-0.916-0.001,0.101,0.102,0.203,0.204,0.203z"/>
|
||||
<path fill="#000" stroke-width="0.3052" d="m293.76,161.36c0.406,0,0.712-0.406,0.712-0.814,0-0.508-0.306-0.916-0.712-0.916-0.507,0-0.812,0.408-0.812,0.916,0,0.408,0.303,0.814,0.812,0.814z"/>
|
||||
<path fill="#000" stroke-width="0.3052" d="m302.41,161.56c0.405,0,0.712-0.403,0.712-0.916,0-0.508-0.407-0.811-0.813-0.811-0.405,0-0.712,0.303-0.712,0.811-0.001,0.514,0.407,0.916,0.813,0.916z"/>
|
||||
</g>
|
||||
<g id="body" stroke="#000" stroke-width="0.5087">
|
||||
<g fill="none">
|
||||
<path d="m345.85,213.66c-0.608-0.714-1.018-1.02-1.83-1.324-0.609-0.303-1.424-0.71-2.036-1.016-0.712-0.408-1.729-0.508-2.34-0.916"/>
|
||||
<path d="m340.05,213.05c-0.306-0.203-0.508-0.304-0.812-0.51-0.306-0.101-0.712-0.101-1.02-0.203-0.102,0-0.102-0.204-0.203-0.204-0.915-0.102-1.831-0.51-2.44-1.321"/>
|
||||
<path d="m272.8,201.45c0.914,0.71,3.152,2.24,3.356,5.19,0.204,1.525,1.019,3.051,1.019,3.051"/>
|
||||
<path d="m264.05,201.86c0.51,1.727,0.61,7.425,6.003,13.43"/>
|
||||
<path d="m265.07,193.92c-0.408,1.119-0.916,2.137,0.202,2.951"/>
|
||||
<path d="m279.72,207.56c1.12-2.545,4.578-2.342,4.578-4.782"/>
|
||||
<path d="m284.81,207.25c-0.306-2.849-0.916-4.475-0.405-8.647,0.203-1.223,0.405-5.9,0-8.141,0,0,1.629,7.833-3.662,9.363"/>
|
||||
<path d="m315.13,212.34c0-3.97,0.916-6.209,0.916-6.209,1.221-5.593-1.119-7.731-0.203-9.155,0.812-1.221,2.035-3.766,0.407-8.854,0,0,2.847,10.484-4.478,10.484-7.425,0-7.121-2.748-7.121-2.748"/>
|
||||
<path d="m284.4,190.46c0,2.135,0,8.447,9.055,8.447,2.746,0,5.698-1.933,7.324-3.256"/>
|
||||
<path d="m303.02,192.9c-0.306-1.934-0.306-4.375-0.306-6.92"/>
|
||||
<path d="m289.08,182.53c2.441-0.308,4.376-0.61,8.955-0.61"/>
|
||||
<path d="m298.34,175.6c0.509,2.24-0.304,5.8,3.866,6.309"/>
|
||||
<path d="m306.58,174.79c-0.61,1.629-0.61,3.256-0.814,4.375"/>
|
||||
<path d="m305.97,181.92c1.73,0,4.985-1.121,9.054-0.306"/>
|
||||
<path d="m316.45,204.4c0.813,1.63,1.018,3.765,3.561,6.207"/>
|
||||
<path d="m288.27,199.21c0.204,1.324-1.729,5.698-0.306,9.262,1.322,3.559,1.12,7.631-1.12,11.089"/>
|
||||
<path d="m293.46,200.54c-0.813,1.626-2.238,3.256-2.544,4.68"/>
|
||||
<path d="m297.52,203.59c0,1.018-2.744,8.749-4.68,10.886,0,0,3.561,1.424,3.051,6.614"/>
|
||||
<path d="m303.22,200.03c0,1.324-0.204,1.63,0.916,2.44"/>
|
||||
<path d="m306.58,202.47c1.32,1.628,5.492,6.514,4.576,9.259"/>
|
||||
<path d="m303.83,205.22c0.306,1.018,0.306,6.309-0.61,8.955"/>
|
||||
<path d="m301.09,213.97c-1.12,0-2.746,0.814-3.052,2.747"/>
|
||||
<path d="m306.78,213.66c1.118-0.306,3.355,1.626,3.355,7.123"/>
|
||||
<path d="m325.81,210.51c-2.136,0.61-3.052,1.732-2.44,1.119-1.12,0.916-2.138,1.526-2.138,1.526"/>
|
||||
</g>
|
||||
<path fill="#000" stroke-width="0.3052" d="m289.79,197.99c0.608,0,1.118-0.408,1.118-0.916,0-0.411-0.507-0.816-1.118-0.816-0.509,0-1.02,0.405-1.02,0.816,0,0.505,0.508,0.916,1.02,0.916z"/>
|
||||
<path fill="#000" stroke-width="0.3052" d="m312.89,198.3c0.51,0,1.02-0.405,1.02-0.916,0-0.505-0.508-0.811-1.02-0.811-0.607,0-1.118,0.306-1.118,0.811-0.001,0.511,0.51,0.916,1.118,0.916z"/>
|
||||
<path fill="#fff" d="m280.54,239.81c1.22-7.937,4.985-14.551,5.086-15.162,0,0,3.865,0.816,10.58,1.424,6.612,0.71,8.444,0.408,11.496,0.202,2.949-0.303,6.815-0.811,6.815-0.811s1.221,2.44,1.322,4.883c0.305,5.188,2.236,27.677,2.439,33.679,0,0,0.814,3.562,0.814,12.312,0,9.567,2.645,28.999,2.645,39.381l-2.645,0.51s-14.446,1.119-14.446-0.814c0-2.135-0.813-27.066,1.322-42.126,0,0-0.508-2.95-1.322-5.496-0.813-2.442-4.375-10.073-4.375-11.698,0,0-5.695,16.072-6.001,18.824-0.304,2.543-1.12,38.357-1.628,41.312,0,0-8.241,6.308-9.36,6.92-1.118,0.509-9.054-3.36-9.258-4.375-0.306-1.118,0.814-13.229,4.578-33.176,1.425-7.123,0.61-8.44,0.61-10.375,0-1.934,0.103-27.474,1.322-35.412l0.006-0.002z"/>
|
||||
<g fill="none">
|
||||
<path d="m294.27,274.92c-0.609,2.24-1.628,4.375-3.559,5.803"/>
|
||||
<path d="m287.96,227.09c-0.304,1.322-2.238,7.325-7.122,10.887"/>
|
||||
<path d="m295.08,228.21c-1.12,3.562-5.493,22.693-6.309,45.383"/>
|
||||
<path d="m288.47,280.72c-0.204,2.135-1.322,18.012-1.628,20.756"/>
|
||||
<path d="m286.03,304.53c-0.509,1.117-2.746,10.375-2.746,18.619"/>
|
||||
<path d="m315.53,287.23c-0.204,1.933-1.019,15.668,3.561,27.98"/>
|
||||
<path d="m300.58,229.23c-0.305,2.237-0.813,16.688-0.813,17.806,0,1.117,1.628,2.747,2.441,3.054,0,0-1.628,0.509-1.933,6.003"/>
|
||||
<path d="m296.2,243.17c-0.308,1.727-1.934,8.547-3.054,11.295"/>
|
||||
<path d="m306.27,229.03s4.884,1.018,5.188,0c0,0,1.628,29.512,3.866,45.891"/>
|
||||
<path d="m304.14,232.79c0,1.934-0.609,16.485-0.609,16.485"/>
|
||||
<path d="m305.97,251.41s1.931,2.745,1.425,4.066"/>
|
||||
<path d="m289.59,227.4c1.629,0.508,3.053,0.812,3.053,0.812"/>
|
||||
<path d="m297.83,229.84c-0.307,0.814-0.61,4.58-0.61,4.58"/>
|
||||
<path d="m305.97,273.29c0.61,0.814,1.425,1.936,0.814,4.377"/>
|
||||
</g>
|
||||
<path fill="#9b5f00" d="m284.91,224.45s0-3.256,1.22-4.886c0,0,3.457,0.714,8.342,1.222,4.984,0.508,8.951,0.916,12.615,0.508,3.663-0.406,7.428-1.322,7.428-1.322s1.017,4.784,0.506,5.496c0,0-3.968,0.814-8.341,1.016-4.477,0.303-11.902-0.408-14.445-0.812-3.359-0.408-6.31-1.02-7.325-1.222z"/>
|
||||
<path fill="#fff" d="m288.06,224.85,0.608-4.883,1.019,0.1-0.203,5.088-1.424-0.305"/>
|
||||
<path fill="#fff" d="m310.14,220.78,0.103,5.496,1.221-0.206-0.102-5.597-1.222,0.307"/>
|
||||
<path fill="#fff" d="m294.47,220.78-0.406,5.291h0.713l0.712-5.291h-1.019"/>
|
||||
<g>
|
||||
<path d="m276.77,320.81c-0.305,1.322-0.812,3.154-1.018,5.496,0,0.508-0.507,3.256,1.018,3.356,1.12,0.103,1.425-2.849,1.425-2.849s-1.019,3.256,0.305,3.664c1.832,0.403,2.034-3.562,2.034-3.562-0.204,1.119-1.425,3.969,0.306,4.271,1.831,0.307,2.339-3.867,2.339-3.867s-1.525,4.174,0.305,4.275c1.729,0.1,1.729-4.072,1.729-4.072s-0.916,4.988,1.526,4.58c1.321-0.203,1.628-1.934,1.933-2.951,0.406-1.524,1.322-3.457,0.204-6.612-0.812-2.341-0.507-2.951-0.507-2.951s-2.85,2.138-5.087,3.562c-1.019,0.609-6.514-2.34-6.514-2.34z"/>
|
||||
<path d="m306.48,316.43c-0.508-0.307-0.406,1.832-0.609,2.846-0.103,1.021,0.204,3.257,3.663,3.055,3.355-0.307,6.715-1.018,8.851-0.509,2.137,0.61,5.289,0.711,7.021,0.711,1.729,0,2.849-0.202,3.661-0.509,0.713-0.303,2.238,0.408,2.95,0.408,0.713,0,1.831-1.119,1.73-1.832-0.103-1.324-1.322-1.324-3.054-1.424-1.628-0.203-3.865-0.511-4.983-0.916-1.12-0.408-3.154-1.527-5.698-2.035,0,0-4.883,0.205-5.898,0.205-1.019,0-7.022,0.303-7.634,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none">
|
||||
<path fill="#ffb366" d="m255.71,189.85c-0.507,0.306-1.12-2.035,0.406-2.951,0,0,0.406-1.931,2.035-2.136,0,0,1.321-1.832,3.257-1.626,0,0,2.235-1.525,3.051-1.324,0.812,0.102,2.849,2.136,2.95,2.85,0.204,0.711,0,1.933-0.511,2.442-0.609,0.608-1.018-0.102-1.119-0.916,0,0,0.407,1.524-0.813,2.135-1.219,0.714-1.119,0.206-1.219-0.61,0,0-0.308,1.63-1.12,1.832-0.814,0.305-1.322-0.408-1.935-0.408,0,0,1.019,0.816,0.307,1.426-0.713,0.508-1.526,0.303-2.036-0.102-0.509-0.508-1.12-1.832-3.257-0.61l0.004-0.002z"/>
|
||||
<path d="m265.68,186.09c-0.51-1.629-2.137-3.054-4.069-2.848"/>
|
||||
<path d="m263.85,187.61c-0.306-0.408-0.408-0.816-0.712-1.22-0.916-1.528-2.849-1.424-4.477-1.832"/>
|
||||
<path d="m261.1,189.14c-0.609-0.406-0.813-1.222-1.425-1.524-1.018-0.408-2.034-0.916-3.255-0.714"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="black_man" stroke="#000" stroke-width="0.5087">
|
||||
<path fill="url(#black_skin)" d="m439.14,165.12c0.712-0.306,0.51,0.61,0.61,0.916,0.306,1.321,0.306,2.748,0.813,3.967,0.608,1.119,0.812,1.526,1.83,2.035,1.627,0.916,6.407,3.562,9.767,1.424,0.204-0.101,0.508-0.306,0.712-0.508,0,0-1.221,4.172,2.95,6.207,1.321,0.71,15.668,8.241,15.668,8.241s1.525,2.748,0.609,6.512c-0.204,0.61-0.405,1.118,0.204,1.526,1.019,0.71,2.644,2.748,3.766,6.004,0,0,2.947-1.324,2.947-3.256,0-1.934-1.219-2.951-1.525-4.375-0.202-1.324-1.017-4.682-0.608-5.698,0.405-1.118,2.135-1.526,2.847-1.936,0.714-0.408,1.526,0.406,1.322,1.322-0.102,1.018-0.812,0.816-1.628,1.018,0,0,1.02,1.932,0.814,3.356l9.358,4.783s-1.221,1.629-1.628,2.34c-0.509,0.715-1.425,10.175-4.171,14.653-2.748,4.477-3.663,3.256-4.171,3.866-0.61,0.508-1.424,1.324-2.137,1.934-0.608,0.508-3.764,0.814-4.476-0.916-0.712-1.628-1.221-2.647-3.153-4.174-1.934-1.524-5.9-5.391-5.9-7.123,0,0-2.341,6.719-2.035,12.313,0,0-8.443,1.731-16.176,1.936-7.631,0.102-11.497-1.528-11.497-1.528s-1.018-6.409-0.61-7.631c0,0-1.22,4.172-2.033,5.596-1.118,1.727-2.236,5.291-4.375,5.493-2.236,0.104-3.968-2.135-4.271-3.051v-6.716h-8.646c0-0.101-3.766,1.424-5.087,1.223-1.221-0.105-1.832-1.223-0.813-1.631l0.407-0.303c-1.119,0-2.544,0.71-2.544,0.71h-4.272c0-0.101,0.103-0.408,0.103-0.508,0.307-1.219,2.545-2.24,4.272-2.95,1.628-0.609,3.356-1.324,4.578-1.424,1.933-0.203,3.256-0.101,6.206,0.408,0.812,0.101,3.967,0.408,5.798,1.322,0.508,0.304,1.118,0.405,0.813-0.915-0.305-1.426-1.221-5.598,0.307-8.346,1.018-1.933,0.916-3.559,0.813-5.189-0.204-1.729-1.118-5.598-1.118-7.325,0-5.699,4.375-8.039,8.24-9.262,4.272-1.319,7.121-2.748,6.92-5.288-0.104-2.646,0.608-7.021,0.202-9.058"/>
|
||||
<g fill="none">
|
||||
<path fill="url(#black_skin)" d="m456.34,153.63c0.916,3.356,1.12,4.169,1.12,5.291,0,1.219-0.509,1.424-0.104,2.748,0.713,2.441-0.712,5.088-2.441,7.937-0.813,1.32-1.424,3.052-2.746,3.866-3.356,2.135-7.427-0.408-9.563-1.327-1.117-0.505-1.729-1.319-2.033-2.135-0.407-1.219-0.509-2.34-0.813-3.967,0-0.306,0.103-1.219-0.609-0.916-1.22-1.424-1.018-2.034-1.524-3.051-0.509-1.021,0.916-2.139,2.034-1.934-0.61-1.933-0.916-4.072-0.306-5.904,0.204-0.608-0.508-2.235,0.51-1.832,4.577,1.832,9.969,1.426,14.854,1.426,0.404,0,0.71-0.812,1.32-0.71,0.098-0.001,0.2,0.305,0.301,0.508"/>
|
||||
<path fill="#000" d="m456.75,155.35c0.508-0.406,0.204-2.34-0.306-4.375-0.203-1.017-1.018-1.424-2.136-2.542-1.12-1.122-1.525-1.122-2.236-1.424-0.609-0.206-2.034-0.206-2.746-0.508-0.61-0.308-2.238-0.105-3.766,0.101-2.036,0.304-3.153,0.202-4.679,1.018-1.526,0.814-2.746,1.73-3.256,3.256-0.406,1.118-1.12,2.542-0.814,6.817,0.204,4.272,1.019,3.458,1.019,3.458s1.12-1.628,1.832-0.61c0,0-0.103-2.24-0.305-3.561-0.103-1.222,0-2.748,0.509-4.58,0,0,4.679,1.732,9.054,1.732,3.053,0,7.021-0.306,7.123-1.017l0.71,2.235h-0.003z"/>
|
||||
<path d="m450.44,160.14c0.61,1.732,0.104,1.222,0.408,2.34"/>
|
||||
<path d="m440.57,164.51c0,0.812-0.61,0.61-1.019,0.61"/>
|
||||
<path d="m456.85,158.82c-0.916-0.713-2.645-0.204-3.46,0.102-1.525,0.71-0.712,2.24-0.204,3.664,0.204,0.71,1.02,1.727,0.511,2.441-0.407,0.812-0.713,0.408-1.629,0.51,0.104-0.308-0.812,0-1.117,0-0.61-0.102-0.916,0.403-1.426,0.202-0.608-0.304-0.508-1.22-0.306-1.729"/>
|
||||
<path d="m449.32,159.53c0-0.403-1.321-0.811-2.745-0.915-2.238-0.102-2.442,0.104-4.172,1.322"/>
|
||||
<path d="m453.9,168.89c-0.405-0.608-1.018-0.916-2.137-0.405,0-0.204-1.524-0.406-1.524-0.406-0.812,0-1.321,0.303-2.136,0.71"/>
|
||||
<path d="m453.69,169.4c-0.916-0.609-3.256-0.201-5.596-0.201"/>
|
||||
<path d="m448.3,170.01c1.73,0.512,3.46,0.816,5.188,0"/>
|
||||
<path fill="#fff" stroke-width="0.3052" d="m456.44,160.14c-0.712-0.1-1.018-0.916-3.153,0.306-1.119,0.61,1.832,1.426,1.425,1.324,1.22,0.202,1.628-0.508,1.729-1.122-0.001-0.203,0.203-0.508-0.001-0.508z"/>
|
||||
<path fill="#fff" stroke-width="0.3052" d="m448.1,160.95c0-0.816-1.829-1.119-2.847-0.816-1.019,0.306-0.61,0.105-1.526,0.613,1.02,0.203,0.712,0.303,1.526,0.71,0.914,0.408,1.12,0.814,2.339,0.206,0.306-0.105,0.712-0.508,0.813-0.916-0.101,0.101-0.202,0.203-0.305,0.203z"/>
|
||||
<path fill="#000" stroke-width="0.3052" d="m455.12,161.36c-0.508,0-0.813-0.406-0.813-0.814,0-0.508,0.307-0.916,0.813-0.916,0.405,0,0.712,0.408,0.712,0.916,0,0.408-0.307,0.814-0.712,0.814z"/>
|
||||
<path fill="#000" stroke-width="0.3052" d="m446.37,161.56c-0.406,0-0.712-0.403-0.712-0.916,0-0.508,0.403-0.811,0.812-0.811s0.712,0.303,0.712,0.811c0,0.514-0.303,0.916-0.812,0.916z"/>
|
||||
</g>
|
||||
<use xlink:href="#body" fill="#730000" transform="matrix(-1,0,0,1,748.81578,0)"/>
|
||||
<g fill="none">
|
||||
<path fill="#730000" d="m491.64,193.51c0.508,0.206,1.934-2.033,0.508-3.051,0,0-0.508-1.932-2.136-2.034,0,0-1.322-1.933-3.257-1.63,0,0-2.136-1.524-2.948-1.421-0.916,0.202-2.951,2.237-3.053,2.95-0.102,0.609,0,1.832,0.508,2.441,0.61,0.51,1.02-0.104,1.119-1.02,0,0-0.405,1.529,0.813,2.24,1.221,0.71,1.119,0.1,1.221-0.71,0,0,0.306,1.626,1.12,1.932,0.812,0.303,1.321-0.408,1.934-0.408,0,0-1.018,0.815-0.305,1.324,0.713,0.61,1.525,0.303,2.035-0.104,0.61-0.404,0.306-1.727,2.441-0.509z"/>
|
||||
<path d="m482.49,189.75c0.506-1.73,2.235-3.153,4.067-2.849"/>
|
||||
<path d="m484.42,191.28c0.203-0.411,0.305-0.816,0.61-1.224,0.915-1.524,2.948-1.524,4.576-1.832"/>
|
||||
<path d="m487.06,192.7c0.61-0.408,0.814-1.118,1.426-1.421,1.018-0.512,2.136-0.916,3.256-0.714"/>
|
||||
<path fill="#730000" stroke="none" d="m482.31,186.77c-0.896,0.716-1.837,1.798-1.906,2.281-0.103,0.61-0.008,1.827,0.5,2.438,0.551,0.461,0.949-0.017,1.095-0.781-0.059,0.463-0.071,1.465,0.844,2,1.22,0.71,1.118,0.095,1.219-0.719,0,0,0.312,1.635,1.125,1.938,0.813,0.306,1.325-0.406,1.938-0.406,0,0-1.026,0.804-0.312,1.312,0.712,0.61,1.522,0.309,2.031-0.094,0.61-0.408,0.3-1.722,2.438-0.5,0.267,0.106,0.804-0.452,1.031-1.156l-7.688-5.531-2.315-0.782z"/>
|
||||
<path d="m480.68,188.19c-1.502,2.582,0.5,4.132,1.164,2.619-0.193,2.386,1.606,2.292,2.285,1.538,0.658,2.512,1.83,1.395,2.909,1.164-1.223,2.29,1.479,1.609,2.12,1.081,0.924-1.362,1.356-0.277,2.036-0.416l1.164-1.247"/>
|
||||
<path d="m484.38,187.23c-1.686,0.896-2.512,2.137-2.535,3.699"/>
|
||||
<path d="m486.71,188.73c-1.687,0.896-2.512,2.137-2.535,3.699"/>
|
||||
<path d="m489.58,190.68c-1.687,0.897-1.765,1.722-2.493,2.826"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="#5ac800">
|
||||
<path d="m290.1,323.66-0.204-4.68,1.934,1.629,0.508-3.562c0.813-0.206,2.137,1.426,2.137,1.426l-0.204-3.564,2.95,3.257s-0.203-2.748,0.812-4.377c0,0,2.237,1.935,2.237,4.172,0,1.938,1.934-2.748,1.934-2.748,0.509,1.63,1.628,5.19,1.628,5.19l1.321-1.934,1.12,4.07,2.442-3.562,1.931,4.174,4.375-0.307,0.509,2.439,1.933-2.135,2.544,1.627s2.137-0.609,3.256-0.609,2.442,1.426,2.442,1.426,0.813-1.426,1.628-1.938c0.812-0.506,1.935,0.816,2.236,1.63l1.629-2.95s2.137,2.137,2.441,2.95c0,0,0.304-2.44,0.813-3.257,0.51-0.813,1.321,0.307,1.933,1.324l1.322-4.375s1.425,0.303,2.441,1.934c1.117,1.626,1.117-2.441,1.117-2.441s2.441,3.256,3.052,5.493c0,0-16.846,5.784-28.726,4.203-13.983-1.862-25.501-4.507-25.501-4.507"/>
|
||||
<path d="m405.57,323.15s0.813-2.239,1.935-3.36c0,0,2.136,2.546,2.136,3.36,0,0,0.608-0.305,1.729-1.121l1.628,1.627,1.935-1.32,1.832,1.626,3.356-1.424,1.322,1.424,5.188-0.606,1.933,0.812,1.832-2.341,1.73,1.832,2.746-2.748s1.322,1.118,1.628,1.935c0,0,2.238-1.117,2.747-1.935,0,0,2.136-0.813,2.44,0.509,0,0,1.322-1.018,1.222-2.135-0.102-1.118,1.525-0.307,2.034,1.117,0,0,0.609-2.235,2.236-2.44,0,0,1.118,1.319,0.813,3.767,0,0,2.441-1.938,3.561-2.141,0,0,0.508,2.748-0.305,5.193,0,0,2.543-4.174,3.053-2.748,0.204,0.812,0.814,3.561,0.204,5.492l2.238-1.424,0.812,2.748,2.44-0.509s-14.442,2.212-28.05,0.914c-13.607-1.298-26.376-6.104-26.375-6.104"/>
|
||||
<path d="m395.51,333.25c0.661-0.408-4.546,10.708-17.17,11.299-17.563,0.823-32.577-7.94-32.577-7.94s1.832-3.051,2.949-3.867c0,0,2.441,1.936,3.256,4.375,0,0,0.306-1.627,1.12-3.051,0,0,3.052,1.422,3.561,3.358,0,0,1.12-1.935,1.934-2.442,0.812-0.612,1.628,2.135,1.628,3.766,0,0,1.932-2.038,3.052-2.139,0,0,2.137,1.017,2.747,4.58,0,0,2.035-1.933,2.746-1.631,0,0,2.442,1.631,1.83,3.867-0.304,1.223,2.442-1.421,5.801-2.236l2.949,2.236s2.746-3.66,3.561-4.885c0,0,2.238,0.816,2.238,2.141,0,0,1.019-3.869,1.832-4.275,0.812-0.508,1.931,1.22,1.931,2.342,0,0,0.307-2.952,1.935-3.562,0,0,1.628,1.118,1.628,2.24-0.003-0.002,1.726-3.36,3.049-4.176z"/>
|
||||
</g>
|
||||
<g stroke-width="0.5087" stroke="#060" fill="none">
|
||||
<path d="m290.1,323.66-0.204-4.68,1.934,1.629,0.508-3.562c0.813-0.203,2.137,1.426,2.137,1.426l-0.204-3.561,2.95,3.256s-0.203-2.748,0.812-4.375c0,0,2.237,1.934,2.237,4.172,0,1.936,1.934-2.748,1.934-2.748,0.509,1.631,1.628,5.191,1.628,5.191l1.321-1.936,1.119,4.069,2.441-3.56,1.933,4.172,4.375-0.307,0.509,2.443,1.933-2.137,2.544,1.629s2.135-0.609,3.255-0.609,2.442,1.422,2.442,1.422,0.812-1.422,1.628-1.931c0.812-0.509,1.933,0.812,2.235,1.626l1.629-2.949s2.137,2.137,2.441,2.949c0,0,0.305-2.439,0.814-3.256,0.51-0.812,1.321,0.307,1.933,1.324l1.322-4.375s1.424,0.303,2.44,1.933c1.12,1.626,1.12-2.444,1.12-2.444s2.44,3.258,3.054,5.495"/>
|
||||
<path d="m405.57,323.15s0.812-2.235,1.933-3.356c0,0,2.136,2.545,2.136,3.356,0,0,0.61-0.305,1.73-1.117l1.628,1.626,1.933-1.32,1.832,1.627,3.358-1.424,1.319,1.424,5.188-0.608,1.935,0.812,1.83-2.337,1.73,1.828,2.746-2.744s1.322,1.115,1.628,1.932c0,0,2.238-1.119,2.747-1.932,0,0,2.135-0.814,2.439,0.505,0,0,1.322-1.017,1.221-2.135-0.103-1.118,1.525-0.304,2.034,1.122,0,0,0.609-2.24,2.238-2.445,0,0,1.118,1.323,0.812,3.766,0,0,2.441-1.932,3.561-2.137,0,0,0.509,2.745-0.304,5.189,0,0,2.544-4.172,3.052-2.747,0.204,0.812,0.814,3.562,0.204,5.493l2.238-1.424,0.813,2.748,2.44-0.51"/>
|
||||
<path d="m345.68,336.63s1.832-3.051,2.949-3.866c0,0,2.442,1.934,3.256,4.375,0,0,0.308-1.627,1.12-3.051,0,0,3.053,1.42,3.561,3.357,0,0,1.12-1.934,1.934-2.441,0.813-0.613,1.628,2.135,1.628,3.764,0,0,1.933-2.037,3.053-2.138,0,0,2.136,1.017,2.746,4.58,0,0,2.036-1.933,2.746-1.63,0,0,2.442,1.63,1.831,3.867-0.305,1.221,2.442-1.422,5.8-2.237l2.949,2.237s2.746-3.662,3.561-4.885c0,0,2.238,0.814,2.238,2.139,0,0,1.019-3.869,1.832-4.273,0.812-0.508,1.931,1.219,1.931,2.34,0,0,0.307-2.951,1.936-3.562,0,0,1.628,1.118,1.628,2.239,0,0,1.729-3.356,3.052-4.174"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="motto">
|
||||
<g fill="#fff">
|
||||
<path d="m374.44,376.98c22.892,0.205,36.424-8.141,43.851-13.127,17.396-11.699,21.059-12.107,23.908-11.906,3.257,0.309,8.035,1.427,8.24,4.277,0.306,4.375-6.815,6.307-10.886,6.307-4.17,0-15.058-2.748-15.058-2.748l-2.85,1.936c1.934,0.916,24.215,8.342,28.488,1.323,4.372-7.122,8.749-18.622,8.749-18.622s-4.883-8.751-15.771-8.751c-10.987,0-21.671,6.922-28.791,12.106-7.123,5.19-16.074,12.312-39.883,12.312-23.807,0-32.86-7.122-39.981-12.312-7.121-5.188-17.805-12.106-28.689-12.106-10.987,0-15.872,8.751-15.872,8.751s4.374,11.5,8.749,18.622c4.272,7.019,26.555-0.407,28.485-1.323l-2.746-1.936s-10.987,2.748-15.058,2.748c-4.171,0-11.293-1.932-10.987-6.307,0.204-2.85,4.984-3.97,8.241-4.277,2.848-0.201,6.511,0.207,23.907,11.906,7.431,4.986,20.962,13.025,43.954,13.127"/>
|
||||
<path d="m337.61,350.01s0-1.938-0.308-4.783c-0.406-3.664-2.542-4.58-4.271-4.071-1.118,0.403-3.356,3.155-3.356,3.155v0.103c-1.018-0.715-2.034-1.323-3.154-1.935,0.814-0.916,5.494-3.764,6.613-3.764,1.019,0,15.058,5.697,19.532,9.562,1.12,1.021,1.935,7.328,1.322,9.361-7.528-1.933-12.411-4.781-16.381-7.529v-0.102"/>
|
||||
<path d="m330.89,364.26s-3.053,3.051-3.153,8.648c-0.104,6.613,4.68,6.92,7.833,6.816,3.765-0.104,6.815-2.238,6.715-9.259,0,0-6.207-2.647-11.396-6.207"/>
|
||||
<path d="m411.17,350.01s0.103-1.938,0.408-4.783c0.403-3.664,2.44-4.58,4.17-4.071,1.119,0.403,3.356,3.155,3.356,3.155v0.103c1.017-0.715,2.032-1.323,3.152-1.935-0.812-0.916-5.491-3.764-6.51-3.764-1.118,0-15.157,5.697-19.634,9.562-1.02,1.021-1.832,7.328-1.322,9.361,7.631-1.933,12.411-4.781,16.38-7.529v-0.102"/>
|
||||
<path d="m417.88,364.26s3.053,3.051,3.154,8.648c0.204,6.613-4.682,6.92-7.833,6.816-3.766-0.104-6.715-2.238-6.715-9.259,0,0,6.207-2.647,11.396-6.207"/>
|
||||
</g>
|
||||
<g fill="#69f">
|
||||
<path d="m324.28,359.78s-10.887,2.748-14.956,2.748c-4.17,0-11.293-1.93-10.987-6.308,0.204-2.85,4.985-3.967,8.241-4.272,2.441-0.207,5.595,0.101,17.702,7.832"/>
|
||||
<path d="m424.5,359.78s10.885,2.748,15.058,2.748c4.07,0,11.191-1.93,10.885-6.308-0.202-2.85-4.983-3.967-8.239-4.272-2.444-0.207-5.598,0.101-17.704,7.832"/>
|
||||
<path d="m337.61,350.11c-1.119-0.814-2.238-1.631-3.258-2.441-1.525-1.121-3.052-2.139-4.681-3.256,0,0,2.238-2.85,3.357-3.156,1.729-0.609,3.865,0.303,4.271,3.967,0.306,2.85,0.306,4.887,0.306,4.887"/>
|
||||
<path d="m330.18,378.81c1.936,1.121,4.07,1.02,5.394,0.916,3.765-0.102,6.816-2.238,6.715-9.258,0,0,4.678,2.34,12.309,4.172,0,0,1.222,1.525,1.424,4.576,0.308,2.547-1.424,5.291-3.457,5.09,0,0-10.683-1.934-17.192-3.051-3.766-0.711-5.189-2.443-5.189-2.443"/>
|
||||
<path d="m411.17,350.11c1.118-0.814,2.238-1.631,3.355-2.441,1.426-1.121,2.95-2.139,4.579-3.256,0,0-2.237-2.85-3.356-3.156-1.729-0.609-3.765,0.303-4.17,3.967-0.307,2.847-0.408,4.886-0.408,4.886"/>
|
||||
<path d="m418.59,378.81c-1.933,1.121-4.07,1.02-5.393,0.916-3.765-0.102-6.715-2.238-6.715-9.258,0,0-4.681,2.34-12.209,4.172,0,0-1.322,1.525-1.526,4.576-0.204,2.547,1.526,5.291,3.459,5.09,0,0,10.783-1.934,17.193-3.051,3.765-0.711,5.188-2.443,5.188-2.443"/>
|
||||
</g>
|
||||
<g fill="none" stroke="#000" stroke-width="0.7122">
|
||||
<path d="m374.44,376.98c22.893,0.203,36.424-8.143,43.851-13.127,17.396-11.701,21.059-12.106,23.907-11.904,3.257,0.305,8.039,1.425,8.24,4.273,0.307,4.375-6.815,6.307-10.887,6.307-4.17,0-15.057-2.743-15.057-2.743l-2.848,1.934c1.934,0.916,24.212,8.343,28.485,1.32,4.375-7.122,8.748-18.619,8.748-18.619s-4.883-8.754-15.77-8.754c-10.986,0-21.669,6.922-28.792,12.11-7.121,5.189-16.072,12.312-39.881,12.312-23.807,0-32.859-7.123-39.981-12.312-7.121-5.188-17.806-12.11-28.69-12.11-10.986,0-15.87,8.754-15.87,8.754s4.373,11.497,8.749,18.619c4.273,7.021,26.555-0.404,28.486-1.32l-2.745-1.934s-10.989,2.743-15.056,2.743c-4.173,0-11.294-1.928-10.989-6.307,0.204-2.85,4.984-3.967,8.241-4.273,2.847-0.202,6.509,0.205,23.907,11.904,7.429,4.988,20.96,13.027,43.952,13.127z"/>
|
||||
<path d="m324.28,359.78s-10.888,2.748-14.954,2.748c-4.172,0-11.293-1.933-10.989-6.308,0.204-2.85,4.985-3.97,8.241-4.272,2.439-0.207,5.595,0.101,17.702,7.832z"/>
|
||||
<path d="m424.49,359.78s10.887,2.748,15.058,2.748c4.069,0,11.191-1.933,10.886-6.308-0.204-2.85-4.983-3.97-8.238-4.272-2.442-0.207-5.598,0.102-17.702,7.832h-0.004z"/>
|
||||
<path d="m337.61,350.11c-1.12-0.814-2.238-1.631-3.258-2.441-1.523-1.121-3.051-2.139-4.679-3.256,0,0,2.238-2.85,3.356-3.156,1.729-0.609,3.865,0.303,4.271,3.971,0.31,2.843,0.31,4.882,0.31,4.882z"/>
|
||||
<path d="m337.61,350.01s0-1.936-0.308-4.783c-0.404-3.664-2.542-4.58-4.271-4.071-1.12,0.407-3.358,3.155-3.358,3.155v0.103c-1.018-0.712-2.036-1.323-3.154-1.935,0.814-0.916,5.494-3.764,6.614-3.764,1.02,0,15.057,5.697,19.533,9.565,1.12,1.019,1.933,7.325,1.322,9.362-7.529-1.937-12.413-4.785-16.383-7.53"/>
|
||||
<path d="m330.89,364.26s-3.051,3.051-3.152,8.648c-0.103,6.609,4.679,6.918,7.833,6.816,3.765-0.104,6.814-2.238,6.717-9.263,0,0-6.207-2.646-11.396-6.207l-0.002,0.006z"/>
|
||||
<path d="m333.44,365.78s-2.439,2.543-2.847,6.715c-0.204,3.257,1.932,5.086,4.679,4.883,3.866-0.201,5.394-5.492,3.562-8.443l-5.394-3.155"/>
|
||||
<path d="m330.18,378.81c1.934,1.119,4.068,1.018,5.392,0.916,3.765-0.104,6.814-2.24,6.717-9.26,0,0,4.679,2.34,12.31,4.172,0,0,1.222,1.525,1.423,4.58,0.307,2.543-1.423,5.291-3.456,5.086,0,0-10.685-1.934-17.194-3.051-3.768-0.715-5.192-2.443-5.192-2.443z"/>
|
||||
<path d="m411.17,350.11c1.12-0.814,2.238-1.631,3.357-2.441,1.425-1.121,2.95-2.139,4.578-3.256,0,0-2.237-2.85-3.357-3.156-1.729-0.609-3.765,0.303-4.17,3.971-0.306,2.846-0.406,4.883-0.406,4.883h-0.002v-0.001z"/>
|
||||
<path d="m411.17,350.01s0.103-1.936,0.408-4.783c0.405-3.664,2.44-4.58,4.17-4.071,1.12,0.407,3.356,3.155,3.356,3.155v0.103c1.019-0.712,2.035-1.323,3.154-1.935-0.814-0.916-5.493-3.764-6.512-3.764-1.119,0-15.157,5.697-19.634,9.565-1.02,1.019-1.832,7.325-1.322,9.362,7.631-1.937,12.411-4.785,16.38-7.53"/>
|
||||
<path d="m417.88,364.26s3.053,3.051,3.154,8.648c0.204,6.609-4.682,6.918-7.835,6.816-3.764-0.104-6.713-2.238-6.713-9.263,0,0,6.205-2.646,11.394-6.207v0.006z"/>
|
||||
<path d="m415.34,365.78s2.442,2.543,2.849,6.715c0.307,3.257-1.935,5.086-4.681,4.883-3.865-0.201-5.289-5.492-3.561-8.443l5.393-3.155"/>
|
||||
<path d="m418.59,378.81c-1.933,1.119-4.07,1.018-5.393,0.916-3.764-0.104-6.713-2.24-6.713-9.26,0,0-4.682,2.34-12.208,4.172,0,0-1.322,1.525-1.526,4.58-0.203,2.543,1.526,5.291,3.459,5.086,0,0,10.785-1.934,17.192-3.051,3.766-0.715,5.189-2.443,5.189-2.443z"/>
|
||||
</g>
|
||||
<g fill="none" stroke="#fff" stroke-width="0.7123">
|
||||
<path d="m353.79,376.47s3.357,2.445-0.712,5.496"/>
|
||||
<path d="m343.72,374.84,10.275,4.478"/>
|
||||
<path d="m345.44,377.18,7.526,3.254"/>
|
||||
<path d="m348.09,375.25,5.697,2.547"/>
|
||||
<path d="m395.09,376.47s-3.46,2.445,0.61,5.496"/>
|
||||
<path d="m405.06,374.84-10.276,4.478"/>
|
||||
<path d="m403.43,377.18-7.527,3.254"/>
|
||||
<path d="m400.69,375.25-5.596,2.547"/>
|
||||
</g>
|
||||
<g fill="#000" stroke="#000" stroke-width="0.7">
|
||||
<path d="m313.56,345.17c0.146,0.236,0.239,0.48301,0.285,0.736,0.039,0.25801,0.029,0.54701-0.03,0.865-0.145,0.756-0.55,1.322-1.206,1.712-0.66,0.38801-1.417,0.495-2.254,0.33501-0.389-0.072-0.771-0.20601-1.132-0.40201-0.362-0.18999-0.675-0.395-0.924-0.619-0.112,0.13201-0.23,0.259-0.348,0.392-0.163-0.03-0.326-0.062-0.488-0.093,0.157-0.985,0.312-1.971,0.475-2.954,0.161,0.03,0.327,0.062,0.495,0.096,0.031,0.382,0.093,0.728,0.174,1.048,0.076,0.32101,0.208,0.623,0.384,0.924,0.167,0.276,0.378,0.516,0.639,0.709,0.255,0.194,0.572,0.33,0.946,0.399,0.282,0.056,0.534,0.065,0.763,0.031,0.221-0.034,0.415-0.101,0.565-0.211,0.153-0.109,0.284-0.248,0.384-0.416,0.096-0.164,0.165-0.36,0.211-0.601,0.064-0.344,0.023-0.68-0.112-1.014-0.135-0.336-0.393-0.613-0.748-0.839-0.241-0.153-0.528-0.331-0.846-0.524-0.319-0.195-0.593-0.361-0.821-0.527-0.445-0.311-0.777-0.661-0.976-1.073-0.204-0.403-0.257-0.88799-0.148-1.457,0.062-0.325,0.188-0.612,0.377-0.871,0.188-0.26199,0.428-0.46899,0.719-0.646,0.277-0.172,0.588-0.27499,0.935-0.338,0.345-0.054,0.694-0.049,1.043,0.018,0.398,0.074,0.751,0.205,1.043,0.386,0.29,0.183,0.557,0.372,0.785,0.587,0.109-0.119,0.221-0.24,0.329-0.361,0.165,0.031,0.325,0.062,0.491,0.095-0.165,0.95-0.328,1.903-0.493,2.854-0.165-0.033-0.33-0.063-0.498-0.096-0.026-0.343-0.067-0.674-0.119-0.994-0.06-0.318-0.158-0.617-0.288-0.893-0.13-0.271-0.312-0.497-0.536-0.684-0.222-0.189-0.523-0.314-0.894-0.386-0.385-0.073-0.741-0.017-1.062,0.183-0.318,0.199-0.515,0.465-0.582,0.82-0.069,0.368-0.038,0.692,0.092,0.971,0.126,0.281,0.344,0.526,0.649,0.748,0.271,0.201,0.545,0.373,0.814,0.533,0.267,0.159,0.52,0.319,0.769,0.489,0.224,0.149,0.444,0.312,0.644,0.492,0.194,0.175,0.364,0.369,0.494,0.576"/>
|
||||
<path d="m326.04,346.92c-0.105-0.053-0.268-0.11199-0.484-0.182-0.217-0.07-0.406-0.10399-0.579-0.088-0.17,0.014-0.348,0.139-0.537,0.369-0.191,0.232-0.392,0.53699-0.596,0.91-0.611,1.107-1.224,2.215-1.834,3.324-0.234,0.422-0.526,0.74-0.878,0.955-0.351,0.21699-0.729,0.34-1.129,0.38099-0.396,0.041-0.772,0.008-1.14-0.078-0.368-0.098-0.695-0.22299-0.985-0.38299-0.463-0.256-0.849-0.541-1.146-0.863-0.297-0.328-0.52-0.656-0.647-0.998-0.131-0.342-0.186-0.678-0.161-1.012,0.021-0.332,0.113-0.639,0.271-0.924,0.831-1.508,1.663-3.015,2.494-4.521,0.067-0.125,0.103-0.246,0.113-0.354,0.002-0.102-0.045-0.229-0.129-0.371-0.066-0.102-0.156-0.207-0.28-0.317-0.129-0.104-0.229-0.188-0.32-0.246,0.069-0.127,0.141-0.256,0.21-0.382,1.078,0.595,2.151,1.188,3.228,1.779-0.069,0.127-0.142,0.257-0.211,0.382-0.105-0.054-0.24-0.103-0.409-0.161-0.171-0.062-0.302-0.098-0.388-0.109-0.147-0.023-0.271,0-0.365,0.082-0.1,0.079-0.181,0.172-0.245,0.291-0.777,1.408-1.556,2.816-2.332,4.225-0.112,0.205-0.208,0.433-0.281,0.68-0.083,0.249-0.107,0.51-0.081,0.777,0.029,0.279,0.139,0.539,0.313,0.799,0.176,0.26,0.478,0.508,0.902,0.742,0.396,0.22,0.771,0.345,1.111,0.371,0.337,0.021,0.642-0.021,0.912-0.14,0.252-0.112,0.475-0.256,0.649-0.435,0.178-0.178,0.327-0.375,0.445-0.588,0.578-1.049,1.153-2.092,1.73-3.137,0.221-0.4,0.374-0.742,0.453-1.029,0.083-0.286,0.086-0.491,0.019-0.637-0.072-0.162-0.213-0.328-0.401-0.496-0.195-0.172-0.349-0.299-0.462-0.367,0.07-0.127,0.142-0.256,0.211-0.381,1.056,0.582,2.111,1.164,3.169,1.748-0.069,0.13-0.139,0.257-0.21,0.384"/>
|
||||
<path d="m330.53,354.69c0.135,0.278,0.214,0.58299,0.219,0.90599,0.006,0.326-0.087,0.662-0.287,1.01-0.201,0.35-0.452,0.611-0.76,0.783-0.304,0.174-0.629,0.264-0.975,0.289-0.337,0.031-0.677-0.006-1.029-0.094-0.356-0.094-0.696-0.23-1.021-0.41601-1.211-0.697-2.423-1.396-3.631-2.092,0.073-0.12699,0.146-0.254,0.219-0.379,0.09,0.045,0.222,0.1,0.404,0.17001,0.181,0.073,0.314,0.11299,0.402,0.125,0.142,0.018,0.257-0.011,0.356-0.066,0.093-0.055,0.176-0.146,0.253-0.279,1.044-1.812,2.088-3.627,3.132-5.439,0.069-0.12301,0.11-0.239,0.125-0.354,0.009-0.11501-0.031-0.236-0.119-0.367-0.077-0.115-0.174-0.227-0.292-0.332-0.12-0.104-0.216-0.188-0.305-0.246,0.071-0.125,0.146-0.252,0.218-0.377,1.178,0.67799,2.358,1.357,3.54,2.039,0.274,0.15801,0.521,0.33401,0.743,0.53101,0.216,0.199,0.401,0.43,0.551,0.693,0.14,0.24799,0.223,0.52099,0.231,0.80999,0.009,0.29201-0.065,0.59501-0.241,0.899-0.152,0.264-0.339,0.471-0.556,0.621-0.215,0.15601-0.457,0.254-0.721,0.303-0.251,0.051-0.505,0.055-0.773,0.029-0.273-0.02-0.548-0.08-0.828-0.172-0.01,0.017-0.02,0.032-0.028,0.049,0.207,0.156,0.422,0.348,0.647,0.586,0.224,0.245,0.403,0.499,0.526,0.77zm-0.652-1.894c0.226-0.078,0.412-0.188,0.568-0.34001,0.152-0.15199,0.305-0.34899,0.45-0.601,0.237-0.41499,0.309-0.808,0.217-1.18-0.09-0.375-0.39-0.69901-0.886-0.985-0.114-0.064-0.261-0.14801-0.437-0.24401-0.181-0.099-0.329-0.178-0.442-0.236-0.562,0.973-1.119,1.941-1.679,2.912,0.227,0.131,0.451,0.26,0.681,0.392,0.298,0.172,0.571,0.28,0.824,0.327,0.256,0.044,0.489,0.035,0.704-0.045zm-0.637,2.847c0.257-0.445,0.312-0.898,0.179-1.363-0.136-0.467-0.491-0.857-1.061-1.186-0.23-0.13301-0.427-0.245-0.584-0.33001-0.16-0.086-0.281-0.148-0.363-0.19099-0.514,0.894-1.023,1.779-1.536,2.668-0.128,0.223-0.136,0.446-0.019,0.664,0.117,0.21899,0.34,0.422,0.671,0.611,0.533,0.309,1.035,0.39599,1.498,0.25,0.464-0.15201,0.866-0.51701,1.215-1.123z"/>
|
||||
<path d="m348.94,360.14c-0.111-0.041-0.275-0.086-0.499-0.13199-0.222-0.048-0.416-0.062-0.585-0.03-0.167,0.031-0.331,0.174-0.498,0.422-0.167,0.25-0.334,0.574-0.502,0.965-0.498,1.164-0.996,2.326-1.494,3.49-0.19,0.443-0.45,0.789-0.777,1.039-0.327,0.248-0.692,0.408-1.086,0.49-0.392,0.08-0.769,0.084-1.142,0.033-0.376-0.059-0.716-0.151-1.02-0.281-0.485-0.207-0.897-0.454-1.226-0.746-0.328-0.297-0.581-0.6-0.744-0.928-0.163-0.326-0.252-0.654-0.26-0.99-0.013-0.333,0.046-0.648,0.174-0.948,0.678-1.581,1.355-3.163,2.033-4.745,0.056-0.13,0.079-0.254,0.08-0.361-0.009-0.102-0.066-0.225-0.165-0.356-0.076-0.094-0.176-0.188-0.313-0.289-0.137-0.09-0.244-0.165-0.341-0.213,0.058-0.133,0.114-0.269,0.171-0.399,1.129,0.483,2.259,0.967,3.389,1.451-0.058,0.133-0.114,0.268-0.173,0.399-0.109-0.042-0.249-0.078-0.423-0.12-0.176-0.044-0.31-0.064-0.396-0.07-0.15-0.01-0.27,0.026-0.356,0.117-0.09,0.09-0.161,0.189-0.215,0.314-0.633,1.479-1.267,2.957-1.898,4.437-0.093,0.214-0.165,0.449-0.216,0.701-0.057,0.258-0.055,0.521-0.001,0.784,0.058,0.273,0.191,0.521,0.392,0.763,0.201,0.24,0.524,0.458,0.971,0.647,0.418,0.181,0.804,0.267,1.146,0.259,0.335-0.013,0.636-0.082,0.891-0.229,0.239-0.139,0.449-0.301,0.606-0.496,0.157-0.192,0.288-0.404,0.385-0.629,0.471-1.1,0.939-2.195,1.409-3.293,0.181-0.42,0.299-0.775,0.351-1.068,0.051-0.295,0.036-0.498-0.046-0.635-0.091-0.156-0.244-0.307-0.449-0.455-0.215-0.152-0.377-0.264-0.495-0.319,0.057-0.134,0.114-0.269,0.171-0.399,1.107,0.475,2.218,0.949,3.325,1.424-0.06,0.129-0.118,0.263-0.174,0.396"/>
|
||||
<path d="m358.51,371.38c-1.251-0.361-2.504-0.725-3.755-1.086,0.041-0.14101,0.082-0.28101,0.122-0.42001,0.139,0.033,0.315,0.07,0.537,0.109,0.217,0.034,0.376,0.045,0.469,0.028,0.146-0.045,0.262-0.099,0.349-0.18299,0.08-0.078,0.147-0.188,0.189-0.33601,0.588-2.033,1.176-4.065,1.765-6.102-0.033-0.01-0.062-0.018-0.092-0.025-1.642,2.113-3.323,4.195-4.968,6.31-0.098-0.028-0.195-0.058-0.298-0.086-0.2-2.699-0.453-5.396-0.653-8.093-0.024-0.008-0.053-0.017-0.077-0.022-0.482,1.668-0.966,3.336-1.447,5.008-0.141,0.482-0.215,0.854-0.225,1.132-0.015,0.27101,0.032,0.477,0.124,0.625,0.063,0.11,0.225,0.23701,0.479,0.395,0.253,0.156,0.422,0.244,0.504,0.273-0.04,0.139-0.081,0.278-0.122,0.42001-1.142-0.33001-2.286-0.66001-3.432-0.99,0.041-0.14301,0.082-0.283,0.122-0.42201,0.185,0.033,0.385,0.062,0.595,0.074,0.209,0.017,0.378-0.002,0.514-0.062,0.169-0.073,0.312-0.207,0.436-0.42599,0.116-0.21301,0.252-0.58601,0.406-1.121,0.413-1.43,0.827-2.863,1.24-4.293,0.072-0.24801,0.101-0.457,0.087-0.63301-0.014-0.18099-0.062-0.32399-0.146-0.461-0.096-0.145-0.226-0.26299-0.388-0.36699-0.165-0.10801-0.337-0.188-0.51-0.24401,0.04-0.139,0.081-0.279,0.121-0.418,0.966,0.279,1.929,0.557,2.894,0.836,0.19,2.336,0.432,4.669,0.62,7.007,1.188-1.563,2.41-3.103,3.6-4.667,0.133-0.173,0.261-0.35401,0.374-0.55501,0.112-0.19099,0.182-0.324,0.208-0.39699,0.923,0.26699,1.85,0.534,2.771,0.802-0.04,0.139-0.081,0.279-0.121,0.418-0.114-0.027-0.258-0.047-0.439-0.068s-0.322-0.029-0.409-0.023c-0.15,0.01-0.264,0.061-0.344,0.159-0.078,0.101-0.138,0.20799-0.175,0.33899-0.583,2.018-1.166,4.032-1.748,6.049-0.039,0.135-0.049,0.26-0.03,0.368,0.021,0.109,0.089,0.21601,0.203,0.328,0.062,0.062,0.179,0.133,0.354,0.218,0.176,0.09,0.312,0.147,0.42,0.186-0.042,0.134-0.083,0.275-0.124,0.416"/>
|
||||
<path d="m367.6,368.62c0.23,0.205,0.423,0.455,0.553,0.75201,0.129,0.29899,0.179,0.64499,0.128,1.041-0.05,0.4-0.187,0.73801-0.397,1.018-0.216,0.275-0.479,0.484-0.786,0.645-0.302,0.158-0.632,0.256-0.988,0.312-0.364,0.051-0.729,0.057-1.102,0.01-1.386-0.174-2.771-0.349-4.156-0.522,0.018-0.146,0.035-0.291,0.054-0.435,0.101,0.007,0.243,0.007,0.439,0,0.193-0.002,0.336-0.017,0.422-0.041,0.136-0.039,0.233-0.106,0.301-0.198,0.063-0.086,0.107-0.201,0.127-0.355,0.262-2.075,0.521-4.15,0.783-6.227,0.019-0.14199,0.005-0.26699-0.021-0.375-0.037-0.10899-0.12-0.20499-0.252-0.293-0.118-0.076-0.248-0.14199-0.396-0.19099-0.153-0.051-0.272-0.092-0.376-0.10901,0.018-0.14499,0.035-0.289,0.054-0.43399,1.35,0.16999,2.701,0.341,4.054,0.51099,0.312,0.04,0.606,0.106,0.893,0.20401,0.275,0.1,0.533,0.23799,0.772,0.42599,0.223,0.173,0.409,0.39301,0.529,0.65601,0.121,0.266,0.164,0.572,0.12,0.922-0.038,0.303-0.129,0.56599-0.267,0.788-0.141,0.228-0.324,0.411-0.548,0.56-0.211,0.143-0.448,0.244-0.701,0.326-0.263,0.088-0.538,0.137-0.83,0.162-0.003,0.018-0.006,0.037-0.009,0.055,0.25,0.064,0.521,0.157,0.823,0.289,0.296,0.136,0.56,0.302,0.777,0.503zm-1.334-1.494c0.177-0.158,0.31-0.334,0.396-0.533,0.081-0.198,0.144-0.438,0.18-0.729,0.061-0.475-0.025-0.861-0.256-1.172-0.229-0.311-0.627-0.492-1.198-0.564-0.128-0.016-0.298-0.037-0.493-0.058-0.207-0.021-0.372-0.036-0.507-0.048-0.14,1.113-0.278,2.225-0.419,3.336,0.262,0.032,0.521,0.064,0.78,0.098,0.339,0.043,0.637,0.037,0.891-0.018,0.248-0.056,0.457-0.158,0.626-0.312zm0.514,2.873c0.063-0.513-0.06-0.951-0.36-1.328-0.308-0.377-0.786-0.6-1.437-0.682-0.267-0.033-0.487-0.061-0.668-0.078-0.183-0.019-0.317-0.029-0.412-0.037-0.129,1.021-0.256,2.037-0.384,3.056-0.032,0.254,0.05,0.46399,0.241,0.62,0.192,0.15599,0.479,0.25699,0.855,0.30399,0.613,0.078,1.106-0.035,1.476-0.351,0.372-0.321,0.602-0.814,0.689-1.504z"/>
|
||||
<path d="m378.69,372.75h-2.387c-0.519-0.82499-1.005-1.518-1.423-2.119-0.427-0.598-0.896-1.199-1.392-1.838h-0.905v2.769c0,0.142,0.026,0.271,0.068,0.374,0.045,0.111,0.145,0.195,0.295,0.25401,0.073,0.029,0.205,0.053,0.392,0.08,0.188,0.023,0.346,0.037,0.475,0.043v0.438h-3.74v-0.438c0.098-0.006,0.242-0.023,0.437-0.043,0.188-0.021,0.318-0.051,0.393-0.08,0.124-0.057,0.219-0.12901,0.272-0.23401,0.06-0.10399,0.082-0.23199,0.082-0.394v-6.313c0-0.139-0.019-0.27-0.061-0.38299-0.045-0.10801-0.14-0.19401-0.295-0.25-0.104-0.037-0.236-0.076-0.405-0.104-0.168-0.028-0.305-0.052-0.423-0.056v-0.437h4.085c0.373,0,0.723,0.034,1.055,0.11,0.329,0.082,0.623,0.199,0.89,0.371,0.255,0.166,0.466,0.371,0.617,0.639,0.152,0.264,0.231,0.584,0.231,0.959,0,0.34-0.053,0.633-0.155,0.893-0.104,0.26-0.26,0.47899-0.463,0.67-0.184,0.183-0.413,0.324-0.673,0.457-0.261,0.129-0.55,0.238-0.865,0.332,0.43,0.574,0.803,1.047,1.091,1.438,0.282,0.39,0.647,0.85801,1.059,1.421,0.182,0.249,0.353,0.42599,0.5,0.54199,0.145,0.121,0.295,0.21401,0.437,0.29101,0.105,0.058,0.244,0.093,0.405,0.12099,0.163,0.03,0.3,0.045,0.405,0.051-0.002,0.143-0.002,0.289-0.002,0.436zm-3.28-6.506c0-0.528-0.16-0.942-0.46-1.26-0.303-0.311-0.742-0.463-1.303-0.463h-1.062v3.742h0.818c0.573,0,1.058-0.173,1.434-0.542,0.375-0.36799,0.573-0.85399,0.573-1.477z"/>
|
||||
<path d="m388.88,372.1c-1.223,0.094-2.443,0.18599-3.669,0.279-0.012-0.14601-0.022-0.293-0.033-0.438,0.323-0.043,0.588-0.104,0.802-0.18401,0.205-0.08,0.307-0.15999,0.3-0.251-0.003-0.037-0.015-0.079-0.023-0.13499-0.013-0.057-0.024-0.096-0.048-0.13901-0.288-0.63299-0.592-1.261-0.882-1.895-1.034,0.078-2.063,0.156-3.098,0.234-0.095,0.297-0.172,0.549-0.223,0.771-0.057,0.22199-0.111,0.421-0.153,0.604-0.041,0.182-0.07,0.323-0.08,0.438-0.01,0.11299-0.018,0.203-0.011,0.271,0.012,0.16399,0.151,0.276,0.42,0.35099,0.269,0.073,0.565,0.099,0.897,0.093,0.011,0.145,0.022,0.29,0.033,0.438-1.106,0.084-2.216,0.168-3.323,0.252-0.011-0.146-0.021-0.293-0.033-0.438,0.107-0.014,0.239-0.047,0.398-0.102,0.159-0.053,0.287-0.111,0.387-0.187,0.159-0.125,0.276-0.248,0.359-0.381,0.085-0.124,0.159-0.293,0.229-0.517,0.351-1.127,0.767-2.387,1.188-3.793,0.421-1.403,0.824-2.651,1.153-3.746,0.165-0.012,0.33-0.024,0.498-0.036,1.152,2.437,2.354,4.848,3.511,7.282,0.073,0.156,0.156,0.277,0.24,0.373,0.089,0.094,0.202,0.181,0.352,0.261,0.099,0.052,0.226,0.09,0.384,0.114,0.158,0.031,0.285,0.041,0.392,0.037,0.012,0.151,0.023,0.298,0.033,0.444zm-3.818-3.292c-0.523-1.091-1.07-2.175-1.596-3.271-0.344,1.162-0.715,2.314-1.062,3.473,0.887-0.068,1.77-0.134,2.658-0.202z"/>
|
||||
<path d="m401.43,361.92c-0.147,0.039-0.301,0.08-0.446,0.121-0.172-0.293-0.439-0.573-0.801-0.862-0.361-0.285-0.674-0.41-0.928-0.382-0.131,0.021-0.281,0.045-0.45,0.084-0.175,0.043-0.368,0.09-0.588,0.148-0.478,0.12901-0.953,0.26-1.432,0.389,0.307,1.129,0.612,2.259,0.918,3.384,0.324-0.089,0.654-0.179,0.979-0.26701,0.295-0.08,0.525-0.17,0.671-0.28099,0.141-0.10401,0.263-0.23701,0.341-0.39301,0.056-0.11299,0.096-0.27,0.111-0.47299,0.017-0.198,0.01-0.40601-0.027-0.62301,0.152-0.042,0.305-0.083,0.451-0.12299,0.301,1.109,0.601,2.213,0.898,3.316-0.146,0.039-0.299,0.08-0.45,0.12301-0.058-0.16801-0.157-0.35701-0.283-0.56201-0.136-0.2-0.256-0.34-0.363-0.416-0.157-0.118-0.338-0.18-0.529-0.185-0.202-0.006-0.428,0.033-0.687,0.104-0.325,0.089-0.655,0.179-0.979,0.267,0.264,0.969,0.524,1.934,0.787,2.902,0.035,0.129,0.094,0.241,0.178,0.329,0.077,0.089,0.189,0.142,0.341,0.173,0.068,0.016,0.21,0.01,0.418-0.009,0.209-0.012,0.37-0.039,0.474-0.062,0.037,0.14,0.077,0.283,0.114,0.423-1.233,0.334-2.467,0.67-3.701,1.004-0.037-0.14-0.077-0.283-0.114-0.423,0.12-0.038,0.278-0.098,0.472-0.172,0.191-0.075,0.319-0.127,0.373-0.174,0.106-0.084,0.178-0.188,0.201-0.299,0.023-0.117,0.021-0.244-0.018-0.389-0.55-2.025-1.1-4.053-1.649-6.08-0.034-0.129-0.098-0.238-0.16-0.333-0.072-0.085-0.189-0.138-0.346-0.167-0.121-0.021-0.278-0.023-0.468-0.018-0.201,0.006-0.354,0.024-0.462,0.049-0.037-0.141-0.076-0.283-0.114-0.42399,2.233-0.60501,4.469-1.211,6.696-1.815,0.189,0.706,0.382,1.413,0.572,2.116"/>
|
||||
<path d="m411.29,361.17c0.324,0.80601,0.641,1.615,0.964,2.42-2.08,1.005-4.154,2.006-6.229,3.008-0.063-0.13099-0.128-0.26599-0.191-0.39499,0.088-0.049,0.209-0.125,0.375-0.229,0.156-0.099,0.265-0.181,0.315-0.241,0.091-0.104,0.144-0.212,0.148-0.333,0.004-0.114-0.027-0.241-0.099-0.386-0.906-1.877-1.812-3.754-2.719-5.631-0.062-0.129-0.138-0.225-0.223-0.303-0.089-0.074-0.212-0.11-0.372-0.104-0.104-0.01-0.247,0.006-0.425,0.039-0.178,0.031-0.316,0.068-0.419,0.111-0.062-0.12901-0.128-0.265-0.189-0.395,1.123-0.542,2.24-1.082,3.362-1.624,0.063,0.12999,0.128,0.26499,0.19,0.396-0.106,0.057-0.231,0.137-0.377,0.248-0.154,0.115-0.264,0.20299-0.32,0.268-0.112,0.107-0.16,0.225-0.15,0.352-0.001,0.13099,0.034,0.25599,0.094,0.37699,0.851,1.76,1.7,3.521,2.551,5.283,0.116,0.24,0.217,0.424,0.31,0.54501,0.093,0.127,0.199,0.207,0.324,0.23399,0.113,0.029,0.263,0.01,0.444-0.061,0.182-0.059,0.424-0.162,0.73-0.312,0.139-0.065,0.277-0.14201,0.428-0.21901,0.148-0.077,0.281-0.16599,0.404-0.24799,0.121-0.089,0.224-0.181,0.318-0.272,0.09-0.092,0.149-0.174,0.172-0.262,0.067-0.246,0.132-0.585,0.166-1.035,0.031-0.44099,0.046-0.78699,0.019-1.041,0.134-0.061,0.267-0.126,0.399-0.19001"/>
|
||||
<path d="m415.95,352.52c0.537,0.154,1.054,0.40801,1.527,0.78501,0.479,0.38799,0.896,0.867,1.247,1.461,0.354,0.598,0.571,1.195,0.67,1.795,0.098,0.6,0.062,1.173-0.07,1.723-0.129,0.537-0.369,1.021-0.697,1.469-0.328,0.447-0.742,0.812-1.245,1.107-0.529,0.312-1.073,0.51-1.642,0.572s-1.112,0.029-1.639-0.137c-0.526-0.155-1.026-0.412-1.498-0.799-0.473-0.386-0.874-0.849-1.203-1.404-0.361-0.612-0.582-1.215-0.678-1.811-0.093-0.591-0.062-1.16,0.062-1.714,0.132-0.543,0.378-1.034,0.711-1.485,0.332-0.451,0.742-0.812,1.231-1.101,0.508-0.301,1.042-0.491,1.593-0.562,0.561-0.075,1.103-0.047,1.631,0.101zm2.347,5.807c0.003-0.44201-0.051-0.895-0.206-1.354-0.148-0.459-0.37-0.937-0.666-1.438-0.306-0.516-0.635-0.959-0.989-1.334-0.354-0.369-0.729-0.643-1.104-0.832-0.374-0.188-0.764-0.269-1.158-0.265-0.391,0.001-0.787,0.124-1.169,0.349-0.426,0.252-0.737,0.562-0.918,0.939-0.182,0.375-0.282,0.781-0.277,1.213,0.008,0.418,0.084,0.857,0.245,1.326,0.16,0.471,0.374,0.934,0.646,1.395,0.299,0.506,0.621,0.937,0.949,1.295,0.332,0.355,0.701,0.629,1.083,0.832,0.382,0.201,0.763,0.287,1.163,0.293,0.396,0,0.801-0.113,1.209-0.354,0.38-0.225,0.679-0.525,0.879-0.88,0.198-0.36,0.31-0.757,0.313-1.185z"/>
|
||||
<path d="m429.27,352.37c-0.647,0.45899-1.301,0.922-1.948,1.381-0.896-0.37301-1.697-0.65601-2.383-0.904-0.696-0.246-1.43-0.46001-2.195-0.69501-0.249,0.17601-0.494,0.35-0.743,0.525,0.532,0.749,1.066,1.504,1.602,2.259,0.081,0.11301,0.181,0.19901,0.271,0.265,0.104,0.064,0.231,0.071,0.386,0.035,0.079-0.017,0.198-0.074,0.368-0.16201,0.17-0.088,0.301-0.168,0.411-0.24,0.083,0.11901,0.17,0.24,0.253,0.35701-1.017,0.723-2.034,1.442-3.051,2.163-0.084-0.116-0.17-0.239-0.254-0.356,0.079-0.062,0.186-0.157,0.332-0.287,0.138-0.125,0.229-0.223,0.274-0.295,0.067-0.112,0.103-0.229,0.083-0.346-0.012-0.117-0.063-0.236-0.156-0.367-1.219-1.717-2.437-3.437-3.652-5.152-0.081-0.113-0.172-0.206-0.271-0.273-0.099-0.066-0.226-0.082-0.381-0.037-0.111,0.033-0.24,0.078-0.393,0.146-0.16,0.074-0.281,0.141-0.378,0.203-0.084-0.11701-0.17-0.24-0.254-0.35701,1.11-0.78699,2.219-1.572,3.33-2.361,0.305-0.21499,0.613-0.389,0.924-0.51699,0.315-0.126,0.629-0.20401,0.941-0.216,0.308-0.016,0.596,0.037,0.87,0.16199,0.283,0.12701,0.529,0.346,0.745,0.65,0.198,0.278,0.329,0.547,0.389,0.81901,0.068,0.27099,0.071,0.538,0.016,0.81299-0.045,0.25401-0.149,0.498-0.287,0.76-0.14,0.257-0.307,0.513-0.516,0.771,0.686,0.221,1.262,0.389,1.724,0.54101,0.453,0.15599,1.025,0.326,1.685,0.547,0.291,0.10299,0.535,0.14599,0.724,0.15599,0.185,0.014,0.364,0.004,0.522-0.018,0.12-0.014,0.25-0.066,0.401-0.135,0.151-0.067,0.271-0.139,0.358-0.19401,0.083,0.11901,0.17,0.24001,0.253,0.35901zm-6.435-3.41c-0.306-0.432-0.68-0.678-1.105-0.76199-0.43-0.076-0.874,0.049-1.333,0.375-0.288,0.20299-0.575,0.40699-0.867,0.61399,0.723,1.021,1.442,2.035,2.166,3.056,0.224-0.158,0.446-0.315,0.67-0.475,0.468-0.331,0.761-0.755,0.852-1.271,0.094-0.52-0.024-1.032-0.383-1.537z"/>
|
||||
<path d="m436.56,346.87c0.243,0.822,0.487,1.648,0.735,2.469-2.299,0.85299-4.593,1.703-6.891,2.556-0.051-0.135-0.103-0.274-0.152-0.41,0.116-0.049,0.27-0.122,0.449-0.224,0.185-0.098,0.305-0.164,0.354-0.217,0.101-0.105,0.162-0.21499,0.178-0.321,0.015-0.113-0.002-0.233-0.057-0.379-0.729-1.964-1.454-3.923-2.184-5.888-0.047-0.125-0.114-0.23-0.189-0.315-0.08-0.079-0.201-0.119-0.359-0.136-0.122-0.012-0.279,0-0.467,0.025-0.199,0.021-0.345,0.053-0.455,0.088-0.051-0.135-0.104-0.274-0.152-0.41,2.142-0.795,4.281-1.588,6.422-2.383,0.243,0.656,0.488,1.318,0.731,1.975-0.147,0.056-0.296,0.109-0.438,0.164-0.184-0.27-0.475-0.51-0.849-0.745-0.387-0.239-0.698-0.322-0.945-0.267-0.124,0.029-0.272,0.067-0.441,0.125-0.175,0.06-0.364,0.123-0.581,0.203-0.435,0.161-0.868,0.322-1.302,0.483,0.4,1.082,0.805,2.169,1.205,3.251,0.312-0.115,0.621-0.23,0.938-0.348,0.296-0.109,0.509-0.217,0.63-0.33,0.112-0.104,0.204-0.234,0.258-0.408,0.048-0.145,0.062-0.319,0.056-0.533-0.011-0.208-0.033-0.393-0.077-0.57,0.144-0.053,0.291-0.106,0.438-0.162,0.397,1.071,0.793,2.14,1.19,3.211-0.147,0.056-0.296,0.109-0.438,0.162-0.089-0.178-0.202-0.363-0.343-0.545-0.144-0.175-0.269-0.3-0.383-0.365-0.179-0.104-0.347-0.149-0.518-0.139-0.177,0.008-0.386,0.062-0.638,0.156-0.314,0.117-0.627,0.232-0.938,0.348,0.305,0.822,0.606,1.639,0.912,2.461,0.092,0.244,0.182,0.428,0.271,0.562,0.088,0.133,0.194,0.207,0.321,0.245,0.126,0.039,0.286,0.029,0.466-0.014,0.184-0.051,0.439-0.129,0.761-0.248,0.129-0.049,0.296-0.109,0.509-0.188,0.212-0.078,0.389-0.147,0.523-0.224,0.14-0.073,0.289-0.157,0.432-0.256,0.142-0.104,0.236-0.195,0.271-0.289,0.112-0.252,0.201-0.604,0.255-1.051s0.086-0.768,0.07-0.961c0.141-0.054,0.278-0.105,0.422-0.158"/>
|
||||
<path d="m443.96,340.81c0.438,0.35299,0.814,0.78699,1.099,1.321,0.289,0.543,0.484,1.147,0.574,1.832,0.092,0.688,0.06,1.324-0.087,1.914-0.145,0.58999-0.399,1.104-0.737,1.559-0.324,0.44101-0.739,0.793-1.217,1.076-0.479,0.28301-1.001,0.45501-1.575,0.53101-0.615,0.082-1.192,0.049-1.734-0.11701-0.547-0.164-1.04-0.40599-1.459-0.76599-0.418-0.351-0.782-0.78101-1.061-1.32-0.289-0.539-0.479-1.123-0.562-1.764-0.093-0.70499-0.061-1.347,0.085-1.932,0.146-0.57999,0.402-1.094,0.734-1.553,0.334-0.448,0.749-0.80499,1.23-1.09,0.482-0.28501,1.007-0.45501,1.569-0.53,0.579-0.076,1.146-0.043,1.686,0.106,0.54,0.15199,1.028,0.391,1.455,0.733zm-0.113,6.262c0.18-0.405,0.303-0.843,0.345-1.327,0.038-0.47899,0.021-1.006-0.056-1.584-0.078-0.59401-0.208-1.131-0.389-1.613-0.18-0.47899-0.413-0.879-0.683-1.198-0.276-0.31899-0.599-0.548-0.963-0.697-0.364-0.15099-0.773-0.19399-1.212-0.13699-0.495,0.065-0.903,0.22799-1.218,0.50599-0.313,0.272-0.566,0.606-0.731,1.008-0.15,0.386-0.258,0.82-0.288,1.313-0.041,0.496-0.026,1.007,0.043,1.537,0.077,0.582,0.204,1.104,0.371,1.562,0.161,0.458,0.398,0.853,0.672,1.188,0.267,0.338,0.583,0.563,0.95,0.727,0.365,0.156,0.786,0.209,1.255,0.146,0.438-0.058,0.826-0.217,1.148-0.463,0.324-0.254,0.584-0.574,0.756-0.968z"/>
|
||||
</g>
|
||||
</g>
|
||||
<path d="m422.97,213.66v55.25c0,10.988-1.525,54.744-48.53,71.738-47.104-16.994-48.63-60.746-48.63-71.738v-55.25h97.16" stroke="#000" stroke-width="1.01740003" fill="none"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 88 KiB |
1
build/default/data/svg/CA.svg
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" width="1000" height="500"><rect width="1000" height="500" fill="#f00"/><rect width="500" height="500" fill="#fff" x="250"/><path fill="#ff0000" d="m 499.99228,46.875 -34.11312,63.62529 c -3.87086,6.91501 -10.80627,6.27363 -17.74169,2.41138 l -24.69699,-12.78858 18.40705,97.72711 c 3.87086,17.85419 -8.54859,17.85419 -14.67765,10.13435 l -43.10105,-48.25099 -6.99738,24.503 c -0.80692,3.21777 -4.35481,6.59744 -9.67748,5.79261 l -54.50177,-11.45912 14.31524,52.04475 c 3.06451,11.58054 5.4549,16.37528 -3.09375,19.42959 l -19.42619,9.13025 93.82127,76.20838 c 3.7135,2.88151 5.58971,8.067 4.26768,12.7621 l -8.21136,26.94707 c 32.30405,-3.72371 61.24898,-9.32594 93.56939,-12.77619 2.85323,-0.30459 7.62988,4.40408 7.61029,7.71058 l -4.28024,98.72342 15.70639,0 -2.47237,-98.5117 c -0.0197,-3.3065 4.31372,-8.22689 7.16695,-7.9223 32.32041,3.45026 61.26538,9.05248 93.56942,12.77619 l -8.21134,-26.94707 c -1.32203,-4.6951 0.55417,-9.88059 4.26767,-12.7621 l 93.82125,-76.20838 -19.42617,-9.13025 c -8.54867,-3.05431 -6.15828,-7.84905 -3.09377,-19.42959 l 14.31527,-52.04475 -54.5018,11.45912 c -5.32267,0.80483 -8.87056,-2.57484 -9.6775,-5.79261 l -6.99737,-24.503 -43.10103,48.25099 c -6.12908,7.71984 -18.54854,7.71984 -14.67768,-10.13435 l 18.40702,-97.72711 -24.69694,12.78858 c -6.93559,3.86225 -13.87083,4.50363 -17.7417,-2.41138"/></svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
20
build/default/data/svg/CC.svg
Normal file
@@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="600" height="300" viewBox="0 0 10080 5040">
|
||||
<defs>
|
||||
<path id="Star7" d="M0,-360 69.421398,-144.155019 281.459334,-224.456329 155.988466,-35.603349 350.974048,80.107536 125.093037,99.758368 156.198146,324.348792 0,160 -156.198146,324.348792 -125.093037,99.758368 -350.974048,80.107536 -155.988466,-35.603349 -281.459334,-224.456329 -69.421398,-144.155019z"/>
|
||||
<path id="Star5" d="M0,-210 54.859957,-75.508253 199.721868,-64.893569 88.765275,28.841586 123.434903,169.893569 0,93.333333 -123.434903,169.893569 -88.765275,28.841586 -199.721868,-64.893569 -54.859957,-75.508253z"/>
|
||||
</defs>
|
||||
<rect width="10080" height="5040" fill="#008000"/>
|
||||
<circle cx="5040" cy="2520" r="1050" fill="#ffe000"/>
|
||||
<circle cx="5367.4" cy="2520" r="864" fill="#008000"/>
|
||||
<circle cx="1730" cy="1470" r="1100" fill="#ffe000"/>
|
||||
<path fill="#802000" stroke="#7b3100" stroke-width="23.333" d="m1654.1,2299.4,274.67,0s12.398-25.178-2.7658-37.767-74.229-15.36-58.271-59.892c32.807-91.555,37.385-63.326,57.985-280.77s30.518-558.49,30.518-558.49h-39.674s7.6296,106.05-15.259,244.15-29.755,150.3-54.933,256.35-28.992,115.21-51.881,177.01-25.178,64.852-61.037,122.07c-35.859,57.222-22.889,35.859-42.726,70.192-9.9186,17.166-22.126,12.589-28.802,25.082-6.6759,12.494-7.8204,42.058-7.8204,42.058z"/>
|
||||
<path fill="#008000" d="m1863.7,668.6c2.2817,42.661-2.0069,99.138-19.688,145.1-17.928,51.216-37.423,102.27-36.458,155.31-28.502,9.6945-57.877-61.678-85.312-19.688,20.624,58.016,68.239,103.95,100.86,156.22,5.5021,16.205,52.438,58.518,25.281,68.358-68.547-23.46-85.162-110.31-127.68-163.05-49.38-88.757-141.44-151.49-244-155.82-38.524,1.0094-163.78-9.548-131.19,56.419,47.997,32.632,107.14,53.91,154.53,90.537,35.31,3.3032,99.31,62.248,95.579,84.52-62.102-25.153-91.169-55.299-158.08-81.758-90.658-35.014-216.06-13.954-266.25,76.021-9.3572,23.433-23.172,91.731,6.2547,98.238,34.384-53.685,83.569-113.7,156.45-97.6,57.244,4.4692-63.877,106.64-17.544,86.084,14.681-6.5147,48.583-28.769,72.102-31.093,23.518-2.324,36.653,15.282,54.497,17.718,35.688,4.8718,45.515,19.833,42.207,28.537-3.9027,10.269-15.241,1.5013-51.52,13.004-18.14,5.7513-27.615,21.692-48.774,28.989-21.158,7.2976-65.173,7.8148-81.621,1.3436-57.547-24.996-151.89-20.645-169.83,51.468-0.016,31.711-28.236-3.5038-41.278,10.196-9.7795,34.603-12.309,70.132-63.633,66.99-31.155,32.684-63.06,66.527-102.62,89.781,23.215,53.284,115.2-53.516,110.9-8.4838-40.21,54.832,20.689,66.37,47.348,24.166,45.088-47.64,100.93-105.63,168.21-57.618,32.044,30.169,50.664-15.951,73.857-13.481,14.612,37.475,32.998,1.8444,49.583-8.75,27.15-3.3824,19.511,33.91,51.771,10.938,64.293-42.551,143.39-6.796,206.2-48.197,66.852-30.458,9.3858,24.532-9.0659,46.028-29.373,56.97-3.8997,131.76-67.613,167.14-25.593,67.895,30.237,157.4-26.707,207.63-8.2836,31.496,73.234,27.889,96.113,40.832,40.09,1.5876-1.7229-91.758,38.054-104.27,53.344,33.019,50.846-59.049,39.831-87.447,5.1712-64.552,8.8142-135.13,40.892-193.6,34.102-71.662,65.666,29.186,27.491,57.558-21.685,65.896-53.25,148.36-3.9423,209.64,14.211,3.1803,25.879,37.625,44.279,48.212s43.531-2.6843,48.118-34.022c23.601-94.369,11.712-195.85,45.415-287.63,23.788-28.43,56.603-4.584,71.355,21.559,47.23,54.833,80.43,123.38,137.61,168.56,52.063,24.362,98.106,61.211,122.1,114.81-0.3209,41.353,117.45,47.692,82.258,1.7272-33.768-44.747-11.488-89.504,22.715-119.26,18.318,4.5181,12.904-28.289-1.4583-15.312-22.995-5.4244-24.466-47.512,7.4967-27.507,53.836,17.379-4.197-38.962-23.655-40.69-45.52-28.215-97.819-60.676-120.2-109.72,59.256,0.6043,120.77,32.564,181.32,12.74,48.538-24.937,97.769,2.0801,114.72,44.864,37.52-5.9873,21.524-43.614,0-56.146,27.443-11.325,46.422-34.805,13.147-55.515-17.574-22.934,23.566-62.052-27.001-60.422,1.6515-38.627-13.556-73.973-55.66-87.318-42.178-35.717-165.95,52.62-162.36-27.89-12.471-43.818,50.278-5.8539,67.812-27.708,18.118-46.194-86.337-41.686-51.87-77.5,22.511-14.494,128.15-35.314,45.306-50.82-41.347,11.364-76.832,2.9489-109.37-17.513-29.657,49.603-114.34-26.938-99.252,61.251-11.585,33.23-87.278,119.57-107.76,53.423,17.422-51.845,107.1-68.797,79.291-138.7-4.2682-43.636-40.446,7.5887-57.49,4.335-8.6308-27.162,26.103-59.178,50.312-65.625,48.038,36.948,49.493-46.614,95.178-39.816,33.355-7.4109-10.771-21.718-20.074-27.996,9.1407-24.416,60.346-36.892,10.136-58.094-44.302-32.872-77.138,32.72-113.68,36.218-35.072-39.595,31.842-58.628,50.312-79.479,0.9929-15.543-39.017-4.6894-26.979-18.229,10.456-18.69,81.301-20.081,48.125-48.125-49.965-17.153-114.44-12.876-162.38,9.3461-30.203,9.7774-39.089,78.069-65.122,75.237-12.24-30.398,3.9853-90.372-37.917-99.167zm236.25,667.19c38.072-6.447,0.8081,57.818-17.5,56.875,1.6178-23.092-55.065-20.869-19.897-40.988,11.405-7.3645,24.112-12.982,37.397-15.887z"/>
|
||||
<g fill="#ffe000">
|
||||
<use xlink:href="#Star7" x="7560" y="4200"/>
|
||||
<use xlink:href="#Star7" x="6300" y="2205"/>
|
||||
<use xlink:href="#Star7" x="7560" y="840"/>
|
||||
<use xlink:href="#Star7" x="8680" y="1869"/>
|
||||
<use xlink:href="#Star5" x="8064" y="2730"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.9 KiB |
7
build/default/data/svg/CD.svg
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="800" height="600">
|
||||
<rect width="800" height="600" x="0" y ="0" style="fill:#007fff" />
|
||||
<path d="m 36,120 84,0 26,-84 26,84 84,0 -68,52 26,84 -68,-52 -68,52 26,-84 -68,-52 z M 750,0 0,450 0,600 0,600 50,600 800,150 800,0 750,0" style="fill:#f7d618" />
|
||||
<path d="M 800,0 0,480 0,600 0,600 0,600 800,120 800,0" style="fill:#ce1021" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 537 B |
8
build/default/data/svg/CF.svg
Normal file
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="450" height="300" viewBox="0 0 1200 800"><title>Flag of the Central African Republic</title>
|
||||
<rect height="200" width="1200" y="0" x="0" fill="#003082"/>
|
||||
<rect height="200" width="1200" y="200" x="0" fill="#FFF"/>
|
||||
<rect height="200" width="1200" y="400" x="0" fill="#289728"/>
|
||||
<rect height="200" width="1200" y="600" x="0" fill="#FFCE00"/>
|
||||
<rect height="800" width="200" y="0" x="500" fill="#D21034"/>
|
||||
<polygon fill="#FFCE00" points="0,-1,0.22451,-0.30902,0.95106,-0.30902,0.36327,0.11803,0.58779,0.80902,0,0.38197,-0.58779,0.80902,-0.36327,0.11803,-0.95106,-0.30902,-0.22451,-0.30902" transform="translate(200,108.59425) scale(90)"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 689 B |
10
build/default/data/svg/CG.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg xmlns="http://www.w3.org/2000/svg"
|
||||
width="600"
|
||||
height="400"
|
||||
viewBox="0 0 3 2">
|
||||
<rect id="green_area" width="3" height="2" fill="#009543"/>
|
||||
<path id="yellow_area" d="M 0 2 L 2 0 h 1 v 2 z" fill="#FBDE4A"/>
|
||||
<path id="red_area" d="M 3 0 v 2 h -2 z" fill="#DC241F"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 416 B |
1
build/default/data/svg/CH.svg
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" width="1000" height="1000" viewBox="0 0 32 32"><rect fill="#f00" height="32" width="32"/><rect fill="#fff" height="6" width="20" x="6" y="13"/><rect fill="#fff" height="20" width="6" x="13" y="6"/></svg>
|
||||
|
After Width: | Height: | Size: 282 B |
7
build/default/data/svg/CI.svg
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="450" height="300" id="Flag_of_Cote_dIvoire">
|
||||
<rect width="450" height="300" fill="#ffffff"/>
|
||||
<rect width="150" height="300" fill="#f77f00"/>
|
||||
<rect width="150" height="300" x="300" fill="#009e60"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 422 B |
34
build/default/data/svg/CK.svg
Normal file
@@ -0,0 +1,34 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="600" height="300">
|
||||
<clipPath id="cp">
|
||||
<path d="M0,0V75H350V150H300zM300,0H150V200H0V150z"/>
|
||||
</clipPath>
|
||||
<rect width="600" height="300" fill="#00247d"/>
|
||||
<path d="M0,0L300,150M300,0L0,150" stroke="#fff" stroke-width="30"/>
|
||||
<path d="M0,0L300,150M300,0L0,150" stroke="#cf142b" stroke-width="20" clip-path="url(#cp)"/>
|
||||
<path d="M150,0V200M0,75H350" stroke="#fff" stroke-width="50"/>
|
||||
<path d="M150,0V200M0,75H350" stroke="#cf142b" stroke-width="30"/>
|
||||
<path d="M300,0V150H0V300H600V0z" fill="#00247d"/>
|
||||
<g transform="translate(450,150)">
|
||||
<g id="s1" transform="translate(0,-102)" fill="#fff">
|
||||
<g id="c">
|
||||
<path id="t" d="M0,-22.5V0H12" transform="rotate(18,0,-22.5)"/>
|
||||
<use xlink:href="#t" transform="scale(-1,1)"/>
|
||||
</g>
|
||||
<use xlink:href="#c" transform="rotate(72)"/>
|
||||
<use xlink:href="#c" transform="rotate(144)"/>
|
||||
<use xlink:href="#c" transform="rotate(216)"/>
|
||||
<use xlink:href="#c" transform="rotate(288)"/>
|
||||
</g>
|
||||
<g id="s7">
|
||||
<use xlink:href="#s1" transform="rotate(24)"/>
|
||||
<use xlink:href="#s1" transform="rotate(48)"/>
|
||||
<use xlink:href="#s1" transform="rotate(72)"/>
|
||||
<use xlink:href="#s1" transform="rotate(96)"/>
|
||||
<use xlink:href="#s1" transform="rotate(120)"/>
|
||||
<use xlink:href="#s1" transform="rotate(144)"/>
|
||||
<use xlink:href="#s1" transform="rotate(168)"/>
|
||||
</g>
|
||||
<use xlink:href="#s7" transform="rotate(168)"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
19
build/default/data/svg/CL.svg
Normal file
@@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1500" height="1000" viewBox="-4 -4 24 16">
|
||||
|
||||
<path d="M20,12H-4V-4H20z" fill="#d52b1e"/>
|
||||
<path d="M4,4H20V-4H-4z" fill="#fff"/>
|
||||
<path d="M4,4H-4V-4H4z" fill="#0039a6"/>
|
||||
|
||||
<g id="f">
|
||||
<g id="t">
|
||||
<path d="M0,-2V0H1z" fill="#fff" transform="rotate(18,0,-2)" id="o"/>
|
||||
<use xlink:href="#o" transform="scale(-1,1)"/>
|
||||
</g>
|
||||
<use xlink:href="#t" transform="rotate(72)"/>
|
||||
</g>
|
||||
<use xlink:href="#t" transform="rotate(-72)"/>
|
||||
<use xlink:href="#f" transform="rotate(144)"/>
|
||||
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 596 B |
16
build/default/data/svg/CM.svg
Normal file
@@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg version="1.0" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="600" height="400" viewBox="0 0 90 60">
|
||||
<rect width="30" height="60" fill="#007a5e"/>
|
||||
<rect x="30" width="30" height="60" fill="#ce1126"/>
|
||||
<rect x="60" width="30" height="60" fill="#fcd116"/>
|
||||
<g transform="translate(45,30)" fill="#fcd116">
|
||||
<g id="c">
|
||||
<path id="t" d="M 0,-8 v 8 h 4 z" transform="rotate(18 0,-8)"/>
|
||||
<use xlink:href="#t" transform="scale(-1,1)"/>
|
||||
</g>
|
||||
<use xlink:href="#c" transform="rotate(72)"/>
|
||||
<use xlink:href="#c" transform="rotate(144)"/>
|
||||
<use xlink:href="#c" transform="rotate(216)"/>
|
||||
<use xlink:href="#c" transform="rotate(288)"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 731 B |
12
build/default/data/svg/CN.svg
Normal file
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="900" height="600" viewBox="0 0 30 20">
|
||||
<defs>
|
||||
<path id="s" d="M0,-1 0.587785,0.809017 -0.951057,-0.309017H0.951057L-0.587785,0.809017z" fill="#ffde00"/>
|
||||
</defs>
|
||||
<rect width="30" height="20" fill="#de2910"/>
|
||||
<use xlink:href="#s" transform="translate(5,5) scale(3)"/>
|
||||
<use xlink:href="#s" transform="translate(10,2) rotate(23.036243)"/>
|
||||
<use xlink:href="#s" transform="translate(12,4) rotate(45.869898)"/>
|
||||
<use xlink:href="#s" transform="translate(12,7) rotate(69.945396)"/>
|
||||
<use xlink:href="#s" transform="translate(10,9) rotate(20.659808)"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 678 B |
7
build/default/data/svg/CO.svg
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="900" height="600">
|
||||
<rect fill="#fcd116" width="900" height="300"/>
|
||||
<rect fill="#003893" width="900" height="150" y="300"/>
|
||||
<rect fill="#ce1126" width="900" height="150" y="450"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 379 B |
2
build/default/data/svg/CP.svg
Normal file
@@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="900" height="600"><rect width="900" height="600" fill="#ED2939"/><rect width="600" height="600" fill="#fff"/><rect width="300" height="600" fill="#002395"/></svg>
|
||||
|
After Width: | Height: | Size: 249 B |
6
build/default/data/svg/CR.svg
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" standalone="no"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="1000" height="600" viewBox="0 0 10 6">
|
||||
<path d="M0,0h10v6H0z" fill="#002b7f"/>
|
||||
<path d="M0,1h10v4H0z" fill="#fff"/>
|
||||
<path d="M0,2h10v2H0z" fill="#ce1126"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 262 B |
7
build/default/data/svg/CU.svg
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.1" width="800" height="400">
|
||||
<path d="M0,0h800v400H0z" fill="#002a8f"/>
|
||||
<path d="M0,80h800v80H0v80h800v80H0z" fill="#fff"/>
|
||||
<path d="M346.4,200L0,0v400z" fill="#cf142b"/>
|
||||
<path d="M115.5,140l35.35,108.5 l-92.5-67h114.2l-92.5,67z" fill="#fff"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 396 B |
25
build/default/data/svg/CV.svg
Normal file
@@ -0,0 +1,25 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="510" height="300">
|
||||
<rect width="510" height="300" fill="#003893"/>
|
||||
<rect width="510" height="75" y="150" fill="#fff"/>
|
||||
<rect width="510" height="25" y="175" fill="#cf2027"/>
|
||||
<g fill="#f7d116" transform="translate(191.25,187.5)">
|
||||
<g id="s2">
|
||||
<g id="s" transform="translate(0,-75)">
|
||||
<g id="c">
|
||||
<path id="t" d="M0,-15V0H7.5" transform="rotate(18,0,-15)"/>
|
||||
<use xlink:href="#t" transform="scale(-1,1)"/>
|
||||
</g>
|
||||
<use xlink:href="#c" transform="rotate(72)"/>
|
||||
<use xlink:href="#c" transform="rotate(144)"/>
|
||||
<use xlink:href="#c" transform="rotate(216)"/>
|
||||
<use xlink:href="#c" transform="rotate(288)"/>
|
||||
</g>
|
||||
<use xlink:href="#s" y="150"/>
|
||||
</g>
|
||||
<use xlink:href="#s2" transform="rotate(72)"/>
|
||||
<use xlink:href="#s2" transform="rotate(144)"/>
|
||||
<use xlink:href="#s2" transform="rotate(216)"/>
|
||||
<use xlink:href="#s2" transform="rotate(288)"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 965 B |
17
build/default/data/svg/CW.svg
Normal file
@@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="900" height="600" viewBox="0 0 54 36">
|
||||
<rect width="54" height="36" fill="#002b7f"/>
|
||||
<path d="M0,22.5H54V27H0z" fill="#f9e814"/>
|
||||
<g fill="#fff" id="s">
|
||||
<g id="f">
|
||||
<g id="t">
|
||||
<path d="m12,8v4h2z" transform="rotate(18,12,8)" id="o"/>
|
||||
<use xlink:href="#o" x="-24" transform="scale(-1,1)"/>
|
||||
</g>
|
||||
<use xlink:href="#t" transform="rotate(72,12,12)"/>
|
||||
</g>
|
||||
<use xlink:href="#t" transform="rotate(-72,12,12)"/>
|
||||
<use xlink:href="#f" transform="rotate(144,12,12)"/>
|
||||
</g>
|
||||
<use xlink:href="#s" x="-4" y="-4" transform="scale(0.75)"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 657 B |
16
build/default/data/svg/CX.svg
Normal file
@@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1000" height="500">
|
||||
<rect width="1000" height="500" fill="#0021ad"/>
|
||||
<path d="M0,0H1000V500z" fill="#1c8a42"/>
|
||||
<circle cx="500" cy="250" r="90.32" fill="#ffc639"/>
|
||||
<path fill="#1c8a42" d="m444.84,209.43c6.1786,8.4767,15.542,22.689,23.072,18.979,5.8763,0.0202,8.9102,0.43341,9.7064,4.3442,13.859,2.3586,37.153-3.4875,51.647-22.366,0,0,1.2196,0.16127,0.79627-7.0152,0.0806-3.1246,4.2736-2.4997,4.3744-1.4817,0.5846,1.5522,0.4838,2.7114,1.27,2.7517,1.784-0.59468,4.2233-4.5962,6.2694-7.1362,0.55436-1.1188,0.25198-2.2981,0.38301-3.7092,1.0785-2.6509,3.7697-2.0763,4.3341-0.68539,0.51404,0.89706,0.52412,1.5825,1.0281,2.4795,2.7315,1.8244,7.6603,0.12095,8.0433,0.12095,0.48381-2.2275,1.9151-2.0159,1.9151-2.0159,1.8244-0.40317,1.1087-0.24191,2.3082,0.38302-1.0583,12.005,2.3586,12.539,2.0764,18.697,0.12095,6.8741-2.0764,8.8295-2.0764,11.45,0.69548,3.2052,10.835,3.3161,7.2672,6.0275-3.1347,1.6732,0.0101,4.8078-4.7071,6.0275-13.728,6.9648-16.359,12.942-16.359,12.942s-3.4471,6.5113-3.8302,6.5113c-2.2981,4.3442-5.211,1.9756-6.8338,4.0922-0.80635,2.661-1.7135,8.5574-0.1008,11.622,0.80635,4.2132-0.10079,6.5113-1.1087,10.724-0.90714,8.7892-4.3946,10.12-4.7978,13.204-1.6127,3.296,0.3427,18.778-1.1894,18.778-10.22,0.20159-18.052-1.9554-22.094-2.7617,3.941-16.984,2.409-31.901,2.409-33.433-1.0079-12.146-18.193-9.1924-20.824-10.805-2.1772-0.46366-3.5479-2.2376-4.314-3.0036-2.4291-0.26207-3.3363-0.81643-5.7654-1.0684-1.2095,0.60477-0.48381,1.2297-3.1851,2.0663-6.854,0.82651-9.8778-5.9771-9.8778-5.9771,0.33262-2.288-15.411,0.46365-23.969-1.522-3.5076,1.9554-5.0397,7.741-7.9123,8.4263-0.0806,1.7941-4.7272-1.4716-5.6646-3.2355-0.19151-5.1304,4.4752-7.3982,4.4752-7.3982,3.7092-2.6106,5.9065-3.0339,7.6906-4.8381,0.89706-4.4652,0.44349-7.7712,2.3485-11.128,1.6127-2.5602,3.9914-1.3607,5.6041-2.5098,1.7336-1.149,2.4694-8.6682,0.86683-10.724,0,0-6.9346-6.2593-7.3176-6.6423-2.2578-6.4709,2.6408-10.644,4.0418-10.17z"/>
|
||||
<path fill="#ffc639" d="m877.93,97.555c-4.0922-16.194-40.721-51.071-68.247-73.265-6.5717-4.4773-10.855-1.8103-9.9987,4.573,3.427,5.716,5.9972,12,9.4242,17.716,0.95754,3.81,2.7618,6.477,3.7193,10.286,0,0,0.28222,6.5728,0.85674,7.1442,8.5675,9.4333,9.7165,17.432,9.7165,17.432,4.949,9.526,9.3335,16.478,18.002,24.29,9.7165,6.098,2.5702,25.047,2.8525,35.147,0,6.3802-4.566,5.6243-8.5674,4.8582-31.528-28.958-62.774-29.049-90.301-37.435-10.765-1.139-10.956,4.0015-7.4285,6.854,19.242,20.582,37.334,34.582,61.151,46.294,4.0015,2.4795,8.003,4.959,12.005,7.4386,4.566,3.81,9.142,7.62,13.708,11.43,10.573,6.854,11.44,13.143,11.44,13.708,0.28222,12.861-6.5818,22.86-8.5775,26.861-3.6084,13.637-10.855,16.006-10.855,16.006-58.874,39.723-89.737,50.004-185.18,37.717-1.4313-0.75595-10.573,0.76603,0,4.576,24.291,8.0937,83.961,21.076,141.69-6.2593,13.859-9.7165,23.132-6.5314,33.171-12.347,16.49-10.17,40.035-22.83,44.319-24.251,12.861-6.864,48.865-14.575,57.16-21.439,9.5149-0.76603,19.393-2.0159,20.058-10.2,3.1246-2.026,7.7006-0.54428,11.097-7.2168,7.5494-1.3103,6.2794-4.0116,6.2794-4.0116-1.905-5.332-8.9606-7.5293-14-11.43-7.4386-2.4795-12.579-3.2456-18.012-0.57452-1.7135,0.76603-3.427,1.522-5.1405,2.288,0,0-8.003-1.149-8.003-1.7135-17.78-0.9777-16.046-59.902-22.336-84.478z"/>
|
||||
<path fill="#1c8a42" d="m919.63,194.01a4.4025,2.7511,15.947,0,1,-8.3961,-2.6368,4.4025,2.7511,15.947,0,1,8.3961,2.6368z"/>
|
||||
<g fill="#fff">
|
||||
<path id="s" d="m188.16,190.94-12.751-11.936-12.904,11.77,1.383-17.405-17.249-2.753,14.475-9.7743-8.6056-15.197,16.668,5.2197,6.5177-16.204,6.3099,16.287,16.734-5.0072-8.8005,15.086,14.348,9.959-17.283,2.5313,1.1585,17.424z"/>
|
||||
<path d="m233.39,335.53-13.752-9.1669-13.391,9.6641,4.7117-15.568-13.582-9.4155,16.667-0.44539,4.9883-15.496,5.5945,15.299,16.667-0.15537-13.21,9.9023,5.3073,15.382z"/>
|
||||
<use xlink:href="#s" x="2.5215" y="269.0608"/>
|
||||
<use xlink:href="#s" x="-112.0655" y="123.2228"/>
|
||||
<use xlink:href="#s" x="108.4275" y="85.0268"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.9 KiB |
194
build/default/data/svg/CY.svg
Normal file
@@ -0,0 +1,194 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
version="1.1"
|
||||
width="275"
|
||||
height="180"
|
||||
id="svg3036">
|
||||
<metadata
|
||||
id="metadata3042">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs3040" />
|
||||
<g
|
||||
id="layer1"
|
||||
style="display:inline">
|
||||
<rect
|
||||
width="273.1608"
|
||||
height="179.16998"
|
||||
x="0"
|
||||
y="-0.14904994"
|
||||
id="rect3220"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:4;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
id="layer3">
|
||||
<path
|
||||
d="m 80.306904,109.07402 c 0,0 -0.46154,3.92308 1.15385,5.76923 1.61538,1.84616 5.53846,3.92308 6.92308,4.15385 1.38461,0.23077 -1.61539,-5.07693 -1.61539,-5.07693 0,0 -4.38461,-5.53846 -6.46154,-4.84615 z"
|
||||
id="path3048"
|
||||
style="fill:#435024;fill-opacity:1;stroke:#435024;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
d="m 80.999214,118.9971 c 0,0 0.46154,3.69231 3,4.15384 2.53846,0.46154 4.84615,0.23077 4.84615,0.23077 0,0 0,-4.15384 -7.84615,-4.38461 z"
|
||||
id="path3050"
|
||||
style="fill:#435024;fill-opacity:1;stroke:#435024;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
d="m 89.306904,111.38171 c 0,0 2.53846,0.92308 2.53846,3.23077 0,2.30769 -0.23076,4.61539 -0.23076,4.61539 0,0 -1.84616,-2.3077 -1.84616,-3.46154 0,-1.15385 -0.46154,-4.38462 -0.46154,-4.38462 z"
|
||||
id="path3052"
|
||||
style="fill:#435024;fill-opacity:1;stroke:#435024;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
d="m 88.367574,125.27178 c 0,0 -0.32636,2.2845 2.2845,2.2845 2.61085,0 0.32635,-2.93721 -2.2845,-2.2845 z"
|
||||
id="path3054"
|
||||
style="fill:#435024;fill-opacity:1;stroke:#435024;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
d="m 88.204394,128.86171 c 0,0 2.77403,-0.81589 6.0376,-0.16318 3.26357,0.65271 4.89535,3.10039 4.89535,3.10039 0,0 -3.42674,0.97907 -7.34302,0 -3.91629,-0.97907 -3.58993,-2.93721 -3.58993,-2.93721 z"
|
||||
id="path3056"
|
||||
style="fill:#435024;fill-opacity:1;stroke:#435024;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
d="m 89.999354,120.70278 c 0,0 3.91629,-1.14225 7.66939,7.34304 0,0 -7.17985,-1.79498 -7.66939,-7.34304 z"
|
||||
id="path3060"
|
||||
style="fill:#435024;fill-opacity:1;stroke:#435024;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
d="m 94.078814,118.90782 c 0,0 4.40582,-2.44768 7.995746,8.97482 0,0 -5.058536,-1.95815 -7.995746,-8.97482 z"
|
||||
id="path3062"
|
||||
style="fill:#435024;fill-opacity:1;stroke:#435024;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
d="m 99.953244,129.51442 c 0,0 4.405806,-1.63178 10.117056,5.05854 -9.30118,-0.32635 -10.117056,-5.05854 -10.117056,-5.05854 z"
|
||||
id="path3064"
|
||||
style="fill:#435024;fill-opacity:1;stroke:#435024;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
d="m 102.90032,126.4048 c 0,0 -0.21584,2.57272 1.51088,2.57272 1.72674,0 0.21585,-3.30777 -1.51088,-2.57272 z"
|
||||
id="path3054-9"
|
||||
style="fill:#435024;fill-opacity:1;stroke:#435024;stroke-width:0.8630209px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
d="m 99.722704,133.0879 c 0,0 -0.16835,2.24732 1.178476,2.24732 1.34685,0 0.16836,-2.8894 -1.178476,-2.24732 z"
|
||||
id="path3054-9-4"
|
||||
style="fill:#435024;fill-opacity:1;stroke:#435024;stroke-width:0.71236598px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
d="m 113.18056,140.0302 c 0,0 -0.21584,2.57273 1.51088,2.57273 1.72674,0 0.21585,-3.30778 -1.51088,-2.57273 z"
|
||||
id="path3054-9-7"
|
||||
style="fill:#435024;fill-opacity:1;stroke:#435024;stroke-width:0.8630209px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
d="m 117.26003,132.36081 c 0,0 -0.21584,2.57272 1.51088,2.57272 1.72674,0 0.21585,-3.30777 -1.51088,-2.57272 z"
|
||||
id="path3054-9-71"
|
||||
style="fill:#435024;fill-opacity:1;stroke:#435024;stroke-width:0.8630209px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
d="m 106.48037,127.88264 c 0,0 6.20079,-1.63179 8.81164,6.20078 -7.50621,-1.14225 -8.81164,-6.20078 -8.81164,-6.20078 z"
|
||||
id="path3127"
|
||||
style="fill:#435024;fill-opacity:1;stroke:#435024;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
d="m 100.93231,136.5311 c 0,0 7.01667,-1.79497 10.28024,0.65271 3.26357,2.44768 -6.20078,3.42675 -10.28024,-0.65271 z"
|
||||
id="path3129"
|
||||
style="fill:#435024;fill-opacity:1;stroke:#435024;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
d="m 113.17069,136.69428 c 0,0 4.73218,-2.2845 9.95389,2.77403 -9.79071,1.30543 -9.95389,-2.77403 -9.95389,-2.77403 z"
|
||||
id="path3131"
|
||||
style="fill:#435024;fill-opacity:1;stroke:#435024;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
d="m 121.16644,133.59388 c 0,0 4.73217,-1.4686 9.30117,7.17986 -10.28025,-1.4686 -9.30117,-7.17986 -9.30117,-7.17986 z"
|
||||
id="path3133"
|
||||
style="fill:#435024;fill-opacity:1;stroke:#435024;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
d="m 129.32536,143.05825 c 0,0 -5.22171,3.58992 -11.74885,-0.16318 0,0 2.12132,-4.40582 11.74885,0.16318 z"
|
||||
id="path3135"
|
||||
style="fill:#435024;fill-opacity:1;stroke:#435024;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
d="m 191.8952,108.99158 c 0,0 0.46153,3.92308 -1.15385,5.76923 -1.61539,1.84616 -5.53846,3.92308 -6.92308,4.15385 -1.38461,0.23077 1.61539,-5.07693 1.61539,-5.07693 0,0 4.38461,-5.53846 6.46154,-4.84615 z"
|
||||
id="path3048-1"
|
||||
style="fill:#435024;fill-opacity:1;stroke:#435024;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
d="m 191.20289,118.91466 c 0,0 -0.46154,3.69231 -3,4.15384 -2.53846,0.46154 -4.84616,0.23077 -4.84616,0.23077 0,0 0,-4.15384 7.84616,-4.38461 z"
|
||||
id="path3050-1"
|
||||
style="fill:#435024;fill-opacity:1;stroke:#435024;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
d="m 182.8952,111.29927 c 0,0 -2.53847,0.92308 -2.53847,3.23077 0,2.30769 0.23077,4.61539 0.23077,4.61539 0,0 1.84616,-2.3077 1.84616,-3.46154 0,-1.15385 0.46154,-4.38462 0.46154,-4.38462 z"
|
||||
id="path3052-6"
|
||||
style="fill:#435024;fill-opacity:1;stroke:#435024;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
d="m 183.83453,125.18934 c 0,0 0.32636,2.2845 -2.2845,2.2845 -2.61085,0 -0.32636,-2.93721 2.2845,-2.2845 z"
|
||||
id="path3054-3"
|
||||
style="fill:#435024;fill-opacity:1;stroke:#435024;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
d="m 183.99771,128.77927 c 0,0 -2.77404,-0.81589 -6.0376,-0.16318 -3.26358,0.65271 -4.89536,3.10039 -4.89536,3.10039 0,0 3.42675,0.97907 7.34303,0 3.91629,-0.97907 3.58993,-2.93721 3.58993,-2.93721 z"
|
||||
id="path3056-5"
|
||||
style="fill:#435024;fill-opacity:1;stroke:#435024;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
d="m 182.20275,120.62034 c 0,0 -3.91629,-1.14225 -7.6694,7.34304 0,0 7.17986,-1.79498 7.6694,-7.34304 z"
|
||||
id="path3060-7"
|
||||
style="fill:#435024;fill-opacity:1;stroke:#435024;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
d="m 178.12328,118.82538 c 0,0 -4.40582,-2.44768 -7.99575,8.97482 0,0 5.05854,-1.95815 7.99575,-8.97482 z"
|
||||
id="path3062-6"
|
||||
style="fill:#435024;fill-opacity:1;stroke:#435024;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
d="m 172.24885,129.43198 c 0,0 -4.40581,-1.63178 -10.11706,5.05854 9.30118,-0.32635 10.11706,-5.05854 10.11706,-5.05854 z"
|
||||
id="path3064-8"
|
||||
style="fill:#435024;fill-opacity:1;stroke:#435024;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
d="m 169.30177,126.32236 c 0,0 0.21584,2.57272 -1.51088,2.57272 -1.72674,0 -0.21585,-3.30777 1.51088,-2.57272 z"
|
||||
id="path3054-9-2"
|
||||
style="fill:#435024;fill-opacity:1;stroke:#435024;stroke-width:0.8630209px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
d="m 172.47939,133.00546 c 0,0 0.16835,2.24732 -1.17848,2.24732 -1.34685,0 -0.16836,-2.8894 1.17848,-2.24732 z"
|
||||
id="path3054-9-4-1"
|
||||
style="fill:#435024;fill-opacity:1;stroke:#435024;stroke-width:0.71236598px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
d="m 159.02153,139.94776 c 0,0 0.21584,2.57273 -1.51088,2.57273 -1.72674,0 -0.21585,-3.30778 1.51088,-2.57273 z"
|
||||
id="path3054-9-7-1"
|
||||
style="fill:#435024;fill-opacity:1;stroke:#435024;stroke-width:0.8630209px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
d="m 154.94206,132.27837 c 0,0 0.21584,2.57272 -1.51088,2.57272 -1.72674,0 -0.21585,-3.30777 1.51088,-2.57272 z"
|
||||
id="path3054-9-71-4"
|
||||
style="fill:#435024;fill-opacity:1;stroke:#435024;stroke-width:0.8630209px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
d="m 165.72172,127.8002 c 0,0 -6.20079,-1.63179 -8.81164,6.20078 7.50621,-1.14225 8.81164,-6.20078 8.81164,-6.20078 z"
|
||||
id="path3127-3"
|
||||
style="fill:#435024;fill-opacity:1;stroke:#435024;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
d="m 171.26978,136.44866 c 0,0 -7.01667,-1.79497 -10.28024,0.65271 -3.26357,2.44768 6.20078,3.42675 10.28024,-0.65271 z"
|
||||
id="path3129-0"
|
||||
style="fill:#435024;fill-opacity:1;stroke:#435024;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
d="m 159.0314,136.61184 c 0,0 -4.73218,-2.2845 -9.95389,2.77403 9.79071,1.30543 9.95389,-2.77403 9.95389,-2.77403 z"
|
||||
id="path3131-7"
|
||||
style="fill:#435024;fill-opacity:1;stroke:#435024;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
d="m 151.03565,133.51144 c 0,0 -4.73217,-1.4686 -9.30117,7.17986 10.28025,-1.4686 9.30117,-7.17986 9.30117,-7.17986 z"
|
||||
id="path3133-1"
|
||||
style="fill:#435024;fill-opacity:1;stroke:#435024;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
d="m 142.87673,142.97581 c 0,0 5.22171,3.58992 11.74885,-0.16318 0,0 -2.12132,-4.40582 -11.74885,0.16318 z"
|
||||
id="path3135-1"
|
||||
style="fill:#435024;fill-opacity:1;stroke:#435024;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
d="m 135.11459,145.07403 c 0,0 -3.57692,4.84615 -3.57692,4.38462 0,-0.46154 -2.53846,-2.53847 -2.53846,-2.53847 l 4.38461,-3.23076 -1.73077,-0.8077 0.92308,-1.03847 3.23077,1.38463"
|
||||
id="path3203"
|
||||
style="fill:#435024;fill-opacity:1;stroke:#435024;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
d="m 136.09537,145.05854 c 0,0 3.57692,4.84615 3.57692,4.38462 0,-0.46154 2.53846,-2.53847 2.53846,-2.53847 l -4.38461,-3.23076 1.73077,-0.8077 -0.92308,-1.03847 -3.23077,1.38463"
|
||||
id="path3203-2"
|
||||
style="fill:#435024;fill-opacity:1;stroke:#435024;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
d="m 134.88382,145.3048 1.5,0"
|
||||
id="path3223"
|
||||
style="fill:#435024;fill-opacity:1;stroke:#435024;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
d="m 70.153064,68.227865 c 0,0 1.84615,4.846154 3.92307,4.846154 2.07693,0 7.61539,0.461538 7.61539,0.461538 0,0 2.76923,-0.461538 3.69231,-3 0.92307,-2.538461 3.46153,-13.153846 16.153836,-6.692307 12.69231,6.461538 13.38461,-11.076924 13.38461,-11.076924 l -2.07692,-3 0.46154,-5.76923 c 0,0 6.92308,4.846154 11.30769,4.615384 4.38462,-0.230769 7.61539,1.384616 9,1.384616 1.38462,0 5.76923,1.384615 5.76923,1.384615 l 11.30769,0.461539 c 0,0 1.84616,-1.615385 3.69231,-1.384616 1.84616,0.230769 1.84616,-1.153846 5.30769,-1.153846 3.46154,0 6.92308,-4.384615 6.92308,-4.384615 0,0 0.92308,-0.923077 6,0 0,0 3.46154,-2.769231 8.53846,-4.384616 5.07693,-1.615384 4.38462,-3.692307 4.38462,-3.692307 0,0 3.69231,-0.692308 5.30769,-0.461539 1.61538,0.230769 2.53846,-2.769231 2.53846,-2.769231 l 3.92308,-0.461538 1.61538,-2.307692 3.92308,-0.692308 c 0,0 4.61538,-3.23077 5.30769,-5.307693 0.69231,-2.076924 6,-0.461539 6,-0.461539 0,0 2.30769,-2.076923 2.53846,-3.230769 0.23077,-1.153846 2.3077,-0.230769 2.3077,-0.230769 l -0.23077,3.692307 -2.53846,1.384616 0,2.307692 -3.92308,0 -0.23077,2.307693 -3.23077,0.23077 -0.46154,2.76923 -0.69231,1.153846 -0.92307,0.461539 -2.3077,0 -0.92307,1.384615 -2.30769,1.615385 -1.61539,2.076923 -3.23077,-0.230769 -2.07692,2.769231 -1.38462,-0.23077 -2.07692,3.461539 -1.61538,2.076923 -0.92308,1.384615 -1.61539,0.461539 -0.46153,1.846154 -2.76924,0.692307 -3.6923,0.923077 -1.38462,1.615385 c 0,0 -3.92308,7.846154 0.23077,10.615384 4.15385,2.769231 4.38462,5.769231 4.38462,5.769231 l 2.07692,1.384616 1.61538,2.76923 0.69231,3.23077 c 0,0 -0.69231,0.461538 -1.61538,0.230769 -0.92308,-0.230769 -2.53846,-0.461539 -2.53846,-0.461539 l -1.84616,-1.615384 -3.46154,-0.23077 -1.84615,2.076924 c 0,0 -0.92308,1.384615 -0.92308,2.307692 0,0.923077 -0.46154,0.692308 -1.61538,0 -1.15385,-0.692308 -3,-1.846154 -3,-1.846154 l -2.53846,-0.692308 -0.23077,-1.153846 -1.61539,0.923077 c 0,0 -0.46154,1.384615 -1.38461,0.923077 -0.92308,-0.461538 -1.84616,-0.461538 -1.84616,-0.461538 l -1.61538,0 c 0,0 -3.69231,2.76923 -3.23077,11.76923 l -4.15385,0.692308 -2.07692,1.846154 -1.15385,1.153846 -3,0 -1.61538,1.384615 -3,1.153847 -1.38462,1.846158 -3.6923,0.23076 -1.61539,1.153852 -0.69231,1.61539 -2.53846,-1.61539 -3.46154,-0.923082 -3,0.69231 c 0,0 -0.92307,0.230772 -1.84615,0.923082 -0.92308,0.69231 -3.46154,1.15384 -3.46154,1.15384 0,0 -1.61538,0.46154 -1.61538,1.38462 0,0.92308 -0.46154,2.53846 -0.46154,2.53846 l 0,3.46154 c 0,0 -0.46154,2.30769 -2.30769,2.30769 -1.84616,0 -1.38462,0 -2.3077,-0.23077 -0.92307,-0.23077 -0.6923,-2.30769 -0.6923,-2.30769 l 0,-2.53846 -3.69231,-3.46154 -2.30769,-0.92308 -2.53847,0.23077 -2.30769,1.38462 -2.07692,1.38461 c 0,0 0.46154,1.61539 -1.153846,0.46154 -1.61538,-1.15384 -2.76923,-1.61538 -2.76923,-1.61538 l -2.07692,-1.15385 -2.76923,-0.69231 -2.07692,-2.538462 -5.30769,-0.23077 -4.61539,-5.307689 -1.38461,-1.384616 -0.23077,-4.153846 -3,-0.461538 0,-2.307693 -1.15385,-2.307692 0.46154,-4.153846 -2.76923,-1.153846 -1.15385,-3.923077 z"
|
||||
id="path3993"
|
||||
style="fill:#d87503;fill-opacity:1;stroke:#d87503;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 15 KiB |
6
build/default/data/svg/CZ.svg
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg version="1.0" xmlns="http://www.w3.org/2000/svg" width="900" height="600">
|
||||
<rect width="900" height="600" fill="#d7141a"/>
|
||||
<rect width="900" height="300" fill="#fff"/>
|
||||
<path d="M 450,300 0,0 V 600 z" fill="#11457e"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 271 B |
9
build/default/data/svg/DE.svg
Normal file
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="1000" height="600" viewBox="0 0 5 3">
|
||||
<desc>Flag of Germany</desc>
|
||||
<rect id="black_stripe" width="5" height="3" y="0" x="0" fill="#000"/>
|
||||
<rect id="red_stripe" width="5" height="2" y="1" x="0" fill="#D00"/>
|
||||
<rect id="gold_stripe" width="5" height="1" y="2" x="0" fill="#FFCE00"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 493 B |
999
build/default/data/svg/DG.svg
Normal file
@@ -0,0 +1,999 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
version="1.0"
|
||||
width="600"
|
||||
height="300"
|
||||
id="svg548">
|
||||
<defs
|
||||
id="defs550" />
|
||||
<g
|
||||
id="g42903">
|
||||
<rect
|
||||
width="600.00006"
|
||||
height="300.00003"
|
||||
x="2.270937e-05"
|
||||
y="-0.0001209102"
|
||||
id="rect576"
|
||||
style="font-size:12px;fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:0.991189pt" />
|
||||
<path
|
||||
d="M 600.00013,260.88144 C 593.27699,264.92597 587.50091,274.37874 569.64047,274.37874 C 533.92927,274.37874 524.99875,254.47737 498.21263,254.47737 C 480.35704,254.47737 471.42833,274.37874 453.57152,274.37874 C 417.8573,274.37874 408.9286,254.47737 382.14308,254.47737 C 364.28567,254.47737 355.35696,274.37874 337.50016,274.37874 C 301.78594,274.37874 292.85723,254.47737 266.07172,254.47737 C 248.2143,254.47737 239.2856,274.37874 221.42879,274.37874 C 185.71457,274.37874 176.78586,254.47737 150.00035,254.47737 C 132.14233,254.47737 123.21423,274.37874 105.35743,274.37874 C 69.643205,274.37874 60.713894,254.47737 33.928562,254.47737 C 16.071452,254.47737 10.714289,268.65877 2.270937e-05,268.65877 L 2.270937e-05,294.28011 C 10.714289,294.28011 16.071391,280.0987 33.928562,280.0987 C 60.713894,280.0987 69.643205,300.00007 105.35743,300.00007 C 123.21423,300.00007 132.14233,280.0987 150.00035,280.0987 C 176.78526,280.0987 185.71457,300.00007 221.42879,300.00007 C 239.2856,300.00007 248.2143,280.0987 266.07172,280.0987 C 292.85723,280.0987 301.78594,300.00007 337.50016,300.00007 C 355.35696,300.00007 364.28567,280.0987 382.14308,280.0987 C 408.9286,280.0987 417.8573,300.00007 453.57152,300.00007 C 471.42833,300.00007 480.35704,280.0987 498.21263,280.0987 C 524.99875,280.0987 533.92927,300.00007 569.64047,300.00007 C 587.50091,300.00007 593.27699,294.36043 600.00013,290.3159 L 600.00013,260.88144 z"
|
||||
id="path570"
|
||||
style="font-size:12px;fill:#002b7f;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-opacity:1" />
|
||||
<use
|
||||
transform="translate(0,49.75348)"
|
||||
id="use3398"
|
||||
x="0"
|
||||
y="0"
|
||||
width="600"
|
||||
height="300"
|
||||
xlink:href="#use3396" />
|
||||
<use
|
||||
transform="translate(0,-99.50701)"
|
||||
id="use3396"
|
||||
x="0"
|
||||
y="0"
|
||||
width="600"
|
||||
height="300"
|
||||
xlink:href="#path570" />
|
||||
<path
|
||||
d="M 266.07172,130.83824 C 292.85723,130.83824 301.78594,150.73961 337.50016,150.73961 C 355.35696,150.73961 364.28567,130.83824 382.14308,130.83824 C 408.9286,130.83824 417.8573,150.73961 453.57152,150.73961 C 471.42833,150.73961 480.35704,130.83824 498.21263,130.83824 C 524.99875,130.83824 533.92927,150.73961 569.64047,150.73961 C 587.50091,150.73961 593.27699,145.09997 600.00013,141.05544 L 600.00013,111.62098 C 593.27699,115.66551 587.50091,125.11828 569.64047,125.11828 C 533.92927,125.11828 524.99875,105.21691 498.21263,105.21691 C 480.35704,105.21691 471.42833,125.11828 453.57152,125.11828 C 417.8573,125.11828 408.9286,105.21691 382.14308,105.21691 C 364.28567,105.21691 355.35696,125.11828 337.50016,125.11828 C 301.78594,125.11828 292.85723,105.21691 266.07172,105.21691"
|
||||
id="path573"
|
||||
style="font-size:12px;fill:#002b7f;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-opacity:1" />
|
||||
<use
|
||||
transform="translate(0,-49.75352)"
|
||||
id="use2595"
|
||||
x="0"
|
||||
y="0"
|
||||
width="600"
|
||||
height="300"
|
||||
xlink:href="#path573" />
|
||||
<use
|
||||
transform="translate(0,-99.507016)"
|
||||
id="use2597"
|
||||
x="0"
|
||||
y="0"
|
||||
width="600"
|
||||
height="300"
|
||||
xlink:href="#path573" />
|
||||
<g
|
||||
transform="matrix(0.5,0,0,0.5,0,154.7222)"
|
||||
id="g6773">
|
||||
<rect
|
||||
width="600"
|
||||
height="300"
|
||||
x="0"
|
||||
y="-309.4444"
|
||||
id="rect3179"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke-opacity:1" />
|
||||
<path
|
||||
d="M -238.28967,473.03977 L -238.50396,378.74081 L -156.73152,425.70471 L -238.28967,473.03977 z"
|
||||
transform="matrix(2.849371,0,0,2.449656,679.5863,-1202.729)"
|
||||
id="path4054"
|
||||
style="fill:#002b7f;fill-opacity:1;fill-rule:evenodd;stroke-opacity:1" />
|
||||
<use
|
||||
transform="matrix(-1,0,0,1,600,-2.006206e-6)"
|
||||
id="use6675"
|
||||
x="0"
|
||||
y="0"
|
||||
width="600"
|
||||
height="600"
|
||||
xlink:href="#path4054" />
|
||||
<use
|
||||
transform="matrix(0,-0.502146,2.017316,0,621.6497,-9.4444)"
|
||||
id="use6677"
|
||||
x="0"
|
||||
y="0"
|
||||
width="600"
|
||||
height="600"
|
||||
xlink:href="#path4054" />
|
||||
<use
|
||||
transform="matrix(1,0,0,-1,-4.715239e-8,-318.8888)"
|
||||
id="use6679"
|
||||
x="0"
|
||||
y="0"
|
||||
width="600"
|
||||
height="600"
|
||||
xlink:href="#use6677" />
|
||||
</g>
|
||||
<path
|
||||
d="M 177.64,50 L 200,50 L 300,0 L 277.64,0 L 177.64,50 z"
|
||||
id="path3141"
|
||||
style="fill:#ce1126;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 0,0 L 0,11.18 L 77.64,50 L 100,50 L 0,0 z"
|
||||
id="path3143"
|
||||
style="fill:#ce1126;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 300,150.00001 L 300,138.82001 L 222.36,100.00001 L 200,100.00001 L 300,150.00001 z"
|
||||
id="path3145"
|
||||
style="fill:#ce1126;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 0,150 L 22.36,150 L 122.36,100 L 100,100 L 0,150 z"
|
||||
id="path3147"
|
||||
style="fill:#ce1126;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<g
|
||||
transform="matrix(0.5,0,0,0.5,0,5e-6)"
|
||||
id="g6767">
|
||||
<use
|
||||
transform="matrix(1,0,0,0.333333,0,203.1481)"
|
||||
id="use6763"
|
||||
x="0"
|
||||
y="0"
|
||||
width="600"
|
||||
height="300"
|
||||
xlink:href="#rect3179" />
|
||||
<use
|
||||
transform="matrix(0,0.5,-1,0,450,0)"
|
||||
id="use6765"
|
||||
x="0"
|
||||
y="0"
|
||||
width="600"
|
||||
height="300"
|
||||
xlink:href="#use6763" />
|
||||
</g>
|
||||
<rect
|
||||
width="300"
|
||||
height="30"
|
||||
rx="5.5511257e-15"
|
||||
ry="7.5502982e-16"
|
||||
x="0"
|
||||
y="60.000004"
|
||||
id="use3168"
|
||||
style="fill:#ce1124;fill-opacity:1;fill-rule:evenodd;stroke-opacity:1" />
|
||||
<use
|
||||
transform="matrix(0,0.5,-1,0,225,5e-6)"
|
||||
id="use6771"
|
||||
x="0"
|
||||
y="0"
|
||||
width="600"
|
||||
height="300"
|
||||
xlink:href="#use3168" />
|
||||
<g
|
||||
id="g2838">
|
||||
<g
|
||||
transform="matrix(0.604762,0,0,0.604762,0,-1.160721e-4)"
|
||||
id="Palm">
|
||||
<path
|
||||
d="M 814.961,-301.181 L 797.244,407.48 C 797.244,444.778 877.341,444.778 885.827,407.48 L 868.11,-301.181 L 814.961,-301.181 z"
|
||||
transform="matrix(0.200004,0,0,0.475,575.1662,274.5648)"
|
||||
id="path861"
|
||||
style="fill:#a24300;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:6.93489981;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<g
|
||||
transform="matrix(0.725195,0,0,0.6231,202.0636,41.43416)"
|
||||
id="g862">
|
||||
<g
|
||||
transform="matrix(-0.314512,0.10485,-0.138292,-0.303235,1046.472,373.319)"
|
||||
id="g852">
|
||||
<path
|
||||
d="M 496.063,549.213 L 513.78,620.079 L 549.213,566.929 L 531.496,655.512 L 566.929,620.079 L 531.496,708.661 L 566.929,673.228 L 531.496,761.811 L 566.929,726.378 L 531.496,832.677 L 566.929,797.244 L 531.496,903.543 L 566.929,868.11 L 531.496,974.409 L 513.78,1027.56 L 496.063,1045.28 L 478.346,1027.56 L 460.63,974.409 L 425.197,868.11 L 460.63,903.543 L 425.197,797.244 L 460.63,832.677 L 425.197,726.378 L 460.63,761.811 L 425.197,673.228 L 460.63,708.661 L 425.197,620.079 L 460.63,655.512 L 442.913,566.929 L 478.346,620.079 L 496.063,549.213 z"
|
||||
transform="translate(177.1655,-224.0517)"
|
||||
id="path853"
|
||||
style="font-size:12px;fill:#006d00;fill-rule:evenodd;stroke:#ffffff;stroke-width:8.25;stroke-dasharray:none" />
|
||||
<path
|
||||
d="M 496.063,549.213 L 496.063,1045.28"
|
||||
transform="translate(177.1655,-224.0517)"
|
||||
id="path854"
|
||||
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
|
||||
<path
|
||||
d="M 425.197,868.11 L 496.063,974.409 L 566.929,868.11"
|
||||
transform="translate(177.1655,-224.0517)"
|
||||
id="path855"
|
||||
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
|
||||
<path
|
||||
d="M 425.197,797.244 L 496.063,903.543 L 566.929,797.244"
|
||||
transform="translate(177.1655,-224.0517)"
|
||||
id="path856"
|
||||
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
|
||||
<path
|
||||
d="M 425.197,726.378 L 496.063,832.677 L 566.929,726.378"
|
||||
transform="translate(177.1655,-224.0517)"
|
||||
id="path857"
|
||||
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
|
||||
<path
|
||||
d="M 425.197,673.228 L 496.063,761.811 L 566.929,673.228"
|
||||
transform="translate(177.1655,-224.0517)"
|
||||
id="path858"
|
||||
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
|
||||
<path
|
||||
d="M 425.197,620.079 L 496.063,708.661 L 566.929,620.079"
|
||||
transform="translate(177.1655,-224.0517)"
|
||||
id="path859"
|
||||
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
|
||||
<path
|
||||
d="M 442.913,566.929 L 496.063,673.228 L 549.213,566.929"
|
||||
transform="translate(177.1655,-224.0517)"
|
||||
id="path860"
|
||||
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.236516,-0.281856,0.294964,0.227618,354.5673,204.654)"
|
||||
id="g738">
|
||||
<path
|
||||
d="M 496.063,549.213 L 513.78,620.079 L 549.213,566.929 L 531.496,655.512 L 566.929,620.079 L 531.496,708.661 L 566.929,673.228 L 531.496,761.811 L 566.929,726.378 L 531.496,832.677 L 566.929,797.244 L 531.496,903.543 L 566.929,868.11 L 531.496,974.409 L 513.78,1027.56 L 496.063,1045.28 L 478.346,1027.56 L 460.63,974.409 L 425.197,868.11 L 460.63,903.543 L 425.197,797.244 L 460.63,832.677 L 425.197,726.378 L 460.63,761.811 L 425.197,673.228 L 460.63,708.661 L 425.197,620.079 L 460.63,655.512 L 442.913,566.929 L 478.346,620.079 L 496.063,549.213 z"
|
||||
transform="translate(177.1655,-224.0517)"
|
||||
id="path739"
|
||||
style="font-size:12px;fill:#006d00;fill-rule:evenodd;stroke:#ffffff;stroke-width:8.25;stroke-dasharray:none" />
|
||||
<path
|
||||
d="M 496.063,549.213 L 496.063,1045.28"
|
||||
transform="translate(177.1655,-224.0517)"
|
||||
id="path740"
|
||||
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
|
||||
<path
|
||||
d="M 425.197,868.11 L 496.063,974.409 L 566.929,868.11"
|
||||
transform="translate(177.1655,-224.0517)"
|
||||
id="path741"
|
||||
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
|
||||
<path
|
||||
d="M 425.197,797.244 L 496.063,903.543 L 566.929,797.244"
|
||||
transform="translate(177.1655,-224.0517)"
|
||||
id="path742"
|
||||
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
|
||||
<path
|
||||
d="M 425.197,726.378 L 496.063,832.677 L 566.929,726.378"
|
||||
transform="translate(177.1655,-224.0517)"
|
||||
id="path743"
|
||||
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
|
||||
<path
|
||||
d="M 425.197,673.228 L 496.063,761.811 L 566.929,673.228"
|
||||
transform="translate(177.1655,-224.0517)"
|
||||
id="path744"
|
||||
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
|
||||
<path
|
||||
d="M 425.197,620.079 L 496.063,708.661 L 566.929,620.079"
|
||||
transform="translate(177.1655,-224.0517)"
|
||||
id="path745"
|
||||
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
|
||||
<path
|
||||
d="M 442.913,566.929 L 496.063,673.228 L 549.213,566.929"
|
||||
transform="translate(177.1655,-224.0517)"
|
||||
id="path746"
|
||||
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.15164,0.335243,-0.332899,0.167308,907.5388,-153.4696)"
|
||||
id="g747">
|
||||
<path
|
||||
d="M 496.063,549.213 L 513.78,620.079 L 549.213,566.929 L 531.496,655.512 L 566.929,620.079 L 531.496,708.661 L 566.929,673.228 L 531.496,761.811 L 566.929,726.378 L 531.496,832.677 L 566.929,797.244 L 531.496,903.543 L 566.929,868.11 L 531.496,974.409 L 513.78,1027.56 L 496.063,1045.28 L 478.346,1027.56 L 460.63,974.409 L 425.197,868.11 L 460.63,903.543 L 425.197,797.244 L 460.63,832.677 L 425.197,726.378 L 460.63,761.811 L 425.197,673.228 L 460.63,708.661 L 425.197,620.079 L 460.63,655.512 L 442.913,566.929 L 478.346,620.079 L 496.063,549.213 z"
|
||||
transform="translate(177.1655,-224.0517)"
|
||||
id="path748"
|
||||
style="font-size:12px;fill:#006d00;fill-rule:evenodd;stroke:#ffffff;stroke-width:8.25;stroke-dasharray:none" />
|
||||
<path
|
||||
d="M 496.063,549.213 L 496.063,1045.28"
|
||||
transform="translate(177.1655,-224.0517)"
|
||||
id="path749"
|
||||
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
|
||||
<path
|
||||
d="M 425.197,868.11 L 496.063,974.409 L 566.929,868.11"
|
||||
transform="translate(177.1655,-224.0517)"
|
||||
id="path750"
|
||||
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
|
||||
<path
|
||||
d="M 425.197,797.244 L 496.063,903.543 L 566.929,797.244"
|
||||
transform="translate(177.1655,-224.0517)"
|
||||
id="path751"
|
||||
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
|
||||
<path
|
||||
d="M 425.197,726.378 L 496.063,832.677 L 566.929,726.378"
|
||||
transform="translate(177.1655,-224.0517)"
|
||||
id="path752"
|
||||
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
|
||||
<path
|
||||
d="M 425.197,673.228 L 496.063,761.811 L 566.929,673.228"
|
||||
transform="translate(177.1655,-224.0517)"
|
||||
id="path753"
|
||||
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
|
||||
<path
|
||||
d="M 425.197,620.079 L 496.063,708.661 L 566.929,620.079"
|
||||
transform="translate(177.1655,-224.0517)"
|
||||
id="path754"
|
||||
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
|
||||
<path
|
||||
d="M 442.913,566.929 L 496.063,673.228 L 549.213,566.929"
|
||||
transform="translate(177.1655,-224.0517)"
|
||||
id="path755"
|
||||
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(-0.209517,0.302465,-0.314697,-0.199448,1141.363,167.5798)"
|
||||
id="g756">
|
||||
<path
|
||||
d="M 496.063,549.213 L 513.78,620.079 L 549.213,566.929 L 531.496,655.512 L 566.929,620.079 L 531.496,708.661 L 566.929,673.228 L 531.496,761.811 L 566.929,726.378 L 531.496,832.677 L 566.929,797.244 L 531.496,903.543 L 566.929,868.11 L 531.496,974.409 L 513.78,1027.56 L 496.063,1045.28 L 478.346,1027.56 L 460.63,974.409 L 425.197,868.11 L 460.63,903.543 L 425.197,797.244 L 460.63,832.677 L 425.197,726.378 L 460.63,761.811 L 425.197,673.228 L 460.63,708.661 L 425.197,620.079 L 460.63,655.512 L 442.913,566.929 L 478.346,620.079 L 496.063,549.213 z"
|
||||
transform="translate(177.1655,-224.0517)"
|
||||
id="path757"
|
||||
style="font-size:12px;fill:#006d00;fill-rule:evenodd;stroke:#ffffff;stroke-width:8.25;stroke-dasharray:none" />
|
||||
<path
|
||||
d="M 496.063,549.213 L 496.063,1045.28"
|
||||
transform="translate(177.1655,-224.0517)"
|
||||
id="path758"
|
||||
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
|
||||
<path
|
||||
d="M 425.197,868.11 L 496.063,974.409 L 566.929,868.11"
|
||||
transform="translate(177.1655,-224.0517)"
|
||||
id="path759"
|
||||
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
|
||||
<path
|
||||
d="M 425.197,797.244 L 496.063,903.543 L 566.929,797.244"
|
||||
transform="translate(177.1655,-224.0517)"
|
||||
id="path760"
|
||||
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
|
||||
<path
|
||||
d="M 425.197,726.378 L 496.063,832.677 L 566.929,726.378"
|
||||
transform="translate(177.1655,-224.0517)"
|
||||
id="path761"
|
||||
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
|
||||
<path
|
||||
d="M 425.197,673.228 L 496.063,761.811 L 566.929,673.228"
|
||||
transform="translate(177.1655,-224.0517)"
|
||||
id="path762"
|
||||
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
|
||||
<path
|
||||
d="M 425.197,620.079 L 496.063,708.661 L 566.929,620.079"
|
||||
transform="translate(177.1655,-224.0517)"
|
||||
id="path763"
|
||||
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
|
||||
<path
|
||||
d="M 442.913,566.929 L 496.063,673.228 L 549.213,566.929"
|
||||
transform="translate(177.1655,-224.0517)"
|
||||
id="path764"
|
||||
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(-0.207724,-0.258384,0.236176,-0.235153,689.9856,567.2772)"
|
||||
id="g765">
|
||||
<path
|
||||
d="M 496.063,549.213 L 513.78,620.079 L 549.213,566.929 L 531.496,655.512 L 566.929,620.079 L 531.496,708.661 L 566.929,673.228 L 531.496,761.811 L 566.929,726.378 L 531.496,832.677 L 566.929,797.244 L 531.496,903.543 L 566.929,868.11 L 531.496,974.409 L 513.78,1027.56 L 496.063,1045.28 L 478.346,1027.56 L 460.63,974.409 L 425.197,868.11 L 460.63,903.543 L 425.197,797.244 L 460.63,832.677 L 425.197,726.378 L 460.63,761.811 L 425.197,673.228 L 460.63,708.661 L 425.197,620.079 L 460.63,655.512 L 442.913,566.929 L 478.346,620.079 L 496.063,549.213 z"
|
||||
transform="translate(177.1655,-224.0517)"
|
||||
id="path766"
|
||||
style="font-size:12px;fill:#006d00;fill-rule:evenodd;stroke:#ffffff;stroke-width:8.25;stroke-dasharray:none" />
|
||||
<path
|
||||
d="M 496.063,549.213 L 496.063,1045.28"
|
||||
transform="translate(177.1655,-224.0517)"
|
||||
id="path767"
|
||||
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
|
||||
<path
|
||||
d="M 425.197,868.11 L 496.063,974.409 L 566.929,868.11"
|
||||
transform="translate(177.1655,-224.0517)"
|
||||
id="path768"
|
||||
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
|
||||
<path
|
||||
d="M 425.197,797.244 L 496.063,903.543 L 566.929,797.244"
|
||||
transform="translate(177.1655,-224.0517)"
|
||||
id="path769"
|
||||
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
|
||||
<path
|
||||
d="M 425.197,726.378 L 496.063,832.677 L 566.929,726.378"
|
||||
transform="translate(177.1655,-224.0517)"
|
||||
id="path770"
|
||||
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
|
||||
<path
|
||||
d="M 425.197,673.228 L 496.063,761.811 L 566.929,673.228"
|
||||
transform="translate(177.1655,-224.0517)"
|
||||
id="path771"
|
||||
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
|
||||
<path
|
||||
d="M 425.197,620.079 L 496.063,708.661 L 566.929,620.079"
|
||||
transform="translate(177.1655,-224.0517)"
|
||||
id="path772"
|
||||
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
|
||||
<path
|
||||
d="M 442.913,566.929 L 496.063,673.228 L 549.213,566.929"
|
||||
transform="translate(177.1655,-224.0517)"
|
||||
id="path773"
|
||||
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(-0.362184,-9.947167e-2,-0.209809,0.317733,1222.415,-24.22945)"
|
||||
id="g791">
|
||||
<path
|
||||
d="M 460.63,549.213 L 489.273,620.079 L 531.496,566.929 L 521.312,655.512 L 549.212,620.079 L 531.496,708.661 L 556.745,673.228 L 531.496,761.811 L 566.929,726.378 L 531.496,832.677 L 566.929,797.244 L 531.496,903.543 L 566.929,868.11 L 531.496,974.409 L 513.78,1027.56 L 496.063,1045.28 L 478.346,1027.56 L 460.63,974.409 L 425.197,868.11 L 460.63,903.543 L 425.197,797.244 L 460.63,832.677 L 425.197,726.378 L 460.63,761.811 L 415.013,673.228 L 460.63,708.661 L 407.48,620.079 L 450.446,655.512 L 425.196,566.929 L 460.629,620.079 L 460.63,549.213 z"
|
||||
transform="translate(283.4647,-124.0162)"
|
||||
id="path775"
|
||||
style="font-size:12px;fill:#006d00;fill-rule:evenodd;stroke:#ffffff;stroke-width:8.25" />
|
||||
<path
|
||||
d="M 467.208,584.646 L 496.063,708.662 L 496.063,1045.28"
|
||||
transform="translate(283.4647,-124.0162)"
|
||||
id="path776"
|
||||
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
|
||||
<path
|
||||
d="M 436.23,885.827 L 496.063,974.409 L 556.745,885.827"
|
||||
transform="translate(283.4647,-124.0162)"
|
||||
id="path777"
|
||||
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
|
||||
<path
|
||||
d="M 434.533,814.961 L 496.063,903.543 L 556.745,814.961"
|
||||
transform="translate(283.4647,-124.0162)"
|
||||
id="path778"
|
||||
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
|
||||
<path
|
||||
d="M 435.381,744.095 L 496.063,832.677 L 555.896,744.095"
|
||||
transform="translate(283.4647,-124.0162)"
|
||||
id="path779"
|
||||
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
|
||||
<path
|
||||
d="M 432.835,690.945 L 496.063,761.811 L 549.212,690.945"
|
||||
transform="translate(283.4647,-124.0162)"
|
||||
id="path780"
|
||||
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
|
||||
<path
|
||||
d="M 425.197,637.796 L 496.063,708.661 L 541.469,637.796"
|
||||
transform="translate(283.4647,-124.0162)"
|
||||
id="path781"
|
||||
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
|
||||
<path
|
||||
d="M 436.124,593.238 L 489.274,680.124 L 524.601,584.646"
|
||||
transform="translate(283.4647,-124.0162)"
|
||||
id="path782"
|
||||
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.360878,0.10411,1.321056e-2,0.380525,452.7614,-239.2657)"
|
||||
id="g800">
|
||||
<path
|
||||
d="M 460.63,549.213 L 489.273,620.079 L 531.496,566.929 L 521.312,655.512 L 549.212,620.079 L 531.496,708.661 L 556.745,673.228 L 531.496,761.811 L 566.929,726.378 L 531.496,832.677 L 566.929,797.244 L 531.496,903.543 L 566.929,868.11 L 531.496,974.409 L 513.78,1027.56 L 496.063,1045.28 L 478.346,1027.56 L 460.63,974.409 L 425.197,868.11 L 460.63,903.543 L 425.197,797.244 L 460.63,832.677 L 425.197,726.378 L 460.63,761.811 L 415.013,673.228 L 460.63,708.661 L 407.48,620.079 L 450.446,655.512 L 425.196,566.929 L 460.629,620.079 L 460.63,549.213 z"
|
||||
transform="translate(283.4647,-124.0162)"
|
||||
id="path801"
|
||||
style="font-size:12px;fill:#006d00;fill-rule:evenodd;stroke:#ffffff;stroke-width:8.25" />
|
||||
<path
|
||||
d="M 467.208,584.646 L 496.063,708.662 L 496.063,1045.28"
|
||||
transform="translate(283.4647,-124.0162)"
|
||||
id="path802"
|
||||
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
|
||||
<path
|
||||
d="M 436.23,885.827 L 496.063,974.409 L 556.745,885.827"
|
||||
transform="translate(283.4647,-124.0162)"
|
||||
id="path803"
|
||||
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
|
||||
<path
|
||||
d="M 434.533,814.961 L 496.063,903.543 L 556.745,814.961"
|
||||
transform="translate(283.4647,-124.0162)"
|
||||
id="path804"
|
||||
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
|
||||
<path
|
||||
d="M 435.381,744.095 L 496.063,832.677 L 555.896,744.095"
|
||||
transform="translate(283.4647,-124.0162)"
|
||||
id="path805"
|
||||
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
|
||||
<path
|
||||
d="M 432.835,690.945 L 496.063,761.811 L 549.212,690.945"
|
||||
transform="translate(283.4647,-124.0162)"
|
||||
id="path806"
|
||||
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
|
||||
<path
|
||||
d="M 425.197,637.796 L 496.063,708.661 L 541.469,637.796"
|
||||
transform="translate(283.4647,-124.0162)"
|
||||
id="path807"
|
||||
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
|
||||
<path
|
||||
d="M 436.124,593.238 L 489.274,680.124 L 524.601,584.646"
|
||||
transform="translate(283.4647,-124.0162)"
|
||||
id="path808"
|
||||
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(4.613187e-2,-0.364743,0.326017,6.479648e-2,379.5799,479.5432)"
|
||||
id="g843">
|
||||
<path
|
||||
d="M 354.331,531.496 L 442.914,620.079 L 460.63,566.93 L 460.63,655.512 L 496.063,620.079 L 478.347,708.662 L 513.779,673.228 L 496.063,761.812 L 531.496,726.379 L 513.78,832.678 L 549.213,797.245 L 513.78,903.544 L 549.213,868.111 L 531.496,974.409 L 513.78,1027.56 L 496.063,1045.28 L 478.346,1027.56 L 460.63,974.409 L 407.48,892.115 L 442.914,903.544 L 407.481,797.245 L 442.914,832.678 L 389.764,726.379 L 425.197,761.812 L 372.047,673.228 L 425.197,708.662 L 354.331,620.079 L 407.48,655.512 L 336.614,584.646 L 407.48,620.079 L 354.331,531.496 z"
|
||||
transform="translate(442.9136,-42.96583)"
|
||||
id="path810"
|
||||
style="font-size:12px;fill:#006d00;fill-rule:evenodd;stroke:#ffffff;stroke-width:8.25" />
|
||||
<path
|
||||
d="M 378.962,560.015 L 442.914,655.512 L 460.63,708.662 L 469.489,753.867 L 478.347,832.678 L 487.662,903.544 L 496.063,1045.28"
|
||||
transform="translate(442.9136,-42.96583)"
|
||||
id="path811"
|
||||
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
|
||||
<path
|
||||
d="M 425.197,903.544 L 488.862,974.41 L 539.611,885.827"
|
||||
transform="translate(442.9136,-42.96583)"
|
||||
id="path812"
|
||||
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
|
||||
<path
|
||||
d="M 417.082,814.961 L 487.661,903.544 L 538.411,814.961"
|
||||
transform="translate(442.9136,-42.96583)"
|
||||
id="path813"
|
||||
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
|
||||
<path
|
||||
d="M 407.48,752.443 L 478.347,832.678 L 524.295,744.095"
|
||||
transform="translate(442.9136,-42.96583)"
|
||||
id="path814"
|
||||
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
|
||||
<path
|
||||
d="M 372.047,637.796 L 460.63,708.662 L 486.461,637.796"
|
||||
transform="translate(442.9136,-42.96583)"
|
||||
id="path815"
|
||||
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
|
||||
<path
|
||||
d="M 360.618,602.363 L 442.914,655.512 L 453.429,602.363"
|
||||
transform="translate(442.9136,-42.96583)"
|
||||
id="path816"
|
||||
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
|
||||
<path
|
||||
d="M 389.764,690.945 L 470.859,761.811 L 504.805,690.945"
|
||||
transform="translate(442.9136,-42.96583)"
|
||||
id="path817"
|
||||
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.253333,0,0,0.253333,412,157.1807)"
|
||||
id="g3550">
|
||||
<path
|
||||
d="M 52.503965,257.67359 L 151.04022,239.9936 L 253.68217,257.67359 L 206.05631,277.47519 L 118.19481,278.88959 L 52.503965,257.67359 z"
|
||||
id="path2533"
|
||||
style="fill:#9d9d9d;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00763929px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 151.78901,98.44529 C 134.5655,104.43198 115.487,90.019808 84.429526,113.53855 C 84.429526,113.53855 30.285723,90.375857 26.173134,143.90965 C 26.007856,146.0772 34.743302,159.13312 35.959006,158.19981 C 42.763268,152.97609 32.729269,163.27247 32.729269,164.75987 C 32.729269,166.25998 33.727209,167.09271 34.064093,167.75377 C 34.394626,168.42118 35.227321,169.41915 35.392587,172.24775 C 35.557854,175.07637 29.255743,182.79178 31.919093,185.62039 C 34.576081,188.44899 34.741348,196.60428 34.741348,198.93073 C 34.741348,201.25719 36.406727,207.7471 37.569954,209.08192 C 38.733193,210.41042 40.729115,213.73484 40.729115,216.56345 C 40.729115,219.39206 41.892332,227.21045 41.39017,229.2 C 40.894371,231.19592 44.384053,233.69399 47.549544,234.69194 C 50.708684,235.68992 91.484837,236.39788 148.71173,235.39993 C 205.94498,234.40198 225.03999,243.45747 248.68588,234.85721 C 252.34084,233.52874 253.00827,230.53485 252.67773,228.86947 C 252.34084,227.21045 252.67773,221.89013 253.67569,220.55529 C 254.67364,219.22678 261.32882,208.57978 259.99396,206.58386 C 261.2504,205.4496 270.5831,211.97352 264.639,206.14839 C 263.11463,204.65453 265.49227,188.93207 266.31224,185.62039 C 267.13861,182.30235 268.40792,176.07061 269.93345,174.91375 C 271.46535,173.75688 267.33516,169.42594 267.62757,168.64411 C 267.92633,167.85591 269.03869,165.41504 270.58967,164.30267 C 270.58967,164.30267 273.47549,150.77621 271.69568,144.12741 C 269.9286,137.47222 263.42643,107.54445 222.8343,113.53855 C 222.8343,113.53855 168.49352,92.638978 151.78901,98.44529 z"
|
||||
id="path560"
|
||||
style="font-size:12px;fill:#cc0000;fill-opacity:1;stroke:#000000;stroke-width:1.62866855;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<g
|
||||
transform="translate(0,-2.600445e-4)"
|
||||
id="g2053">
|
||||
<g
|
||||
transform="matrix(1.085779,0,0,1.085779,6.91471,26.11235)"
|
||||
id="g34262">
|
||||
<g
|
||||
id="g33323">
|
||||
<g
|
||||
id="g33297">
|
||||
<g
|
||||
id="g33273">
|
||||
<g
|
||||
id="g33265">
|
||||
<g
|
||||
transform="matrix(0.496967,-4.459677e-2,8.946727e-2,0.726775,44.70009,100.5425)"
|
||||
id="g14434"
|
||||
style="stroke-width:1.2411145;stroke-miterlimit:4;stroke-dasharray:none">
|
||||
<path
|
||||
d="M 49.75,0.125 C 44.657173,1.0150867 34.593967,29.370307 37.140742,38.875 C 38.903806,45.454846 41.638805,49.994728 43.1875,52.78125 C 39.783355,48.095644 31.805069,39.03125 20.9375,39.03125 C 7.2744195,39.031249 5.5071701,68.979132 5.84375,70.90625 C 5.8451686,70.913083 5.8422657,70.931582 5.84375,70.9375 C 5.8452986,70.942497 5.8733883,70.964683 5.875,70.96875 C 5.8766791,70.967805 5.9044132,70.970089 5.90625,70.96875 C 6.5192136,70.254323 12.047657,57.875 25.5625,57.875 C 34.458953,57.875001 41.391733,64.910483 43.9375,67.90625 C 43.936774,68.850585 43.960299,69.7644 43.96875,70.6875 C 41.964844,73.515974 40.687337,80.21875 34.499837,88.65625 C 27.023275,98.851565 4.1284837,99.896789 0.28125,100 C 1.2518101,100 37.80639,100 49.8125,100 C 49.859919,100 49.921967,100.00293 49.96875,100 C 49.990625,100.00202 50.009234,99.998621 50.03125,100 C 50.078033,100.00293 50.140081,100 50.1875,100 C 62.19361,100 98.74819,100 99.71875,100 C 95.871517,99.896788 72.539244,98.851561 65.062684,88.65625 C 58.875184,80.21875 58.035156,73.515973 56.03125,70.6875 C 56.039701,69.7644 56.063226,68.850585 56.0625,67.90625 C 58.608266,64.910482 65.541045,57.874999 74.4375,57.875 C 87.952343,57.875 93.480788,70.254327 94.09375,70.96875 C 94.095587,70.970089 94.123321,70.967805 94.125,70.96875 C 94.126612,70.964683 94.154701,70.942497 94.15625,70.9375 C 94.157734,70.931582 94.154831,70.913083 94.15625,70.90625 C 94.49283,68.979133 92.725584,39.03125 79.0625,39.03125 C 68.194931,39.03125 60.216645,48.095644 56.8125,52.78125 C 58.361195,49.994728 61.102733,44.205918 62.531148,38.875 C 65.118348,29.219439 55.091155,0.1322067 50,0.125 C 49.920451,0.12511261 49.830839,0.11087164 49.75,0.125 z M 43.3125,52.96875 C 43.664807,53.459137 43.974714,53.881164 44.21875,54.25 C 44.223907,54.257795 44.760491,57.226504 44.765599,57.234237 C 44.763218,57.29794 47.39283,67.420084 47.390477,67.483768 C 47.126088,67.092089 43.653445,53.568624 43.3125,52.96875 z M 56.6875,52.96875 C 56.346555,53.568624 52.655172,67.092089 52.390783,67.483768 C 52.38843,67.420084 55.783631,54.344953 55.78125,54.28125 C 55.780853,54.270633 55.344168,57.244855 55.34377,57.234237 C 55.587806,56.865401 56.335193,53.459137 56.6875,52.96875 z"
|
||||
id="path13497"
|
||||
style="fill:#f7d917;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.2411145;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 42,67.578191 C 42,67.578191 46,65.718903 50,65.718903 C 54,65.718903 58,67.578191 58,67.578191 L 58,72.531179 C 58,72.531179 54,70.67189 50,70.67189 C 46,70.67189 42,72.531179 42,72.531179 L 42,67.578191 z"
|
||||
id="path13500"
|
||||
style="fill:#f7d917;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.2411145;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.495379,5.970303e-2,-6.359282e-2,0.729495,168.9189,96.59048)"
|
||||
id="g27449"
|
||||
style="stroke-width:1.24111438;stroke-miterlimit:4;stroke-dasharray:none">
|
||||
<path
|
||||
d="M 49.75,0.125 C 44.657173,1.0150867 34.593967,29.370307 37.140742,38.875 C 38.903806,45.454846 41.638805,49.994728 43.1875,52.78125 C 39.783355,48.095644 31.805069,39.03125 20.9375,39.03125 C 7.2744195,39.031249 5.5071701,68.979132 5.84375,70.90625 C 5.8451686,70.913083 5.8422657,70.931582 5.84375,70.9375 C 5.8452986,70.942497 5.8733883,70.964683 5.875,70.96875 C 5.8766791,70.967805 5.9044132,70.970089 5.90625,70.96875 C 6.5192136,70.254323 12.047657,57.875 25.5625,57.875 C 34.458953,57.875001 41.391733,64.910483 43.9375,67.90625 C 43.936774,68.850585 43.960299,69.7644 43.96875,70.6875 C 41.964844,73.515974 40.687337,80.21875 34.499837,88.65625 C 27.023275,98.851565 4.1284837,99.896789 0.28125,100 C 1.2518101,100 37.80639,100 49.8125,100 C 49.859919,100 49.921967,100.00293 49.96875,100 C 49.990625,100.00202 50.009234,99.998621 50.03125,100 C 50.078033,100.00293 50.140081,100 50.1875,100 C 62.19361,100 98.74819,100 99.71875,100 C 95.871517,99.896788 72.539244,98.851561 65.062684,88.65625 C 58.875184,80.21875 58.035156,73.515973 56.03125,70.6875 C 56.039701,69.7644 56.063226,68.850585 56.0625,67.90625 C 58.608266,64.910482 65.541045,57.874999 74.4375,57.875 C 87.952343,57.875 93.480788,70.254327 94.09375,70.96875 C 94.095587,70.970089 94.123321,70.967805 94.125,70.96875 C 94.126612,70.964683 94.154701,70.942497 94.15625,70.9375 C 94.157734,70.931582 94.154831,70.913083 94.15625,70.90625 C 94.49283,68.979133 92.725584,39.03125 79.0625,39.03125 C 68.194931,39.03125 60.216645,48.095644 56.8125,52.78125 C 58.361195,49.994728 61.102733,44.205918 62.531148,38.875 C 65.118348,29.219439 55.091155,0.1322067 50,0.125 C 49.920451,0.12511261 49.830839,0.11087164 49.75,0.125 z M 43.3125,52.96875 C 43.664807,53.459137 43.974714,53.881164 44.21875,54.25 C 44.223907,54.257795 44.760491,57.226504 44.765599,57.234237 C 44.763218,57.29794 47.39283,67.420084 47.390477,67.483768 C 47.126088,67.092089 43.653445,53.568624 43.3125,52.96875 z M 56.6875,52.96875 C 56.346555,53.568624 52.655172,67.092089 52.390783,67.483768 C 52.38843,67.420084 55.783631,54.344953 55.78125,54.28125 C 55.780853,54.270633 55.344168,57.244855 55.34377,57.234237 C 55.587806,56.865401 56.335193,53.459137 56.6875,52.96875 z"
|
||||
id="path27451"
|
||||
style="fill:#f7d917;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.24111438;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 42,67.578191 C 42,67.578191 46,65.718903 50,65.718903 C 54,65.718903 58,67.578191 58,67.578191 L 58,72.531179 C 58,72.531179 54,70.67189 50,70.67189 C 46,70.67189 42,72.531179 42,72.531179 L 42,67.578191 z"
|
||||
id="path27453"
|
||||
style="fill:#f7d917;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.24111438;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g33161">
|
||||
<g
|
||||
id="g33067">
|
||||
<g
|
||||
id="g33040">
|
||||
<path
|
||||
d="M 24.307772,134.55964 L 33.997629,122.74604 C 33.997629,122.74604 34.901298,123.91425 33.997629,122.74604 C 14.132028,97.064775 13.127166,82.331049 15.363287,74.869821 C 17.599408,67.408593 22.07165,59.325595 33.997629,49.377291 C 45.923607,39.428986 54.153807,44.958238 65.334412,44.958238 C 76.515016,44.958238 79.496511,47.445314 89.18637,48.688852 C 98.876225,49.93239 124.9643,51.175929 124.9643,51.175929 L 124.9643,44.336469 C 124.9643,44.336469 125.99304,44.528254 124.9643,44.336469 C 113.44564,42.18906 98.876225,44.336469 89.18637,41.849393 C 79.496511,39.362316 71.297401,38.740548 60.86217,38.740548 C 50.426939,38.740548 42.942114,35.698372 36.233751,40.050755 C 29.525388,44.403138 21.326277,51.864367 15.363287,58.082058 C 9.4002971,64.299748 6.4188033,76.735128 7.1641763,84.818126 C 7.9095502,92.901124 10.891045,99.740583 15.363287,105.95827 C 19.83553,112.17596 19.090156,117.15011 20.580903,121.50249 C 22.07165,125.85488 24.307772,135.18141 24.307772,134.55964 z"
|
||||
id="path28377"
|
||||
style="fill:#f7d917;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.71481037;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 239.25473,134.55964 L 229.56487,122.74604 C 229.56487,122.74604 228.6612,123.91425 229.56487,122.74604 C 249.43047,97.064775 250.43533,82.331049 248.19921,74.869821 C 245.96309,67.408593 241.49085,59.325595 229.56487,49.377291 C 217.63889,39.428986 209.40869,44.958238 198.22809,44.958238 C 187.04748,44.958238 184.06599,47.445314 174.37613,48.688852 C 164.68627,49.93239 138.5982,51.175929 138.5982,51.175929 L 138.5982,44.336469 C 138.5982,44.336469 137.56946,44.528254 138.5982,44.336469 C 150.11686,42.18906 164.68627,44.336469 174.37613,41.849393 C 184.06599,39.362316 192.2651,38.740548 202.70033,38.740548 C 213.13556,38.740548 220.62039,35.698372 227.32875,40.050755 C 234.03711,44.403138 242.23622,51.864367 248.19921,58.082058 C 254.1622,64.299748 257.1437,76.735128 256.39832,84.818126 C 255.65295,92.901124 252.67146,99.740583 248.19921,105.95827 C 243.72697,112.17596 244.47234,117.15011 242.9816,121.50249 C 241.49085,125.85488 239.25473,135.18141 239.25473,134.55964 z"
|
||||
id="path29282"
|
||||
style="fill:#f7d917;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.71481037;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<rect
|
||||
width="34.563435"
|
||||
height="70.893784"
|
||||
x="115.55334"
|
||||
y="38.701004"
|
||||
id="rect29364"
|
||||
style="fill:#f7d917;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.83496058;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(0,-8)"
|
||||
id="g33061">
|
||||
<path
|
||||
d="M 119.68386,-15.799146 C 119.68386,-15.799146 123.40428,-12.770914 126.25946,-8.8774715 C 129.11465,-4.9840306 131.10463,-0.2253797 131.10463,-0.2253797 C 131.10463,-0.2253797 126.34597,-2.2153611 122.45254,-5.070551 C 118.55909,-7.9257425 115.53086,-11.646141 115.53086,-11.646141 L 115.53086,14.656221 C 115.53086,14.656221 118.55909,10.93582 122.45254,8.080629 C 126.34597,5.2254391 131.10463,3.2354577 131.10463,3.2354577 C 131.10463,3.2354577 129.57132,7.1620817 128.58089,11.88755 C 127.68999,16.138135 120.39815,25.952081 120.39815,25.952081 L 141.70053,27.380652 C 141.70053,27.380652 138.1587,16.138135 136.73207,11.88755 C 135.19582,7.3103318 134.56547,3.2354577 134.56547,3.2354577 C 134.56547,3.2354577 139.32413,5.2254391 143.21756,8.080629 C 147.11101,10.93582 150.13924,14.656221 150.13924,14.656221 L 150.13924,-11.646141 C 150.13924,-11.646141 147.11101,-7.9257425 143.21756,-5.070551 C 139.32413,-2.2153611 134.56547,-0.2253797 134.56547,-0.2253797 C 134.56547,-0.2253797 136.55545,-4.9840306 139.41064,-8.8774715 C 142.26584,-12.770914 145.98624,-15.799146 145.98624,-15.799146 L 119.68386,-15.799146 z"
|
||||
id="path29388"
|
||||
style="fill:#f7d917;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<g
|
||||
id="g33057">
|
||||
<path
|
||||
d="M 150,23.076468 A 17.142857,17.142857 0 1 1 115.71429,23.076468 A 17.142857,17.142857 0 1 1 150,23.076468 z"
|
||||
transform="translate(-2.209282e-2,8)"
|
||||
id="path29366"
|
||||
style="fill:#f7d917;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 116.07419,33.53461 L 150.17581,33.53461 C 150.17581,33.53461 150.66962,26.938729 148.2015,24.470608 C 145.8229,24.470608 137.6075,24.470608 137.6075,24.470608 L 137.42893,14.582607 L 133.48397,14.582607 L 127.38704,14.582607 L 127.20847,24.470608 C 127.20847,24.470608 120.0813,24.827751 116.79758,24.827751 C 115.30865,28.869394 115.53848,29.20861 115.53848,29.20861 L 116.07419,33.53461 z"
|
||||
id="path31255"
|
||||
style="fill:#f7d917;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g33156">
|
||||
<path
|
||||
d="M 110.87688,107.22088 C 110.87688,107.22088 117.08873,112.27704 121.85596,118.77781 C 126.6232,125.27859 129.94582,133.22398 129.94582,133.22398 C 129.94582,133.22398 122.00043,129.90136 115.49965,125.13412 C 108.99888,120.36689 103.94272,114.15504 103.94272,114.15504 L 103.94272,158.07138 C 103.94272,158.07138 108.99888,151.85954 115.49965,147.0923 C 122.00043,142.32506 129.94582,139.00244 129.94582,139.00244 C 129.94582,139.00244 126.6232,146.94783 121.85596,153.44861 C 117.08873,159.94939 110.87688,165.00555 110.87688,165.00555 L 154.79322,165.00555 C 154.79322,165.00555 148.58137,159.94939 143.81414,153.44861 C 139.0469,146.94783 135.72428,139.00244 135.72428,139.00244 C 135.72428,139.00244 143.66967,142.32506 150.17045,147.0923 C 156.67122,151.85954 161.72739,158.07138 161.72739,158.07138 L 161.72739,114.15504 C 161.72739,114.15504 156.67122,120.36689 150.17045,125.13412 C 143.66967,129.90136 135.72428,133.22398 135.72428,133.22398 C 135.72428,133.22398 139.0469,125.27859 143.81414,118.77781 C 148.58137,112.27704 154.79322,107.22088 154.79322,107.22088 L 110.87688,107.22088 z"
|
||||
id="path11917"
|
||||
style="fill:#f7d917;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 27.240452,181.77981 L 48.865028,177.96682 C 48.865028,177.96682 41.869557,174.06615 36.045904,168.49195 C 30.22224,162.91775 25.570396,155.67004 25.570396,155.67004 C 25.570396,155.67004 33.972044,157.56248 41.201886,161.12844 C 48.431717,164.69441 54.489747,169.93388 54.489747,169.93388 L 46.863754,126.68473 C 46.863754,126.68473 42.963075,133.68021 37.388888,139.50386 C 31.814692,145.32752 24.566977,149.97937 24.566977,149.97937 C 24.566977,149.97937 26.459416,141.57772 30.025383,134.34788 C 33.591341,127.11805 38.830826,121.06002 38.830826,121.06002 L 17.20625,124.87302 L 27.240452,181.77981 z"
|
||||
id="path27435"
|
||||
style="fill:#f7d917;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 226.83929,121.06002 C 226.83929,121.06002 232.07877,127.11803 235.64473,134.34786 C 239.21069,141.5777 241.10313,149.97935 241.10313,149.97935 C 241.10313,149.97935 233.85542,145.32751 228.28122,139.50385 C 222.70704,133.68019 218.80637,126.68472 218.80637,126.68472 L 211.18037,169.93387 C 211.18037,169.93387 217.23839,164.6944 224.46823,161.12843 C 231.69807,157.56247 240.09972,155.67003 240.09972,155.67003 C 240.09972,155.67003 235.44787,162.91774 229.62421,168.49194 C 223.80055,174.06613 216.80508,177.9668 216.80508,177.9668 L 238.42966,181.7798 L 248.46386,124.87301 L 226.83929,121.06002 z"
|
||||
id="path27433"
|
||||
style="fill:#f7d917;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path
|
||||
d="M 27.463842,179.53267 L 27.613728,211.0392 C 27.613728,211.0392 80.261863,193.11098 132.91001,193.11098 C 185.55813,193.11098 238.20627,211.0392 238.20627,211.0392 L 238.20627,179.53267 C 238.20627,179.53267 185.52066,161.60445 132.83506,161.60445 C 80.149449,161.60445 27.463842,179.53267 27.463842,179.53267 z"
|
||||
id="path14537"
|
||||
style="fill:#f7d917;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
id="g31151">
|
||||
<path
|
||||
d="M 2.0203056,723.05243 A 12.121831,12.121831 0 1 1 -22.223356,723.05243 A 12.121831,12.121831 0 1 1 2.0203056,723.05243 z"
|
||||
transform="matrix(0.661234,0,0,0.661234,21.24618,-360.3206)"
|
||||
id="path23567"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 2.0203056,723.05243 A 12.121831,12.121831 0 1 1 -22.223356,723.05243 A 12.121831,12.121831 0 1 1 2.0203056,723.05243 z"
|
||||
transform="matrix(0.661234,0,0,0.661234,10.96519,-378.6019)"
|
||||
id="path29252"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 2.0203056,723.05243 A 12.121831,12.121831 0 1 1 -22.223356,723.05243 A 12.121831,12.121831 0 1 1 2.0203056,723.05243 z"
|
||||
transform="matrix(0.661234,0,0,0.661234,8.822333,-400.0304)"
|
||||
id="path29254"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 2.0203056,723.05243 A 12.121831,12.121831 0 1 1 -22.223356,723.05243 A 12.121831,12.121831 0 1 1 2.0203056,723.05243 z"
|
||||
transform="matrix(0.661234,0,0,0.661234,15.25091,-420.0304)"
|
||||
id="path29256"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 2.0203056,723.05243 A 12.121831,12.121831 0 1 1 -22.223356,723.05243 A 12.121831,12.121831 0 1 1 2.0203056,723.05243 z"
|
||||
transform="matrix(0.661234,0,0,0.661234,28.82233,-436.459)"
|
||||
id="path29258"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 2.0203056,723.05243 A 12.121831,12.121831 0 1 1 -22.223356,723.05243 A 12.121831,12.121831 0 1 1 2.0203056,723.05243 z"
|
||||
transform="matrix(0.661234,0,0,0.661234,47.39376,-447.8875)"
|
||||
id="path29260"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 2.0203056,723.05243 A 12.121831,12.121831 0 1 1 -22.223356,723.05243 A 12.121831,12.121831 0 1 1 2.0203056,723.05243 z"
|
||||
transform="matrix(0.661234,0,0,0.661234,68.10805,-446.459)"
|
||||
id="path29262"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 2.0203056,723.05243 A 12.121831,12.121831 0 1 1 -22.223356,723.05243 A 12.121831,12.121831 0 1 1 2.0203056,723.05243 z"
|
||||
transform="matrix(0.661234,0,0,0.661234,88.82233,-443.0304)"
|
||||
id="path29264"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 2.0203056,723.05243 A 12.121831,12.121831 0 1 1 -22.223356,723.05243 A 12.121831,12.121831 0 1 1 2.0203056,723.05243 z"
|
||||
transform="matrix(0.661234,0,0,0.661234,109.5366,-440.8875)"
|
||||
id="path29266"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 2.0203056,723.05243 A 12.121831,12.121831 0 1 1 -22.223356,723.05243 A 12.121831,12.121831 0 1 1 2.0203056,723.05243 z"
|
||||
transform="matrix(-0.661234,0,0,0.661234,242.3163,-360.3206)"
|
||||
id="path29284"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 2.0203056,723.05243 A 12.121831,12.121831 0 1 1 -22.223356,723.05243 A 12.121831,12.121831 0 1 1 2.0203056,723.05243 z"
|
||||
transform="matrix(-0.661234,0,0,0.661234,252.5973,-378.6019)"
|
||||
id="path29286"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 2.0203056,723.05243 A 12.121831,12.121831 0 1 1 -22.223356,723.05243 A 12.121831,12.121831 0 1 1 2.0203056,723.05243 z"
|
||||
transform="matrix(-0.661234,0,0,0.661234,254.7402,-400.0304)"
|
||||
id="path29288"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 2.0203056,723.05243 A 12.121831,12.121831 0 1 1 -22.223356,723.05243 A 12.121831,12.121831 0 1 1 2.0203056,723.05243 z"
|
||||
transform="matrix(-0.661234,0,0,0.661234,248.3116,-420.0304)"
|
||||
id="path29290"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 2.0203056,723.05243 A 12.121831,12.121831 0 1 1 -22.223356,723.05243 A 12.121831,12.121831 0 1 1 2.0203056,723.05243 z"
|
||||
transform="matrix(-0.661234,0,0,0.661234,234.7402,-436.459)"
|
||||
id="path29292"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 2.0203056,723.05243 A 12.121831,12.121831 0 1 1 -22.223356,723.05243 A 12.121831,12.121831 0 1 1 2.0203056,723.05243 z"
|
||||
transform="matrix(-0.661234,0,0,0.661234,216.1687,-447.8875)"
|
||||
id="path29294"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 2.0203056,723.05243 A 12.121831,12.121831 0 1 1 -22.223356,723.05243 A 12.121831,12.121831 0 1 1 2.0203056,723.05243 z"
|
||||
transform="matrix(-0.661234,0,0,0.661234,195.4544,-446.459)"
|
||||
id="path29296"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 2.0203056,723.05243 A 12.121831,12.121831 0 1 1 -22.223356,723.05243 A 12.121831,12.121831 0 1 1 2.0203056,723.05243 z"
|
||||
transform="matrix(-0.661234,0,0,0.661234,174.7402,-443.0304)"
|
||||
id="path29298"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 2.0203056,723.05243 A 12.121831,12.121831 0 1 1 -22.223356,723.05243 A 12.121831,12.121831 0 1 1 2.0203056,723.05243 z"
|
||||
transform="matrix(-0.661234,0,0,0.661234,154.0259,-440.8875)"
|
||||
id="path29300"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<g
|
||||
transform="translate(1.040326,0)"
|
||||
id="g29354">
|
||||
<path
|
||||
d="M 2.0203056,723.05243 A 12.121831,12.121831 0 1 1 -22.223356,723.05243 A 12.121831,12.121831 0 1 1 2.0203056,723.05243 z"
|
||||
transform="matrix(0.661234,0,0,0.661234,138.4742,-378.3206)"
|
||||
id="path29306"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 2.0203056,723.05243 A 12.121831,12.121831 0 1 1 -22.223356,723.05243 A 12.121831,12.121831 0 1 1 2.0203056,723.05243 z"
|
||||
transform="matrix(0.661234,0,0,0.661234,138.4742,-392.6019)"
|
||||
id="path29308"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 2.0203056,723.05243 A 12.121831,12.121831 0 1 1 -22.223356,723.05243 A 12.121831,12.121831 0 1 1 2.0203056,723.05243 z"
|
||||
transform="matrix(0.661234,0,0,0.661234,138.4742,-404.0304)"
|
||||
id="path29312"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 2.0203056,723.05243 A 12.121831,12.121831 0 1 1 -22.223356,723.05243 A 12.121831,12.121831 0 1 1 2.0203056,723.05243 z"
|
||||
transform="matrix(0.661234,0,0,0.661234,138.4742,-414.459)"
|
||||
id="path29314"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 2.0203056,723.05243 A 12.121831,12.121831 0 1 1 -22.223356,723.05243 A 12.121831,12.121831 0 1 1 2.0203056,723.05243 z"
|
||||
transform="matrix(0.661234,0,0,0.661234,138.4742,-447.8875)"
|
||||
id="path29316"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 2.0203056,723.05243 A 12.121831,12.121831 0 1 1 -22.223356,723.05243 A 12.121831,12.121831 0 1 1 2.0203056,723.05243 z"
|
||||
transform="matrix(0.661234,0,0,0.661234,138.4742,-446.459)"
|
||||
id="path29318"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 2.0203056,723.05243 A 12.121831,12.121831 0 1 1 -22.223356,723.05243 A 12.121831,12.121831 0 1 1 2.0203056,723.05243 z"
|
||||
transform="matrix(0.661234,0,0,0.661234,138.4742,-439.0304)"
|
||||
id="path29320"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 2.0203056,723.05243 A 12.121831,12.121831 0 1 1 -22.223356,723.05243 A 12.121831,12.121831 0 1 1 2.0203056,723.05243 z"
|
||||
transform="matrix(0.661234,0,0,0.661234,138.4742,-428.8875)"
|
||||
id="path29322"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g34257">
|
||||
<path
|
||||
d="M 143.57142,136.29076 A 10.357142,10.357142 0 1 1 122.85714,136.29076 A 10.357142,10.357142 0 1 1 143.57142,136.29076 z"
|
||||
transform="translate(-0.457137,-2)"
|
||||
id="path33378"
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 143.57142,136.29076 A 10.357142,10.357142 0 1 1 122.85714,136.29076 A 10.357142,10.357142 0 1 1 143.57142,136.29076 z"
|
||||
transform="translate(-108.7143,16.78571)"
|
||||
id="path34253"
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 143.57142,136.29076 A 10.357142,10.357142 0 1 1 122.85714,136.29076 A 10.357142,10.357142 0 1 1 143.57142,136.29076 z"
|
||||
transform="translate(107.2857,16.78571)"
|
||||
id="path34255"
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g2038">
|
||||
<rect
|
||||
width="34.761723"
|
||||
height="15.152546"
|
||||
x="134.79076"
|
||||
y="210.09613"
|
||||
id="rect36472"
|
||||
style="fill:#002b7f;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.84141195;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 16.04278,233.11084 A 22.994652,8.5561495 0 1 1 -29.946524,233.11084 A 22.994652,8.5561495 0 1 1 16.04278,233.11084 z"
|
||||
transform="matrix(-0.678154,-6.882792e-2,2.382547e-2,0.957698,195.4766,-0.830297)"
|
||||
id="path37350"
|
||||
style="fill:#3e8225;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 36.937037,229.28499 L 28.22758,237.99445 L 38.328875,243.82644 L 61.821799,237.53153 L 57.63484,224.22812 L 36.937037,229.28499 z"
|
||||
id="path37352"
|
||||
style="fill:#cc0000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.08577895px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 267.40617,229.28499 L 276.11563,237.99445 L 266.01433,243.82644 L 242.52141,237.53153 L 246.70837,224.22812 L 267.40617,229.28499 z"
|
||||
id="path37354"
|
||||
style="fill:#cc0000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.08577895px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 16.04278,233.11084 A 22.994652,8.5561495 0 1 1 -29.946524,233.11084 A 22.994652,8.5561495 0 1 1 16.04278,233.11084 z"
|
||||
transform="matrix(0.678154,-6.882792e-2,-2.382547e-2,0.957698,108.8665,-0.830297)"
|
||||
id="path37356"
|
||||
style="fill:#3e8225;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 126.20321,214.70358 A 4.2780747,4.2780747 0 1 1 117.64706,214.70358 A 4.2780747,4.2780747 0 1 1 126.20321,214.70358 z"
|
||||
transform="translate(1.069518,-3.475935)"
|
||||
id="path1994"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.69999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 126.20321,214.70358 A 4.2780747,4.2780747 0 1 1 117.64706,214.70358 A 4.2780747,4.2780747 0 1 1 126.20321,214.70358 z"
|
||||
transform="translate(2.406416,10.16042)"
|
||||
id="path1996"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.69999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 126.20321,214.70358 A 4.2780747,4.2780747 0 1 1 117.64706,214.70358 A 4.2780747,4.2780747 0 1 1 126.20321,214.70358 z"
|
||||
transform="translate(-52.40642,6.149728)"
|
||||
id="path1998"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.69999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 126.20321,214.70358 A 4.2780747,4.2780747 0 1 1 117.64706,214.70358 A 4.2780747,4.2780747 0 1 1 126.20321,214.70358 z"
|
||||
transform="translate(-47.05882,18.98396)"
|
||||
id="path2000"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.69999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 126.20321,214.70358 A 4.2780747,4.2780747 0 1 1 117.64706,214.70358 A 4.2780747,4.2780747 0 1 1 126.20321,214.70358 z"
|
||||
transform="matrix(-1,0,0,1,303.0748,-3.475943)"
|
||||
id="path2020"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.69999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 126.20321,214.70358 A 4.2780747,4.2780747 0 1 1 117.64706,214.70358 A 4.2780747,4.2780747 0 1 1 126.20321,214.70358 z"
|
||||
transform="matrix(-1,0,0,1,301.7379,10.16041)"
|
||||
id="path2022"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.69999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 126.20321,214.70358 A 4.2780747,4.2780747 0 1 1 117.64706,214.70358 A 4.2780747,4.2780747 0 1 1 126.20321,214.70358 z"
|
||||
transform="matrix(-1,0,0,1,356.5507,6.14972)"
|
||||
id="path2024"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.69999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 126.20321,214.70358 A 4.2780747,4.2780747 0 1 1 117.64706,214.70358 A 4.2780747,4.2780747 0 1 1 126.20321,214.70358 z"
|
||||
transform="matrix(-1,0,0,1,351.2031,18.98395)"
|
||||
id="path2026"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.69999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
transform="translate(0,-2.600445e-4)"
|
||||
id="g2237">
|
||||
<path
|
||||
d="M 238.53778,280.60328 C 241.80523,280.03582 261.51534,275.35043 265.66459,272.84312 C 262.98715,268.01464 258.18104,264.23756 261.92128,265.82521 C 263.93532,266.68013 265.52768,260.02631 259.68186,254.94045 C 242.70861,260.50708 202.00223,270.67899 150.853,270.67899 C 98.508505,270.67899 57.291321,259.97232 40.318076,254.40569 C 34.472264,259.49155 36.292899,265.27022 35.939619,267.42949 C 35.936535,267.44612 35.943256,270.15368 37.009138,272.30836 C 42.762677,278.55899 61.403257,281.6401 64.670703,282.20756 C 80.023096,284.87378 95.376119,288.90538 150.81907,288.90538 C 202.10789,288.90538 223.1854,283.2695 238.53778,280.60328 z"
|
||||
id="path2159"
|
||||
style="font-size:12px;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.71374691;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<g
|
||||
transform="matrix(1.085779,0,0,1.085779,-81.34112,-69.11104)"
|
||||
id="g35393">
|
||||
<path
|
||||
d="M 132.90625,289.65528 C 129.89694,290.17791 110.75895,296.95571 106.9375,299.26493 C 106.94085,299.27934 106.93466,299.31043 106.9375,299.32575 C 107.26287,301.31443 103.61601,310.57667 109,315.26074 C 124.63232,310.13389 168.52546,294.85544 215.63379,294.85544 C 263.84295,294.85544 303.77393,310.13389 319.40625,315.26074 C 324.79023,310.57667 321.14338,301.31443 321.46875,299.32575 C 321.47159,299.31043 321.4654,299.27934 321.46875,299.26493 C 317.64729,296.95571 298.50931,290.17791 295.5,289.65528 C 281.36048,287.1997 266.72787,278.06897 215.66504,278.06897 C 168.42815,278.06897 147.04576,287.1997 132.90625,289.65528 z"
|
||||
id="path34451"
|
||||
style="font-size:12px;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.57835698;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<g
|
||||
transform="matrix(1.384389,-0.143242,0.15642,1.267764,-86.62648,-64.7552)"
|
||||
id="g35337">
|
||||
<path
|
||||
d="M 115.50802,301.56003 A 1.8716577,1.8716577 0 1 1 111.7647,301.56003 A 1.8716577,1.8716577 0 1 1 115.50802,301.56003 z"
|
||||
transform="matrix(0.4996,0,0,0.4996,56.86367,150.9007)"
|
||||
id="path35329"
|
||||
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 115.50802,301.56003 A 1.8716577,1.8716577 0 1 1 111.7647,301.56003 A 1.8716577,1.8716577 0 1 1 115.50802,301.56003 z"
|
||||
transform="matrix(0.4996,0,0,0.4996,55.52674,153.307)"
|
||||
id="path35331"
|
||||
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 115.50802,301.56003 A 1.8716577,1.8716577 0 1 1 111.7647,301.56003 A 1.8716577,1.8716577 0 1 1 115.50802,301.56003 z"
|
||||
transform="matrix(0.4996,0,0,0.4996,57.3984,154.9114)"
|
||||
id="path35333"
|
||||
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 113.51808,303.66868 L 122.04404,300.50258 L 117.85943,302.89505 L 120.54527,302.81166 L 118.05284,303.98039 L 122.05409,304.25543 L 113.51808,303.66868 z"
|
||||
id="path35335"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.384389,-0.143242,0.15642,1.267764,-45.03159,-76.65847)"
|
||||
id="g35343">
|
||||
<path
|
||||
d="M 115.50802,301.56003 A 1.8716577,1.8716577 0 1 1 111.7647,301.56003 A 1.8716577,1.8716577 0 1 1 115.50802,301.56003 z"
|
||||
transform="matrix(0.4996,0,0,0.4996,56.86367,150.9007)"
|
||||
id="path35345"
|
||||
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 115.50802,301.56003 A 1.8716577,1.8716577 0 1 1 111.7647,301.56003 A 1.8716577,1.8716577 0 1 1 115.50802,301.56003 z"
|
||||
transform="matrix(0.4996,0,0,0.4996,55.52674,153.307)"
|
||||
id="path35347"
|
||||
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 115.50802,301.56003 A 1.8716577,1.8716577 0 1 1 111.7647,301.56003 A 1.8716577,1.8716577 0 1 1 115.50802,301.56003 z"
|
||||
transform="matrix(0.4996,0,0,0.4996,57.3984,154.9114)"
|
||||
id="path35349"
|
||||
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 113.51808,303.66868 L 122.04404,300.50258 L 117.85943,302.89505 L 120.54527,302.81166 L 118.05284,303.98039 L 122.05409,304.25543 L 113.51808,303.66868 z"
|
||||
id="path35351"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.378425,0.192343,-0.151629,1.268346,100.1696,-120.8592)"
|
||||
id="g35353">
|
||||
<path
|
||||
d="M 115.50802,301.56003 A 1.8716577,1.8716577 0 1 1 111.7647,301.56003 A 1.8716577,1.8716577 0 1 1 115.50802,301.56003 z"
|
||||
transform="matrix(0.4996,0,0,0.4996,56.86367,150.9007)"
|
||||
id="path35355"
|
||||
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 115.50802,301.56003 A 1.8716577,1.8716577 0 1 1 111.7647,301.56003 A 1.8716577,1.8716577 0 1 1 115.50802,301.56003 z"
|
||||
transform="matrix(0.4996,0,0,0.4996,55.52674,153.307)"
|
||||
id="path35357"
|
||||
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 115.50802,301.56003 A 1.8716577,1.8716577 0 1 1 111.7647,301.56003 A 1.8716577,1.8716577 0 1 1 115.50802,301.56003 z"
|
||||
transform="matrix(0.4996,0,0,0.4996,57.3984,154.9114)"
|
||||
id="path35359"
|
||||
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 113.51808,303.66868 L 122.04404,300.50258 L 117.85943,302.89505 L 120.54527,302.81166 L 118.05284,303.98039 L 122.05409,304.25543 L 113.51808,303.66868 z"
|
||||
id="path35361"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.384389,0.143242,0.15642,-1.267764,54.4337,659.4577)"
|
||||
id="g35373">
|
||||
<path
|
||||
d="M 115.50802,301.56003 A 1.8716577,1.8716577 0 1 1 111.7647,301.56003 A 1.8716577,1.8716577 0 1 1 115.50802,301.56003 z"
|
||||
transform="matrix(0.4996,0,0,0.4996,56.86367,150.9007)"
|
||||
id="path35375"
|
||||
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 115.50802,301.56003 A 1.8716577,1.8716577 0 1 1 111.7647,301.56003 A 1.8716577,1.8716577 0 1 1 115.50802,301.56003 z"
|
||||
transform="matrix(0.4996,0,0,0.4996,55.52674,153.307)"
|
||||
id="path35377"
|
||||
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 115.50802,301.56003 A 1.8716577,1.8716577 0 1 1 111.7647,301.56003 A 1.8716577,1.8716577 0 1 1 115.50802,301.56003 z"
|
||||
transform="matrix(0.4996,0,0,0.4996,57.3984,154.9114)"
|
||||
id="path35379"
|
||||
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 113.51808,303.66868 L 122.04404,300.50258 L 117.85943,302.89505 L 120.54527,302.81166 L 118.05284,303.98039 L 122.05409,304.25543 L 113.51808,303.66868 z"
|
||||
id="path35381"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.384389,0.143242,0.15642,-1.267764,96.41226,670.4203)"
|
||||
id="g35383">
|
||||
<path
|
||||
d="M 115.50802,301.56003 A 1.8716577,1.8716577 0 1 1 111.7647,301.56003 A 1.8716577,1.8716577 0 1 1 115.50802,301.56003 z"
|
||||
transform="matrix(0.4996,0,0,0.4996,56.86367,150.9007)"
|
||||
id="path35385"
|
||||
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 115.50802,301.56003 A 1.8716577,1.8716577 0 1 1 111.7647,301.56003 A 1.8716577,1.8716577 0 1 1 115.50802,301.56003 z"
|
||||
transform="matrix(0.4996,0,0,0.4996,55.52674,153.307)"
|
||||
id="path35387"
|
||||
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 115.50802,301.56003 A 1.8716577,1.8716577 0 1 1 111.7647,301.56003 A 1.8716577,1.8716577 0 1 1 115.50802,301.56003 z"
|
||||
transform="matrix(0.4996,0,0,0.4996,57.3984,154.9114)"
|
||||
id="path35389"
|
||||
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 113.51808,303.66868 L 122.04404,300.50258 L 117.85943,302.89505 L 120.54527,302.81166 L 118.05284,303.98039 L 122.05409,304.25543 L 113.51808,303.66868 z"
|
||||
id="path35391"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 80 KiB |
6
build/default/data/svg/DJ.svg
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="600" height="400" viewBox="0 0 15 10">
|
||||
<rect width="15" height="10" id="blue" style="fill:#6ab2e7"/>
|
||||
<rect width="15" height="5" y="5" id="green" style="fill:#12ad2b"/>
|
||||
<path d="M 0,0 0,5 0,10 4.330127,7.5 8.660254,5 4.330127,2.5 0,0 z" id="path6904" style="fill:#fff"/>
|
||||
<path d="m 3.3143278,3.75 0.3102707,0.954915 1.0040571,0 L 3.8163564,5.295085 4.126627,6.25 3.3143278,5.65983 2.5020286,6.25 2.8122992,5.295085 2,4.704915 l 1.004057,0 L 3.3143278,3.75 z" id="path6929" style="fill:#d7141a"/></svg>
|
||||
|
After Width: | Height: | Size: 590 B |
6
build/default/data/svg/DK.svg
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="370" height="280">
|
||||
<rect width="370" height="280" fill="#c60c30"/>
|
||||
<rect width="40" height="280" x="120" fill="#fff"/>
|
||||
<rect width="370" height="40" y="120" fill="#fff"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 264 B |
91
build/default/data/svg/DM.svg
Normal file
@@ -0,0 +1,91 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1200" height="600">
|
||||
<title>Flag of Dominica</title>
|
||||
<rect height="600" width="1200" fill="#006b3f"/>
|
||||
<rect width="75" height="600" x="525" fill="#fcd116"/>
|
||||
<rect width="1200" height="75" y="225" fill="#fcd116"/>
|
||||
<rect width="75" height="600" x="600" fill="#fff"/>
|
||||
<rect width="1200" height="75" y="300" fill="#fff"/>
|
||||
<rect width="50" height="600" x="575" fill="#000"/>
|
||||
<rect width="1200" height="50" y="275" fill="#000"/>
|
||||
<g fill="#006b3f" transform="translate(600,300)">
|
||||
<circle r="150" fill="#d41c30"/>
|
||||
<g id="star2">
|
||||
<path id="star" stroke="#000" d="m-4.81,-118.41 4.81,-13.72 4.37,13.5 14.65,0.22 -11.59,8.85 5.25,15.05 -12.68,-9.29 -12.46,8.85 4.81,-14.61 -11.37,-8.63 14.21,-0.22z"/>
|
||||
<use xlink:href="#star" transform="rotate(180)"/>
|
||||
</g>
|
||||
<use xlink:href="#star2" transform="rotate(36)"/>
|
||||
<use xlink:href="#star2" transform="rotate(72)"/>
|
||||
<use xlink:href="#star2" transform="rotate(108)"/>
|
||||
<use xlink:href="#star2" transform="rotate(144)"/>
|
||||
<g stroke="#000" stroke-width="2.5">
|
||||
<ellipse cx="680.21" cy="586.13" rx="30.805" ry="189.82" transform="matrix(0.289553,-0.03018225,0.01658794,0.23225804,-186.11735,-75.926206)"/>
|
||||
<ellipse cx="680.21" cy="586.13" rx="30.805" ry="189.82" transform="matrix(0.30625538,-0.03184484,0.01668502,0.23224838,-188.73313,-74.886801)"/>
|
||||
<ellipse cx="680.21" cy="586.13" rx="30.805" ry="189.82" transform="matrix(0.24500433,-0.0258909,0.01789798,0.25675005,-151.94706,-90.935577)"/>
|
||||
<path fill="#9c4a00" stroke-width="0.6573" d="m-44.213085,62.564681c7.657331,-0.318514 4.332103,-4.415732 8.199242,-6.595651 3.864538,-2.177268 9.365358,-0.736785 11.015564,1.985834 1.650207,2.72262 0.327013,5.396731 2.450471,5.433299 2.12601,0.03661 59.928115,-2.387638 62.010231,-0.105265 2.084719,2.27972 2.428307,6.775972 0.269442,8.524141 -2.159263,1.769736 -75.234738,2.587907 -77.751167,0.737649 -2.516925,-1.823297 -6.202071,-9.529768 -6.193783,-9.980007z"/>
|
||||
<path fill="#fcd116" stroke-width="0.6326" d="M-3.3768912,68.194919C-3.5157446,73.97045 5.0266835,72.334565 5.1440072,77.158287 4.886691,82.271863 -9.1802916,77.470843 -9.3156063,68.11661 -8.7307374,58.771874 5.0382371,54.154377 5.208533,59.491796c0.1266662,4.435124 -8.4465709,2.927591 -8.5854242,8.703123z"/>
|
||||
<path fill="#fcd116" stroke-width="0.6326" d="M1.6637058,68.261384C1.5248524,74.036915 10.067281,72.40103 10.184604,77.224752 9.927288,82.338328 -4.1396946,77.537308 -4.2750093,68.183075 -3.6901404,58.838339 10.078834,54.220842 10.24913,59.558261c0.126666,4.435124 -8.4465709,2.927591 -8.5854242,8.703123z"/>
|
||||
<path fill="#fcd116" stroke-width="0.6326" d="M7.0709208,68.057753C6.9320674,73.833284 15.474496,72.197399 15.591819,77.021121 15.334503,82.134697 1.2675204,77.333677 1.1322057,67.979444 1.7170746,58.634708 15.486049,54.017211 15.656345,59.35463c0.126666,4.435124 -8.4465709,2.927591 -8.5854242,8.703123z"/>
|
||||
<path fill="#fcd116" stroke-width="0.6326" d="m12.111394,68.124255c-0.138854,5.775532 8.403575,4.139646 8.520898,8.963369C20.374976,82.2012 6.3079934,77.40018 6.1726787,68.045947 6.7575476,58.701211 20.526522,54.083714 20.696818,59.421133c0.126666,4.435124 -8.446571,2.927591 -8.585424,8.703122z"/>
|
||||
<ellipse fill="#9c4a00" stroke-width="0.3991" cx="478.38" cy="-41.085999" rx="3.5339" ry="3.4030001" transform="matrix(1.3799165,0.02078085,-0.03061721,1.4544413,-625.22695,117.20523)"/>
|
||||
<ellipse cx="427.11" cy="905" rx="20.814" ry="24.144" transform="matrix(0.20742248,-0.03129182,0.04226118,0.39513675,-119.97806,-293.41566)"/>
|
||||
<ellipse cx="427.11" cy="905" rx="20.814" ry="24.144" transform="matrix(0.20742248,-0.03129182,0.04226118,0.39513675,-127.33463,-293.99555)"/>
|
||||
<ellipse cx="427.11" cy="905" rx="20.814" ry="24.144" transform="matrix(0.20742248,-0.0312918,0.04226106,0.39513549,-132.603,-303.41129)"/>
|
||||
<ellipse cx="427.11" cy="905" rx="20.814" ry="24.144" transform="matrix(0.19942957,-0.0315355,0.04632234,0.43592867,-125.4075,-340.63478)"/>
|
||||
<ellipse cx="427.11" cy="905" rx="20.814" ry="24.144" transform="matrix(0.19950028,-0.03083913,0.04356143,0.40873864,-112.65072,-316.23218)"/>
|
||||
<ellipse cx="427.11" cy="905" rx="20.814" ry="24.144" transform="matrix(0.19950028,-0.03083913,0.04356143,0.40873864,-118.30405,-319.63879)"/>
|
||||
<ellipse cx="427.11" cy="905" rx="20.814" ry="24.144" transform="matrix(0.19950028,-0.03083913,0.04356143,0.40873864,-125.43742,-324.55362)"/>
|
||||
<ellipse cx="427.11" cy="905" rx="20.814" ry="24.144" transform="matrix(0.19950028,-0.03083913,0.04356143,0.40873864,-132.04249,-327.53171)"/>
|
||||
<path fill="#9461c9" stroke-width="0.5749" d="m-14.73408,-52.686013c0,0 -14.655341,12.719161 -13.010831,47.1436528 1.845436,34.6199222 32.3934914,50.8943372 32.3934914,50.8943372 0,0 7.7859806,-9.826932 6.8819576,-37.6434978C9.3473299,-32.960001 -5.0778778,-50.928723 -5.0778778,-50.928723l-9.6562022,-1.75729z"/>
|
||||
<ellipse cx="427.11" cy="905" rx="20.814" ry="24.144" transform="matrix(0.20967854,0.00617733,-0.02883923,0.39634241,-45.183498,-309.40147)"/>
|
||||
<ellipse cx="427.11" cy="905" rx="20.814" ry="24.144" transform="matrix(0.20967854,0.00617733,-0.02883923,0.39634241,-52.318928,-311.28321)"/>
|
||||
<ellipse cx="427.11" cy="905" rx="20.814" ry="24.144" transform="matrix(0.20967854,0.00617736,-0.02883913,0.39634115,-55.824816,-321.48715)"/>
|
||||
<ellipse cx="427.11" cy="905" rx="20.814" ry="24.144" transform="matrix(0.20185704,0.00451301,-0.03211329,0.43720504,-42.110313,-356.83224)"/>
|
||||
<ellipse cx="427.11" cy="905" rx="20.814" ry="24.144" transform="matrix(0.2018025,0.00521083,-0.02998402,0.40995827,-33.906971,-330.54675)"/>
|
||||
<ellipse cx="427.11" cy="905" rx="20.814" ry="24.144" transform="matrix(0.2018025,0.00521083,-0.02998402,0.40995827,-38.862639,-334.90639)"/>
|
||||
<ellipse cx="427.11" cy="905" rx="20.814" ry="24.144" transform="matrix(0.2018025,0.00521083,-0.02998402,0.40995827,-45.005838,-341.01389)"/>
|
||||
<ellipse cx="427.11" cy="905" rx="20.814" ry="24.144" transform="matrix(0.2018025,0.00521083,-0.02998402,0.40995827,-50.974388,-345.12149)"/>
|
||||
<ellipse fill="#d41c30" stroke-width="1pt" cx="624.42" cy="606.11" rx="58.28" ry="186.49" transform="matrix(0.19786701,-0.07643491,0.08023488,0.18709671,-155.83813,-59.21337)"/>
|
||||
<ellipse stroke-width="1.4635" cx="218.13" cy="356.75" rx="10.823" ry="12.905" transform="matrix(0.49827764,0.00887179,-0.00656928,0.3689586,-99.510833,-162.76931)"/>
|
||||
<ellipse stroke-width="1.5462" cx="218.13" cy="356.75" rx="10.823" ry="12.905" transform="matrix(0.44637456,0.00794766,-0.00656928,0.3689586,-84.135444,-169.29958)"/>
|
||||
<ellipse stroke-width="1.5462" cx="218.13" cy="356.75" rx="10.823" ry="12.905" transform="matrix(0.44637456,0.00794766,-0.00656928,0.3689586,-90.652069,-169.41561)"/>
|
||||
<ellipse stroke-width="1.56" cx="218.13" cy="356.75" rx="10.823" ry="12.905" transform="matrix(0.46713655,0.00831733,-0.00616707,0.34636886,-93.887858,-166.3691)"/>
|
||||
<ellipse stroke-width="1.56" cx="218.13" cy="356.75" rx="10.823" ry="12.905" transform="matrix(0.46713655,0.00831733,-0.00616707,0.34636886,-94.461639,-172.01688)"/>
|
||||
<ellipse stroke-width="1.5462" cx="218.13" cy="356.75" rx="10.823" ry="12.905" transform="matrix(0.44637456,0.00794766,-0.00656928,0.3689586,-96.8782,-173.22007)"/>
|
||||
<ellipse stroke-width="1.5623" cx="218.13" cy="356.75" rx="10.823" ry="12.905" transform="matrix(0.44637456,0.00794766,-0.0064352,0.36142827,-95.468785,-176.63136)"/>
|
||||
<ellipse stroke-width="1.4635" cx="218.13" cy="356.75" rx="10.823" ry="12.905" transform="matrix(0.49827764,0.00887179,-0.00656928,0.3689586,-114.72518,-179.36983)"/>
|
||||
<ellipse stroke-width="1.56" cx="218.13" cy="356.75" rx="10.823" ry="12.905" transform="matrix(0.46713655,0.00831733,-0.00616707,0.34636886,-98.157196,-179.08115)"/>
|
||||
<ellipse stroke-width="1.5623" cx="218.13" cy="356.75" rx="10.823" ry="12.905" transform="matrix(0.44637456,0.00794766,-0.0064352,0.36142827,-100.2913,-183.52126)"/>
|
||||
<ellipse stroke-width="1.5462" cx="218.13" cy="356.75" rx="10.823" ry="12.905" transform="matrix(0.44637456,0.00794766,-0.00656928,0.3689586,-110.48856,-178.90566)"/>
|
||||
<ellipse stroke-width="1.5623" cx="218.13" cy="356.75" rx="10.823" ry="12.905" transform="matrix(0.44637456,0.00794766,-0.0064352,0.36142827,-108.8569,-179.77161)"/>
|
||||
<ellipse stroke-width="1.5623" cx="218.13" cy="356.75" rx="10.823" ry="12.905" transform="matrix(0.44637456,0.00794766,-0.0064352,0.36142827,-106.80676,-183.69602)"/>
|
||||
<ellipse stroke-width="2.5449" cx="528.68" cy="564.48" rx="67.438" ry="205.64" transform="matrix(0.21931516,-0.07742835,0.08682875,0.20202384,-145.01539,-72.55561)"/>
|
||||
<ellipse cx="528.68" cy="646.07" rx="13.321" ry="40.796" transform="matrix(0.20574399,-0.0978521,0.09471329,0.21196041,-137.12211,-77.403485)"/>
|
||||
<path stroke-width="0.5749" d="M31.462582,7.798675C44.273286,23.396889 42.655575,33.30197 41.319929,41.68219 37.295042,32.018935 35.09747,25.935914 22.284544,10.334996 9.4716187,-5.2659225 15.867064,-16.212552 16.746886,-21.981169c1.926581,4.993077 1.90277,14.1789256 14.715696,29.779844z"/>
|
||||
<path stroke-width="0.5749" d="M32.616052,20.397765C45.426756,35.995979 43.809045,45.90106 42.473399,54.28128 38.448512,44.618025 36.25094,38.535004 23.438014,22.934086 10.625089,7.3331675 17.020534,-3.6134618 17.900356,-9.382079c1.926581,4.993077 1.90277,14.1789256 14.715696,29.779844z"/>
|
||||
<path stroke-width="0.5749" d="M33.001502,30.545466C46.121623,45.867895 44.702257,55.805012 43.534416,64.211635 39.317096,54.636146 36.998322,48.601234 23.875927,33.276148 10.753531,17.951062 16.928895,6.8711542 17.693213,1.0852029 19.719255,6.0361835 19.879107,15.22038 33.001502,30.545466z"/>
|
||||
<ellipse stroke-width="1.3887" cx="528.68" cy="646.07" rx="13.321" ry="40.796" transform="matrix(0.40784061,-0.1037946,0.16693789,0.37767112,-299.57061,-196.0302)"/>
|
||||
<ellipse stroke-width="1.6398" cx="528.68" cy="646.07" rx="13.321" ry="40.796" transform="matrix(0.36689221,-0.0631048,0.12978287,0.31264984,-259.00282,-166.87124)"/>
|
||||
<ellipse stroke-width="1.6398" cx="528.68" cy="646.07" rx="13.321" ry="40.796" transform="matrix(0.36814797,-0.0553158,0.1232589,0.31530969,-261.52366,-166.81962)"/>
|
||||
<ellipse stroke-width="2.0966" cx="528.68" cy="646.07" rx="13.321" ry="40.796" transform="matrix(0.29657862,-0.05431058,0.11151259,0.23307633,-211.06958,-135.53834)"/>
|
||||
<ellipse stroke-width="2.0966" cx="528.68" cy="646.07" rx="13.321" ry="40.796" transform="matrix(0.29951522,-0.03800069,0.09680807,0.23872917,-208.27027,-143.86531)"/>
|
||||
<path stroke-width="0.5749" d="M8.6195396,-15.767835C12.407426,-6.5127711 13.940854,1.8088668 12.039861,2.8095164 10.141163,3.8089573 5.5266551,-2.8908549 1.7387689,-12.145919"/>
|
||||
<ellipse stroke-width="2.0966" cx="528.68" cy="646.07" rx="13.321" ry="40.796" transform="matrix(0.29951522,-0.03800069,0.09680807,0.23872917,-208.89375,-154.73721)"/>
|
||||
<ellipse stroke-width="2.0966" cx="528.68" cy="646.07" rx="13.321" ry="40.796" transform="matrix(0.30032211,-0.03210428,0.09144035,0.24056268,-212.194,-155.98718)"/>
|
||||
<path stroke-width="0.5749" d="m2.0257453,-28.338145c3.6779608,6.253928 5.6581289,12.09375 4.4184823,13.037247 -1.2381494,0.942356 -5.2275031,-3.368272 -8.9054639,-9.622201"/>
|
||||
<path stroke-width="0.5749" d="m4.5726443,-32.485105c3.6779608,6.253928 5.6581287,12.09375 4.4184823,13.037247 -1.2381494,0.942356 -5.2275031,-3.368272 -8.9054639,-9.622201"/>
|
||||
<path stroke-width="0.5749" d="m16.013433,-31.606808c5.124964,8.542601 7.882604,16.520579 6.153303,17.810625 -1.727212,1.288488 -7.287655,-4.598619 -12.4126197,-13.14122"/>
|
||||
<path stroke-width="0.5749" d="m8.4524006,-36.082328c3.6926974,6.904591 5.6865404,13.348237 4.4490124,14.385262 -1.236034,1.035772 -5.2356299,-3.727092 -8.9283268,-10.631682"/>
|
||||
<path fill="#9461c9" stroke-width="0.5905" d="m8.1245845,-46.086178c-2.4652011,2.482234 -0.05083,7.123595 2.2055225,8.801039 2.530629,2.294221 16.742134,17.286089 26.768781,4.672222C29.06535,-32.759025 14.072204,-51.617449 8.1245845,-46.086178z"/>
|
||||
<path fill="#9461c9" stroke-width="0.5905" d="m6.3689905,-53.485518c-2.4652011,2.482234 -0.05083,7.123595 2.2055226,8.801039 2.5306289,2.294221 16.7421339,17.286089 26.7687809,4.672222C27.309756,-40.158365 12.31661,-59.016789 6.3689905,-53.485518z"/>
|
||||
<path fill="#9461c9" stroke-width="0.5905" d="m4.1226915,-60.575768c-2.4652011,2.482234 -0.05083,7.123595 2.2055226,8.801039 2.5306294,2.294221 16.7421339,17.286089 26.7687809,4.672222 -8.033538,-0.146108 -23.026684,-19.004532 -28.9743035,-13.473261z"/>
|
||||
<path fill="#9461c9" stroke-width="0.5905" d="m-0.75854747,-68.686568c-2.46520113,2.482234 -0.0508299,7.123595 2.20552257,8.801039 2.5306294,2.294221 16.7421339,17.286089 26.7687809,4.672222 -8.033538,-0.146108 -23.0266836,-19.004532 -28.97430347,-13.473261z"/>
|
||||
<path fill="#9461c9" stroke-width="0.6276" d="m-18.271949,-76.448224c5.080302,-3.778951 14.4116525,-4.884005 21.6814205,-1.183186 6.0553769,2.966807 16.1473035,15.072925 23.7340285,17.934947 -5.339994,0.952539 -8.588551,0.147731 -12.001308,-1.491593 -6.7388646,4.879721 -9.1401688,5.611298 -16.00788077,6.570161 -9.55160223,1.377954 -17.47968323,-1.108557 -20.26606523,-6.089426 -2.839252,-4.699505 -1.61543,-12.238734 2.859805,-15.740903z"/>
|
||||
<ellipse fill="#d41c30" cx="287.23" cy="323.04" rx="14.154" ry="14.986" transform="matrix(0.30909157,0.00550335,-0.00301489,0.16932914,-95.304017,-125.19072)"/>
|
||||
<ellipse fill="#fcd116" cx="204.58" cy="348.26" rx="23.254" ry="15.895" transform="matrix(0.24579207,-0.09143683,0.08132205,0.2192462,-99.445497,-116.289)"/>
|
||||
<ellipse fill="#000" stroke="none" cx="283.9" cy="333.86" rx="5.828" ry="5.8279" transform="matrix(0.26990081,0.00480556,-0.00415607,0.23342269,-82.956029,-148.37388)"/>
|
||||
<path fill="#fcd116" stroke-width="0.7318" d="m-17.127905,-65.514747c0.402078,1.948925 -1.043505,4.582316 -4.180015,5.515002 -3.195207,1.322722 -5.618416,4.322017 -7.016075,9.226342 -4.855803,-11.183796 -1.769609,-15.915544 3.387899,-17.06567 4.436579,-1.414945 7.11029,-1.235679 7.808191,2.324326z"/>
|
||||
<ellipse fill="#000" stroke="none" cx="198.98" cy="362.39" rx="4.7097" ry="4.7097" transform="matrix(0.23597119,-0.0123552,0.01333585,0.24161486,-73.600709,-149.7658)"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 14 KiB |
480
build/default/data/svg/DO.svg
Normal file
|
After Width: | Height: | Size: 245 KiB |
24
build/default/data/svg/DZ.svg
Normal file
@@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="900" height="600" viewBox="0 0 60 40">
|
||||
<clipPath id="c">
|
||||
<!-- Inner circle of crescent shifted right from center by 5*sqrt(3)-sqrt(39) = 2.415256 -->
|
||||
<path d="M0,0H60V40H0zM32.415256,28a8,8 0 1,0 0,-16a8,8 0 1,0 0,16"/>
|
||||
</clipPath>
|
||||
<path d="M0,0H60V40H0z" fill="#fff"/>
|
||||
<path d="M0,0H30V40H0z" fill="#006233"/>
|
||||
<g fill="#d21034">
|
||||
<circle cx="30" cy="20" r="10" clip-path="url(#c)"/>
|
||||
<!-- Distance between center of star and center of flag is 5*cos(36 deg) = 4.045085 -->
|
||||
<g transform="translate(34.045085,20)">
|
||||
<g id="f">
|
||||
<g id="t">
|
||||
<path d="M5,0H0V3z" transform="rotate(18,5,0)" id="o"/>
|
||||
<use xlink:href="#o" transform="scale(1,-1)"/>
|
||||
</g>
|
||||
<use xlink:href="#t" transform="rotate(72)"/>
|
||||
</g>
|
||||
<use xlink:href="#t" transform="rotate(-72)"/>
|
||||
<use xlink:href="#f" transform="rotate(144)"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 932 B |
406
build/default/data/svg/EA.svg
Normal file
|
After Width: | Height: | Size: 58 KiB |
1379
build/default/data/svg/EC.svg
Normal file
|
After Width: | Height: | Size: 271 KiB |
6
build/default/data/svg/EE.svg
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="990" height="630">
|
||||
<rect id="blue" width="990" height="630" fill="#4891d9"/>
|
||||
<rect id="black" width="990" height="420" y="210" fill="#000"/>
|
||||
<rect id="white" width="990" height="210" y="420" fill="#fff"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 298 B |
79
build/default/data/svg/EG.svg
Normal file
@@ -0,0 +1,79 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="900" height="600">
|
||||
<rect width="900" height="600" fill="#000"/>
|
||||
<rect width="900" height="400" fill="#fff"/>
|
||||
<rect width="900" height="200" fill="#ce1126"/>
|
||||
<g fill="#fff" stroke="#c09300">
|
||||
<path stroke-width="1.2703" stroke-linejoin="round" d="m450.81,302.4,68.488,63.579-4.8759-115.47c-0.71638-17.5-15.924-13.485-26.971-7.1723-11.191,7.1723-23.958,7.1723-37.446,2.437-13.485,4.7353-26.253,4.7353-37.444-2.437-11.046-6.3123-26.252-10.328-26.97,7.1723l-4.8789,115.47,70.098-63.579z"/>
|
||||
<g id="w" fill="#c09300" stroke="none">
|
||||
<path d="m393.47,246.49-4.7342,112.32-8.0347,7.168,4.8784-115.47c2.2949-1.5782,6.3132-4.0171,7.8905-4.0171z"/>
|
||||
<path d="m403.09,254.53-4.0171,93.955-8.0323,8.2204,4.8772-108.49c1.5791,1.577,6.3138,5.4498,7.1721,6.3104z"/>
|
||||
<path d="m411.84,261.7-3.1545,78.362-6.4556,6.3092,4.0177-89.405c1.5748,1.5782,4.7311,3.8734,5.5924,4.7334z"/>
|
||||
<path d="m421.31,265.72-3.1563,66.787-6.3132,5.1193,3.1563-74.344c1.5791,0.71638,4.7348,2.4376,6.3132,2.4376z"/>
|
||||
<path d="m430.06,265.72-2.2974,55.657-6.4544,6.3129,2.4392-61.252c1.576-0.00061,5.5937-0.00061,6.3126-0.7182z"/>
|
||||
</g>
|
||||
<use xlink:href="#w" transform="matrix(-1,0,0,1,900,0)"/>
|
||||
<path fill="#c09300" stroke-width="1.0739" d="m453.16,315.06,9.6126,43.755-3.1575,3.1552-3.2993-2.4388-5.4518-39.018,2.2955,39.018-3.1569,4.0158-3.1563-4.0158,2.2962-39.018-5.4506,39.018-3.3024,2.4388-3.1545-3.1552,9.6113-43.755h6.3138z"/>
|
||||
<g id="b" fill="none" stroke-width="1.2705" stroke-linejoin="round">
|
||||
<path fill="#fff" stroke-width="1.1888" d="m428.48,295.84-19.08,67.705,26.255,4.0177,11.188-50.924-18.363-20.799z"/>
|
||||
<path d="m422.17,318.94,2.2955,5.5928,12.405-11.848"/>
|
||||
<path d="m430.76,304.92,2.5957,24.346,7.8905-10.328"/>
|
||||
<path d="m438.09,322.95,4.31,14.875"/>
|
||||
<path d="m444.09,332.36-8.7177,13.241m2.7189,13.216-2.7902-13.198-2.4356-13.423-5.8406,7.9091-2.5613-9.1191-8.1747,8.3847,4.1575,15.251,5.7375-9.4349,3.1557,9.6123,5.8903-9.1621"/>
|
||||
<path d="m414.99,361.97,5.2997-7.4437,3.4528,11.457,4.7342-8.0323,3.1575,9.6136"/>
|
||||
</g>
|
||||
<use xlink:href="#b" transform="matrix(-1,0,0,1,900,0)"/>
|
||||
<g stroke-width="1.2705" stroke-linejoin="round" stroke-linecap="round">
|
||||
<path stroke-width="2.3777" stroke-linejoin="round" d="m450,393.81c19.943,0,39.024-1.5776,50.213-4.734,4.7354-0.8588,4.7354-3.2976,4.7354-6.4553,4.7354-1.5776,2.2949-7.1704,5.5943-7.1704-3.2994,0.86244-4.0158-5.5941-8.0329-4.7316,0-5.5965-5.5955-6.3129-10.33-4.7377-9.4695,3.1576-26.255,3.8752-42.18,3.8752-15.924-0.71758-32.567-0.71758-42.179-3.8752-4.7342-1.5752-10.327-0.85881-10.327,4.7377-4.0183-0.86245-4.7354,5.5941-8.0341,4.7316,3.2988,0,0.85954,5.5928,5.5943,7.1704,0,3.1576,0,5.5965,4.8778,6.4553,11.045,3.1564,30.128,4.734,50.068,4.734z"/>
|
||||
<path d="m422.89,363.54c6.4544,0.86123,13.628,1.5776,19.225,0.86123,3.1533,0,5.4494,5.4504-0.86257,6.3129-5.5931,0.71515-14.345,0-19.08-0.86245-4.0171-0.71759-12.768-2.2946-18.364-3.8752-5.5949-2.4364-1.576-7.168,1.5772-6.4522,4.879,1.577,11.192,3.1564,17.505,4.0158z"/>
|
||||
<path d="m477.12,363.54c-6.4569,0.86123-13.628,1.5776-19.081,0.86123-3.3006,0-5.5961,5.4504,0.71711,6.3129,5.5955,0.71515,14.347,0,19.078-0.86245,4.0189-0.71759,12.769-2.2946,18.364-3.8752,5.5967-2.4364,1.5803-7.168-1.5772-6.4522-4.8778,1.577-11.19,3.1564-17.501,4.0158z"/>
|
||||
<path d="m403.09,360.39c-4.8771-0.86123-7.1723,4.7316-5.5928,7.8868,0.71637-1.5776,4.0164-1.5776,4.7346-3.1552,0.8582-2.437-0.7182-2.437,0.8582-4.7316z"/>
|
||||
<path d="m422.17,375.06c0-3.1528,3.1545-2.7651,3.1545-5.9215,0-1.577-0.85893-4.0171-2.4368-4.0171-1.5785,0-3.1575,1.5776-3.1575,3.1552-0.7177,3.157,2.4398,3.6312,2.4398,6.7834z"/>
|
||||
<path d="m444.88,365.98c4.7305,0,4.2618,6.3141,1.9656,9.4699,0-2.2952-4.0164-3.1558-4.0164-4.7316,0-2.4419,3.6262-2.4419,2.0508-4.7383z"/>
|
||||
<path d="m496.91,360.39c4.8777-0.86123,7.1741,4.7316,5.5953,7.8868-0.71819-1.5776-4.017-1.5776-4.734-3.1552-0.86124-2.437,0.71759-2.437-0.86124-4.7316z"/>
|
||||
<path d="m477.83,375.06c0-3.1528-3.1532-2.7651-3.1532-5.9215,0-1.577,0.85953-4.0171,2.438-4.0171,1.5772,0,3.1563,1.5776,3.1563,3.1552,0.71771,3.157-2.441,3.6312-2.441,6.7834z"/>
|
||||
<path d="m455.12,365.98c-4.7323,0-4.263,6.3141-1.9674,9.4699,0-2.2952,4.0158-3.1558,4.0158-4.7316,0.00061-2.4419-3.6262-2.4419-2.0484-4.7383z"/>
|
||||
<g stroke-width="0.8915">
|
||||
<path d="m404.67,361.97c1.58,0,4.0177,0.71758,4.7353,1.577l-4.74-1.58z"/>
|
||||
<path d="m412.55,364.41c0.86184,0,4.0183,0.71639,5.5959,1.5752l-5.6-1.58z"/>
|
||||
<path d="m441.25,367.56c-1.5776,0-4.734,0-5.5928,0.71516l5.59-0.72z"/>
|
||||
<path d="m432.5,367.56c-0.8588-0.86245-4.0165-0.86245-5.5935,0h5.59z"/>
|
||||
<path d="m495.34,361.97c-1.5776,0-3.8746,0.71758-4.7353,1.577l4.7353-1.577z"/>
|
||||
<path d="m487.45,364.41c-0.86002,0-4.0171,0.71639-5.5953,1.5752l5.6-1.58z"/>
|
||||
<path d="m458.75,367.56c1.5794,0,4.7352,0,5.5953,0.71516l-5.6-0.72z"/>
|
||||
<path d="m467.5,367.56c0.86002-0.86245,4.0183-0.86245,5.5953,0h-5.6z"/>
|
||||
</g>
|
||||
<g fill="#c09300" stroke="none">
|
||||
<path d="m403.34,374.58c-0.53406-0.10208-0.81452-0.52459-0.68011-1.0246,0.16371-0.609,0.65161-0.95739,1.1126-0.79442,0.29312,0.10362,0.82973,0.64469,0.83184,0.83874,0.003,0.22275-0.28059,0.75257-0.40266,0.75379-0.0527,0.00053-0.1342,0.0465-0.18122,0.10201-0.10001,0.11816-0.41341,0.17549-0.68041,0.12446z"/>
|
||||
<path d="m458.27,378.5c-0.19869-0.0736-0.51521-0.5185-0.51485-0.72377,0.002-0.38717,0.57418-1.0178,0.92881-1.0214,0.17516-0.001,0.65475,0.2481,0.83411,0.43462,0.32504,0.33789,0.25419,0.89278-0.15423,1.2079-0.20096,0.15505-0.80025,0.21125-1.0938,0.1026z"/>
|
||||
<path d="m458.63,380.98c-0.42018-0.14209-0.57388-0.34776-0.60803-0.8136-0.0355-0.4854,0.0116-0.56097,0.52453-0.84064l0.36556-0.19931,0.34646,0.1545c0.47988,0.21397,0.69338,0.44463,0.71031,0.76742,0.0182,0.34768-0.2397,0.70345-0.64012,0.8829-0.35162,0.15758-0.37253,0.15904-0.69871,0.0488z"/>
|
||||
<path d="m407.75,370.09c-0.34619-0.0109-0.82136,0.30729-1.0938,0.46875-0.64912,0.15215-1.4047,0.5511-2.0312,0.125-0.61719-0.19079-1.438-0.0404-1.5312,0.71875,0.15839,0.65179,1.0715,1.0243,1.625,0.59375,0.4106-0.53758,1.5312-0.8528,1.6562,0.0625-0.45705,0.69215-0.40489,1.6089-0.78125,2.3438-0.0612,0.45773-0.25176,0.8924-0.5,1.2812-0.4621,0.0464-0.95375-0.008-1.3438,0.28125-0.62601,0.0342-1.2647,0.34537-1.625,0.875-0.40338,0.57818-0.78869,1.1654-0.90625,1.875,0.10725,0.72494,0.93754,0.93275,1.5625,0.96875,0.66694,0.18359,1.3344,0.42433,2,0.625,1.0853,0.24303,2.102,0.63539,3.1875,0.875,1.5844,0.47758,3.2479,0.69739,4.8438,1.125,0.16722,0.0555,0.32405,0.1038,0.5,0.125,0.66233,0.13773,1.0079-0.58289,1.0625-1.125,0.32864-1.1596,0.57948-2.3391,0.90625-3.5,0.22487-0.46559,0.49645-1.5172-0.40625-1.2812-0.51485,0.30872-0.95182,0.7734-1.5938,0.8125-0.87392,0.0509-0.37513,0.94518-0.0312,1.3125,0.0759,0.5872-0.10989,1.2888-0.5,1.75-0.51994,0.32957-1.1716-0.0561-1.7188-0.1875-0.57469,0.01-1.7234-0.28325-1.1875-1.0625,0.19033-0.57691,0.20718-1.2083,0.4375-1.7812,0.29353-0.61455,0.33553-1.2851,0.46875-1.9375-0.36122-0.77733-0.97856,0.25585-1.4688,0.34375-0.33769,0.23455-1.6054,0.33418-0.9375,0.9375,0.57518,0.43696,0.1343,1.1967,0.0312,1.75-0.0369,0.77025-0.83781,0.95394-1.4688,0.78125-0.62768-0.0303-1.5013-0.49748-0.96875-1.1875,0.12115-0.57512,0.322-1.1402,0.4375-1.7188,0.2374-0.69777,0.43732-1.3628,0.6875-2.0625,0.10851-0.61996,0.33113-1.2079,0.625-1.75,0.0173-0.68543,0.47775-1.2752,0.46875-1.9688-0.0469-0.33876-0.19853-0.4622-0.40625-0.46875zm-3.5938,7.25c0.0817-0.0141,0.1399-0.002,0.21875,0.0312,0.24971,0.10625,0.25708,0.30938,0,0.53125-0.11238,0.097-0.23995,0.1905-0.28125,0.1875-0.46771-0.0402-0.6056-0.10974-0.625-0.28125-0.0172-0.15117,0.0307-0.19455,0.34375-0.34375,0.15556-0.0742,0.26207-0.11086,0.34375-0.125z"/>
|
||||
<path d="m403.12,382.36c-0.49596-0.46627-0.41621-0.80642,0.31729-1.3532,0.31384-0.23393,0.50421-0.20747,0.8631,0.11997,0.55237,0.50393,0.57448,0.82295,0.0869,1.2548-0.24101,0.21344-0.34645,0.25721-0.62697,0.26001-0.29347,0.003-0.3766-0.0334-0.64036-0.28155z"/>
|
||||
<path d="m406.17,383.28c-0.48488-0.11955-0.76441-0.60787-0.62254-1.0876,0.12852-0.43459,0.20285-0.47736,0.84026-0.48378,0.71478-0.007,0.85352,0.11244,0.86039,0.74185,0.004,0.35432-0.0235,0.43652-0.19971,0.60041-0.2071,0.19261-0.6052,0.29644-0.8784,0.22908z"/>
|
||||
<path d="m495.28,383.36c-0.22701-0.18894-0.27272-0.27435-0.27532-0.51479-0.003-0.41064,0.23349-0.71172,0.74605-0.94382,0.68183-0.30882,0.95981-0.26636,1.2166,0.18575,0.34158,0.60129,0.32512,0.84675-0.0839,1.252-0.22578,0.22366-0.26805,0.2367-0.78493,0.2419-0.50756,0.003-0.56562-0.0105-0.8185-0.22102z"/>
|
||||
<path d="m410.22,384.51c-0.36389-0.0971-0.5525-0.37016-0.55726-0.80675-0.004-0.33383,0.0201-0.38706,0.25362-0.56985,0.15122-0.11834,0.39018-0.21971,0.57856-0.24541,0.2669-0.0365,0.36442-0.0132,0.57916,0.13775,0.55052,0.38698,0.66746,0.76972,0.3487,1.1412-0.33953,0.39572-0.66141,0.48753-1.2028,0.34303z"/>
|
||||
<path d="m432.14,385.49c-0.0807-0.10062-0.25916-0.16012-0.2775-0.287,0.032-0.55487,0.0585-1.1167,0.23525-1.6482,0.0962-0.52301,0.012-1.0692,0.19432-1.5787,0.18698-0.92682,0.18682-1.8826,0.40217-2.8036,0.01-0.47427,0.0549-0.949,0.19241-1.4054,0.15774-0.72168,0.0136-1.4762,0.22606-2.1894-0.0228-0.26786,0.28574-0.98321,0.55658-0.55944,0.39321,0.57645,0.91139,1.0451,1.4208,1.5153,0.43771,0.25252,0.0359,0.62445-0.26658,0.74975-0.41521,0.16364-0.51613,0.62086-0.48666,1.0222-0.0582,0.41455-0.22464,0.80685-0.24153,1.23-0.0878,0.62242-0.0706,1.2546-0.15153,1.8765-0.18211,0.60901-0.11244,1.2597-0.17323,1.8875,0.008,0.39859-0.18142,0.7606-0.15525,1.1604-0.0484,0.40592-0.0665,0.89432-0.40713,1.1724-0.32888,0.16605-0.80429,0.13737-1.0682-0.14228z"/>
|
||||
<path d="m461.84,375.69c-0.48222,0.36463-0.91353,0.79527-1.3438,1.2188-0.59251,0.4489,0.48677,0.70998,0.625,1.0938,0.15716,0.58638,0.1478,1.2106,0.1875,1.8125,0.17923,0.55142,0.25835,1.1384,0.21875,1.7188-0.0519,0.6223-0.86338,0.49115-1.2188,0.84375-0.49176,0.20722-0.68789,0.69047-1.0625,1.0312-0.24625,0.48275-0.31215,1.0763-0.34375,1.625,0.0353,0.44788-0.30248,0.94931,0,1.3438,0.039,0.0557,0.0852,0.132,0.125,0.1875,0.10115,0.1452,0.3425,0.0292,0.5,0.0625,0.50368-0.0282,1.0285,0.0473,1.5-0.15625,1.21-0.20943,2.4311-0.22605,3.6562-0.28125,0.74925,0.0239,1.4701-0.23695,2.2188-0.21875,0.58681,0.12974,0.85075-0.50626,0.84375-0.96875-0.33224-0.65359-0.045-1.4285-0.3125-2.0938-0.23494-0.67246-0.14236-1.428-0.25-2.125-0.0148-0.54835-0.71068-0.75172-1.0625-0.34375-0.34144,0.34514-0.89289,0.41403-1.1562,0.84375-0.29659,0.60239,0.62745,0.60317,0.78125,1.0625,0.17589,0.4642,0.11825,0.98059,0.15625,1.4688,0.11422,0.59237-0.52919,0.6262-0.9375,0.6875-0.53675,0.20112-1.29,0.33589-1.5938-0.3125-0.1909-0.47948-0.16475-0.99286-0.21875-1.5-0.0131-0.89182-0.22755-1.7684-0.28125-2.6562-0.0514-1.0968-0.2407-2.1866-0.3125-3.2812-0.01-0.45549-0.0706-1.198-0.71875-1.0625zm-0.625,8.25,0.3125,0.0312,0.0312,0.375,0.0312,0.375-0.40625,0.125c-0.21512,0.0636-0.40325,0.0943-0.40625,0.0937-0.003-0.00085-0.088-0.0531-0.1875-0.125-0.21959-0.1586-0.16345-0.38503,0.125-0.6875,0.1626-0.17028,0.23879-0.2033,0.5-0.1875z"/>
|
||||
<path d="m431.25,374.66c-0.38018,0.13504-0.86245,0.69313-1.25,0.6875-0.88,0.0623-0.75718,0.91919-0.125,1.2188,0.0833,0.25988,0.005,0.58789,0.0312,0.875,0.12288,0.7896-0.37535,1.4249-0.28125,2.2188-0.0442,0.87031-0.30695,1.7177-0.34375,2.5938-0.24704,0.90327-0.24984,1.8321-0.40625,2.75-0.10431,0.82323-0.69963,0.53271-1.2188,0.3125-0.004-0.35689-0.0272-0.70562-0.0312-1.0625,0.21637-0.81711-0.44101-1.0556-1.0938-1.1562-0.68611,0.0649-1.0228-0.52316-0.875-1.125,0.29488-0.35103,1.036-0.2534,1.5-0.3125,0.9813,0.20342,0.9416-1.1118,0.4375-1.5625-0.34472-0.63567-1.1982-0.90926-1.4375-1.5625,0.0956-0.86642-0.47971-1.7322-1.1875-2.1562-1.0885-0.0764-1.9104,0.86306-2.3125,1.7812-0.4525,0.13085-0.90391,0.26657-1.3438,0.4375-0.70889,0.17748-1.7197,1.407-0.75,1.875,0.54424,0.14988,2.2002,0.52782,1.4688,1.2812-0.41224,0.7071-1.201,0.71914-1.9062,0.53125-0.72365,0.00063-1.5294-0.35207-1.5-1.1875-0.14765-0.74985-0.12337-1.5579-0.46875-2.25-0.14847-0.83929-1.1008-0.64297-1.1562,0.125-0.73341,0.53403-0.6357,1.3978-0.125,2.0312,0.31876,0.72891,0.003,1.5776-0.3125,2.25-0.19091,0.87497-1.1559,0.90473-1.8438,1.1875-0.33751,0.13104-1.6285-0.0779-1.1562,0.65625,0.75312,0.26578,1.6525,0.50493,2.4375,0.3125,0.82295-0.10214,1.5375-0.66484,1.9375-1.375,0.55266-0.56003,1.502-0.26685,2.2188-0.28125,0.7728-0.002,1.5626,0.54243,2.3125,0.1875,0.21739-0.56438,1.2219-1.4958,1.5312-0.53125-0.0526,0.86265,0.70932,1.3257,1.5,1.2188,0.86375-0.0494,0.54445,0.61096,0.53125,1.125,0.0571,0.93448,0.65972,1.4247,1.4375,1.8125,0.26491,0.0715,0.545,0.0474,0.8125,0,0.74793-0.23513,1.5536-0.5689,1.7812-1.4062,0.30361-0.68071,0.31071-1.4507,0.53125-2.1562,0.17722-1.1299,0.406-2.26,0.4375-3.4062,0.27617-1.0383,0.19684-2.136,0.40625-3.1875,0.13231-0.7818,0.2308-1.5634,0.3125-2.3438-0.0917-0.41735-0.27189-0.48727-0.5-0.40625zm-6.7812,4.1562c0.15144,0.0185,0.2356,0.20409,0.25,0.53125,0.016,0.36409,0.20628,0.66075,0.4375,0.71875,0.18245,0.0457,0.16681,0.23882-0.0312,0.375-0.11507,0.0791-0.3209,0.127-0.6875,0.125-0.57804-0.003-0.93643-0.15276-1.25-0.46875l-0.1875-0.1875,0.28125-0.1875c0.14178-0.10831,0.39834-0.33259,0.5625-0.5,0.28494-0.29065,0.47356-0.42473,0.625-0.40625z"/>
|
||||
<path d="m490.5,370.94c-0.56713,0.026-1.1373,0.11796-1.6562,0.25-1.0402-0.0647-1.5624,1.0271-0.5625,1.5625,0.60166,1.5343,1.5404-0.31684,2.5-0.1875,1.4375,0.27956,1.559,1.8323,1.7812,3,0.0809,1.1567,0.41439,2.2816,0.75,3.375,0.96222,1.0695-0.72072,1.7402-1.4375,0.90625-0.61128-0.66434-1.9204-1.4795-2.6562-0.5625-0.9036,0.38266-0.94069,1.5903-1.6875,1.9375-1.2091,0.36803-1.3613-1.1188-2-1.75-0.58724-0.82427-1.7103-0.89646-2.625-1.1875-0.42913-0.86865-0.20548-2.3456-1.0938-2.9375-0.7458,0.30425-2.1131,1.7022-0.96875,2.3438,1.1177,0.96067-0.48782,1.4011-1,2.0625-0.73158,0.81456-0.84849,1.936-0.96875,2.9688-1.2593,0.69566-1.5044-0.78769-1.6562-1.7188-0.0981-1.1115-1.0358-0.78521-1.6875-0.375-0.95249,0.38586-1.4281,1.2903-2.0938,2-0.0799,0.64767,0.0372,1.3567,0.0312,2.0312,0.21646,0.81142,1.2024,0.4303,1.8125,0.375,0.9788-0.40937,1.3795,0.62745,0.59375,1.2188-0.53181,0.67603-2.2198,0.32293-2.0625,1.4062,0.54395,0.0636,1.1105,0.0432,1.6562,0,1.0905-0.29799,2.2614-1.0673,2.375-2.2812,0.1436-1.0582,1.6676-0.86544,2.5-1.0938,1.0408-0.30002,2.2948-0.37704,2.5312,0.9375,0.70943,0.74499,2.2486,1.584,3.0312,0.5625,0.79451-0.48523,1.1764-1.3376,1.125-2.25-0.16203-0.78461,1.2688-0.81314,1.625-0.375,0.52141,0.85796,2.151,0.60478,2.9375,0.125,0.8361-0.61721,1.0176-1.705,2.2188-1.7188,1.7823-0.53352,3.6342-0.84122,5.375-1.5,1.4104-0.3073-0.2099-1.1977-0.5625-1.7188-1.0737-0.53098-2.0081,1.6419-3.2188,0.5625-0.93564-0.71605-0.87212-2.0766-1.2188-3.125-0.23714-1.3573-0.17721-2.9227-1.1562-4-0.67242-0.71491-1.586-0.887-2.5312-0.84375zm-6.8125,9.4688c0.12573-0.003,0.26757,0.0593,0.5,0.1875,0.43841,0.24193,0.75063,0.64294,0.75,0.96875-0.00043,0.21261-0.0545,0.22697-0.375,0.375-0.19719,0.091-0.4214,0.1885-0.5,0.1875-0.18098-0.002-0.62438-0.35688-0.625-0.5-0.00065-0.0594-0.0581-0.28649-0.125-0.46875-0.11761-0.32068-0.0994-0.31643,0.0625-0.53125,0.10347-0.13744,0.18677-0.21532,0.3125-0.21875zm6.5312,0.34375c0.37229-0.0244,0.59356,0.0918,0.75,0.375,0.18178,0.32896,0.0582,0.58095-0.40625,0.78125-0.20349,0.0878-0.407,0.15925-0.4375,0.15625-0.0306-0.003-0.19844-0.10253-0.375-0.21875-0.27012-0.17777-0.3095-0.26387-0.3125-0.46875-0.003-0.31541,0.34928-0.5967,0.78125-0.625zm-8.9375,0.0937c0.10904-0.017,0.20831,0.04,0.34375,0.15625,0.17999,0.15456,0.23685,0.27887,0.28125,0.59375,0.0314,0.21884,0.0265,0.50184,0,0.625-0.0486,0.2261-0.0532,0.21575-0.5625,0.21875-0.64029,0.006-0.6997-0.0639-0.6875-0.65625,0.008-0.37682,0.0118-0.4782,0.21875-0.6875,0.16044-0.16228,0.29721-0.23305,0.40625-0.25zm-5.5,1.4375c0.19951,0.0469,0.3879,0.19761,0.4375,0.4375,0.0656,0.3175,0.008,0.46223-0.25,0.59375-0.2221,0.1131-0.73401,0.1508-0.875,0.0625-0.0457-0.0286-0.1399-0.103-0.1875-0.1875-0.068-0.12114-0.0555-0.1794,0.0312-0.25,0.0605-0.0492,0.12539-0.11985,0.125-0.15625-0.0004-0.0364,0.0673-0.16316,0.15625-0.28125,0.14608-0.1939,0.36299-0.26563,0.5625-0.21875zm9.25,1.1875c0.17794-0.001,0.32863,0.0609,0.4375,0.15625,0.18526,0.16231,0.179,0.40039-0.0312,0.5625-0.13509,0.1044-0.87165,0.0948-1.125,0-0.11272-0.0421-0.15563-0.0987-0.15625-0.21875-0.002-0.14091,0.0375-0.22767,0.28125-0.34375,0.20425-0.0976,0.41581-0.15507,0.59375-0.15625z"/>
|
||||
<path d="m467.86,388.29c-0.0958-0.0625-0.23767-0.11699-0.0948-0.22157,0.17277-0.30247,0.51785-0.40716,0.82434-0.51974,0.54779-0.23732,1.0207-0.64036,1.3737-1.1184,0.05-0.33298,0.42384-0.51355,0.42219-0.86174,0.003-0.47487,0.0311-0.9616-0.0846-1.426-0.12837-0.4257-0.45147-0.75199-0.82649-0.97395-0.25667-0.20149-0.674-0.25712-0.76877-0.61402-0.0525-0.34279,0.25343-0.60401,0.36053-0.90935,0.22325-0.42151,0.41109-0.86364,0.6509-1.275,0.25912-0.2878,0.65892-0.0156,0.79298,0.26239,0.18915,0.27771,0.35679,0.57593,0.45076,0.89748,0.30225,0.33175,0.57024,0.72087,0.679,1.1618,0.14839,0.31056,0.38316,0.60234,0.36929,0.96609,0.0003,0.4164,0.23509,0.78738,0.22034,1.2063,0.0133,0.56042,0.0131,1.1449-0.19184,1.6741-0.14001,0.29344-0.42058,0.46964-0.60639,0.73256-0.31897,0.29554-0.67037,0.57899-1.0797,0.73615-0.28928,0.092-0.45706,0.42565-0.81934,0.34466-0.51458,0.009-1.0366,0.079-1.5472-0.004,0.0323,0.0542-0.15633-0.0915-0.12493-0.0573z"/>
|
||||
<path d="m461.01,388.74c-0.24268-0.24958-0.2952-0.35543-0.29788-0.60032-0.003-0.24747,0.0446-0.34567,0.2822-0.58569,0.43829-0.44275,0.65248-0.45344,1.4091-0.0705,0.72304,0.36598,0.9675,0.39912,1.0322,0.14002,0.0625-0.25022,0.47885-0.47916,0.87435-0.4808,0.25006-0.002,0.39157,0.0477,0.59183,0.20368,0.25136,0.19583,0.26349,0.22634,0.26989,0.67935,0.004,0.46299-0.002,0.48055-0.29042,0.73591-0.27723,0.24409-0.32183,0.25915-0.66541,0.22476-0.43718-0.0439-0.69954-0.24407-0.77073-0.58844-0.0516-0.25001-0.13942-0.3097-0.20523-0.1397-0.0209,0.0546-0.12864,0.12185-0.23894,0.1496-0.20352,0.0514-0.5488,0.26862-0.79415,0.50006-0.0927,0.0874-0.25526,0.12855-0.51863,0.13122-0.35563,0.003-0.40513-0.0183-0.67826-0.29915z"/>
|
||||
<path d="m441.19,379.84c-0.66466,0.007-1.3805,0.5662-1.4688,1.2188,0.15206,0.75226,0.77698,1.4895,0.375,2.2812,0.27756,1.0131-0.76147,1.3974-1.4688,0.8125-0.4271-0.97134-0.64349-2.0358-1.2812-2.9062-0.80411-0.22762-1.1545,1.0569-1.7188,1.5,0.27975,0.75505,1.0958,1.4324,1.1875,2.375,0.1952,0.91482-0.36128,1.9306-1.1562,2.4062-0.68584,0.65472-1.6254,0.42074-2.4688,0.5625-1.0242,0.59857,0.75182,0.81755,1.2188,0.84375,1.0477,0.10646,2.1354-0.0317,2.9062-0.8125,0.76911-0.36708,0.70971-1.6972,1.625-1.8438,1.5884-0.0709,3.1626,0.24355,4.75,0.28125,0.84936,0.20336,2.1635-0.10098,2.75,0.53125,0.002,1.1075,0.94078,1.7905,1.8438,2.2188,0.4987,0.13872,1.0241-0.47928,1.5312-0.59375,0.96531-0.30764,0.67182-1.502,1.25-1.9688,1.6504-0.0893,3.3163-0.0704,4.9688-0.0937,0.31463,0.008,0.40734-0.43988,0.625-0.625-0.0363-0.63881-0.0593-1.2726-0.15625-1.9062-0.31819-0.80653,0.0513-1.8446-0.53125-2.5312-0.83011-0.22606-1.5362,0.53355-2.375,0.59375-0.92616,0.41246-1.7065,1.2677-1.75,2.3125-0.54833,0.89658-1.4277-0.15958-1.125-0.90625-0.0346-0.32541,0.0704-0.70429-0.0312-1-0.50698-0.60814-1.3947-0.4094-2.0938-0.5-1.0184,0.0406-2.0127-0.17955-3.0312-0.15625-0.89293-0.0674-1.822,0.0777-2.6875-0.15625-1.0317-0.0293-0.88959-1.0382-1.0625-1.75-0.18299-0.13571-0.40345-0.18973-0.625-0.1875zm2,3.6875c0.34308,0.007,0.66656,0.052,1,0.0937,0.43082,0.0709,0.8899-0.14816,1.3125,0,0.97651,0.16608,1.9536,0.12685,2.9375,0.21875,0.25985-0.004,0.44579,0.18471,0.625,0.34375,0.002,0.68357,0.00066,1.3789,0,2.0625-0.0299,0.25767,0.0763,0.5982-0.15625,0.78125-0.0747,0.0513-0.1583,0.1072-0.25,0.125-0.27065-0.07-0.55731-0.2479-0.6875-0.5-0.0414-0.35742,0.0179-0.70404,0.0312-1.0625-0.007-0.0927,0.0404-0.237,0-0.3125-0.21278-0.15067-0.45387-0.249-0.71875-0.25-0.84945-0.0291-1.682-0.0916-2.5312-0.125-0.7069-0.0446-1.4333,0.0604-2.125-0.125-0.26845-0.0976-0.61789-0.0641-0.78125-0.34375-0.23417-0.27227,0.10362-0.59695,0.34375-0.71875,0.31827-0.1447,0.65692-0.19411,1-0.1875zm11.281,0.25c0.15866-0.002,0.20935,0.05,0.28125,0.34375,0.0459,0.18765,0.0996,0.4172,0.125,0.5,0.0363,0.11811-0.0218,0.15625-0.1875,0.21875-0.494,0.18646-0.98566,0.16797-1.1562-0.0625-0.0774-0.10454,0.0129-0.43451,0.15625-0.5625,0.28946-0.25851,0.60992-0.43691,0.78125-0.4375z"/>
|
||||
</g>
|
||||
</g>
|
||||
<path stroke-width="1.1502" d="m449.98,327.23c32.642-25.106,29.843-61.883,29.843-61.883-0.8613,0.17223-1.6795,0.25835-2.5408,0.25835-6.8471,0-23.178-3.9171-26.988-8.8926-4.0812,4.5034-20.77,8.8926-27.574,8.8926-0.86129,0-1.7225-0.0861-2.5407-0.25835,0,0-2.8422,36.776,29.8,61.883z"/>
|
||||
<path stroke-width="0.9157" d="m477.22,268.04c-0.28097,0.0176-0.5633,0.0264-0.8477,0.0264-6.2055,0-20.619-3.1838-26.175-7.9572-5.8195,4.4095-20.471,7.9572-26.576,7.9572-0.28635,0-0.56925-0.035-0.84965-0.0865-0.0142,1.3908,0.0581,2.8324,0.14448,4.1436,0.323,4.9008,1.1826,9.819,2.4876,14.552,4.1081,14.895,12.516,27.553,24.572,37.155,12.066-9.61,20.484-22.28,24.601-37.186,1.3071-4.7319,2.1694-9.6497,2.4955-14.55,0.0853-1.2845,0.15716-2.6918,0.14745-4.0545z"/>
|
||||
<path fill="#c09300" stroke="none" d="m439.38,265.03c-5.8724,1.8448-12.229,3.0312-15.75,3.0312-0.28633,0-0.56336-0.0423-0.84375-0.0937-0.0142,1.3907,0.0699,2.8451,0.15625,4.1562,0.32298,4.9006,1.1638,9.7995,2.4688,14.531,2.765,10.025,7.5063,19.032,13.969,26.781v-48.406z"/>
|
||||
<path fill="#c09300" stroke="none" d="m460,264.94,0,49.25c6.794-7.9213,11.733-17.206,14.594-27.562,1.307-4.7317,2.1427-9.6313,2.4688-14.531,0.0853-1.2844,0.16596-2.6999,0.15625-4.0625-0.28095,0.0176-0.55937,0.0312-0.84375,0.0312-3.7302,0-10.42-1.1704-16.375-3.125z"/>
|
||||
<g stroke-width="1.2704">
|
||||
<path stroke-width="1.2179" d="m462.31,253.09c0.66655,0.0392-0.90178-3.568-0.90178-3.568,1.7643,1.8036,8.4297,2.2349,8.4297,2.2349-3.999-1.7656-7.9979-15.096-7.528-25.721,0.4319-10.664-1.5284-14.859-3.0971-16.428-1.9995-1.9995-8.4298-3.7639-12.664-3.9991-2.3922-0.11761-1.9995,1.8036-1.9995,1.8036-4.4308-1.137-8.8606-1.5684-10.861-0.2353-1.882,1.2547-2.274,7.5278-0.90178,6.43,3.3326-2.6661,6.2341-0.23524,8.2335,2.6661,1.7644,2.5485,1.6467,9.7627-0.90178,18.192-2.6661,8.8609-9.9588,17.722-9.9588,17.722,3.96,0,9.5276-3.5287,9.5276-3.5287l-1.3331,5.5283c4.1951-1.9996,7.5278-5.0969,7.5278-5.0969l3.9992,4.1951c1.333-1.7643,3.9991-4.1951,3.9991-4.1951s3.3328,3.5286,8.4297,3.9992z"/>
|
||||
<path fill="none" d="m446.12,227.57s-2.2349,16.428-6.43,21.094"/>
|
||||
<path fill="none" d="m449.65,227.14s-0.86252,16.623-3.7639,21.956"/>
|
||||
<path fill="none" d="m452.78,227.81s0,18.192,1.0978,21.289"/>
|
||||
<path fill="none" d="m456.74,228.71s0.90178,15.291,4.6657,20.819"/>
|
||||
<path fill="#c09300" stroke-width="0.3542" d="m442.08,219.61c-0.19598-1.4508-0.54888-2.5878-1.0586-3.3328-1.9996-2.9013-4.9009-5.3321-8.2335-2.6661,0,0,1.137-3.5287,3.5678-3.6463,1.882-0.11767,6.1556,1.4115,9.9196,7.8415,0,0-2.7837-0.62739-3.4502-0.0393-1.2546,1.0979-0.74495,1.8428-0.74495,1.8428z"/>
|
||||
<path fill="#c09300" stroke-width="0.3542" d="m432.44,209.26c0.27439-0.90178,0.7057-1.7251,1.2546-2.078,1.9996-1.333,6.43-0.90177,10.86,0.23524,0,0-0.39205-1.9212,1.9996-1.8036,4.2344,0.23523,10.665,1.9996,12.664,3.9992,0.47046,0.50973,1.0194,1.2547,1.4899,2.3916h-0.0784c-0.98015-1.3721-3.764-1.2937-4.4308-1.2154-1.0586,0.11756-1.7251,0.0784-3.1365,0.4312-0.66655,0.15693-1.686,0.3529-2.2349,0.78422-0.43131,0.3529-0.7841,1.6467-1.4506,1.6467-1.0586,0-0.98019-0.27449-1.2547-0.58814-0.35279-0.43131-0.54888-1.0586-0.90178-1.0194-1.0978,0.19608-2.8621-0.66644-5.0969-2.4308-2.2344-1.7644-3.0971-2.1956-5.9984-1.9996-2.8622,0.23524-3.7639,1.8427-3.7639,1.8427l0.0784-0.19598z"/>
|
||||
<circle cx="448.824" cy="210.672" r="1.176" stroke="none"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 23 KiB |
10
build/default/data/svg/EH.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg version="1.0" xmlns="http://www.w3.org/2000/svg" width="600" height="300">
|
||||
<rect width="600" height="150" fill="#000"/>
|
||||
<rect y="150" width="600" height="150" fill="#007a3d"/>
|
||||
<rect y="100" width="600" height="100" fill="#fff"/>
|
||||
<path d="M 0,0 200,150 0,300 z" fill="#c4111b"/>
|
||||
<circle cx="300" cy="150" r="40" fill="#c4111b"/>
|
||||
<circle cx="315" cy="150" r="40" fill="#fff"/>
|
||||
<path d="m 289.26294,174.2204 17.05633,-12.19273 16.92296,12.37709 -6.32527,-19.98928 17.00081,-12.26999 -20.96556,-0.16131 -6.41591,-19.96036 -6.63215,19.88957 -20.96606,-0.0661 16.86669,12.45373 -6.54184,19.91946 z" fill="#c4111b"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 668 B |
7
build/default/data/svg/ER.svg
Normal file
|
After Width: | Height: | Size: 6.6 KiB |
406
build/default/data/svg/ES.svg
Normal file
|
After Width: | Height: | Size: 58 KiB |
17
build/default/data/svg/ET.svg
Normal file
@@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="720" height="360">
|
||||
<rect fill="#da121a" height="360" width="720"/>
|
||||
<rect fill="#fcdd09" height="240" width="720"/>
|
||||
<rect fill="#078930" height="120" width="720"/>
|
||||
<g transform="translate(360,180)">
|
||||
<circle fill="#0f47af" r="120"/>
|
||||
<g id="t">
|
||||
<path fill="#fcdd09" d="M0,-96 -4.205849,-83.055728 13.141645,-29.665631H-9.987258L-12.586616,-21.665631H61.576052L72.587108,-29.665631H21.553343z"/>
|
||||
<path stroke="#fcdd09" stroke-width="4" d="M0,44V96" transform="rotate(216)"/>
|
||||
</g>
|
||||
<use xlink:href="#t" transform="rotate(72)"/>
|
||||
<use xlink:href="#t" transform="rotate(144)"/>
|
||||
<use xlink:href="#t" transform="rotate(216)"/>
|
||||
<use xlink:href="#t" transform="rotate(288)"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 804 B |
4
build/default/data/svg/EU.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="810" height="540"><desc>European flag</desc>
|
||||
<defs><g id="s"><g id="c"><path id="t" d="M0,0v1h0.5z" transform="translate(0,-1)rotate(18)"/><use xlink:href="#t" transform="scale(-1,1)"/></g><g id="a"><use xlink:href="#c" transform="rotate(72)"/><use xlink:href="#c" transform="rotate(144)"/></g><use xlink:href="#a" transform="scale(-1,1)"/></g></defs>
|
||||
<rect fill="#039" width="810" height="540"/><g fill="#fc0" transform="scale(30)translate(13.5,9)"><use xlink:href="#s" y="-6"/><use xlink:href="#s" y="6"/><g id="l"><use xlink:href="#s" x="-6"/><use xlink:href="#s" transform="rotate(150)translate(0,6)rotate(66)"/><use xlink:href="#s" transform="rotate(120)translate(0,6)rotate(24)"/><use xlink:href="#s" transform="rotate(60)translate(0,6)rotate(12)"/><use xlink:href="#s" transform="rotate(30)translate(0,6)rotate(42)"/></g><use xlink:href="#l" transform="scale(-1,1)"/></g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
6
build/default/data/svg/FI.svg
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="1800" height="1100">
|
||||
<rect width="1800" height="1100" fill="#fff"/>
|
||||
<rect width="1800" height="300" y="400" fill="#003580"/>
|
||||
<rect width="300" height="1100" x="500" fill="#003580"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 275 B |
230
build/default/data/svg/FJ.svg
Normal file
|
After Width: | Height: | Size: 53 KiB |
240
build/default/data/svg/FK.svg
Normal file
@@ -0,0 +1,240 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1200" height="600">
|
||||
<defs>
|
||||
<linearGradient id="gradbase" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#a43907" stop-opacity="0.9961" offset="0"/>
|
||||
<stop stop-color="#fff" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="grad1" xlink:href="#gradbase" x1="826.45044" y1="419.93194" x2="786.12402" y2="396.11032"/>
|
||||
<linearGradient id="grad2" xlink:href="#gradbase" x1="851.56865" y1="436.06697" x2="763.03312" y2="419.67318"/>
|
||||
<linearGradient id="grad3" xlink:href="#gradbase" x1="1016.1496" y1="398.53933" x2="974.91928" y2="400.94143"/>
|
||||
<linearGradient id="grad4" xlink:href="#gradbase" x1="1033.33547" y1="421.21868" x2="945.904" y2="428.64452"/>
|
||||
<linearGradient id="grad5" xlink:href="#gradbase" x1="1023.35736" y1="445.13212" x2="776.64586" y2="445.13212"/>
|
||||
<linearGradient id="grad6" xlink:href="#gradbase" x1="783.43027" y1="462.50282" x2="1144.08805" y2="465.42083"/>
|
||||
<linearGradient id="grad7" xlink:href="#gradbase" x1="1032.1278" y1="442.28699" x2="1002.94064" y2="444.03323"/>
|
||||
<linearGradient id="grad8" xlink:href="#gradbase" x1="775.74733" y1="471.7178" x2="803.90792" y2="476.1845"/>
|
||||
<linearGradient id="grad9" xlink:href="#gradbase" x1="803.17707" y1="466.88819" x2="755.30821" y2="440.32034"/>
|
||||
<clipPath id="c">
|
||||
<path d="M0,0V150H700V300H600zM600,0H300V350H0V300z"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<rect width="1200" height="600" fill="#00247d"/>
|
||||
<path d="M0,0 600,300M600,0 0,300" stroke="#fff" stroke-width="60"/>
|
||||
<path d="M0,0 600,300M600,0 0,300" stroke="#cf142b" stroke-width="40" clip-path="url(#c)"/>
|
||||
<path d="M300,0V350M0,150H700" stroke="#fff" stroke-width="100"/>
|
||||
<path d="M300,0V350M0,150H700" stroke="#cf142b" stroke-width="60"/>
|
||||
<path d="M0,300H600V0H1200V600H0z" fill="#00247d"/>
|
||||
<g stroke="#000" stroke-width="1.8">
|
||||
<use xlink:href="#scroll" stroke="#fff" stroke-width="12"/>
|
||||
<g id="scroll" stroke-linejoin="bevel">
|
||||
<path fill="url(#grad1)" d="m826.45,427.735s-8.53598-13.8843-15.65-12.8926c-7.11256,0.99174-13.7516,9.91737-14.2266,10.4124-0.47347,0.49666-10.9063-11.4042-10.4329-11.9008,0.47498-0.49508,10.9078-26.2802,16.5985-27.272,5.69065-0.99174,17.9773,1.89709,17.9773,2.88882,0,0.99174,5.73375,38.7641,5.73375,38.7641z"/>
|
||||
<path fill="url(#grad2)" d="m845.419,412.859c0,0.99174-2.84532,37.686-15.1751,50.5786-12.3297,12.8926-32.247,20.8265-39.3611,18.843-7.11255-1.98348-23.2361-39.1728-23.2361-39.1728s17.072,17.8513,29.8752,14.8761c12.8047-2.97521,20.3922-25.2901,22.7626-36.1992,2.37186-10.9091,0.47498-32.2323,0.47498-32.2323l24.6595,23.3066z"/>
|
||||
<path fill="url(#grad3)" d="m973.576,427.735s8.53598-13.8843,15.65-12.8926c7.11256,0.99174,13.7516,9.91737,14.2266,10.4124,0.4734,0.49666,10.9063-11.4042,10.4328-11.9008-0.4749-0.49508-10.9078-26.2802-16.5984-27.272-5.69065-0.99174-17.9773,1.89709-17.9773,2.88882,0,0.99174-5.73375,38.7641-5.73375,38.7641z"/>
|
||||
<path fill="url(#grad4)" d="m954.608,412.859c0,0.99174,2.84532,37.686,15.1751,50.5786,12.3297,12.8926,32.247,20.8265,39.361,18.843,7.1126-1.98348,23.2361-39.1728,23.2361-39.1728s-17.072,17.8513-29.8752,14.8761c-12.8047-2.97521-20.3922-25.2901-22.7626-36.1992-2.37186-10.9091-0.47498-32.2323-0.47498-32.2323l-24.6595,23.3066z"/>
|
||||
<path fill="url(#grad5)" d="m788.945,407.482c-5.69068,6.94218-8.7289,12.308-11.1,16.275-2.3711,3.96694-0.97668,9.4873,4.5,17.3625,5.90463,8.48767,54.4484,41.6625,117.675,41.6625,63.2265,0,111.77-33.1748,117.675-41.6625,5.4766-7.87519,6.8336-13.3956,4.4625-17.3625-2.3711-3.96695-5.3719-9.33282-11.0625-16.275,0,10.4124-40.2141,48.0375-111.075,48.0375-70.8609,0.00002-111.075-37.625-111.075-48.0375z"/>
|
||||
<path fill="url(#grad6)" d="m1008.25,476.741c0.9485-1.48681,10.9063-18.843,10.9063-18.843l-5.46-4.02724c-1.6768,4.90949-7.8182,6.50738-8.7666,12.4578s4.2688,11.9008,3.3203,10.4124z"/>
|
||||
<path fill="url(#grad7)" d="m1018.15,471.371s1.8969-8.42897-4.2673-9.42071c-6.1656-0.99173-9.4293,4.71805-8.5359,2.47855,0.9921-2.48691,4.7422-4.95868,5.2156-13.3877,0.475-8.43056-0.4734-12.8926-0.4734-12.8926s2.3703-10.9107,12.3297-9.4223c9.9579,1.4884,10.4329,9.4223,10.4329,12.3975,0,2.97521-0.9485,4.46202-0.9485,4.46202l-13.7531,25.7852z"/>
|
||||
<path fill="url(#grad8)" d="M791.773,476.741c-0.949-1.487-10.907-18.843-10.907-18.843l5.45999-4.02724c1.67684,4.90949,7.81819,6.50738,8.76663,12.4578s-4.26874,11.9008-3.3203,10.4124z"/>
|
||||
<path fill="url(#grad9)" d="m781.873,471.371s-1.89688-8.42897,4.26723-9.42071c6.16563-0.99173,9.42936,4.71805,8.53597,2.47855-0.99208-2.48691-4.7422-4.95868-5.21567-13.3877-0.47498-8.43056,0.47347-12.8926,0.47347-12.8926s-2.37035-10.9107-12.3297-9.4223c-9.95788,1.4884-10.4329,9.4223-10.4329,12.3975,0,2.97521,0.94844,4.46202,0.94844,4.46202l13.7532,25.7852z"/>
|
||||
</g>
|
||||
<g fill="#000" stroke="none">
|
||||
<path d="m813.43,438.565-5.16779-3.55994-0.60012,0.95373,1.0182,0.84192,0.0874,0.5064-6.50543,10.3388-0.47909,0.11619-1.14073-0.6472-0.60011,0.95374,5.16779,3.55994c1.7705,1.21965,3.2807,1.84224,4.96633,1.66477,2.1944-0.22005,4.06492-1.49869,5.5102-3.7956,2.573-4.08915,1.85084-8.10322-2.25661-10.9327zm-2.1551,0.0781,1.02686,0.70737c2.8141,1.93856,3.06199,4.64992,0.75905,8.30989-2.30295,3.65997-4.79294,4.51187-7.60704,2.57332l-1.02686-0.70738,6.84799-10.8832z"/>
|
||||
<path d="m815.174,457.273,10.2685,5.13308,1.71686-3.76452-1.2992-0.64945-1.34262,2.06734-0.40209,0.21206-4.43568-2.21733,2.495-5.47071,2.48537,1.2424,0.1338,0.42897-0.50075,1.60932,1.12889,0.56432,2.22605-4.88099-1.12889-0.56431-0.88123,1.42089-0.4021,0.15932-2.48537-1.24239,2.2835-5.00695,3.80416,1.90164,0.12401,0.39771-0.55685,1.9961,1.33839,0.66904,1.50666-3.30361-9.63852-4.81815-0.47001,1.03059,1.11826,0.68907,0.17148,0.44781-5.11404,11.2134-0.45937,0.18343-1.21422-0.47866-0.47002,1.03059z"/>
|
||||
<path d="m828.786,462.999c1.10133,0.90962,2.37746,1.60988,3.66831,2.04514,3.30819,1.11547,5.93074-0.10665,6.74176-2.74783,0.40203-1.30927,0.12479-2.72592-0.79298-3.94194-0.93036-1.24359-1.89776-1.93807-2.39314-2.57005-0.85035-1.06996-1.21179-1.92674-0.89833-2.94757,0.37514-1.22168,1.55506-1.80204,3.02713-1.30568,0.64543,0.21763,1.07577,0.48438,1.37702,0.80593l0.18745,0.4065-0.36563,2.42474,1.45141,0.48939,1.10408-3.59557c-1.11994-0.91756-2.30851-1.61162-3.55962-2.03348-2.88374-0.97235-5.34572,0.30391-6.10202,2.7669-0.33434,1.08879-0.18493,2.33902,0.47776,3.51735,0.6348,1.1206,1.46794,1.81814,2.13759,2.53387,1.18703,1.28181,1.66823,2.32562,1.30052,3.52314-0.37514,1.22168-1.61594,1.78318-3.25016,1.23214-0.62476-0.21066-1.17546-0.51966-1.6786-0.90929l-0.16029-0.42066,0.49527-2.77265-1.53408-0.51727-1.23345,4.01689z"/>
|
||||
<path d="m839.509,467.153,6.02979,2.03315,0.33386-1.08727-1.3174-0.56586-0.21374-0.46369,3.63266-11.8302,0.41824-0.20227,1.38557,0.34388,0.33387-1.08728-6.02979-2.03316-0.33387,1.08728,1.29628,0.56041,0.22719,0.41989-3.63267,11.8302-0.43168,0.24606-1.36444-0.33842-0.33387,1.08728z"/>
|
||||
<path d="m852.462,454.82-0.23018,1.11771,1.19889,0.38514,0.26548,0.39304-2.50447,12.1613-0.40647,0.29156-1.24589-0.15694-0.23018,1.11771,5.84014,1.29106,0.23018-1.11771-1.24001-0.39261-0.25622-0.43806,1.05723-5.1337c0.12405,0.0274,0.2481,0.0549,0.35256,0.0779,2.0909,0.46223,2.42749,1.5624,2.62266,3.87132,0.10596,1.16768,0.0804,2.23648,0.9697,3.38743,0.40864,0.54317,1.11789,0.98561,2.00909,1.18263,0.64147,0.14181,1.35903,0.22902,2.10708,0.27591l0.2257-1.09598c-0.10283-0.0227-0.18607-0.0411-0.26932-0.0595-1.3874-0.3067-1.93731-0.78534-2.11449-2.13756-0.15871-1.2264-0.0697-2.49543-0.50599-3.64198-0.32473-0.83462-0.94066-1.42361-1.8829-1.89485,2.43941,0.0378,3.93433-1.01461,4.36656-3.11342,0.52174-2.53347-0.85301-4.26891-4.06362-4.97867l-6.29553-1.39173zm3.97754,2.23942,0.95323,0.21072c2.00765,0.44383,2.84759,1.72669,2.46236,3.5973-0.43255,2.10036-1.68585,2.82472-3.9008,2.33507-0.22851-0.0505-0.47661-0.10536-0.74113-0.18819l1.22634-5.9549z"/>
|
||||
<path d="m865.586,473.888,11.3628,0.56256,0.18257-4.16851-1.43933-0.0713-0.4684,2.45157-0.2915,0.35885-4.90839-0.24301,0.26531-6.0578,2.75023,0.13616,0.28257,0.3412,0.13837,1.6874,1.24753,0.0618,0.23671-5.40479-1.24753-0.0618-0.28532,1.66801-0.3111,0.31022-2.75024-0.13616,0.24282-5.54426,4.21124,0.20849,0.26193,0.31636,0.22707,2.06665,1.48102,0.0733,0.16021-3.65813-10.664-0.52797-0.05,1.14119,1.28576,0.1812,0.32426,0.34327-0.5438,12.4168-0.35488,0.35571-1.29596,0.0518-0.05,1.14119z"/>
|
||||
<path d="m885.562,460.702-0.039,4.12848,1.49873,0.0179,0.37128-2.49165,0.35057-0.29889,2.60866,0.0312-0.11983,12.6869-0.3735,0.36844-1.41418,0.0989-0.0108,1.14239,6.49852,0.0777,0.0108-1.14239-1.412-0.13272-0.36645-0.37729,0.11983-12.6869,2.60866,0.0312,0.32257,0.30694,0.3464,2.50023,1.49874,0.0179,0.039-4.12847-12.538-0.14991z"/>
|
||||
<path d="m898.767,461.149,0.0199,1.1423,1.26256,0.0954,0.35417,0.36677,0.21614,12.3829-0.34115,0.3789-1.25849,0.13782,0.0199,1.14231,6.14838-0.10732-0.0199-1.14231-1.30534-0.0931-0.35417-0.36677-0.10258-5.87653,6.27854-0.1096,0.10257,5.87654-0.31889,0.37852-1.3013,0.13857,0.0199,1.1423,6.12782-0.10696-0.0199-1.14231-1.26252-0.0938-0.35417-0.36677-0.21615-12.3829,0.34116-0.37891,1.25845-0.1394-0.0199-1.14231-6.12782,0.10696,0.0199,1.14231,1.30537,0.0947,0.33191,0.36716,0.0891,5.10707-6.27853,0.10959-0.0892-5.10707,0.34116-0.3789,1.30127-0.14016-0.0199-1.1423-6.14838,0.10732z"/>
|
||||
<path d="m916.073,476.413,11.6241-1.06432-0.3543-4.15727-1.47242,0.13481-0.15864,2.4965-0.24986,0.39724-5.02124,0.45975-0.51488-6.04148,2.81346-0.2576,0.33145,0.29782,0.35921,1.65255,1.27621-0.11685-0.45938-5.39023-1.27621,0.11685-0.074,1.69382-0.27608,0.35185-2.81346,0.25761-0.47124-5.52933,4.30807-0.39446,0.30724,0.27614,0.4985,2.01576,1.51507-0.13872-0.31092-3.64828-10.9092,0.99887,0.097,1.13811,1.33054-0.004,0.37411,0.29391,1.05536,12.3833-0.3147,0.40318-1.31073,0.23631,0.097,1.13811z"/>
|
||||
<path d="m932.555,458.353,0.1778,1.12752,1.36566-0.11428,0.41605,0.26022,1.9346,12.2681-0.30714,0.4304-1.32936,0.34448,0.1778,1.12753,6.43651-1.09951-0.1778-1.12752-1.41039,0.12352-0.42321-0.30563-0.81666-5.17879c0.13672-0.0233,0.27523-0.047,0.38857-0.0664,2.3044-0.39365,3.05412,0.49466,4.10583,2.56004,0.53928,1.04166,0.90964,2.04302,2.24033,2.76132,0.61756,0.34319,1.50472,0.47469,2.48692,0.3069,0.70698-0.12076,1.47144-0.32211,2.25213-0.57287l-0.17434-1.1056c-0.11334,0.0194-0.20508,0.035-0.29683,0.0507-1.52907,0.2612-2.26699,0.0335-2.94708-1.1514-0.6148-1.07539-0.99257-2.28777-1.85931-3.18021-0.64135-0.64629-1.48738-0.95045-2.62113-1.01731,2.50154-0.92425,3.63852-2.48866,3.30465-4.6059-0.40302-2.55573-2.44673-3.62504-5.98519-3.02059l-6.93841,1.18524zm4.88592,0.51304,1.05056-0.17946c2.21267-0.37798,3.5435,0.48182,3.84107,2.36886,0.33413,2.11881-0.6774,3.28386-3.11853,3.70086-0.25185,0.043-0.52528,0.0897-0.82581,0.11695l-0.94729-6.00721z"/>
|
||||
<path d="m951.81,470.606,6.6025-2.07914-0.32891-1.09305-1.51294,0.35511-0.46072-0.24548-3.57863-11.893,0.25926-0.42401,1.44579-0.57827-0.3289-1.09304-6.60249,2.07913,0.3289,1.09305,1.49077-0.34646,0.44747,0.20145,3.57864,11.893-0.24602,0.46803-1.42362,0.56963,0.3289,1.09305z"/>
|
||||
<path d="m965.54,457.738,0.31433,1.09468,1.67193-0.3998,0.4444,0.20245,1.30881,4.55813c-0.56356,0.22413-0.97784,0.37842-1.1996,0.44771-3.41021,1.06553-6.16697-0.62955-7.32211-4.6525-1.12284-3.91044,0.24784-6.87029,3.54979-7.902,0.64258-0.20077,1.27163-0.27637,1.94128-0.21721l0.44702,0.29773,1.10098,2.23728,1.61693-0.50522-1.09053-3.79793c-1.78108,0.0197-3.42289,0.26594-4.88616,0.72314-4.91713,1.53637-7.20583,5.58661-5.89047,10.1676,1.33457,4.64783,5.40358,6.88389,10.0553,5.43045,1.61693-0.50521,3.16663-1.33072,4.69929-2.46735l-1.49479-5.20581,0.26454-0.42396,1.25285-0.51406-0.31432-1.09468-6.46946,2.0214z"/>
|
||||
<path d="m968.961,448.387,0.49355,1.02007,1.24791-0.52701,0.49129,0.15867,5.35021,11.0578-0.16911,0.50721-1.14714,0.73527,0.49355,1.02007,5.84114-3.08282-0.49355-1.02007-1.28951,0.55074-0.49129-0.15867-2.53904-5.24769,5.96476-3.14807,2.53904,5.24769-0.14796,0.49605-1.18944,0.75759,0.49355,1.02007,5.82-3.07166-0.49355-1.02007-1.24722,0.52842-0.49129-0.15867-5.35022-11.0578,0.16912-0.50721,1.14645-0.73669-0.49355-1.02007-5.81999,3.07167,0.49355,1.02007,1.2902-0.54933,0.47014,0.16983,2.20658,4.56056-5.96477,3.14807-2.20658-4.56056,0.16912-0.50721,1.18874-0.75901-0.49355-1.02007-5.84114,3.08283z"/>
|
||||
<path d="m983.583,439.937,2.02787,3.54597,1.36886-0.85444-0.90834-2.3419,0.16871-0.45852,2.38104-1.48624,6.23168,10.8968-0.1532,0.5302-1.23374,0.9051,0.56113,0.98121,5.93381-3.70388-0.56113-0.98121-1.34597,0.70516-0.52106-0.10933-6.23169-10.8969,2.3826-1.48721,0.44609,0.0747,1.56227,1.93372,1.37042-0.85542-2.02787-3.54597-11.4515,7.14802z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#0072c4" stroke="#fff" stroke-width="6" d="m900.011,448.344s-114.465-33.7349-113.798-162.077l0.88167-169.649h225.834l0.8847,168.675c0.6677,128.342-113.802,163.051-113.802,163.051z"/>
|
||||
<g fill="#bcbcbc">
|
||||
<path d="m802.805,155.04c0.18817,0,1.57517-1.31703,2.84532-2.47855,1.77396-0.88859,3.41438-2.13739,5.21718-2.97521,1.34299-0.77752,3.99711-1.3805,5.21566-1.98347,1.59794-0.83623,2.90147-1.79941,4.26875-3.47187,0.16389-2.21832,0.47498-3.81145,0.47498-6.4455,1.88625-0.90763,3.56006-1.7883,5.21566-2.48013,2.37338-0.66804,2.88781-1.61693,5.21718-1.98348,1.4993-0.52363,3.97738-0.49666,6.16411-0.49666,2.35972,0,3.84839,1.67723,5.96834,2.07392,2.51299,1.01395,3.68602,1.71531,5.69065,3.47187,1.13206,1.43286,1.83618,2.59756,3.76645,3.67657,1.52812,0.78387,2.95913,1.97078,4.7422,2.47855,1.95758,1.13454,3.69512,1.79147,5.21566,3.47187,1.39307,0.99015,1.96821,2.46109,3.3203,3.47028,1.56607,1.29958,3.05171,2.46903,4.74221,3.47188,2.03194,1.36145,4.04567,2.39603,7.33713,2.0993,1.7421-0.10314,3.61774-0.30307,5.69065,0.0841,2.32026,0,4.58438-0.0412,6.63908,0.49666,2.41891,0,4.37649,0.32688,6.63909,0.49508,2.11995,0.39669,4.28088,0.49666,6.63908,0.49666,2.05622,0.53633,4.31882,0.49508,6.63909,0.49508h6.63908,6.63908c2.41587,0,4.86209,0.0984,6.63909,0.49666,2.3931,0,4.45084-0.22374,6.63908-0.49666,2.57521,0,4.53886-0.47128,7.11407-0.49508h8.0625c2.06988,0.56648,4.71489,0.95524,6.16411,1.98347,1.89839,0.5411,2.8438,1.4408,4.7422,1.98348,1.45377,0.74578,3.66174,1.92635,4.7422,3.47028,1.33844,1.39954,2.7133,3.40364,3.79376,5.45535,1.32023,1.90413,1.82253,4.08119,2.84533,6.44549,0.54175,2.26592,0.9196,4.42076,0.94844,6.94216,0.51443,2.15008,0.47498,4.51597,0.47498,6.94215-0.54175,2.26116-0.66012,4.77779-1.42342,6.94216-0.082,2.41984-0.56603,4.60959-0.94844,6.44708-0.42187,2.02949-0.91809,3.33541-0.94844,5.95042v6.94215c-0.16693,2.27703-0.66467,3.9495-0.94845,6.4455-1.14723,2.16595-2.2459,4.69845-3.31878,7.43882-1.5782,1.09963-2.94699,2.6642-3.79376,3.96694-1.01218,0.62519-1.59793,1.57409-1.42342,1.98348,1.89536,0.6601,1.42342,1.97871,1.42342,4.46202,0.24583,1.91206,0.43097,4.28271,0.94844,6.44708,0.17299,2.36747,0.67984,3.81461,1.4219,5.45376,0.74813,0.97745,0.89381,0.49666-0.94844,0.49666-1.37031,1.07425-2.75731,0.51253-3.31878-1.4884-1.10626-1.33448-1.47046-2.94982-1.89688-5.45376-0.26253-2.29607-0.62977-4.53343-1.42342-5.95042-0.2428-2.79432-0.98638-2.76575-3.79377-2.97521-1.3354-1.18373-3.09874-1.4884-5.69064-1.4884-2.58128,0-2.79828-0.2634-2.84532,2.48014v6.94215c-0.44615,2.01204-1.42494,3.64325-1.89688,5.45376-1.41432,1.03617-2.15031,2.77528-3.79377,3.96695-0.78303,2.25164-1.92116,2.64357-4.26874,2.97521-0.82097-1.02506-2.15941-2.36272-2.84532-3.47029,1.32782-2.22783,2.48719-2.56423,3.3203-4.95868,1.00763-1.97395,1.59945-3.25448,2.37035-4.95868-1.01218-1.55822-1.92117-2.26116-2.84533-4.46361-0.77999-1.1996-1.86046-3.78129-2.37034-5.45376-1.55696-0.54268-4.00925-0.62995-5.21718-1.4884-2.30054-0.53474-2.94396,1.98348-5.68913,1.98348h-6.63908c-2.93637,0-3.66933,1.63914-6.16563,1.4884-0.73295,0.23801-2.51147-0.10473-5.21718,0-1.98186,0.69024-4.36889,0.49507-6.63908,0.49507-2.40525-0.0301-4.37345-0.58393-6.16411-0.99174-2.17913-0.59662-4.34613-1.20119-6.63908-1.48681-2.78462,0-3.82108,0.22215-5.69065,1.48681-1.47956,0.87749-3.6238,2.88318-5.21718,3.96695-0.67377,1.64549-1.02431,4.43029-1.89688,6.44708-0.50381,1.93428-1.32326,3.16086-1.89688,4.95868-0.6419,1.67723-1.24891,3.40364-1.4219,5.95042-0.16086,3.34176-0.89078,2.93237-2.84532,1.98348-0.8149-1.38367-2.11389-2.9054-2.84533-4.46361,0.43098-2.52298,0.91658-3.77812,0.94844-6.4455-0.46132-1.92476-1.53875-1.86287-2.84532-0.49666,0,2.59597,0.11989,4.59849-0.94844,5.95042-0.53416,2.04853-1.39307,2.93396-2.84532,3.96695-0.71019,1.84066-2.28688,2.68324-3.79376,3.47187-0.24129-0.0841,0-0.66486,0-1.98347-1.13661-2.26751-0.082-4.14943-0.082-6.94216,0.0288-2.50394-0.11381-4.16371,0.61307-6.44708,0-2.40397-1.11536-4.69052-1.47956-6.44549-0.88167-1.84225-1.39004-2.75307-3.79377-3.47188-1.68898-0.6712-4.12306-1.57884-5.21718-2.97521-1.37637-1.78512-2.25501-2.5198-4.26722-3.47028-2.18217-0.79022-3.24139-1.51379-4.7422-2.48014-1.46591-1.61692-2.65716-2.31828-3.32031-4.46202-0.98941-1.52489-1.15937-4.35729-1.89688-6.44708-0.16085-2.17706-0.78455-4.2002-1.4219-5.95042-0.28225-2.17706-0.62521-3.77018-1.42342-5.95042-0.26404-2.03901-0.85284-4.17164-1.4219-6.44549,0-2.42618,0.0394-4.79366-0.47498-6.94216v-6.94215c-0.34144-2.0041-0.46739-4.93806-0.94844-6.44708,0-2.69753-0.28681-4.22083-0.94844-5.95042-1.08502-1.75181-1.17303-2.53726-2.84532-2.97521-1.20794,1.54076-3.1989,2.16912-5.69065,2.48013-1.74058-0.39669-4.19742-0.65534-6.16562-1.4884-1.90143-0.4681-3.20194-1.22023-4.7422-1.98347-0.84222-1.2964-1.84832-2.76417-2.84532-3.96695-0.2944-2.58962-0.85891-3.92251-0.94845-6.44549,0-1.89303,0.0455-0.8886,1.89689-3.47187z"/>
|
||||
<path fill="#fefefe" d="m830.89,172.905c3.01016-0.99728,9.58467-5.8759,13.3643-9.00378,4.30335-2.72739,13.1109,0.10252,13.4622-7.28709-0.53305,2.22171-5.62641,7.74585-8.11654,11.089-5.48978,3.48825,2.68529,7.04297,4.00373,2.05723,2.84772-5.09972,6.46988-10.277,12.1601-12.2836-1.03729,3.67567-1.80247,7.24947,0.67074,10.5203,0.88987-1.60958,1.11142-8.21765,1.01654-2.77785-1.79843,3.09405,2.65737,12.1065,2.76993,5.09501,0.71142-4.43341,0.442,4.79493,1.79515,6.18455,2.83476,5.46966,2.58586-5.03246,3.21522-7.11238,0.47597-3.93153,0.67377-2.89436,0.0994-0.0538-0.57065,3.56033,0.61326-7.43531,0.82573-1.37487,0.39079,3.16821-0.0413,11.7806,3.02049,4.94723,2.45143-4.06247,3.03655-4.12345,0.36045-0.51803-0.87211,1.35908,4.0207-7.40192,2.08539-1.2911-0.12835,4.39044,0.0335,10.9195,2.41805,13.7864,1.83004-2.2556,0.7635-13.983,2.60342-5.92305,0.70504,2.27261,0.021,8.59829,2.99262,3.74338,3.2098-3.78269,4.97961-7.06438,4.63014-12.2524,0.40126-2.64755,2.01363-6.90493,3.43146-2.21596-0.97348,6.11645,5.39407,10.007,4.61587,15.8908,2.85773-4.49568,1.57127-11.1875-0.33184-15.4883-0.40174-5.09276,7.74442-2.0564,5.71932,2.43583-0.2315,3.22891,4.39599,11.5246,4.76657,3.84607,0.62156-3.6492,2.63103-3.9712,2.19105,0.10944,0.83861,2.63565,4.4214,10.3898,4.03435,3.63695,0.31893-3.67806-0.59578-7.55212,1.0582-11.0187,1.17289,2.21486,1.29679,5.61678,2.68143,1.40272,2.83045-0.0846,1.11836,7.78332,4.69516,9.46672,1.43727,2.82372,5.01505,7.43827,4.01209,1.35967,0.55544-3.29147-2.39218-10.095-1.11413-10.9712,3.74549,4.75485,5.12978,11.0333,10.1799,14.8701,4.80966,2.44003,0.59783-6.74784,0.33537-9.11604-2.867-1.57623-5.20908-7.70196-1.15198-2.91591,2.34206,4.25118,9.46311,7.97131,11.6877,8.89564-2.12213-1.56996-4.05621-2.15463-0.45716,0.018,2.66474,1.09269-1.58101-6.64142-3.12753-7.95206-1.37513-2.47279-8.07162-6.07864-6.17271-7.7839,5.23969,1.13266,6.77331,6.86107,9.95197,10.4396,1.98126,1.65983,6.75982,5.18605,4.09075-0.0764,1.49352-0.62278,8.86655,7.55936,7.10936,0.99791-1.21487-2.82231-7.67666-7.91561-6.96393-8.22312,2.20398,3.19048,0.87344,0.90986-0.8825-0.76238,6.38867,0.70949,10.1398,7.08678,14.1572,11.1402,0.50039,1.92977,1.96129,11.3292-0.0119,5.16368-4.15457-1.77377,1.603,8.43181-2.93355,7.10807-0.20511-2.26067-4.20708-7.00283-2.27102-2.31615,3.33625,6.84409,0.82153,14.361,1.11885,21.5783,0.0883,3.55373-0.082,7.08496-0.33537,10.6211,0.24069-2.60941,0.4433-6.95281,0.0161-1.25452-0.14842,3.95896-1.6073-5.71316-3.58581-6.2059-0.41055-1.80097-1.96739-10.901-3.2803-5.47185,0.0104,5.32009,5.14076,10.9028,1.04345,15.5915-1.38269,1.28818-2.11236,4.99701-2.85006,1.1098-2.01798-4.59595-3.30949-9.46095-6.84794-13.2155-1.49315-2.92571-6.61967-10.0186-5.19949-2.5725,0.88879,3.36447,1.4857,6.77784,1.25569,10.2672-1.99097-5.1616-4.70684-9.96075-7.37811-14.7269,0.3869,2.22649,3.09039,11.7834,0.73938,5.58987-1.62661-5.08029-4.24819-10.1509-9.31077-12.4046-1.39782-0.17335,3.40031,8.93365,1.55009,8.99929-0.44381-2.93678-3.10484-9.47314-5.7487-8.28005,0.1185,5.24793,2.25357,10.1348,1.03362,15.4864,0.26607,5.219-3.21916-5.18977-4.3598-6.58553-5.12431-3.13598,0.37497,8.83935-3.68753,4.20655-3.26935-2.29695-5.01393-4.83396-4.69516-9.11605-6.08182-1.03487-3.73498,5.39502-4.02291,9.05002-0.51339,2.77358-2.01069,8.04045-3.70171,8.85003-0.70603-4.00858-0.14054-8.20487-0.32271-12.2908,0.97716-2.34563-0.0982-8.37465-2.94714-5.50964-0.48257,5.29352,2.9743,12.0158-0.95631,16.3378-2.0801,2.3795-5.9375-3.71409-9.57596-2.08571-4.62086-2.36747-2.72652-9.7724-5.86328-13.6612-3.11725-3.26284-1.65536,13.0789-3.7059,5.3359,1.47374-4.93096-7.51607-6.85911-5.75896-1.60077,2.20795,2.23726,2.60646,5.04299,2.31646,8.01757,0.62655,3.49911-1.97233,4.5372-2.57748,0.60989-0.24863-4.3276-7.65601-6.12206-6.14058-0.43021-3.88245-2.49914-0.23824,9.85086-4.99598,6.05452-5.36181-3.7405-8.80139,3.31203-14.6754,1.92791-3.33986,0.55613-11.3287,1.42615-6.48435-3.42362,4.52943-2.7321,6.44443-10.9898,12.7568-6.76537,4.82565-0.28129,9.95052-3.67983,13.8907-6.84495,3.22258-2.17258,1.7812-7.6997-2.16866-4.27267-3.27934,4.92682-12.6992,4.92224-15.524,4.53229,2.79931-2.65078,11.3625-3.04043,9.23663-7.68244-3.14315,0.25665-8.66152,4.96533-10.4304,2.22426,1.09847-1.20979,4.70733-4.56024,0.54478-3.09798-5.27085,1.71677-10.9218,1.29897-16.3532,0.86776-5.4353-5.32188,7.928-3.86431,7.73453-7.36265-1.31761-0.10864-6.52147,0.59403-4.24666-1.31787,4.39919,0.0865,8.83744,0.42098,11.992-3.75434,1.90848-1.98275,8.54789-6.5335,6.92454-8.13266-4.8995,2.82138-10.0443,7.60914-16.1838,4.81979,5.27508-3.93443-2.03747-4.27138-5.37085-3.88706-2.42534,0.74896-9.16747-2.00823-3.40053-1.83108,3.92909,0.83158,7.83231-4.61133,1.78491-3.56902-1.26541-0.38878-2.62461-0.14135-3.92934-0.21075z"/>
|
||||
<path fill="#fefefe" d="m801.857,164.957c-0.23136-2.56198-1.26283-5.10739-0.83642-7.69477,1.26199-1.84481,3.00745-3.18724,4.63018-4.70114,2.90484-1.61981,5.66804-3.59092,8.95369-4.38807,2.28115-0.69646,4.25854-2.20213,5.7479-4.04248,0.73309-2.21398-0.56236-5.75944,1.51487-6.95213,2.55642-1.39969,5.32409-2.30112,7.92882-3.58637,2.84468-0.91895,5.92331-1.06205,8.87362-0.70987,2.36179,1.01464,4.75592,1.93853,7.09929,2.99747,2.11924,1.03086,3.67999,2.77694,5.11286,4.5868,1.67465,1.52753,3.77083,2.51915,5.7413,3.60912,1.6371,0.11322,1.09701,2.23527,0.058,2.15219-0.6743,3.14003-4.59158,0.47595-5.33677-1.37364,0.65699-1.21901,0.38844,2.78457-0.86509,2.83893-2.20894,0.97651-2.14283-2.78465-2.46626-4.2221,0.28044-1.2152-0.67864-2.65619-1.17917-0.74693-1.48609,1.6347,1.60134,5.13888-1.62587,4.173-2.39804-0.31622-5.07777-0.81085-7.16045,0.77882-1.74322,1.81824,1.88708,2.56492,3.01891,3.44643,1.52572,1.43611,3.56554,0.0173,5.34179-0.15924,2.4299-0.83935,5.16356-0.40458,7.41596,0.72101,1.041,2.24835-1.04678,4.48315-3.03758,5.39487-1.85974,1.00879-3.93569,1.44558-6.00856,1.69755-3.03896,0.13471-2.44922,3.90074-5.40932,4.20221-1.89031,0.80048-4.01961,0.9837-6.03641,0.7181-0.39697-1.08631,2.00358-2.80708,2.25276-4.46644,2.17427-2.58539-3.11509-2.11424-2.34758,0.35068,0.36642,1.67133-3.29636,4.13969-2.05854,1.29917,0.0586-1.52756,1.6414-3.89874-1.0236-2.7979-1.45836-0.0133-4.44773-0.0666-3.62523,2.20009-1.80834,0.38287-4.12631,0.42325-5.67717-0.47586-0.9259-2.4702-3.81144-3.5558-5.62049-1.31137-1.8025,2.38467-4.30551-0.74156-6.09503,0.49461-0.0237,2.23527,2.28093,3.40462,4.32116,3.38734,2.06562-0.18234,4.18492-0.56558,6.26763-0.22477,1.91711,2.28659-1.83037,3.00321-3.60897,2.6894-2.39695-0.0867-4.54102-1.45657-6.97935-1.26693-1.16492-0.16461-3.8206,1.28459-1.31556,1.4787,1.85975,0.37786,5.66791,0.25128,4.81789,3.16927-1.45811,0.67958-3.26393-0.0665-4.91285,0.63698-0.96797-0.25022-3.87338,0.5347-2.25582-0.29811-0.85609-1.48198-2.51249-2.32067-3.61455-3.60462z"/>
|
||||
<path d="m812.447,153.269c-0.11078,0-1.11233,0.6966-2.01221,1.40272-1.4735,0.78863-3.04715,2.13104-4.02442,2.80542-0.76938,0.61567-0.76482,0.88384-1.67533,1.05204,1.59794-0.22691,2.30964-0.63313,3.68754-1.40272,1.7421-0.20945,3.42956-0.57917,4.35979-1.40271,0.87257-0.30466-0.0652-1.70261-0.33537-2.45475z"/>
|
||||
<path d="m827.873,136.789c0.19272,0,0.58576,1.09647,1.33996,1.75339,0.48256,1.34559,0.92719,2.29607,1.0061,3.85746,0.41125-1.71372,1.11385-3.09104,1.34148-4.90949-0.52202-0.92351-0.55693-1.3567-2.01221-1.40271,0,0.9473,0.11077,0.32846-1.67533,0.70135z"/>
|
||||
<path d="m833.908,137.14v0.35068c0-0.94572-0.0213-0.46334,0.33537,1.40271,0.55389,1.1758,0.67073,2.43729,0.67073,4.20814,0.88016-0.65693,1.61463-1.96761,2.01222-3.1561,0-2.76893-0.37483-2.6055-3.01832-2.80543z"/>
|
||||
<path d="m846.315,177.463h0.33537c-0.98638,0-0.43097,0.0603,1.34147-1.05204,1.14724-0.79973,2.08657-1.98188,3.68906-2.45474,1.5524-1.27419,2.74668-1.87082,4.35827-2.45316,0.78607-0.37766,1.47957-1.033,2.34758-0.35068-0.24887,1.72959-0.53568,2.38334-2.01221,3.15451-0.76331,0.99967-1.96517,1.58361-3.0168,2.10407-1.09109,0.50142-2.29143,0.52681-2.68295,1.75339-1.82404,0.83941-2.04863,0.69818-4.35979-0.70135z"/>
|
||||
<path d="m852.687,187.631c0.5979-0.47286,2.69813-2.66261,3.68754-3.50519,1.11992-1.54394,2.25198-2.7245,3.35369-3.50678,0.97727-1.50427,2.22921-2.51187,3.01831-3.85746,0.93175-1.17898,1.61766-2.17706,2.68295-3.50519,0,1.53282-0.13961,3.56549,0.33385,4.55722,0,2.11835-0.23369,2.69753-1.00458,4.20814-0.76179,1.24086-1.32934,2.06281-3.01832,2.80543-1.52358,0.84416-2.43712,1.14089-3.68906,2.10248-0.95451,0.61408-1.94847,1.22499-3.01831,1.75339-0.95907,0.43001-0.51899,0.24277-2.34607-1.05204z"/>
|
||||
<path d="m842.291,195.696h0.33536c-0.98637,0-0.43248,0.0603,1.34148-1.05204,1.43101-1.49633,2.57065-2.01679,4.35979-2.80542,1.3612-0.10949,3.0077-0.46334,4.02442-1.05203,0.81035-0.14916,1.37486-0.66487,2.0107,0,1.05315,1.48839,1.34299,1.90889-0.33537,2.80542-0.80276,0.71246-2.21859,1.42969-3.35217,1.75339-0.83766,0.72198-2.49478,0.76641-4.02442,1.05203-1.37031,0-2.1321,0.16186-2.68295-0.70135l2.68295,0.70135c-1.37031,0-2.1321,0.16186-4.35979-0.70135z"/>
|
||||
<path d="m856.71,195.696v-0.35068c0,0.97904-0.041,0.46017,0.67074-1.40271,1.25649-1.96126,1.72995-3.04344,3.35368-3.50678,0.76027-0.96159,2.07747-1.21071,3.68906-1.75339,0.60396,1.05362,0.13961,2.28178,0,3.50678-0.43856,1.30909-1.63436,2.23259-2.34758,3.1561-1.04556,0.74261-1.47198,1.45666-3.01832,1.75339-1.27926,0-0.60093-0.0333-2.34758-1.40271z"/>
|
||||
<path fill="#c4c4c2" stroke="#000" stroke-width="1.3578" d="m817.476,151.165c-0.74964,0,1.32175-0.7807,2.01222-1.05204,0.55237-1.21706,0.99093-2.07868,2.01221-2.80384,1.67988,0.13488,2.50388,0.64106,3.35368,1.75181,1.41128,0.40304,1.91965,1.10598,3.68906,1.40271,0.65708,0.58076,1.54634,0.64741,0,1.05203-1.05163,0.58077-2.37338,0.70136-4.02443,0.70136-1.72995,0.13012-2.9652,0.5284-4.02442,1.05203-2.24439,0-1.88474,0.0778-3.01832-2.10406z"/>
|
||||
<ellipse fill="#000" cx="138.108" cy="302.603" rx="1.10487" ry="1.10489" transform="matrix(1.517505,0,0,1.5867785,612.59226,-330.0498)"/>
|
||||
</g>
|
||||
<g fill="#005121" stroke="#002b0e" stroke-width="1.9397">
|
||||
<path d="m827.872,247.944h1.34148c-4.20501,0-1.69202-0.29355,5.36438,5.60927,2.95611-2.57535,2.9212-2.92285,5.36591,1.40271,1.41128,2.46268,1.82556-0.25071,4.0229-2.80384,1.05922,5.09515,1.73755,10.4378,5.36591,5.60926,4.14431,0,8.48286-0.36019,10.7303,1.40272,2.71634,5.27604,1.82708-0.89495,4.02443,1.40271,5.90613,0.74103,5.79384-5.29667,12.2266-6.85806,3.99863,5.22526,5.74983,1.20437,10.7318-1.40113,3.69968,1.08219,7.18691,6.95168,7.89103,1.24563,3.02894-5.16656,3.29299-4.72702,5.3659,0,2.94548,2.77369,4.1868-1.38685,6.70586-2.80384,4.49031,2.74671,9.49808,3.12754,16.0962,1.40271,1.11689,4.67148,3.93338,2.64516,6.70586,1.40113,5.93345,2.60707,8.00333,3.40522,14.7547,0,3.34458-4.13198,1.45073,0.11583,4.0229,2.80542,5.0017-1.62327,3.62077-1.9676,9.39033-1.40271,5.79839,0,6.2673-0.14598,8.04734-4.20655,2.91361,3.04661,3.96676,5.24272,8.04733,1.40271,6.25213,0.192,4.31883,0.82513,8.04886-1.40271,2.75882,6.38837,3.4068,1.77243,6.70586,4.20655-2.17307,5.76159-5.51159,8.46388-9.38881,11.2201-2.57977,4.46837-4.19287,9.29377-9.38882,11.2217-3.79073,4.04311-7.83033,6.38678-12.0718,9.8174-5.81508,1.52013-12.2159,1.40271-18.7791,1.40271h-18.7776-18.7791-18.7776c-4.00622,2.09296-10.5588,3.09105-16.0962,4.20655-6.18384,0-13.1932,0.0762-17.4361-1.40271-2.87568-3.00536-7.91987-6.36457-10.7303-9.8174-2.84381-2.39762-2.92575-7.07704-5.3659-9.8174-2.24439-4.01297-2.93789-10.2918-5.36439-14.0256v-9.8174z"/>
|
||||
<path d="m957.978,260.567v1.40271c0-3.92093,0.16541-1.83749-2.68295,5.60927-0.57665,1.80893-1.83922,2.23418-4.02442,2.80542"/>
|
||||
<path d="m945.906,266.177h1.34148c-4.9668,4.90474-8.30987,7.16431-9.39033,12.6228l9.39033-12.6228c-4.9668,4.90474-8.30987,7.16431-9.39033,12.6228"/>
|
||||
<path d="m927.127,259.165c0,0.12535-0.18817,5.00311-1.34147,7.01197"/>
|
||||
<path d="m921.763,268.982v1.40271-1.40271z"/>
|
||||
<path d="m911.032,260.567h1.34148-1.34148z"/>
|
||||
<path d="m835.919,260.567c0.64039,0,3.27933,4.4525,6.70586,7.01198-0.85284,4.10341-2.16396,8.85105,0,12.6228"/>
|
||||
<path d="m846.649,268.982c0.64038,0,3.27933,4.45409,6.70737,7.01356l-6.70737-7.01356c0.64038,0,3.27933,4.45409,6.70737,7.01356v1.40272c0-4.3335-0.34447-8.87169,1.33996-11.2217,1.49171,2.63882,3.37493,6.88187,4.02443,2.80543,7.55414-0.28245,11.2007-2.50076,16.0962-4.20655,0,2.06281-0.31716,1.07107,1.34147,2.80384"/>
|
||||
<path d="m967.367,261.97h1.34148c-2.52968,2.20404-4.47057,6.69938-6.70738,9.81741"/>
|
||||
<path d="m912.374,257.762h10.7303"/>
|
||||
</g>
|
||||
<g fill="#fff">
|
||||
<path d="m824.718,268.429c-16.1311,0-21.4775,16.8577-37.6086,16.8577-0.31034,0-0.6046-0.0255-0.90714-0.0377v1.02053c-0.0608,11.6854,0.85765,22.57,2.53244,32.7327,14.8808-1.08684,20.4088-16.8577,35.9833-16.8577,16.1311,0,21.5153,16.8955,37.6464,16.8955,16.131,0,21.5153-16.8955,37.6464-16.8955s21.5153,16.8955,37.6464,16.8955,21.5153-16.8955,37.6464-16.8955c15.5338,0,21.0768,15.6596,35.8699,16.8199,1.7721-10.4347,2.7084-21.6456,2.6458-33.6777v-0.0377c-0.3025,0.0122-0.5968,0.0377-0.9071,0.0377-16.1311,0-21.4776-16.8577-37.6086-16.8577-16.1311,0-21.5153,16.8577-37.6464,16.8577s-21.5154-16.8577-37.6464-16.8577c-16.1311,0-21.5153,16.8577-37.6464,16.8577s-21.5154-16.8577-37.6464-16.8577z"/>
|
||||
<path d="m824.718,334.234c-12.5486-0.00001-18.585,10.1721-28.2348,14.7033,3.37126,9.2945,7.44582,17.7549,11.9818,25.5134,4.58242-3.46521,9.4537-6.46339,16.253-6.46339,16.1311-0.00001,21.5153,16.8577,37.6464,16.8577,16.131,0,21.5153-16.8577,37.6464-16.8577,16.1311-0.00001,21.5153,16.8577,37.6464,16.8577s21.5153-16.8577,37.6464-16.8577c6.64925,0,11.4555,2.86935,15.9506,6.23661,4.53503-7.72309,8.62643-16.1692,12.0196-25.4-9.49735-4.59095-15.5359-14.5899-27.9702-14.5899-16.1311-0.00001-21.5153,16.8577-37.6464,16.8577s-21.5154-16.8577-37.6464-16.8577c-16.1311-0.00001-21.5153,16.8577-37.6464,16.8577s-21.5154-16.8577-37.6464-16.8577z"/>
|
||||
<path d="m900.011,400.04c-16.1311-0.00001-21.5153,16.8955-37.6464,16.8955-15.2555,0-20.902-15.1039-35.114-16.7444,18.9944,21.1594,40.5334,33.9695,55.2223,41.0104,4.96772-3.85569,10.1124,4.68691,17.5381,4.68691,7.37272,0,12.4898-8.58651,17.4247-4.7625,14.5266-7.07257,35.8026-19.9033,54.6932-40.8592-13.7469,2.00976-19.4462,16.6688-34.4714,16.6688-16.1311,0-21.5154-16.8955-37.6464-16.8955z"/>
|
||||
</g>
|
||||
<g stroke="#522108">
|
||||
<g fill="none">
|
||||
<path stroke-width="0.7371" d="m800.148,342.754c2.64653-0.92192,15.4376-5.07293,15.8792-4.61277,0.44159,0.46176,24.702,24.9077,24.702,24.9077l-20.2906,4.15101-20.2906-24.4459z"/>
|
||||
<g stroke-width="0.7513">
|
||||
<path d="m848.358,374.785c0.37408-5.78836,11.2095-38.709,11.2095-38.709"/>
|
||||
<path d="m852.095,375.177c0-0.36216,8.59483-38.7388,8.59483-38.7388"/>
|
||||
<path d="m855.039,375.237c0.37279-2.17048,7.14479-38.7986,7.14479-38.7986"/>
|
||||
<path d="m851.349,364.293c1.86783,0,5.60476-1.44741,5.60476-1.44741"/>
|
||||
<path d="m852.47,359.952c0-0.36216,5.60477-1.4474,5.60477-1.4474"/>
|
||||
<path d="m853.216,354.526,5.97884-1.08524"/>
|
||||
<path d="m855.832,349.823c0,0.36216,4.10973,0.36216,4.10973,0.36216"/>
|
||||
</g>
|
||||
<g stroke-width="0.7371">
|
||||
<path d="m914.897,400.376c-0.44159-9.91194-13.2326-66.2848-13.2326-66.2848"/>
|
||||
<path d="m910.485,398.517c0-0.62016-10.146-63.8063-10.146-63.8063"/>
|
||||
<path d="m906.074,393.56c-0.44007-3.71671-7.498-58.8493-7.498-58.8493"/>
|
||||
<path d="m914.455,392.322c-2.20494-1.85836-8.82126-4.33687-8.82126-4.33687"/>
|
||||
<path d="m911.367,382.41c-2.20493,0-6.61632-2.47852-6.61632-2.47852"/>
|
||||
<path d="m910.044,374.977c0-0.62016-6.61633-2.47852-6.61633-2.47852"/>
|
||||
<path d="m909.162,365.685-7.05792-1.85835"/>
|
||||
<path d="m906.074,357.631c0,0.62016-4.85147,0.62016-4.85147,0.62016"/>
|
||||
<path d="m904.75,350.198c-0.88167,0-4.85147,1.23819-4.85147,1.23819"/>
|
||||
</g>
|
||||
<g stroke-width="0.7371">
|
||||
<path d="m948.797,372.677c-2.20493,0-6.61632-1.84543-6.61632-1.84543"/>
|
||||
<path d="m952.326,386.053c-0.44159-7.38011-13.2326-49.3536-13.2326-49.3536"/>
|
||||
<path d="m947.915,384.67c0-0.46175-10.146-47.5082-10.146-47.5082"/>
|
||||
<path d="m943.504,380.979c-0.44007-2.76734-7.498-43.8173-7.498-43.8173"/>
|
||||
<path d="m947.473,367.142c0-0.46175-6.61633-1.84542-6.61633-1.84542"/>
|
||||
<path d="m946.592,360.224-7.05792-1.38367"/>
|
||||
<path d="m943.504,354.227c0,0.46176-4.85147,0.46176-4.85147,0.46176"/>
|
||||
<path d="m942.18,348.693c-0.88167,0-4.85147,0.92192-4.85147,0.92192"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="#dd8b59" stroke-width="0.7371">
|
||||
<path d="m895.426,391.646c0-0.46175,1.32326-115.771,1.32326-115.771s3.9698-0.46175,3.9698,0-0.44008,115.31-0.88167,115.771c-0.4416,0.46175-4.85299,0.92192-4.41139,0z"/>
|
||||
<path d="m938.656,280.947c0,0.92351-0.88319,97.3219-0.88319,97.3219l-3.08813,3.69085,0.88319-101.013h3.08813z"/>
|
||||
<path d="m861.903,369.507c0.44007-2.76893,0.44007-86.2526,0.44007-86.2526l-2.64653-0.46175-0.44007,85.3306,2.64653,1.38367z"/>
|
||||
<path d="m845.141,338.141c1.76486,0,31.7599-5.07293,31.7599-5.07293l-0.44159,5.07293-29.5534,3.2291-1.76486-3.2291z"/>
|
||||
<path d="m845.581,311.389c1.76486,0.46176,36.1713-9.6857,36.1713-9.6857s0,3.2291-0.4416,3.2291c-0.44007,0-35.7297,9.6857-35.7297,9.6857v-3.2291z"/>
|
||||
<path d="m846.906,298.013c-0.44159,1.84543,0.44008,4.1526,0.44008,4.1526l28.6718-10.1474s1.32327-2.30718,0-2.30718c-1.32326,0-29.5534,9.22554-29.1118,8.30203z"/>
|
||||
<path d="m884.84,291.556c0.88167,0,29.5534-9.6857,29.5534-9.6857s0.44159,4.15101,0,4.15101c-0.44008,0-26.9069,8.30203-26.9069,8.30203l-2.64653-2.76734z"/>
|
||||
<path d="m882.634,303.549s-0.88167,4.15101-0.44008,4.15101c0.44008,0,37.493-10.1474,37.493-10.1474v-2.76735l-37.053,8.76379z"/>
|
||||
<path d="m883.957,336.297,0,3.2275,31.7599-4.61118-0.88167-2.30717-30.8782,3.69085z"/>
|
||||
<path d="m920.57,338.603,0.44007,2.76734s31.7599-4.15102,31.7599-4.61277c0-0.46016,0-3.22751-0.44008-3.22751-0.44159,0-31.3198,5.53469-31.7599,5.07294z"/>
|
||||
<path d="m920.128,309.084,0.4416,3.22751,37.493-10.6076s0.88319-2.76734,0.4416-2.76734c-0.4416,0-37.4946,11.5311-38.3762,10.1474z"/>
|
||||
<path d="m924.098,294.324s-0.44008,2.76734,0,2.76734c0.44159,0,27.7901-6.91835,27.7901-7.38011,0-0.46016,2.64653-3.22909,0.44159-2.76734-2.20645,0.46175-27.3485,8.76378-28.2317,7.38011z"/>
|
||||
</g>
|
||||
<g fill="#fecf3e" stroke-width="0.7371">
|
||||
<path d="m864.108,303.549c3.9698-1.38367,1.32327-4.61277,2.20494-4.61277,0.88319,0,3.9698,2.30559,5.73466,0.46017,1.76486-1.84384,3.08812-7.37853,2.20645-6.91836-0.79468,0.41547-19.8018,7.55232-23.9258,7.63379,2.58255,0.99754,10.3417,4.63553,13.7798,3.43717z"/>
|
||||
<path d="m925.421,297.091s2.20646,5.53469,4.41139,4.61277c2.20494-0.92192,4.41139-2.76734,4.41139-2.76734s1.76486,4.61277,4.85147,3.68926c3.08813-0.92192,4.85299-5.99644,4.85299-5.99644s3.0866,0.92351,4.40987,0.46175c1.32478-0.46175,3.08812-7.84027,3.08812-7.84027l-26.0252,7.84027z"/>
|
||||
<path d="m922.775,341.832c-0.44159,0.92192,2.20646,3.2291,4.41139,3.2291,2.20494,0,3.08813-3.2291,3.52821-2.30718,0.44159,0.92351,0.44159,5.07452,6.17625,3.69085,5.73465-1.38367,5.73465-5.53469,5.73465-5.53469s-1.76486,1.38367,2.20494,1.84384c3.96979,0.46175,7.93959-5.99644,7.49951-5.99644-0.44159,0-28.6718,5.53627-29.555,5.07452z"/>
|
||||
<path d="m922.775,311.851s-4.41139,5.07293-3.08812,11.9913c1.32326,6.91994,3.08812,12.9148,3.52972,12.9148,0.44159,0,5.29306-9.22395,10.5861-9.6857,5.29306-0.46175,14.9975,5.07452,14.9975,5.07452s-1.32326-11.071-0.88167-16.1439c0.44008-5.07452,7.9396-13.8367,7.9396-13.8367l-33.0832,9.68571z"/>
|
||||
<path d="m846.464,341.832c0.44159,0,0,4.15102,3.5282,3.2291,3.52972-0.92351,4.41139-3.2291,4.41139-3.2291s0.88167,5.07293,5.73466,4.61277c4.85146-0.46175,7.49799-5.99644,7.49799-5.99644s0.4416,4.15101,3.52972,2.76734c3.08813-1.38367,3.9698-4.61276,3.9698-4.61276l-27.7901,4.15101-0.88167-0.92192z"/>
|
||||
<path d="m846.464,314.619s-3.9698,1.38367-2.64653,9.6857c1.32326,8.30203,4.41139,12.9148,4.85146,12.9148,0.4416,0,3.9698-7.84027,9.26286-9.22394,5.29458-1.38526,14.5574,4.15101,14.5574,4.15101s-0.88319-7.38011,0.44159-14.2985c1.32327-6.91994,5.73314-11.9929,5.73314-11.9929s-30.8767,8.76378-32.2,8.76378z"/>
|
||||
<path d="m885.722,292.94c1.76486,0.46175,4.85299,5.07293,6.61633,4.15101,1.76486-0.92191,4.41139-3.68926,4.41139-3.68926s-0.44159,5.53469,3.08813,4.61118c3.5282-0.92192,3.96979-4.61118,3.96979-4.61118s2.64653,1.38367,4.85147,0c2.20645-1.38367,4.41139-8.30361,3.52972-8.30361s-25.5836,8.30361-26.4668,7.84186z"/>
|
||||
<path d="m884.84,306.317c0,0.92192-4.41139,8.30203-3.08812,15.2204,1.32326,6.91835,3.96979,13.3765,4.41139,13.3765,0.44159,0,7.05792-7.38011,12.7926-8.76378,5.73313-1.38367,14.1143,4.61277,13.6742,4.61277-0.44159,0-2.20645-6.91994-2.20645-11.9929,0-5.07452,6.61633-20.7567,6.61633-20.7567l-32.2,8.30362z"/>
|
||||
<path d="m884.84,339.525c0,0.46176,1.32327,3.69085,4.41139,3.69085,3.08661,0,3.52821-3.22909,3.52821-3.22909s-0.4416,5.53468,4.41139,5.07452c4.85146-0.46176,6.61632-5.53628,6.61632-5.53628s0.4416,2.76893,4.41139,1.38526c3.9698-1.38526,9.26286-5.99644,8.82127-5.99644-0.44008,0-31.7584,5.99644-32.2,4.61118z"/>
|
||||
</g>
|
||||
<g fill="#dd8b59" stroke-width="0.7371">
|
||||
<path d="m846.464,372.734s4.41139,47.5082,55.1386,46.1245c50.7272-1.38367,64.8415-47.9683,64.8415-47.9683s-21.6138-0.92351-22.0554-0.92351c-0.44007,0-17.644,22.1403-39.6995,21.6786-22.0554-0.46175-29.1118-5.99644-33.9648-10.6076-4.85147-4.61277-9.26286-11.5311-9.26286-11.5311l-25.5836-10.6092,1.32326,10.1474,9.26286,3.68927z"/>
|
||||
<path d="m983.411,367.799c-0.4416-1.38367-1.52813-6.13449-1.52813-6.13449v-5.53468l2.44166-5.60451s-38.3762,5.74891-38.3762,6.21066c0-0.53157-0.23673,10.925-0.23673,10.925l37.6994,0.13805z"/>
|
||||
<path d="m976.149,356.13-0.88167,9.6857,6.17473,0-0.44007-9.6857-4.85299,0z"/>
|
||||
<path d="m969.532,356.592-0.44159,10.1459,3.9698-0.46017,0.44159-9.6857-3.9698,0z"/>
|
||||
<path d="m962.916,366.738,0-7.84028,3.96979-1.38367,0.4416,7.84028-4.41139,1.38367z"/>
|
||||
<path d="m955.416,366.278,0.88319-6.91836,4.40987,0.46017,0.4416,7.38011-5.73466-0.92192z"/>
|
||||
<path d="m947.035,366.278,0.4416-5.99644,4.41139-0.46175,0,6.91836-4.85299-0.46017z"/>
|
||||
<path d="m942.625,369.967,41.9044,0.92351,0.44159-3.2291-43.2292-0.46175,0.88319,2.76734z"/>
|
||||
<path d="m944.389,358.436c4.85299,0,41.4643-7.38011,41.4643-7.38011s1.32327-4.61118,0-4.61118c-1.32326,0-41.4643,8.76378-41.4643,8.76378v3.22751z"/>
|
||||
<path d="m798.825,342.294,33.5232,17.0658-0.88168,2.30559s-32.2015-15.6821-32.2015-16.1439c0-0.46016,0.4416-2.30559-0.44007-3.22751z"/>
|
||||
<path d="m814.263,337.219c0,1.38368,4.85298,29.5189,4.85298,29.5189s3.08813,0.46175,3.08813,0c0-0.46017-5.29458-29.0571-5.29458-29.0571l-2.64653-0.46176z"/>
|
||||
</g>
|
||||
<g fill="none">
|
||||
<g stroke-width="0.7513">
|
||||
<path d="m882.044,389.315c0.44159-7.66848,13.2326-51.282,13.2326-51.282"/>
|
||||
<path d="m886.456,389.834c0-0.47979,10.146-51.3216,10.146-51.3216"/>
|
||||
<path d="m889.931,389.913c0.44007-2.87547,8.4343-51.4007,8.4343-51.4007"/>
|
||||
<path d="m882.486,383.084c2.20494-1.43773,8.82126-3.35527,8.82126-3.35527"/>
|
||||
<path d="m885.574,375.416c2.20493,0,6.61632-1.91753,6.61632-1.91753"/>
|
||||
<path d="m886.897,369.665c0-0.4798,6.61633-1.91753,6.61633-1.91753"/>
|
||||
<path d="M887.779,362.476,894.837,361.038"/>
|
||||
<path d="m890.867,356.245c0,0.4798,4.85147,0.4798,4.85147,0.4798"/>
|
||||
<path d="m892.19,350.494c0.88167,0,4.85147,0.95794,4.85147,0.95794"/>
|
||||
</g>
|
||||
<g stroke-width="0.7371">
|
||||
<path d="m919.474,388.989c0.44159-7.38011,13.2326-49.3536,13.2326-49.3536"/>
|
||||
<path d="m923.885,387.605c0-0.46175,10.146-47.5082,10.146-47.5082"/>
|
||||
<path d="m928.296,383.914c0.44007-2.76734,7.498-43.8173,7.498-43.8173"/>
|
||||
<path d="m919.915,382.992c2.20494-1.38368,8.82126-3.2291,8.82126-3.2291"/>
|
||||
<path d="m923.003,375.612c2.20493,0,6.61632-1.84543,6.61632-1.84543"/>
|
||||
<path d="m924.326,370.077c0-0.46175,6.61633-1.84542,6.61633-1.84542"/>
|
||||
<path d="m925.208,363.159,7.05792-1.38367"/>
|
||||
<path d="m928.296,357.162c0,0.46176,4.85147,0.46176,4.85147,0.46176"/>
|
||||
<path d="m929.62,351.628c0.88167,0,4.85147,0.92192,4.85147,0.92192"/>
|
||||
</g>
|
||||
<g stroke-width="0.7371">
|
||||
<path d="m877.156,384.068c-0.44159-7.42463-13.2326-49.6514-13.2326-49.6514"/>
|
||||
<path d="m872.744,382.676c0-0.46454-10.146-47.7948-10.146-47.7948"/>
|
||||
<path d="m868.333,378.963c-0.44007-2.78404-7.498-44.0817-7.498-44.0817"/>
|
||||
<path d="m876.714,378.036c-2.20494-1.39202-8.82126-3.24858-8.82126-3.24858"/>
|
||||
<path d="m873.626,370.611c-2.20493,0-6.61632-1.85656-6.61632-1.85656"/>
|
||||
<path d="m872.303,365.043c0-0.46454-6.61633-1.85656-6.61633-1.85656"/>
|
||||
<path d="m871.421,358.083-7.05792-1.39202"/>
|
||||
<path d="m868.333,352.05c0,0.46454-4.85147,0.46454-4.85147,0.46454"/>
|
||||
<path d="m867.01,346.482c-0.88167,0-4.85147,0.92748-4.85147,0.92748"/>
|
||||
</g>
|
||||
</g>
|
||||
<path fill="#b6b6b4" stroke-width="0.73708421" d="m834.995,359.359s-8.82127-1.38367-8.38119,0.92192c0.44159,2.30559,4.41139,4.61277,4.85298,5.99644,0.44008,1.38367-1.32326,6.45661,1.32327,5.99644,2.64653-0.46175,5.29306-2.30718,5.29306-3.69085s-0.44159-7.84027-0.44159-7.84027l-2.64653-1.38368z"/>
|
||||
<g fill="none" stroke-width="0.7371">
|
||||
<path d="m844.699,372.274c1.32326,0,11.4693,2.30559,11.4693,2.30559l10.5861,14.7602"/>
|
||||
<path d="m852.199,374.118c0.44008,0.46175,9.26286,31.3643,51.6089,31.3643s52.4921-35.0535,52.4921-35.0535"/>
|
||||
<path d="m962.916,371.351s-20.2906,46.1245-59.1084,42.8954c-38.8178-3.22751-44.9925-18.4495-48.0807-26.2898-3.08813-7.84186-4.85147-14.2985-4.85147-14.2985"/>
|
||||
<g>
|
||||
<path d="m951.888,333.99c0.44159-1.38367,1.76486-29.0571,1.76486-29.0571"/>
|
||||
<path d="m982.765,347.828-27.3485-45.2026"/>
|
||||
<path d="m899.838,277.258c0-0.46175,13.6742,5.99644,13.6742,6.45661,0,0.46175,48.5208,67.8031,48.9623,67.8031"/>
|
||||
<path d="m938.214,283.714,12.351,5.53627,3.9698,10.1459"/>
|
||||
<path d="m861.462,282.793c-0.44159,0,13.6742,11.0694,13.6742,11.0694l1.76486,9.22553"/>
|
||||
<path d="m813.381,350.134c6.17473-2.76734,48.9623-41.9735,48.9623-41.9735"/>
|
||||
<path d="m801.912,342.754c5.29458-4.61277,48.0807-42.4336,48.0807-42.4336"/>
|
||||
<path d="m882.194,306.777,45.4341,78.8724"/>
|
||||
<path d="m922.268,339.393s5.35983,18.5828,10.6529,21.3501c5.29306,2.76734,11.4678,7.38011,11.4678,7.38011"/>
|
||||
<path d="m921.656,339.779s3.76493,21.8864,9.058,26.0375c5.29306,4.15101,10.5876,8.76378,10.5876,8.76378"/>
|
||||
<path d="m885.067,338.251s5.29306,30.4424,15.8807,37.3607c10.5861,6.91835,19.4074,12.9148,19.4074,12.9148"/>
|
||||
<path d="m884.627,337.79s11.4678,23.9858,21.1722,31.3659c9.70445,7.37852,22.9371,14.2985,22.9371,14.2985"/>
|
||||
<path d="m847.574,339.635c3.08661,5.53469,2.64653,16.1439,6.17474,19.8332,3.5282,3.69085,8.82278,11.9929,8.82278,11.9929"/>
|
||||
<path d="m848.456,340.097c1.76486,2.76735,6.68614,16.5469,9.70446,20.7551,2.20645,3.69084,24.702,27.2133,24.702,27.2133"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="#000" stroke-width="0.475">
|
||||
<ellipse rx="3.308315" ry="3.45929" cx="872.054473" cy="389.218617"/>
|
||||
<ellipse rx="2.867176" ry="2.998061" cx="888.816847" cy="396.598727"/>
|
||||
<ellipse rx="2.867176" ry="2.998061" cx="909.549017" cy="398.444151"/>
|
||||
<ellipse rx="2.646652" ry="2.536816" cx="928.074732" cy="391.294124"/>
|
||||
<ellipse rx="2.426128" ry="2.998045" cx="942.190575" cy="382.30026"/>
|
||||
</g>
|
||||
<g fill="#ff0101" stroke-width="0.7371">
|
||||
<path d="m859.483,283.363c-1.32326,0.92351-23.3787,6.45819-20.2906,5.99644,3.0866-0.46017,20.7322,4.61277,20.2906,3.22909-0.44159-1.38367,0-8.30202,0-9.22553z"/>
|
||||
<path d="m896.978,276.445c-0.88319,0-13.6758,5.07452-13.2342,5.07452s14.5574,4.15102,14.1158,3.22751c-0.4416-0.92192-0.4416-6.91836-0.88167-8.30203z"/>
|
||||
<path d="m935.354,281.057c-0.88319,0.46175-15.8807,4.15101-13.2342,4.61277,2.64653,0.46175,12.7926,4.15101,12.7926,3.22909,0-0.9235,0-7.38011,0.44159-7.84186z"/>
|
||||
</g>
|
||||
<g fill="#be1017" stroke-width="0.5813" transform="matrix(0.04915326,-1.2962189,1.2382477,0.05145445,0,0)">
|
||||
<circle r="1.8894" cx="-216.002142" cy="726.376815"/>
|
||||
<circle r="1.8894" cx="-212.21777" cy="739.051036"/>
|
||||
<circle r="1.8894" cx="-219.249357" cy="732.917906"/>
|
||||
<circle r="1.8894" cx="-208.970565" cy="732.509881"/>
|
||||
<circle r="1.8894" cx="-214.109961" cy="732.713893"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 44 KiB |
17
build/default/data/svg/FM.svg
Normal file
@@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg version="1.0" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="760" height="400" viewBox="-19 -10 38 20">
|
||||
<rect x="-19" y="-10" width="38" height="20" fill="#75b2dd"/>
|
||||
<g id="star" transform="translate(0,-6)" fill="#fff">
|
||||
<g id="c">
|
||||
<path id="t" d="M 0,-2 V 0 H 1" transform="rotate(18 0,-2)"/>
|
||||
<use xlink:href="#t" transform="scale(-1,1)"/>
|
||||
</g>
|
||||
<use xlink:href="#c" transform="rotate(72)"/>
|
||||
<use xlink:href="#c" transform="rotate(144)"/>
|
||||
<use xlink:href="#c" transform="rotate(216)"/>
|
||||
<use xlink:href="#c" transform="rotate(288)"/>
|
||||
</g>
|
||||
<use xlink:href="#star" transform="rotate(90)"/>
|
||||
<use xlink:href="#star" transform="rotate(180)"/>
|
||||
<use xlink:href="#star" transform="rotate(270)"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 799 B |
8
build/default/data/svg/FO.svg
Normal file
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg id="Flag_of_the_Faroe Islands" xmlns="http://www.w3.org/2000/svg" height="800" width="1100" version="1.0" viewBox="0 0 22 16">
|
||||
<rect id="bg" width="22" fill="#fff" height="16"/>
|
||||
<path id="blue" d="m 0,10 6,0 0,6 4,0 0,-6 12,0 L 22,6 10,6 10,0 6,0 6,6 0,6 z" fill="#0065BD"/>
|
||||
<path id="red" d="M 0,9 7,9 7,16 9,16 9,9 22,9 22,7 9,7 9,0 7,0 7,7 0,7 z" fill="#ED2939"/>
|
||||
</svg>
|
||||
|
||||
|
||||
|
After Width: | Height: | Size: 436 B |
2
build/default/data/svg/FR.svg
Normal file
@@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="900" height="600"><rect width="900" height="600" fill="#ED2939"/><rect width="600" height="600" fill="#fff"/><rect width="300" height="600" fill="#002395"/></svg>
|
||||
|
After Width: | Height: | Size: 249 B |
6
build/default/data/svg/GA.svg
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="400" height="300">
|
||||
<rect fill="#3a75c4" width="400" height="300"/>
|
||||
<rect fill="#fcd116" width="400" height="200"/>
|
||||
<rect fill="#009e60" width="400" height="100"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 256 B |
1
build/default/data/svg/GB-ENG.svg
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version="1.0"?><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 25 15" width="800" height="480"><rect width="25" height="15" fill="#FFF"/><g fill="#CE1124"><rect width="3" height="15" x="11"/><rect width="25" height="3" y="6"/></g></svg>
|
||||
|
After Width: | Height: | Size: 248 B |
914
build/default/data/svg/GB-NIR.svg
Normal file
@@ -0,0 +1,914 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.0"
|
||||
width="600"
|
||||
height="300"
|
||||
id="svg19402"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.46"
|
||||
sodipodi:docname="Flag_of_Northern_Ireland.svg"
|
||||
sodipodi:docbase="C:\WIKIPEDI"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape">
|
||||
<metadata
|
||||
id="metadata1341">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>Flag of Northern Ireland</dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1436"
|
||||
inkscape:window-height="838"
|
||||
inkscape:zoom="1.43"
|
||||
inkscape:cx="82.085362"
|
||||
inkscape:cy="139.16205"
|
||||
inkscape:window-x="4"
|
||||
inkscape:window-y="30"
|
||||
inkscape:current-layer="svg19402"
|
||||
showgrid="false" />
|
||||
<defs
|
||||
id="defs19404">
|
||||
<inkscape:perspective
|
||||
sodipodi:type="inkscape:persp3d"
|
||||
inkscape:vp_x="0 : 150 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_z="600 : 150 : 1"
|
||||
inkscape:persp3d-origin="300 : 100 : 1"
|
||||
id="perspective3382" />
|
||||
<clipPath
|
||||
id="clipPath3266"
|
||||
clipPathUnits="userSpaceOnUse">
|
||||
<rect
|
||||
y="0.18325138"
|
||||
x="-1.4834156"
|
||||
height="19.633497"
|
||||
width="32.966831"
|
||||
id="rect3268"
|
||||
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.3665022;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</clipPath>
|
||||
<clipPath
|
||||
id="clipPath3304"
|
||||
clipPathUnits="userSpaceOnUse">
|
||||
<rect
|
||||
y="0"
|
||||
x="-1.666666"
|
||||
height="20"
|
||||
width="33.333332"
|
||||
id="rect3306"
|
||||
style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.06940922;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</clipPath>
|
||||
<inkscape:perspective
|
||||
id="perspective21"
|
||||
inkscape:persp3d-origin="500 : 200 : 1"
|
||||
inkscape:vp_z="1000 : 300 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 300 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective193"
|
||||
inkscape:persp3d-origin="200 : 133.33333 : 1"
|
||||
inkscape:vp_z="400 : 200 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 200 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
</defs>
|
||||
<rect
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.64999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect1433"
|
||||
width="600"
|
||||
height="300"
|
||||
x="0"
|
||||
y="-7.6293945e-006"
|
||||
rx="5.5511257e-015"
|
||||
ry="7.5502976e-016" />
|
||||
<rect
|
||||
id="use3168"
|
||||
style="fill:#cc0000;fill-opacity:1;fill-rule:evenodd;stroke-opacity:1"
|
||||
y="119.99999"
|
||||
x="0"
|
||||
ry="7.5502982e-016"
|
||||
rx="5.5511257e-015"
|
||||
height="60"
|
||||
width="600" />
|
||||
<use
|
||||
xlink:href="#use3168"
|
||||
height="300"
|
||||
width="600"
|
||||
y="0"
|
||||
x="0"
|
||||
id="use6771"
|
||||
transform="matrix(0,0.5,-1,0,450,-5e-6)" />
|
||||
<path
|
||||
id="path5103"
|
||||
style="fill:#ebeae3;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.32597154px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 322.00318,91.631 C 323.92865,88.618611 322.77727,86.673251 319.86504,86.072147 C 319.86504,86.072147 310.57347,89.05058 300.53833,89.377487 C 290.50318,89.704392 278.58069,86.853713 278.58069,86.853713 C 276.44247,88.195386 276.96424,91.379345 278.02479,93.366981 C 278.02479,93.366981 288.52987,96.857063 300.48917,96.514418 C 308.08522,96.296784 315.28322,94.358564 319.32118,93.073797 C 321.64062,92.335815 322.00429,91.665217 322.00318,91.631 z"
|
||||
sodipodi:nodetypes="ccsccssc" />
|
||||
<path
|
||||
sodipodi:type="star"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#161111;stroke-width:1.15781746999999990;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3244"
|
||||
sodipodi:sides="6"
|
||||
sodipodi:cx="-236.36365"
|
||||
sodipodi:cy="-15.151515"
|
||||
sodipodi:r1="85.064659"
|
||||
sodipodi:r2="44.658947"
|
||||
sodipodi:arg1="1.5707963"
|
||||
sodipodi:arg2="2.0943951"
|
||||
inkscape:flatsided="false"
|
||||
inkscape:rounded="0"
|
||||
inkscape:randomized="0"
|
||||
d="M -236.36365,69.913144 L -258.69312,23.524268 L -310.0318,27.380817 L -281.02259,-15.151515 L -310.0318,-57.683843 L -258.69312,-53.827298 L -236.36365,-100.21617 L -214.03417,-53.827298 L -162.69549,-57.683847 L -191.7047,-15.151515 L -162.69549,27.380813 L -214.03417,23.524268 L -236.36365,69.913144 z"
|
||||
transform="matrix(0.863694,0,0,0.863694,504.14586,163.08627)" />
|
||||
<g
|
||||
style="fill:#cc0000;fill-opacity:1;stroke:#161111;stroke-width:0.07538979;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
transform="matrix(13.50416,0,0,13.028887,98.956639,17.58519)"
|
||||
inkscape:label="red_hand"
|
||||
id="red_hand">
|
||||
<path
|
||||
sodipodi:nodetypes="cccscscsscscsssccsccscssccc"
|
||||
d="M 15.775625,11.621559 C 15.890747,11.504149 16.075829,11.374139 16.178622,11.091567 C 16.274904,10.827109 16.3215,10.34166 16.409332,10.095622 C 16.524055,9.6738658 16.755236,9.2626511 16.480141,9.2908029 C 16.218156,9.3176131 16.133455,9.5799253 16.034191,9.7719038 C 15.988204,9.8434065 15.943741,10.013333 15.923716,10.100364 C 15.91126,10.1545 15.909596,10.214427 15.860135,10.239772 C 15.931896,9.5990736 15.759801,9.1211197 15.701248,8.1714373 C 15.676688,7.7730904 15.613872,7.3729165 15.414197,7.3699388 C 15.263869,7.3677704 15.238633,7.5739907 15.215221,7.7280838 C 15.215221,7.5104958 15.222917,7.0512 14.971753,7.0512 C 14.666561,7.0512 14.759403,7.6922752 14.718459,8.0169389 C 14.711408,7.9021383 14.707477,7.6547031 14.67543,7.4948576 C 14.663312,7.4344169 14.638095,7.3878986 14.608412,7.3609123 C 14.589615,7.3438234 14.563279,7.3345667 14.524316,7.3345667 C 14.249185,7.3345667 14.255426,7.7343005 14.264277,8.1332337 C 14.268017,8.1754414 14.264427,8.3663706 14.267752,8.4914107 C 14.267752,8.2738227 14.269578,7.8491996 14.05134,7.8675771 C 13.868776,7.8829506 13.855099,8.360959 13.846879,8.6148194 C 13.858793,8.8686791 13.773934,9.4605428 13.744288,9.6288398 C 13.736179,9.7480925 13.690754,9.9032084 13.671552,10.069458 C 13.630227,10.427249 13.669536,10.846163 13.715243,11.06058 C 13.806103,11.399065 14.043246,11.550948 14.031332,11.780617 C 14.019418,12.010315 14.031332,12.415282 14.031332,12.596612 C 14.031332,12.777943 14.183305,12.787714 14.497917,12.717495 C 15.012297,12.602646 15.293385,12.832343 15.718132,12.663094 C 15.664242,12.161421 15.787538,11.80289 15.775625,11.621559 z"
|
||||
id="path3484"
|
||||
style="fill:#cc0000;fill-opacity:1;stroke:#161111;stroke-width:0.07538979;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<g
|
||||
transform="matrix(0.1385348,0,0,0.1399912,-5.1564348,2.9008814e-2)"
|
||||
id="g3486"
|
||||
style="fill:#cc0000;fill-opacity:1;stroke:#161111;stroke-width:0.54135574;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">
|
||||
<path
|
||||
d="M 149.02319,76.449939 C 149.79119,74.275339 150.76119,73.421139 151.69719,72.946839"
|
||||
id="path3488"
|
||||
style="fill:#cc0000;fill-opacity:1;stroke:#161111;stroke-width:0.54135574;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 150.41791,83.948748 C 150.48491,83.503548 150.75691,83.150548 151.13491,82.769348"
|
||||
id="path3490"
|
||||
style="fill:#cc0000;fill-opacity:1;stroke:#161111;stroke-width:0.54135574;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="M 140.21051,59.896585 C 140.26351,61.820385 140.37659,65.519845 140.37659,66.404445"
|
||||
id="path3492"
|
||||
style="fill:#cc0000;fill-opacity:1;stroke:#161111;stroke-width:0.54135574;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cscc"
|
||||
d="M 147.0788,54.638723 C 146.97197,55.661532 147.09255,56.489193 147.07004,57.533626 C 147.05504,58.22959 147.16555,59.50871 147.2531,61.05851 C 147.23078,61.619709 147.42412,64.413506 147.24757,65.449806"
|
||||
id="path3494"
|
||||
style="fill:#cc0000;fill-opacity:1;stroke:#161111;stroke-width:0.54135574;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="csc"
|
||||
d="M 143.46288,56.556016 C 143.499,56.935594 143.48786,57.394775 143.50566,57.905946 C 143.59145,60.369457 143.53634,64.040504 143.60756,65.828335"
|
||||
id="path3496"
|
||||
style="fill:#cc0000;fill-opacity:1;stroke:#161111;stroke-width:0.54135574;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<path
|
||||
d="M 299.71195,76.392216 C 323.93915,80.385706 323.07389,81.517197 323.07389,81.517197 L 329.39692,62.614667 C 329.39692,62.614667 330.06249,58.887408 328.33198,56.624429 C 326.60147,54.36145 321.74272,55.626054 321.74272,55.626054 C 321.74272,55.626054 321.07714,52.564378 318.94728,51.832235 C 316.81742,51.100097 308.89699,54.69424 306.43433,55.49294 C 303.97168,56.291637 302.70707,57.090338 299.24604,57.023776 C 295.78502,56.957218 289.5951,53.89554 288.46362,53.296517 C 287.33213,52.697494 285.66818,52.098471 284.13734,52.165028 C 282.60649,52.231587 281.0091,52.630935 280.2104,53.695868 C 279.4117,54.760796 279.4117,56.091963 279.4117,56.091963 C 279.4117,56.091963 278.1471,55.293266 276.15035,55.293266 C 274.15361,55.293266 273.02212,55.559496 272.09029,56.624429 C 271.15849,57.689358 269.96043,60.684478 269.96043,60.684478 L 272.22342,65.809459 L 272.35653,72.86463 L 277.08217,80.31915 L 299.71195,76.392216 z"
|
||||
style="fill:#b02320;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.81492889;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path34974" />
|
||||
<path
|
||||
d="M 322.29625,87.071738 C 322.29625,87.071738 323.51613,88.526202 323.46921,89.042298 C 323.42229,89.558398 322.90619,90.027579 322.90619,90.027579 C 322.90619,90.027579 323.28155,90.402924 323.1877,90.96594 C 323.09387,91.528955 322.34318,91.575877 322.34318,91.575877 C 322.34318,91.575877 322.48393,92.091975 322.01475,92.326566 C 321.54557,92.561155 319.62193,92.983418 319.62193,92.983418 C 319.62193,92.983418 310.23831,90.309085 300.19785,90.309085 C 290.15737,90.309085 278.33402,93.546435 278.33402,93.546435 C 278.33402,93.546435 277.11415,93.124173 277.06722,92.326566 C 277.02032,91.528955 277.20799,90.96594 277.20799,90.96594 C 277.20799,90.96594 276.54011,91.035516 276.36346,90.449841 C 276.11639,89.630674 276.4573,88.995382 276.4573,88.995382 C 276.4573,88.995382 275.99214,89.145158 276.50421,88.057018 C 276.87955,87.259412 277.44258,86.977904 277.44258,86.977904 C 277.44258,86.977904 287.95222,83.224455 299.91634,83.177539 C 311.88044,83.13062 322.29625,86.9779 322.29625,87.071738 z"
|
||||
style="fill:#ebeae3;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.32597154px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
id="path30012" />
|
||||
<path
|
||||
d="M 272.64293,63.434622 C 272.64293,63.434622 272.24227,62.072423 273.12369,60.870482 C 274.00513,59.668541 275.60771,59.748669 276.08848,59.989057 C 276.56927,60.229446 276.48914,60.790354 277.13019,60.950612 C 277.77122,61.11087 278.25199,60.630093 278.25199,60.630093"
|
||||
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.7171374;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path41763" />
|
||||
<path
|
||||
d="M 331.14018,66.623912 L 327.5013,74.152629 L 326.07085,74.403585 C 326.07085,74.403585 325.19814,73.87932 322.70802,74.052245 C 320.92622,74.177723 320.39921,74.629446 320.39921,74.629446 L 323.63656,67.125826 C 323.63656,67.125826 323.88889,68.73804 324.26395,69.685588 C 324.74077,70.890184 326.54766,72.019494 326.54766,72.019494 C 326.54766,72.019494 326.79805,70.578581 326.32181,68.832336 C 325.79479,66.899968 324.5651,64.29001 324.5651,64.29001 L 331.14018,66.623912 z"
|
||||
style="fill:#ffcc00;fill-opacity:0.94117647;fill-rule:evenodd;stroke:#000000;stroke-width:0.74973458;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path17396" />
|
||||
<rect
|
||||
width="4.07269"
|
||||
height="17.308931"
|
||||
x="297.80765"
|
||||
y="43.225334"
|
||||
style="fill:#121116;fill-opacity:1;stroke:#121116;stroke-width:0.7311542;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect5511" />
|
||||
<path
|
||||
d="M 272.84965,75.147177 L 275.46533,80.743525 C 275.46533,80.743525 286.59688,76.40458 299.73644,76.485437 C 319.4453,76.607095 325.04164,80.561033 325.04164,80.561033 L 327.96148,73.626432 L 325.77162,74.90386 L 323.5209,76.302945 L 320.96605,77.276224 L 317.86373,77.032903 L 315.12638,75.025522 L 313.7273,72.105686 L 311.41576,74.23473 L 307.34017,75.147181 L 303.3254,74.113072 L 299.79726,69.672496 C 299.79726,69.672496 297.16907,74.60852 293.83593,74.90386 C 289.03038,75.32967 286.23221,72.592327 286.23221,72.592327 C 286.23221,72.592327 284.44572,76.6071 281.48748,77.337054 C 276.80359,78.492818 272.91048,75.147177 272.84965,75.147177 z"
|
||||
style="fill:#f6ca1f;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.6193459;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path24185" />
|
||||
<g
|
||||
transform="matrix(0.3259716,0,0,0.3259716,177.52929,-39.537736)"
|
||||
style="stroke-width:2.24300003;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="g5431">
|
||||
<g
|
||||
transform="translate(-0.375,-0.25)"
|
||||
style="stroke-width:2.24300003;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="g3168">
|
||||
<path
|
||||
d="M 430.62804,247.4095 C 430.62812,251.01684 427.74708,253.94321 424.1885,253.95037 C 420.62992,253.95754 417.73744,251.04278 417.72339,247.43547 C 417.70934,243.82816 420.57902,240.89035 424.13755,240.86903 C 427.69608,240.8477 430.59982,243.75092 430.62784,247.35815"
|
||||
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:#1e1e1e;stroke-width:2.24300003;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path2193" />
|
||||
<path
|
||||
d="M 421.17048,250.76826 C 421.17048,250.76826 426.38539,250.67986 426.91572,248.55854 C 427.44605,246.43722 426.56217,243.69719 426.56217,243.69719 C 426.56217,243.69719 429.03704,246.43723 428.32994,248.55855 C 427.62283,250.67987 426.92915,251.22818 425.14795,251.65214 C 423.94108,251.93939 422.14275,251.47537 421.17048,250.76826 z"
|
||||
style="fill:#a3afb8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.24300003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path2195" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(-16.050688,7.0776797)"
|
||||
style="stroke-width:2.24300003;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="g3172">
|
||||
<path
|
||||
d="M 430.62804,247.4095 C 430.62812,251.01684 427.74708,253.94321 424.1885,253.95037 C 420.62992,253.95754 417.73744,251.04278 417.72339,247.43547 C 417.70934,243.82816 420.57902,240.89035 424.13755,240.86903 C 427.69608,240.8477 430.59982,243.75092 430.62784,247.35815"
|
||||
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:#1e1e1e;stroke-width:2.24300003;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3174" />
|
||||
<path
|
||||
d="M 421.17048,250.76826 C 421.17048,250.76826 426.38539,250.67986 426.91572,248.55854 C 427.44605,246.43722 426.56217,243.69719 426.56217,243.69719 C 426.56217,243.69719 429.03704,246.43723 428.32994,248.55855 C 427.62283,250.67987 426.92915,251.22818 425.14795,251.65214 C 423.94108,251.93939 422.14275,251.47537 421.17048,250.76826 z"
|
||||
style="fill:#a3afb8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.24300003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3176" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(17.824312,-4.5473203)"
|
||||
style="stroke-width:2.24300003;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="g3178">
|
||||
<path
|
||||
d="M 430.62804,247.4095 C 430.62812,251.01684 427.74708,253.94321 424.1885,253.95037 C 420.62992,253.95754 417.73744,251.04278 417.72339,247.43547 C 417.70934,243.82816 420.57902,240.89035 424.13755,240.86903 C 427.69608,240.8477 430.59982,243.75092 430.62784,247.35815"
|
||||
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:#1e1e1e;stroke-width:2.24300003;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3180" />
|
||||
<path
|
||||
d="M 421.17048,250.76826 C 421.17048,250.76826 426.38539,250.67986 426.91572,248.55854 C 427.44605,246.43722 426.56217,243.69719 426.56217,243.69719 C 426.56217,243.69719 429.03704,246.43723 428.32994,248.55855 C 427.62283,250.67987 426.92915,251.22818 425.14795,251.65214 C 423.94108,251.93939 422.14275,251.47537 421.17048,250.76826 z"
|
||||
style="fill:#a3afb8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.24300003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3182" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(38.324312,-0.4223203)"
|
||||
style="stroke-width:2.24300003;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="g3184">
|
||||
<path
|
||||
d="M 430.62804,247.4095 C 430.62812,251.01684 427.74708,253.94321 424.1885,253.95037 C 420.62992,253.95754 417.73744,251.04278 417.72339,247.43547 C 417.70934,243.82816 420.57902,240.89035 424.13755,240.86903 C 427.69608,240.8477 430.59982,243.75092 430.62784,247.35815"
|
||||
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:#1e1e1e;stroke-width:2.24300003;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3186" />
|
||||
<path
|
||||
d="M 421.17048,250.76826 C 421.17048,250.76826 426.38539,250.67986 426.91572,248.55854 C 427.44605,246.43722 426.56217,243.69719 426.56217,243.69719 C 426.56217,243.69719 429.03704,246.43723 428.32994,248.55855 C 427.62283,250.67987 426.92915,251.22818 425.14795,251.65214 C 423.94108,251.93939 422.14275,251.47537 421.17048,250.76826 z"
|
||||
style="fill:#a3afb8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.24300003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3188" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(53.949312,12.45268)"
|
||||
style="stroke-width:2.24300003;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="g3190">
|
||||
<path
|
||||
d="M 430.62804,247.4095 C 430.62812,251.01684 427.74708,253.94321 424.1885,253.95037 C 420.62992,253.95754 417.73744,251.04278 417.72339,247.43547 C 417.70934,243.82816 420.57902,240.89035 424.13755,240.86903 C 427.69608,240.8477 430.59982,243.75092 430.62784,247.35815"
|
||||
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:#1e1e1e;stroke-width:2.24300003;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3192" />
|
||||
<path
|
||||
d="M 421.17048,250.76826 C 421.17048,250.76826 426.38539,250.67986 426.91572,248.55854 C 427.44605,246.43722 426.56217,243.69719 426.56217,243.69719 C 426.56217,243.69719 429.03704,246.43723 428.32994,248.55855 C 427.62283,250.67987 426.92915,251.22818 425.14795,251.65214 C 423.94108,251.93939 422.14275,251.47537 421.17048,250.76826 z"
|
||||
style="fill:#a3afb8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.24300003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3194" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(60.699312,33.57768)"
|
||||
style="stroke-width:2.24300003;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="g3196">
|
||||
<path
|
||||
d="M 430.62804,247.4095 C 430.62812,251.01684 427.74708,253.94321 424.1885,253.95037 C 420.62992,253.95754 417.73744,251.04278 417.72339,247.43547 C 417.70934,243.82816 420.57902,240.89035 424.13755,240.86903 C 427.69608,240.8477 430.59982,243.75092 430.62784,247.35815"
|
||||
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:#1e1e1e;stroke-width:2.24300003;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3199" />
|
||||
<path
|
||||
d="M 421.17048,250.76826 C 421.17048,250.76826 426.38539,250.67986 426.91572,248.55854 C 427.44605,246.43722 426.56217,243.69719 426.56217,243.69719 C 426.56217,243.69719 429.03704,246.43723 428.32994,248.55855 C 427.62283,250.67987 426.92915,251.22818 425.14795,251.65214 C 423.94108,251.93939 422.14275,251.47537 421.17048,250.76826 z"
|
||||
style="fill:#a3afb8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.24300003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3201" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(58.199312,54.95268)"
|
||||
style="stroke-width:2.24300003;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="g3203">
|
||||
<path
|
||||
d="M 430.62804,247.4095 C 430.62812,251.01684 427.74708,253.94321 424.1885,253.95037 C 420.62992,253.95754 417.73744,251.04278 417.72339,247.43547 C 417.70934,243.82816 420.57902,240.89035 424.13755,240.86903 C 427.69608,240.8477 430.59982,243.75092 430.62784,247.35815"
|
||||
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:#1e1e1e;stroke-width:2.24300003;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3205" />
|
||||
<path
|
||||
d="M 421.17048,250.76826 C 421.17048,250.76826 426.38539,250.67986 426.91572,248.55854 C 427.44605,246.43722 426.56217,243.69719 426.56217,243.69719 C 426.56217,243.69719 429.03704,246.43723 428.32994,248.55855 C 427.62283,250.67987 426.92915,251.22818 425.14795,251.65214 C 423.94108,251.93939 422.14275,251.47537 421.17048,250.76826 z"
|
||||
style="fill:#a3afb8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.24300003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3207" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(48.699312,73.70268)"
|
||||
style="stroke-width:2.24300003;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="g3209">
|
||||
<path
|
||||
d="M 430.62804,247.4095 C 430.62812,251.01684 427.74708,253.94321 424.1885,253.95037 C 420.62992,253.95754 417.73744,251.04278 417.72339,247.43547 C 417.70934,243.82816 420.57902,240.89035 424.13755,240.86903 C 427.69608,240.8477 430.59982,243.75092 430.62784,247.35815"
|
||||
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:#1e1e1e;stroke-width:2.24300003;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3211" />
|
||||
<path
|
||||
d="M 421.17048,250.76826 C 421.17048,250.76826 426.38539,250.67986 426.91572,248.55854 C 427.44605,246.43722 426.56217,243.69719 426.56217,243.69719 C 426.56217,243.69719 429.03704,246.43723 428.32994,248.55855 C 427.62283,250.67987 426.92915,251.22818 425.14795,251.65214 C 423.94108,251.93939 422.14275,251.47537 421.17048,250.76826 z"
|
||||
style="fill:#a3afb8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.24300003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3213" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(-31.300688,12.70268)"
|
||||
style="stroke-width:2.24300003;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="g3215">
|
||||
<path
|
||||
d="M 430.62804,247.4095 C 430.62812,251.01684 427.74708,253.94321 424.1885,253.95037 C 420.62992,253.95754 417.73744,251.04278 417.72339,247.43547 C 417.70934,243.82816 420.57902,240.89035 424.13755,240.86903 C 427.69608,240.8477 430.59982,243.75092 430.62784,247.35815"
|
||||
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:#1e1e1e;stroke-width:2.24300003;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3217" />
|
||||
<path
|
||||
d="M 421.17048,250.76826 C 421.17048,250.76826 426.38539,250.67986 426.91572,248.55854 C 427.44605,246.43722 426.56217,243.69719 426.56217,243.69719 C 426.56217,243.69719 429.03704,246.43723 428.32994,248.55855 C 427.62283,250.67987 426.92915,251.22818 425.14795,251.65214 C 423.94108,251.93939 422.14275,251.47537 421.17048,250.76826 z"
|
||||
style="fill:#a3afb8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.24300003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3219" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.83626,0,0,0.83626,19.71636,51.540496)"
|
||||
style="stroke-width:2.68218017;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="g3221">
|
||||
<path
|
||||
d="M 430.62804,247.4095 C 430.62812,251.01684 427.74708,253.94321 424.1885,253.95037 C 420.62992,253.95754 417.73744,251.04278 417.72339,247.43547 C 417.70934,243.82816 420.57902,240.89035 424.13755,240.86903 C 427.69608,240.8477 430.59982,243.75092 430.62784,247.35815"
|
||||
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:#1e1e1e;stroke-width:2.68218017;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3223" />
|
||||
<path
|
||||
d="M 421.17048,250.76826 C 421.17048,250.76826 426.38539,250.67986 426.91572,248.55854 C 427.44605,246.43722 426.56217,243.69719 426.56217,243.69719 C 426.56217,243.69719 429.03704,246.43723 428.32994,248.55855 C 427.62283,250.67987 426.92915,251.22818 425.14795,251.65214 C 423.94108,251.93939 422.14275,251.47537 421.17048,250.76826 z"
|
||||
style="fill:#a3afb8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.68218017;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3225" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.83626,0,0,0.83626,19.778839,58.338511)"
|
||||
style="stroke-width:2.68218017;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="g3227">
|
||||
<path
|
||||
d="M 430.62804,247.4095 C 430.62812,251.01684 427.74708,253.94321 424.1885,253.95037 C 420.62992,253.95754 417.73744,251.04278 417.72339,247.43547 C 417.70934,243.82816 420.57902,240.89035 424.13755,240.86903 C 427.69608,240.8477 430.59982,243.75092 430.62784,247.35815"
|
||||
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:#1e1e1e;stroke-width:2.68218017;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3229" />
|
||||
<path
|
||||
d="M 421.17048,250.76826 C 421.17048,250.76826 426.38539,250.67986 426.91572,248.55854 C 427.44605,246.43722 426.56217,243.69719 426.56217,243.69719 C 426.56217,243.69719 429.03704,246.43723 428.32994,248.55855 C 427.62283,250.67987 426.92915,251.22818 425.14795,251.65214 C 423.94108,251.93939 422.14275,251.47537 421.17048,250.76826 z"
|
||||
style="fill:#a3afb8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.68218017;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3231" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.83626,0,0,0.83626,20.153839,68.338511)"
|
||||
style="stroke-width:2.68218017;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="g3233">
|
||||
<path
|
||||
d="M 430.62804,247.4095 C 430.62812,251.01684 427.74708,253.94321 424.1885,253.95037 C 420.62992,253.95754 417.73744,251.04278 417.72339,247.43547 C 417.70934,243.82816 420.57902,240.89035 424.13755,240.86903 C 427.69608,240.8477 430.59982,243.75092 430.62784,247.35815"
|
||||
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:#1e1e1e;stroke-width:2.68218017;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3235" />
|
||||
<path
|
||||
d="M 421.17048,250.76826 C 421.17048,250.76826 426.38539,250.67986 426.91572,248.55854 C 427.44605,246.43722 426.56217,243.69719 426.56217,243.69719 C 426.56217,243.69719 429.03704,246.43723 428.32994,248.55855 C 427.62283,250.67987 426.92915,251.22818 425.14795,251.65214 C 423.94108,251.93939 422.14275,251.47537 421.17048,250.76826 z"
|
||||
style="fill:#a3afb8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.68218017;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3237" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.904373,0,0,0.904373,-8.6190797,62.111696)"
|
||||
style="stroke-width:2.48017144;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="g3239">
|
||||
<path
|
||||
d="M 430.62804,247.4095 C 430.62812,251.01684 427.74708,253.94321 424.1885,253.95037 C 420.62992,253.95754 417.73744,251.04278 417.72339,247.43547 C 417.70934,243.82816 420.57902,240.89035 424.13755,240.86903 C 427.69608,240.8477 430.59982,243.75092 430.62784,247.35815"
|
||||
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:#1e1e1e;stroke-width:2.48017144;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3241" />
|
||||
<path
|
||||
d="M 421.17048,250.76826 C 421.17048,250.76826 426.38539,250.67986 426.91572,248.55854 C 427.44605,246.43722 426.56217,243.69719 426.56217,243.69719 C 426.56217,243.69719 429.03704,246.43723 428.32994,248.55855 C 427.62283,250.67987 426.92915,251.22818 425.14795,251.65214 C 423.94108,251.93939 422.14275,251.47537 421.17048,250.76826 z"
|
||||
style="fill:#a3afb8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.48017144;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3243" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(-49.175688,52.70268)"
|
||||
style="stroke-width:2.24300003;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="g3245">
|
||||
<path
|
||||
d="M 430.62804,247.4095 C 430.62812,251.01684 427.74708,253.94321 424.1885,253.95037 C 420.62992,253.95754 417.73744,251.04278 417.72339,247.43547 C 417.70934,243.82816 420.57902,240.89035 424.13755,240.86903 C 427.69608,240.8477 430.59982,243.75092 430.62784,247.35815"
|
||||
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:#1e1e1e;stroke-width:2.24300003;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3247" />
|
||||
<path
|
||||
d="M 421.17048,250.76826 C 421.17048,250.76826 426.38539,250.67986 426.91572,248.55854 C 427.44605,246.43722 426.56217,243.69719 426.56217,243.69719 C 426.56217,243.69719 429.03704,246.43723 428.32994,248.55855 C 427.62283,250.67987 426.92915,251.22818 425.14795,251.65214 C 423.94108,251.93939 422.14275,251.47537 421.17048,250.76826 z"
|
||||
style="fill:#a3afb8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.24300003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3249" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.939156,0,0,0.939156,-23.620878,97.000746)"
|
||||
style="stroke-width:2.38831472;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="g3251">
|
||||
<path
|
||||
d="M 430.62804,247.4095 C 430.62812,251.01684 427.74708,253.94321 424.1885,253.95037 C 420.62992,253.95754 417.73744,251.04278 417.72339,247.43547 C 417.70934,243.82816 420.57902,240.89035 424.13755,240.86903 C 427.69608,240.8477 430.59982,243.75092 430.62784,247.35815"
|
||||
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:#1e1e1e;stroke-width:2.38831472;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3253" />
|
||||
<path
|
||||
d="M 421.17048,250.76826 C 421.17048,250.76826 426.38539,250.67986 426.91572,248.55854 C 427.44605,246.43722 426.56217,243.69719 426.56217,243.69719 C 426.56217,243.69719 429.03704,246.43723 428.32994,248.55855 C 427.62283,250.67987 426.92915,251.22818 425.14795,251.65214 C 423.94108,251.93939 422.14275,251.47537 421.17048,250.76826 z"
|
||||
style="fill:#a3afb8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.38831472;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3255" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(-67.280909,12.529107)"
|
||||
style="stroke-width:2.24300003;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="g3257">
|
||||
<path
|
||||
d="M 430.62804,247.4095 C 430.62812,251.01684 427.74708,253.94321 424.1885,253.95037 C 420.62992,253.95754 417.73744,251.04278 417.72339,247.43547 C 417.70934,243.82816 420.57902,240.89035 424.13755,240.86903 C 427.69608,240.8477 430.59982,243.75092 430.62784,247.35815"
|
||||
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:#1e1e1e;stroke-width:2.24300003;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3259" />
|
||||
<path
|
||||
d="M 421.17048,250.76826 C 421.17048,250.76826 426.38539,250.67986 426.91572,248.55854 C 427.44605,246.43722 426.56217,243.69719 426.56217,243.69719 C 426.56217,243.69719 429.03704,246.43723 428.32994,248.55855 C 427.62283,250.67987 426.92915,251.22818 425.14795,251.65214 C 423.94108,251.93939 422.14275,251.47537 421.17048,250.76826 z"
|
||||
style="fill:#a3afb8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.24300003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3261" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(-83.278087,6.220361)"
|
||||
style="stroke-width:2.24300003;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="g3263">
|
||||
<path
|
||||
d="M 430.62804,247.4095 C 430.62812,251.01684 427.74708,253.94321 424.1885,253.95037 C 420.62992,253.95754 417.73744,251.04278 417.72339,247.43547 C 417.70934,243.82816 420.57902,240.89035 424.13755,240.86903 C 427.69608,240.8477 430.59982,243.75092 430.62784,247.35815"
|
||||
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:#1e1e1e;stroke-width:2.24300003;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3265" />
|
||||
<path
|
||||
d="M 421.17048,250.76826 C 421.17048,250.76826 426.38539,250.67986 426.91572,248.55854 C 427.44605,246.43722 426.56217,243.69719 426.56217,243.69719 C 426.56217,243.69719 429.03704,246.43723 428.32994,248.55855 C 427.62283,250.67987 426.92915,251.22818 425.14795,251.65214 C 423.94108,251.93939 422.14275,251.47537 421.17048,250.76826 z"
|
||||
style="fill:#a3afb8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.24300003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3267" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(-98.599328,-0.9896346)"
|
||||
style="stroke-width:2.24300003;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="g3269">
|
||||
<path
|
||||
d="M 430.62804,247.4095 C 430.62812,251.01684 427.74708,253.94321 424.1885,253.95037 C 420.62992,253.95754 417.73744,251.04278 417.72339,247.43547 C 417.70934,243.82816 420.57902,240.89035 424.13755,240.86903 C 427.69608,240.8477 430.59982,243.75092 430.62784,247.35815"
|
||||
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:#1e1e1e;stroke-width:2.24300003;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3271" />
|
||||
<path
|
||||
d="M 421.17048,250.76826 C 421.17048,250.76826 426.38539,250.67986 426.91572,248.55854 C 427.44605,246.43722 426.56217,243.69719 426.56217,243.69719 C 426.56217,243.69719 429.03704,246.43723 428.32994,248.55855 C 427.62283,250.67987 426.92915,251.22818 425.14795,251.65214 C 423.94108,251.93939 422.14275,251.47537 421.17048,250.76826 z"
|
||||
style="fill:#a3afb8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.24300003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3273" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(-116.17369,-4.8199447)"
|
||||
style="stroke-width:2.24300003;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="g3275">
|
||||
<path
|
||||
d="M 430.62804,247.4095 C 430.62812,251.01684 427.74708,253.94321 424.1885,253.95037 C 420.62992,253.95754 417.73744,251.04278 417.72339,247.43547 C 417.70934,243.82816 420.57902,240.89035 424.13755,240.86903 C 427.69608,240.8477 430.59982,243.75092 430.62784,247.35815"
|
||||
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:#1e1e1e;stroke-width:2.24300003;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3277" />
|
||||
<path
|
||||
d="M 421.17048,250.76826 C 421.17048,250.76826 426.38539,250.67986 426.91572,248.55854 C 427.44605,246.43722 426.56217,243.69719 426.56217,243.69719 C 426.56217,243.69719 429.03704,246.43723 428.32994,248.55855 C 427.62283,250.67987 426.92915,251.22818 425.14795,251.65214 C 423.94108,251.93939 422.14275,251.47537 421.17048,250.76826 z"
|
||||
style="fill:#a3afb8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.24300003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3279" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(-136.90243,0.1369272)"
|
||||
style="stroke-width:2.24300003;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="g3281">
|
||||
<path
|
||||
d="M 430.62804,247.4095 C 430.62812,251.01684 427.74708,253.94321 424.1885,253.95037 C 420.62992,253.95754 417.73744,251.04278 417.72339,247.43547 C 417.70934,243.82816 420.57902,240.89035 424.13755,240.86903 C 427.69608,240.8477 430.59982,243.75092 430.62784,247.35815"
|
||||
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:#1e1e1e;stroke-width:2.24300003;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3283" />
|
||||
<path
|
||||
d="M 421.17048,250.76826 C 421.17048,250.76826 426.38539,250.67986 426.91572,248.55854 C 427.44605,246.43722 426.56217,243.69719 426.56217,243.69719 C 426.56217,243.69719 429.03704,246.43723 428.32994,248.55855 C 427.62283,250.67987 426.92915,251.22818 425.14795,251.65214 C 423.94108,251.93939 422.14275,251.47537 421.17048,250.76826 z"
|
||||
style="fill:#a3afb8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.24300003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3285" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(-151.54773,14.78223)"
|
||||
style="stroke-width:2.24300003;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="g3287">
|
||||
<path
|
||||
d="M 430.62804,247.4095 C 430.62812,251.01684 427.74708,253.94321 424.1885,253.95037 C 420.62992,253.95754 417.73744,251.04278 417.72339,247.43547 C 417.70934,243.82816 420.57902,240.89035 424.13755,240.86903 C 427.69608,240.8477 430.59982,243.75092 430.62784,247.35815"
|
||||
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:#1e1e1e;stroke-width:2.24300003;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3289" />
|
||||
<path
|
||||
d="M 421.17048,250.76826 C 421.17048,250.76826 426.38539,250.67986 426.91572,248.55854 C 427.44605,246.43722 426.56217,243.69719 426.56217,243.69719 C 426.56217,243.69719 429.03704,246.43723 428.32994,248.55855 C 427.62283,250.67987 426.92915,251.22818 425.14795,251.65214 C 423.94108,251.93939 422.14275,251.47537 421.17048,250.76826 z"
|
||||
style="fill:#a3afb8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.24300003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3291" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(-157.63117,35.285656)"
|
||||
style="stroke-width:2.24300003;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="g3293">
|
||||
<path
|
||||
d="M 430.62804,247.4095 C 430.62812,251.01684 427.74708,253.94321 424.1885,253.95037 C 420.62992,253.95754 417.73744,251.04278 417.72339,247.43547 C 417.70934,243.82816 420.57902,240.89035 424.13755,240.86903 C 427.69608,240.8477 430.59982,243.75092 430.62784,247.35815"
|
||||
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:#1e1e1e;stroke-width:2.24300003;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3295" />
|
||||
<path
|
||||
d="M 421.17048,250.76826 C 421.17048,250.76826 426.38539,250.67986 426.91572,248.55854 C 427.44605,246.43722 426.56217,243.69719 426.56217,243.69719 C 426.56217,243.69719 429.03704,246.43723 428.32994,248.55855 C 427.62283,250.67987 426.92915,251.22818 425.14795,251.65214 C 423.94108,251.93939 422.14275,251.47537 421.17048,250.76826 z"
|
||||
style="fill:#a3afb8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.24300003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3297" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(-154.92742,56.69033)"
|
||||
style="stroke-width:2.24300003;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="g3299">
|
||||
<path
|
||||
d="M 430.62804,247.4095 C 430.62812,251.01684 427.74708,253.94321 424.1885,253.95037 C 420.62992,253.95754 417.73744,251.04278 417.72339,247.43547 C 417.70934,243.82816 420.57902,240.89035 424.13755,240.86903 C 427.69608,240.8477 430.59982,243.75092 430.62784,247.35815"
|
||||
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:#1e1e1e;stroke-width:2.24300003;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3301" />
|
||||
<path
|
||||
d="M 421.17048,250.76826 C 421.17048,250.76826 426.38539,250.67986 426.91572,248.55854 C 427.44605,246.43722 426.56217,243.69719 426.56217,243.69719 C 426.56217,243.69719 429.03704,246.43723 428.32994,248.55855 C 427.62283,250.67987 426.92915,251.22818 425.14795,251.65214 C 423.94108,251.93939 422.14275,251.47537 421.17048,250.76826 z"
|
||||
style="fill:#a3afb8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.24300003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3303" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(-145.01367,76.067193)"
|
||||
style="stroke-width:2.24300003;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="g3305">
|
||||
<path
|
||||
d="M 430.62804,247.4095 C 430.62812,251.01684 427.74708,253.94321 424.1885,253.95037 C 420.62992,253.95754 417.73744,251.04278 417.72339,247.43547 C 417.70934,243.82816 420.57902,240.89035 424.13755,240.86903 C 427.69608,240.8477 430.59982,243.75092 430.62784,247.35815"
|
||||
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:#1e1e1e;stroke-width:2.24300003;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3307" />
|
||||
<path
|
||||
d="M 421.17048,250.76826 C 421.17048,250.76826 426.38539,250.67986 426.91572,248.55854 C 427.44605,246.43722 426.56217,243.69719 426.56217,243.69719 C 426.56217,243.69719 429.03704,246.43723 428.32994,248.55855 C 427.62283,250.67987 426.92915,251.22818 425.14795,251.65214 C 423.94108,251.93939 422.14275,251.47537 421.17048,250.76826 z"
|
||||
style="fill:#a3afb8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.24300003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3309" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.605819,-0.1623287,0.2588191,0.9659259,-28.101915,178.81366)"
|
||||
style="stroke-width:2.83223772;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="g3313">
|
||||
<path
|
||||
d="M 430.62804,247.4095 C 430.62812,251.01684 427.74708,253.94321 424.1885,253.95037 C 420.62992,253.95754 417.73744,251.04278 417.72339,247.43547 C 417.70934,243.82816 420.57902,240.89035 424.13755,240.86903 C 427.69608,240.8477 430.59982,243.75092 430.62784,247.35815"
|
||||
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:#1e1e1e;stroke-width:2.83223772;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3315" />
|
||||
<path
|
||||
d="M 421.17048,250.76826 C 421.17048,250.76826 426.38539,250.67986 426.91572,248.55854 C 427.44605,246.43722 426.56217,243.69719 426.56217,243.69719 C 426.56217,243.69719 429.03704,246.43723 428.32994,248.55855 C 427.62283,250.67987 426.92915,251.22818 425.14795,251.65214 C 423.94108,251.93939 422.14275,251.47537 421.17048,250.76826 z"
|
||||
style="fill:#a3afb8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.83223772;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3317" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.6089124,0.1503097,-0.2396557,0.970858,260.54037,44.207964)"
|
||||
style="stroke-width:2.83223772;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="g3319">
|
||||
<path
|
||||
d="M 430.62804,247.4095 C 430.62812,251.01684 427.74708,253.94321 424.1885,253.95037 C 420.62992,253.95754 417.73744,251.04278 417.72339,247.43547 C 417.70934,243.82816 420.57902,240.89035 424.13755,240.86903 C 427.69608,240.8477 430.59982,243.75092 430.62784,247.35815"
|
||||
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:#1e1e1e;stroke-width:2.83223772;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3321" />
|
||||
<path
|
||||
d="M 421.17048,250.76826 C 421.17048,250.76826 426.38539,250.67986 426.91572,248.55854 C 427.44605,246.43722 426.56217,243.69719 426.56217,243.69719 C 426.56217,243.69719 429.03704,246.43723 428.32994,248.55855 C 427.62283,250.67987 426.92915,251.22818 425.14795,251.65214 C 423.94108,251.93939 422.14275,251.47537 421.17048,250.76826 z"
|
||||
style="fill:#a3afb8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.83223772;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3323" />
|
||||
</g>
|
||||
</g>
|
||||
<path
|
||||
d="M 297.95153,33.632299 L 298.1031,37.194194 C 298.1031,37.194194 293.88024,37.565054 293.70757,37.952041 C 292.8871,39.790961 294.69277,42.271784 294.69277,42.271784 C 294.69277,42.271784 296.1126,41.210798 299.69459,41.210795 C 303.10491,41.210793 304.84795,42.044429 304.84795,42.044429 C 304.84795,42.044429 305.75737,40.604513 305.75737,39.543526 C 305.75737,38.482538 305.37845,37.421549 305.37845,37.421549 C 305.37845,37.421549 303.6354,37.194194 303.10491,37.194194 C 302.57441,37.194194 301.5892,37.194194 301.5892,37.194194 L 301.43764,33.556514 L 297.95153,33.632299 z"
|
||||
style="fill:#b3a192;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.7311542;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path5515" />
|
||||
<path
|
||||
d="M 303.97435,39.158202 C 303.97442,39.557647 303.63703,39.881744 303.22021,39.8826 C 302.80339,39.88346 302.46455,39.560755 302.46284,39.161311 C 302.46114,38.761865 302.79719,38.436507 303.214,38.434079 C 303.63081,38.431655 303.97098,38.75308 303.97433,39.152516"
|
||||
style="fill:#f0ddcb;fill-opacity:1;stroke:#121116;stroke-width:0.37258548;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path5517" />
|
||||
<path
|
||||
d="M 305.71503,39.546085 C 305.7151,39.96291 305.36302,40.301107 304.92808,40.301999 C 304.49313,40.302896 304.13954,39.966152 304.13776,39.549329 C 304.13597,39.132505 304.48666,38.79299 304.9216,38.790456 C 305.35655,38.787927 305.71151,39.123338 305.71501,39.54015"
|
||||
style="fill:#f0ddcb;fill-opacity:1;stroke:#121116;stroke-width:0.37258548;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path5519" />
|
||||
<path
|
||||
d="M 302.23128,39.130546 C 302.23136,39.529991 301.89395,39.854087 301.47715,39.854945 C 301.06033,39.855804 300.72148,39.533098 300.71976,39.133656 C 300.71806,38.734209 301.05412,38.408851 301.47092,38.406424 C 301.88774,38.403998 302.2279,38.725424 302.23125,39.124859"
|
||||
style="fill:#f0ddcb;fill-opacity:1;stroke:#121116;stroke-width:0.37258548;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path5521" />
|
||||
<path
|
||||
d="M 298.73801,39.16972 C 298.73809,39.585408 298.38698,39.922684 297.95321,39.923574 C 297.51945,39.92447 297.16682,39.588643 297.16504,39.172956 C 297.16326,38.757267 297.51299,38.418678 297.94675,38.416153 C 298.3805,38.413628 298.7345,38.748125 298.73798,39.163802"
|
||||
style="fill:#f0ddcb;fill-opacity:1;stroke:#121116;stroke-width:0.37258548;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path5523" />
|
||||
<path
|
||||
d="M 296.799,39.299092 C 296.79908,39.71478 296.44796,40.052056 296.01419,40.052948 C 295.58043,40.053842 295.2278,39.718016 295.22602,39.302329 C 295.22424,38.88664 295.57397,38.548051 296.00773,38.545525 C 296.44149,38.543001 296.79548,38.877498 296.79897,39.293175"
|
||||
style="fill:#f0ddcb;fill-opacity:1;stroke:#121116;stroke-width:0.37258548;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path5525" />
|
||||
<path
|
||||
d="M 300.35814,37.118409 C 300.35821,37.469125 300.06198,37.753685 299.696,37.754436 C 299.33004,37.755189 299.03253,37.471853 299.03102,37.12114 C 299.02953,36.770423 299.3246,36.484756 299.69056,36.482625 C 300.05652,36.480496 300.35518,36.76271 300.35812,37.113417"
|
||||
style="fill:#f0ddcb;fill-opacity:1;stroke:#121116;stroke-width:0.37258548;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path5527" />
|
||||
<path
|
||||
d="M 300.35814,34.162795 C 300.35821,34.513512 300.06198,34.79807 299.696,34.798823 C 299.33004,34.799577 299.03252,34.516239 299.03102,34.165526 C 299.02953,33.814809 299.3246,33.529141 299.69055,33.52701 C 300.05651,33.524882 300.35518,33.807095 300.35812,34.157802"
|
||||
style="fill:#f0ddcb;fill-opacity:1;stroke:#121116;stroke-width:0.37258548;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path5529" />
|
||||
<path
|
||||
d="M 300.35814,35.754278 C 300.35821,36.104995 300.06198,36.389554 299.696,36.390306 C 299.33004,36.391059 299.03253,36.107722 299.03102,35.757008 C 299.02953,35.406292 299.3246,35.120625 299.69056,35.118494 C 300.05652,35.116366 300.35518,35.39858 300.35812,35.749286"
|
||||
style="fill:#f0ddcb;fill-opacity:1;stroke:#121116;stroke-width:0.37258548;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path5531" />
|
||||
<path
|
||||
d="M 294.83375,39.827158 C 294.83383,40.228311 294.495,40.55379 294.0764,40.554648 C 293.65781,40.555511 293.31752,40.231429 293.3158,39.830283 C 293.31407,39.429134 293.65158,39.102385 294.07017,39.099947 C 294.48875,39.097513 294.83037,39.420311 294.83373,39.82145"
|
||||
style="fill:#f0ddcb;fill-opacity:1;stroke:#121116;stroke-width:0.37258551;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path5533" />
|
||||
<path
|
||||
d="M 300.52821,38.975137 C 300.52825,39.414003 300.15604,39.770038 299.69627,39.770926 C 299.2365,39.771813 298.86278,39.417219 298.86095,38.978357 C 298.85912,38.539495 299.22988,38.182068 299.68962,38.179457 C 300.14939,38.176849 300.52455,38.530038 300.52819,38.968891"
|
||||
style="fill:#916c68;fill-opacity:1;stroke:#4d3126;stroke-width:0.37258548;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path5535" />
|
||||
<g
|
||||
transform="matrix(0.2884843,0,0,0.2884843,191.61641,-31.520442)"
|
||||
style="stroke-width:2.53446817;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="g5545">
|
||||
<path
|
||||
d="M 430.62804,247.4095 C 430.62812,251.01684 427.74708,253.94321 424.1885,253.95037 C 420.62992,253.95754 417.73744,251.04278 417.72339,247.43547 C 417.70934,243.82816 420.57902,240.89035 424.13755,240.86903 C 427.69608,240.8477 430.59982,243.75092 430.62784,247.35815"
|
||||
transform="matrix(0.83626,0,0,0.83626,20.051688,0.8296653)"
|
||||
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:#1e1e1e;stroke-width:3.03071785;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path5541" />
|
||||
<path
|
||||
d="M 372.25971,210.53713 C 372.25971,210.53713 376.62073,210.46321 377.06423,208.68923 C 377.50772,206.91525 376.76857,204.62388 376.76857,204.62388 C 376.76857,204.62388 378.8382,206.91526 378.24688,208.68924 C 377.65556,210.46321 377.07546,210.92174 375.58591,211.27628 C 374.57666,211.5165 373.07278,211.12846 372.25971,210.53713 z"
|
||||
style="fill:#a3afb8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.53446817;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path5543" />
|
||||
</g>
|
||||
<path
|
||||
d="M 274.9794,81.334677 C 274.9794,81.334677 276.36824,82.630926 276.73858,83.788292 C 277.10895,84.945657 277.66448,88.047395 277.66448,88.047395 C 277.66448,88.047395 292.20098,84.019763 299.33034,84.343826 C 306.45972,84.66789 322.89428,88.278867 322.89428,88.278867 C 322.89428,88.278867 323.17206,86.519673 323.49611,84.66789 C 323.82018,82.816105 325.16272,80.779144 325.16272,80.779144 C 325.16272,80.779144 309.46886,75.87192 299.56183,76.334865 C 289.65478,76.79781 284.70126,77.862584 282.47912,78.557003 C 280.25699,79.251425 274.84051,81.380973 274.9794,81.334677 z"
|
||||
style="fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.32597154px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
id="path34972" />
|
||||
<path
|
||||
d="M 296.66319,22.529814 L 302.91544,22.529814 C 302.91544,22.529814 301.3727,23.597259 301.05871,24.613895 C 300.78849,25.48883 300.86925,26.925336 300.86925,26.925336 C 300.86925,26.925336 302.57441,26.925336 303.33226,26.281165 C 304.09011,25.636993 305.68159,24.500219 305.68159,24.500219 L 305.68159,32.457635 C 305.68159,32.457635 304.14713,30.973737 303.21858,30.487228 C 302.10323,29.902846 300.98292,29.691486 300.98292,29.691486 C 300.98292,29.691486 300.98292,30.979829 301.51341,31.73768 C 302.04391,32.495529 304.16589,35.375354 304.16589,35.375354 L 295.22327,35.716389 C 295.22327,35.716389 297.34439,33.479829 298.21678,31.851357 C 298.78517,30.790365 298.5578,29.691486 298.5578,29.691486 C 298.5578,29.691486 297.04211,29.691486 296.28426,30.221982 C 295.52641,30.752474 294.20018,32.343959 294.20018,32.343959 L 294.20019,24.689681 C 294.20019,24.689681 294.76856,26.167489 296.01901,26.735876 C 297.26946,27.304263 298.44414,27.001123 298.44414,27.001123 C 298.44414,27.001123 298.68676,25.478082 298.17888,24.538114 C 297.65527,23.569029 296.5495,22.491918 296.66319,22.529814 z"
|
||||
style="fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.7311542;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path5537" />
|
||||
<path
|
||||
d="M 296.17319,47.780318 C 296.17319,47.780318 291.72539,47.726732 287.92063,45.476035 C 284.11588,43.225338 280.2784,40.868081 274.63081,42.207164 C 273.47421,42.481397 269.21841,44.350687 267.34283,50.406129 C 266.02678,54.655112 267.55719,59.784037 268.89689,62.088322 C 270.23658,64.392607 272.3969,66.728261 272.3969,66.728261 L 274.69453,65.171989 C 274.69453,65.171989 268.84329,60.212739 269.53994,53.782177 C 270.23658,47.351613 273.45187,45.851149 273.45187,45.851149 C 273.45187,45.851149 277.41738,42.743044 282.72261,45.690383 C 288.02781,48.637728 293.22585,49.977429 293.22585,49.977429 C 293.22585,49.977429 298.10237,51.156363 298.53107,51.102777 C 298.95977,51.049185 296.06602,47.726728 296.17319,47.780318 z"
|
||||
style="fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:#121116;stroke-width:0.7311542;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3325" />
|
||||
<path
|
||||
d="M 271.57209,71.899604 L 269.2088,67.25451 L 276.29868,64.483752 C 276.29868,64.483752 274.58733,66.765553 274.17986,68.39541 C 273.6822,70.386083 273.85389,72.062591 273.85389,72.062591 C 273.85389,72.062591 274.50583,71.573632 275.32076,70.269746 C 275.93916,69.280302 276.95062,65.706146 276.95062,65.706146 L 280.12884,75.892757 C 280.15338,75.92003 278.495,74.258946 277.32903,74.061734 C 276.01463,73.839419 274.42434,74.262897 274.42434,74.262897 L 272.55,74.833349 L 271.57209,71.899604 z"
|
||||
style="fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.74973458;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path16425" />
|
||||
<path
|
||||
d="M 304.18942,47.6965 C 304.18942,47.6965 308.63722,47.642915 312.44197,45.392217 C 316.24672,43.141521 320.08419,40.784266 325.7318,42.123346 C 326.88839,42.397579 331.1442,44.26687 333.01976,50.322313 C 334.33583,54.571297 332.80542,59.700222 331.46572,62.004504 C 330.12603,64.308789 329.21483,65.664349 329.21483,65.664349 L 326.45335,64.672591 C 326.45335,64.672591 331.51931,60.128922 330.82266,53.698362 C 330.12603,47.267797 326.91073,45.767333 326.91073,45.767333 C 326.91073,45.767333 322.94523,42.659226 317.64001,45.606568 C 312.33479,48.553911 307.13675,49.893612 307.13675,49.893612 C 307.13675,49.893612 302.26025,51.072547 301.83155,51.01896 C 301.40284,50.96537 304.29659,47.642911 304.18942,47.6965 z"
|
||||
style="fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:#121116;stroke-width:0.7311542;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path4296" />
|
||||
<rect
|
||||
width="1.8567302"
|
||||
height="17.316853"
|
||||
x="301.89236"
|
||||
y="43.294868"
|
||||
style="fill:#ffcc00;fill-opacity:1;stroke:#121116;stroke-width:0.7311542;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect5267" />
|
||||
<rect
|
||||
width="2.1977625"
|
||||
height="17.316853"
|
||||
x="295.64011"
|
||||
y="43.219086"
|
||||
style="fill:#ffcc00;fill-opacity:1;stroke:#121116;stroke-width:0.7311542;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect5269" />
|
||||
<path
|
||||
d="M 305.75737,39.202492 C 305.75753,42.274554 303.05051,44.766761 299.70676,44.772935 C 296.36302,44.779107 293.64513,42.296918 293.63183,39.22488 C 293.61856,36.152839 296.31492,33.650893 299.6586,33.632659 C 303.00228,33.614428 305.73078,36.086794 305.7572,39.158763"
|
||||
style="fill:#ffcc00;fill-opacity:1;stroke:#121116;stroke-width:0.7311542;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path5513" />
|
||||
<path
|
||||
d="M 294.31675,60.466922 L 304.74266,60.381111 C 304.74266,60.381111 303.51987,61.110497 302.4687,62.976864 C 301.41753,64.843234 301.5677,66.02312 301.5677,66.02312 C 301.5677,66.02312 303.15518,66.001669 304.27071,65.186471 C 305.38624,64.371279 306.63049,62.848151 306.63049,62.848151 L 306.58759,72.458875 C 306.58759,72.458875 305.83675,71.236079 304.59251,70.506696 C 303.34826,69.777308 301.58915,69.777308 301.58915,69.777308 L 298.02803,69.777308 C 298.02803,69.777308 296.39968,69.873531 295.66826,70.356527 C 294.63654,71.037833 293.35139,72.351611 293.35139,72.351611 L 293.17977,63.277201 C 293.17977,63.277201 293.69463,64.864687 295.36793,65.508262 C 297.04123,66.151835 297.98513,66.066024 297.98513,66.066024 C 297.98513,66.066024 297.98513,64.028038 297.12703,62.976864 C 296.26893,61.925689 294.31675,60.509828 294.31675,60.466922 z"
|
||||
style="fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.6193459;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path19336" />
|
||||
<path
|
||||
d="M 300.12586,68.013185 C 300.12586,68.013185 301.65131,71.572575 303.42501,73.143505 C 304.45749,74.057938 307.56185,74.746724 308.96518,74.388434 C 312.11918,73.583166 314.2868,71.059764 314.2868,71.059764 C 314.2868,71.059764 314.17396,73.824252 316.1486,75.347544 C 318.12324,76.870831 319.70294,77.265757 321.33906,76.81441 C 322.97519,76.363067 327.60147,72.921561 327.60147,72.921561 L 328.56058,73.767835 C 328.56058,73.767835 325.90731,76.344465 323.11867,77.71224 C 321.68286,78.416474 317.32479,78.024971 315.91433,76.896608 C 314.50388,75.768245 313.6662,73.0344 313.6662,73.0344 C 313.6662,73.0344 312.79788,74.79195 310.93608,75.412551 C 309.07429,76.033148 306.51569,76.006239 304.14013,75.312037 C 302.54101,74.844728 300.46436,72.639473 300.06943,71.906036 C 299.67452,71.1726 299.78734,70.777673 299.78734,70.777673 C 299.78734,70.777673 298.6157,74.135838 296.17659,75.051997 C 293.87319,75.917173 291.24729,75.924043 289.01635,75.282531 C 286.76112,74.634032 286.58551,73.372907 286.58551,73.372907 C 286.58551,73.372907 286.41626,76.927249 281.50788,77.942773 C 276.5995,78.9583 272.70665,75.347544 272.70665,75.347544 L 273.38367,74.332013 C 273.38367,74.332013 276.14815,77.435012 280.37951,77.152919 C 284.61088,76.870831 286.02133,71.454692 286.02133,71.454692 C 286.02133,71.454692 287.88312,74.275598 292.84792,74.332013 C 297.81271,74.388434 299.22316,67.900352 299.22316,67.900352 L 300.12586,68.013185 z"
|
||||
style="fill:#f6ca1f;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.58674878;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path21276" />
|
||||
<g
|
||||
transform="matrix(0.3259716,0,0,0.3259716,177.52929,-39.537736)"
|
||||
style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:2.20000005;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="g13496">
|
||||
<path
|
||||
d="M 338.56863,336.29188 C 338.56863,336.29188 338.68263,330.99114 339.82201,329.3983 C 341.43776,327.13949 343.63585,327.04726 344.75719,327.36156 C 346.14067,327.74933 347.57728,329.00662 347.34228,332.68841 C 347.10727,336.37021 346.0889,338.17194 347.1856,339.58199 C 348.28231,340.99204 348.43898,341.93207 350.55406,341.61873 C 352.66913,341.30539 353.60916,340.60036 353.13915,338.64196 C 352.66913,336.68356 352.04244,338.79863 351.65076,337.15357 C 351.25908,335.50851 353.69664,328.40213 353.29582,323.99311 C 352.90414,319.68462 351.25908,316.23783 347.96896,315.37614 C 344.8768,314.56629 342.25042,314.59277 339.35199,316.70785 C 336.57202,318.73648 333.00677,325.40316 333.00677,325.40316 L 332.92843,339.66033 L 338.7253,339.34698 L 338.56863,336.29188 z"
|
||||
style="fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.20000005;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path11548" />
|
||||
<path
|
||||
d="M 327.77011,340.12967 C 327.77011,340.12967 325.55283,335.3136 323.87301,334.30687 C 321.49084,332.87922 319.43813,333.67073 318.53498,334.40592 C 317.42069,335.31297 316.60425,337.03867 318.28723,340.32171 C 319.97022,343.60476 321.62233,344.8513 321.1785,346.58163 C 320.73468,348.31196 320.96566,349.23653 318.90095,349.79217 C 316.83625,350.3478 315.69311,350.07586 315.34361,348.09241 C 314.99412,346.10894 316.41189,347.79897 316.11544,346.13412 C 315.819,344.46926 310.75101,338.92327 309.36131,334.71984 C 308.0033,330.61225 308.13826,326.7954 310.8123,324.69376 C 313.32546,322.71857 315.74476,321.69606 319.24603,322.48064 C 322.6042,323.23316 328.53117,327.92642 328.53117,327.92642 L 334.28552,340.97098 L 328.8441,342.99406 L 327.77011,340.12967 z"
|
||||
style="fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.20000005;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path12519" />
|
||||
<path
|
||||
d="M 326.66154,297.90718 C 326.66154,297.90718 321.02134,307.38585 322.27472,314.67111 C 323.5281,321.95637 331.04836,337.62359 331.04836,337.62359 L 331.1267,339.73866 L 335.18451,339.29998 L 334.26015,337.15357 C 334.26015,337.15357 336.28688,318.39837 335.0435,312.4777 C 334.11928,308.0768 326.73988,297.98552 326.66154,297.90718 z"
|
||||
style="fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.20000005;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path11546" />
|
||||
<path
|
||||
d="M 335.6702,341.30539 C 335.6702,341.30539 338.48845,344.67762 341.85875,346.3189 C 345.54054,348.11188 347.05405,348.12357 348.51732,347.02392 C 349.58943,346.21823 349.22235,342.79377 347.96897,341.85373 C 346.71559,340.9137 345.29364,341.3914 345.07052,342.32375 C 344.69382,343.89794 344.18026,343.79309 343.03379,343.18545 C 341.3597,342.29816 337.47193,339.89534 337.47193,339.89534 L 335.6702,341.30539 z"
|
||||
style="fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.20000005;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path12521" />
|
||||
<path
|
||||
d="M 331.30431,342.07093 C 331.30431,342.07093 330.11806,346.30263 327.71808,349.18236 C 325.0963,352.32825 323.72088,352.95998 321.93524,352.55763 C 320.62695,352.26283 319.55648,348.98933 320.31372,347.61777 C 321.07098,346.2462 322.56371,346.09833 323.14977,346.85701 C 324.13927,348.13798 324.56457,347.83163 325.36073,346.80705 C 326.52327,345.31095 329.08265,341.5244 329.08265,341.5244 L 331.30431,342.07093 z"
|
||||
style="fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.20000005;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path13492" />
|
||||
<path
|
||||
d="M 342.09377,341.93207 C 342.09356,343.18498 338.14081,344.20131 333.25879,344.20372 C 328.37677,344.20612 324.40884,343.1937 324.38988,341.9408 C 324.37092,340.6879 328.30809,339.66759 333.19003,339.66027 C 338.07197,339.65294 342.05537,340.66136 342.0935,341.91423"
|
||||
transform="matrix(0.9862139,-0.1654759,0.1654759,0.9862139,-51.909075,58.055679)"
|
||||
style="opacity:1;fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:2.19999981;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path13494" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.3052707,0.1143121,-0.1143121,0.3052707,251.10949,-70.586457)"
|
||||
style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:2.19999981;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="g13504">
|
||||
<path
|
||||
d="M 338.56863,336.29188 C 338.56863,336.29188 338.68263,330.99114 339.82201,329.3983 C 341.43776,327.13949 343.63585,327.04726 344.75719,327.36156 C 346.14067,327.74933 347.57728,329.00662 347.34228,332.68841 C 347.10727,336.37021 346.0889,338.17194 347.1856,339.58199 C 348.28231,340.99204 348.43898,341.93207 350.55406,341.61873 C 352.66913,341.30539 353.60916,340.60036 353.13915,338.64196 C 352.66913,336.68356 352.04244,338.79863 351.65076,337.15357 C 351.25908,335.50851 353.69664,328.40213 353.29582,323.99311 C 352.90414,319.68462 351.25908,316.23783 347.96896,315.37614 C 344.8768,314.56629 342.25042,314.59277 339.35199,316.70785 C 336.57202,318.73648 333.00677,325.40316 333.00677,325.40316 L 332.92843,339.66033 L 338.7253,339.34698 L 338.56863,336.29188 z"
|
||||
style="fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.19999981;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path13506" />
|
||||
<path
|
||||
d="M 327.77011,340.12967 C 327.77011,340.12967 325.55283,335.3136 323.87301,334.30687 C 321.49084,332.87922 319.43813,333.67073 318.53498,334.40592 C 317.42069,335.31297 316.60425,337.03867 318.28723,340.32171 C 319.97022,343.60476 321.62233,344.8513 321.1785,346.58163 C 320.73468,348.31196 320.96566,349.23653 318.90095,349.79217 C 316.83625,350.3478 315.69311,350.07586 315.34361,348.09241 C 314.99412,346.10894 316.41189,347.79897 316.11544,346.13412 C 315.819,344.46926 310.75101,338.92327 309.36131,334.71984 C 308.0033,330.61225 308.13826,326.7954 310.8123,324.69376 C 313.32546,322.71857 315.74476,321.69606 319.24603,322.48064 C 322.6042,323.23316 328.53117,327.92642 328.53117,327.92642 L 334.28552,340.97098 L 328.8441,342.99406 L 327.77011,340.12967 z"
|
||||
style="fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.19999981;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path13508" />
|
||||
<path
|
||||
d="M 326.66154,297.90718 C 326.66154,297.90718 321.02134,307.38585 322.27472,314.67111 C 323.5281,321.95637 331.04836,337.62359 331.04836,337.62359 L 331.1267,339.73866 L 335.18451,339.29998 L 334.26015,337.15357 C 334.26015,337.15357 336.28688,318.39837 335.0435,312.4777 C 334.11928,308.0768 326.73988,297.98552 326.66154,297.90718 z"
|
||||
style="fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.19999981;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path13510" />
|
||||
<path
|
||||
d="M 335.6702,341.30539 C 335.6702,341.30539 338.48845,344.67762 341.85875,346.3189 C 345.54054,348.11188 347.05405,348.12357 348.51732,347.02392 C 349.58943,346.21823 349.22235,342.79377 347.96897,341.85373 C 346.71559,340.9137 345.29364,341.3914 345.07052,342.32375 C 344.69382,343.89794 344.18026,343.79309 343.03379,343.18545 C 341.3597,342.29816 337.47193,339.89534 337.47193,339.89534 L 335.6702,341.30539 z"
|
||||
style="fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.19999981;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path13512" />
|
||||
<path
|
||||
d="M 331.30431,342.07093 C 331.30431,342.07093 330.11806,346.30263 327.71808,349.18236 C 325.0963,352.32825 323.72088,352.95998 321.93524,352.55763 C 320.62695,352.26283 319.55648,348.98933 320.31372,347.61777 C 321.07098,346.2462 322.56371,346.09833 323.14977,346.85701 C 324.13927,348.13798 324.56457,347.83163 325.36073,346.80705 C 326.52327,345.31095 329.08265,341.5244 329.08265,341.5244 L 331.30431,342.07093 z"
|
||||
style="fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.19999981;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path13514" />
|
||||
<path
|
||||
d="M 342.09377,341.93207 C 342.09356,343.18498 338.14081,344.20131 333.25879,344.20372 C 328.37677,344.20612 324.40884,343.1937 324.38988,341.9408 C 324.37092,340.6879 328.30809,339.66759 333.19003,339.66027 C 338.07197,339.65294 342.05537,340.66136 342.0935,341.91423"
|
||||
transform="matrix(0.9862139,-0.1654759,0.1654759,0.9862139,-51.909075,58.055679)"
|
||||
style="opacity:1;fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:2.19999981;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path13516" />
|
||||
</g>
|
||||
<path
|
||||
d="M 274.43122,81.169335 C 274.43122,81.169335 274.73538,82.446763 275.46533,81.777634 C 276.1953,81.108507 286.23221,77.154565 300.40557,77.154565 C 314.57892,77.154565 323.88588,81.047677 324.43335,81.290995 C 324.98082,81.534317 325.22414,81.838463 325.71078,81.290995 C 326.19742,80.743525 325.22414,79.89191 325.22414,79.89191 C 325.22414,79.89191 315.3697,75.694651 299.97976,75.75548 C 284.5898,75.816309 274.61371,80.19606 274.61371,80.19606 C 274.61371,80.19606 273.94458,80.682696 274.43122,81.169335 z"
|
||||
style="fill:#cca715;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.32597154px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
id="path27095" />
|
||||
<path
|
||||
d="M 292.40382,87.064808 C 292.40382,87.064808 292.85594,85.807761 293.64563,85.565832 C 294.27525,85.372936 295.26952,85.99201 295.26952,85.99201 C 295.26952,85.99201 294.07181,85.881792 293.69706,86.09488 C 293.35852,86.287383 293.25619,86.859064 293.25619,86.859064 C 293.25619,86.859064 293.51336,86.403492 294.43185,86.447582 C 295.35033,86.491668 295.45322,86.491668 295.45322,86.491668 C 295.45322,86.491668 293.89546,86.609237 293.5354,87.05746 C 293.17536,87.505685 295.00499,87.711425 295.00499,87.711425 C 295.00499,87.711425 292.20542,87.726119 291.83803,87.557116 C 291.47064,87.388112 291.23552,86.814977 290.61094,86.991329 C 289.98635,87.167678 289.34708,87.726119 289.34708,87.726119 C 289.34708,87.726119 290.05984,86.528409 290.50806,86.521062 C 290.95629,86.513714 291.2208,86.491668 291.62494,86.675366 C 292.02908,86.859064 292.40382,87.064808 292.40382,87.064808 z"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path27097" />
|
||||
<path
|
||||
d="M 281.93545,89.332368 C 281.93545,89.332368 282.14733,88.013394 282.87867,87.629622 C 283.46176,87.323633 284.55336,87.748184 284.55336,87.748184 C 284.55336,87.748184 283.35592,87.861329 283.02705,88.140035 C 282.72994,88.391815 282.73508,88.972563 282.73508,88.972563 C 282.73508,88.972563 282.90358,88.477296 283.81438,88.350787 C 284.72519,88.224282 284.82629,88.205265 284.82629,88.205265 C 284.82629,88.205265 283.31712,88.60884 283.04616,89.115909 C 282.7752,89.622977 284.61133,89.486865 284.61133,89.486865 C 284.61133,89.486865 281.86276,90.018957 281.47045,89.920802 C 281.07814,89.822645 280.74108,89.302867 280.15989,89.591664 C 279.57869,89.880461 279.0537,90.547475 279.0537,90.547475 C 279.0537,90.547475 279.53271,89.238628 279.97184,89.148526 C 280.41098,89.058429 280.66686,88.987853 281.09799,89.093656 C 281.52913,89.199458 281.93545,89.332368 281.93545,89.332368 z"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path30014" />
|
||||
<path
|
||||
d="M 301.23277,86.600044 C 301.23277,86.600044 301.75696,85.371301 302.55933,85.17553 C 303.19908,85.019435 304.15581,85.695069 304.15581,85.695069 C 304.15581,85.695069 302.96649,85.515648 302.58004,85.706667 C 302.23092,85.879233 302.09563,86.444029 302.09563,86.444029 C 302.09563,86.444029 302.37876,86.004118 303.29317,86.101348 C 304.20755,86.198571 304.31026,86.204534 304.31026,86.204534 C 304.31026,86.204534 302.74829,86.231653 302.36289,86.658266 C 301.97748,87.084879 303.79212,87.396272 303.79212,87.396272 C 303.79212,87.396272 300.9964,87.24875 300.63942,87.058747 C 300.28243,86.868743 300.08089,86.282946 299.44716,86.422817 C 298.81341,86.562685 298.14286,87.083154 298.14286,87.083154 C 298.14286,87.083154 298.92381,85.928749 299.3717,85.94738 C 299.81959,85.966014 300.08495,85.959331 300.47777,86.166134 C 300.87059,86.372937 301.23277,86.600044 301.23277,86.600044 z"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path30016" />
|
||||
<path
|
||||
d="M 310.07237,87.599994 C 310.07237,87.599994 310.73635,86.44081 311.55609,86.340003 C 312.20967,86.259624 313.08103,87.042282 313.08103,87.042282 C 313.08103,87.042282 311.92077,86.725308 311.51466,86.86993 C 311.1478,87.00058 310.94753,87.545728 310.94753,87.545728 C 310.94753,87.545728 311.28007,87.141864 312.17686,87.345124 C 313.07367,87.548384 313.17497,87.566286 313.17497,87.566286 C 313.17497,87.566286 311.62052,87.410963 311.18797,87.789691 C 310.75541,88.168415 312.52131,88.689427 312.52131,88.689427 C 312.52131,88.689427 309.76191,88.216691 309.42953,87.986327 C 309.09716,87.755965 308.96535,87.150653 308.31963,87.215619 C 307.67388,87.280585 306.94719,87.719252 306.94719,87.719252 C 306.94719,87.719252 307.85751,86.663856 308.30017,86.734623 C 308.74282,86.805396 309.00714,86.82972 309.37316,87.080947 C 309.73915,87.332173 310.07237,87.599994 310.07237,87.599994 z"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path30018" />
|
||||
<path
|
||||
d="M 318.85007,89.16704 C 318.85007,89.16704 319.46855,88.284193 320.13465,88.263235 C 320.66574,88.246527 321.3086,88.939285 321.3086,88.939285 C 321.3086,88.939285 320.39948,88.599573 320.06254,88.686038 C 319.75817,88.764149 319.5573,89.187545 319.5573,89.187545 C 319.5573,89.187545 319.8541,88.887367 320.55986,89.116401 C 321.2656,89.345433 321.3457,89.36724 321.3457,89.36724 C 321.3457,89.36724 320.10797,89.128554 319.73262,89.401196 C 319.3573,89.673842 320.73817,90.221879 320.73817,90.221879 C 320.73817,90.221879 318.55542,89.639857 318.3052,89.430393 C 318.05498,89.22093 317.99342,88.724867 317.46977,88.729763 C 316.94612,88.734666 316.33001,89.033926 316.33001,89.033926 C 316.33001,89.033926 317.13884,88.252535 317.48937,88.341829 C 317.8399,88.431121 318.05051,88.470032 318.32622,88.698723 C 318.60191,88.927416 318.85007,89.16704 318.85007,89.16704 z"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path30020" />
|
||||
<path
|
||||
d="M 290.63881,81.076418 C 290.84972,82.123727 289.61775,83.254132 287.88776,83.600702 C 286.15777,83.94727 284.58544,83.378645 284.37664,82.33092 C 284.16575,81.283614 285.39771,80.153207 287.1277,79.806639 C 288.85768,79.46007 290.43002,80.028694 290.63881,81.076418 z"
|
||||
style="fill:#0f6545;fill-opacity:1;stroke:#000000;stroke-width:0.43534634;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path30022" />
|
||||
<path
|
||||
d="M 286.72035,80.905308 C 286.77121,81.159141 286.50376,81.426749 286.12301,81.503026 C 285.74225,81.579302 285.39237,81.435363 285.34152,81.181528 C 285.29067,80.927692 285.55811,80.660085 285.93886,80.583809 C 286.31962,80.507532 286.6695,80.651471 286.72035,80.905308 z"
|
||||
style="fill:#cecfc1;fill-opacity:1;stroke:none;stroke-width:1.20000005;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path30993" />
|
||||
<path
|
||||
d="M 315.08763,82.343575 C 314.76863,83.363165 313.14477,83.761416 311.46142,83.232901 C 309.77807,82.704385 308.67327,81.449417 308.9943,80.430464 C 309.31331,79.410874 310.93717,79.012622 312.62051,79.541141 C 314.30386,80.069655 315.40866,81.324622 315.08763,82.343575 z"
|
||||
style="fill:#0f6545;fill-opacity:1;stroke:#000000;stroke-width:0.43534634;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path32945" />
|
||||
<path
|
||||
d="M 311.73482,80.308306 C 311.65727,80.555298 311.29407,80.661225 310.92358,80.544904 C 310.55308,80.428583 310.31561,80.13406 310.39317,79.88707 C 310.47072,79.640079 310.83391,79.534149 311.2044,79.650471 C 311.57489,79.766792 311.81237,80.061315 311.73482,80.308306 z"
|
||||
style="fill:#cecfc1;fill-opacity:1;stroke:none;stroke-width:1.20000005;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path32947" />
|
||||
<rect
|
||||
width="6.3372135"
|
||||
height="3.1947937"
|
||||
x="296.62701"
|
||||
y="78.714584"
|
||||
style="fill:#1f2d86;fill-opacity:1;stroke:#000000;stroke-width:0.6193459;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect32949" />
|
||||
<path
|
||||
d="M 299.29806,79.395451 C 299.29806,79.540078 299.02842,79.657321 298.69578,79.657321 C 298.36313,79.657321 298.09347,79.540078 298.09347,79.395451 C 298.09347,79.250825 298.36313,79.133582 298.69578,79.133582 C 299.02842,79.133582 299.29806,79.250825 299.29806,79.395451 z"
|
||||
style="fill:#707c8b;fill-opacity:1;stroke:none;stroke-width:1.89999998;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path32951" />
|
||||
<path
|
||||
id="path33926"
|
||||
style="fill:#9f1209;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.32597154px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 278.71523,81.909386 L 279.76271,84.999433 L 277.82488,86.046907 C 277.82488,86.046907 276.93453,86.67539 276.04417,86.20403 C 275.15383,85.732663 274.62861,84.320925 275.10144,83.742464 C 276.03954,82.594806 278.71523,81.857012 278.71523,81.909386 z" />
|
||||
<path
|
||||
id="path34899"
|
||||
style="fill:#8f322f;fill-opacity:1;stroke:none;stroke-width:1.89999998;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 277.09164,84.10908 C 277.09199,84.629995 276.69327,85.05248 276.2013,85.05248 C 275.70932,85.05248 275.31058,84.629995 275.31094,84.10908 C 275.31058,83.588165 275.70932,83.165679 276.2013,83.165679 C 276.69327,83.165679 277.09199,83.588165 277.09164,84.10908 z" />
|
||||
<path
|
||||
id="path33928"
|
||||
style="fill:#e2a494;fill-opacity:1;stroke:none;stroke-width:1.89999998;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 276.24923,83.739995 C 276.27659,83.906353 276.23773,84.07067 276.14729,84.170931 C 276.05684,84.27119 275.92861,84.292125 275.81098,84.225841 C 275.69334,84.159549 275.60423,84.016127 275.57727,83.849702 C 275.54991,83.683344 275.58876,83.519027 275.67921,83.418766 C 275.76965,83.318507 275.89788,83.297572 276.01552,83.363858 C 276.13315,83.430149 276.22226,83.573571 276.24923,83.739995 z" />
|
||||
<path
|
||||
id="path34906"
|
||||
style="fill:#9f1209;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.32597154px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 321.17493,82.311607 L 320.13451,85.063696 L 322.60132,86.355838 C 322.60132,86.355838 323.69208,86.842487 324.38011,86.23837 C 324.96833,85.721882 325.10169,84.526702 324.63182,83.922586 C 324.1869,83.350541 321.14137,82.294826 321.17493,82.311607 z" />
|
||||
<path
|
||||
id="path34910"
|
||||
style="fill:#aa675d;fill-opacity:1;stroke:none;stroke-width:1.89999998;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 324.12839,84.518316 C 324.12839,84.856596 323.77527,85.130822 323.33968,85.130822 C 322.90409,85.130822 322.55098,84.856596 322.55098,84.518316 C 322.55098,84.180034 322.90409,83.905808 323.33968,83.905808 C 323.77527,83.905808 324.12839,84.180034 324.12839,84.518316 L 324.12839,84.518316 z" />
|
||||
<path
|
||||
id="path34908"
|
||||
style="fill:#e2a494;fill-opacity:1;stroke:none;stroke-width:1.89999998;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 323.37323,84.426016 C 323.37342,84.58804 323.30309,84.737852 323.18879,84.81893 C 323.07449,84.900005 322.93362,84.900005 322.81931,84.81893 C 322.70502,84.737852 322.63469,84.58804 322.63487,84.426016 C 322.63469,84.263993 322.70502,84.114182 322.81931,84.033104 C 322.93362,83.952028 323.07449,83.952028 323.18879,84.033104 C 323.30309,84.114182 323.37342,84.263993 323.37323,84.426016 z" />
|
||||
<g
|
||||
transform="matrix(0.3259716,0,0,0.3259716,177.52929,-39.537736)"
|
||||
id="g34927">
|
||||
<path
|
||||
d="M 392.10368,363.60739 C 392.10439,364.32888 391.49159,364.91412 390.73541,364.91412 C 389.97923,364.91412 389.36643,364.32888 389.36714,363.60739 C 389.36643,362.8859 389.97923,362.30066 390.73541,362.30066 C 391.49159,362.30066 392.10439,362.8859 392.10368,363.60739 z"
|
||||
style="opacity:1;fill:#f5d8bc;fill-opacity:1;stroke:none;stroke-width:1.89999998;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path34917" />
|
||||
<path
|
||||
d="M 392.10368,363.60739 C 392.10439,364.32888 391.49159,364.91412 390.73541,364.91412 C 389.97923,364.91412 389.36643,364.32888 389.36714,363.60739 C 389.36643,362.8859 389.97923,362.30066 390.73541,362.30066 C 391.49159,362.30066 392.10439,362.8859 392.10368,363.60739 z"
|
||||
transform="translate(8.2723912,0.4769997)"
|
||||
style="opacity:1;fill:#f5d8bc;fill-opacity:1;stroke:none;stroke-width:1.89999998;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path34919" />
|
||||
<path
|
||||
d="M 392.10368,363.60739 C 392.10439,364.32888 391.49159,364.91412 390.73541,364.91412 C 389.97923,364.91412 389.36643,364.32888 389.36714,363.60739 C 389.36643,362.8859 389.97923,362.30066 390.73541,362.30066 C 391.49159,362.30066 392.10439,362.8859 392.10368,363.60739 z"
|
||||
transform="matrix(1.2568807,0,0,1.2568807,-96.644174,-89.713181)"
|
||||
style="opacity:1;fill:#f5d8bc;fill-opacity:1;stroke:none;stroke-width:1.89999998;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path34921" />
|
||||
<path
|
||||
d="M 392.10368,363.60739 C 392.10439,364.32888 391.49159,364.91412 390.73541,364.91412 C 389.97923,364.91412 389.36643,364.32888 389.36714,363.60739 C 389.36643,362.8859 389.97923,362.30066 390.73541,362.30066 C 391.49159,362.30066 392.10439,362.8859 392.10368,363.60739 z"
|
||||
transform="translate(8.0715441,9.0883177)"
|
||||
style="opacity:1;fill:#f5d8bc;fill-opacity:1;stroke:none;stroke-width:1.89999998;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path34923" />
|
||||
<path
|
||||
d="M 392.10368,363.60739 C 392.10439,364.32888 391.49159,364.91412 390.73541,364.91412 C 389.97923,364.91412 389.36643,364.32888 389.36714,363.60739 C 389.36643,362.8859 389.97923,362.30066 390.73541,362.30066 C 391.49159,362.30066 392.10439,362.8859 392.10368,363.60739 z"
|
||||
transform="translate(8.7873223e-2,8.0589765)"
|
||||
style="opacity:1;fill:#f5d8bc;fill-opacity:1;stroke:none;stroke-width:1.89999998;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path34925" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.3175682,-7.3538389e-2,7.3538389e-2,0.3175682,141.0716,-7.1884386)"
|
||||
id="g34936">
|
||||
<path
|
||||
d="M 392.10368,363.60739 C 392.10439,364.32888 391.49159,364.91412 390.73541,364.91412 C 389.97923,364.91412 389.36643,364.32888 389.36714,363.60739 C 389.36643,362.8859 389.97923,362.30066 390.73541,362.30066 C 391.49159,362.30066 392.10439,362.8859 392.10368,363.60739 z"
|
||||
style="opacity:1;fill:#f5d8bc;fill-opacity:1;stroke:none;stroke-width:1.89999998;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path34938" />
|
||||
<path
|
||||
d="M 392.10368,363.60739 C 392.10439,364.32888 391.49159,364.91412 390.73541,364.91412 C 389.97923,364.91412 389.36643,364.32888 389.36714,363.60739 C 389.36643,362.8859 389.97923,362.30066 390.73541,362.30066 C 391.49159,362.30066 392.10439,362.8859 392.10368,363.60739 z"
|
||||
transform="translate(8.2723912,0.4769997)"
|
||||
style="opacity:1;fill:#f5d8bc;fill-opacity:1;stroke:none;stroke-width:1.89999998;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path34940" />
|
||||
<path
|
||||
d="M 392.10368,363.60739 C 392.10439,364.32888 391.49159,364.91412 390.73541,364.91412 C 389.97923,364.91412 389.36643,364.32888 389.36714,363.60739 C 389.36643,362.8859 389.97923,362.30066 390.73541,362.30066 C 391.49159,362.30066 392.10439,362.8859 392.10368,363.60739 z"
|
||||
transform="matrix(1.2568807,0,0,1.2568807,-96.644174,-89.713181)"
|
||||
style="opacity:1;fill:#f5d8bc;fill-opacity:1;stroke:none;stroke-width:1.89999998;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path34942" />
|
||||
<path
|
||||
d="M 392.10368,363.60739 C 392.10439,364.32888 391.49159,364.91412 390.73541,364.91412 C 389.97923,364.91412 389.36643,364.32888 389.36714,363.60739 C 389.36643,362.8859 389.97923,362.30066 390.73541,362.30066 C 391.49159,362.30066 392.10439,362.8859 392.10368,363.60739 z"
|
||||
transform="translate(8.0715441,9.0883177)"
|
||||
style="opacity:1;fill:#f5d8bc;fill-opacity:1;stroke:none;stroke-width:1.89999998;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path34944" />
|
||||
<path
|
||||
d="M 392.10368,363.60739 C 392.10439,364.32888 391.49159,364.91412 390.73541,364.91412 C 389.97923,364.91412 389.36643,364.32888 389.36714,363.60739 C 389.36643,362.8859 389.97923,362.30066 390.73541,362.30066 C 391.49159,362.30066 392.10439,362.8859 392.10368,363.60739 z"
|
||||
transform="translate(8.7873223e-2,8.0589765)"
|
||||
style="opacity:1;fill:#f5d8bc;fill-opacity:1;stroke:none;stroke-width:1.89999998;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path34946" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.3038704,-0.1179841,0.1179841,0.3038704,118.91443,17.673176)"
|
||||
id="g34948">
|
||||
<path
|
||||
d="M 392.10368,363.60739 C 392.10439,364.32888 391.49159,364.91412 390.73541,364.91412 C 389.97923,364.91412 389.36643,364.32888 389.36714,363.60739 C 389.36643,362.8859 389.97923,362.30066 390.73541,362.30066 C 391.49159,362.30066 392.10439,362.8859 392.10368,363.60739 z"
|
||||
style="opacity:1;fill:#f5d8bc;fill-opacity:1;stroke:none;stroke-width:1.89999998;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path34950" />
|
||||
<path
|
||||
d="M 392.10368,363.60739 C 392.10439,364.32888 391.49159,364.91412 390.73541,364.91412 C 389.97923,364.91412 389.36643,364.32888 389.36714,363.60739 C 389.36643,362.8859 389.97923,362.30066 390.73541,362.30066 C 391.49159,362.30066 392.10439,362.8859 392.10368,363.60739 z"
|
||||
transform="translate(8.2723912,0.4769997)"
|
||||
style="opacity:1;fill:#f5d8bc;fill-opacity:1;stroke:none;stroke-width:1.89999998;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path34952" />
|
||||
<path
|
||||
d="M 392.10368,363.60739 C 392.10439,364.32888 391.49159,364.91412 390.73541,364.91412 C 389.97923,364.91412 389.36643,364.32888 389.36714,363.60739 C 389.36643,362.8859 389.97923,362.30066 390.73541,362.30066 C 391.49159,362.30066 392.10439,362.8859 392.10368,363.60739 z"
|
||||
transform="matrix(1.2568807,0,0,1.2568807,-96.644174,-89.713181)"
|
||||
style="opacity:1;fill:#f5d8bc;fill-opacity:1;stroke:none;stroke-width:1.89999998;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path34954" />
|
||||
<path
|
||||
d="M 392.10368,363.60739 C 392.10439,364.32888 391.49159,364.91412 390.73541,364.91412 C 389.97923,364.91412 389.36643,364.32888 389.36714,363.60739 C 389.36643,362.8859 389.97923,362.30066 390.73541,362.30066 C 391.49159,362.30066 392.10439,362.8859 392.10368,363.60739 z"
|
||||
transform="translate(8.0715441,9.0883177)"
|
||||
style="opacity:1;fill:#f5d8bc;fill-opacity:1;stroke:none;stroke-width:1.89999998;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path34956" />
|
||||
<path
|
||||
d="M 392.10368,363.60739 C 392.10439,364.32888 391.49159,364.91412 390.73541,364.91412 C 389.97923,364.91412 389.36643,364.32888 389.36714,363.60739 C 389.36643,362.8859 389.97923,362.30066 390.73541,362.30066 C 391.49159,362.30066 392.10439,362.8859 392.10368,363.60739 z"
|
||||
transform="translate(8.7873223e-2,8.0589765)"
|
||||
style="opacity:1;fill:#f5d8bc;fill-opacity:1;stroke:none;stroke-width:1.89999998;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path34958" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.3411174,8.3559122e-2,-8.3559122e-2,0.3411174,213.6815,-76.132325)"
|
||||
id="g34960">
|
||||
<path
|
||||
d="M 392.10368,363.60739 C 392.10439,364.32888 391.49159,364.91412 390.73541,364.91412 C 389.97923,364.91412 389.36643,364.32888 389.36714,363.60739 C 389.36643,362.8859 389.97923,362.30066 390.73541,362.30066 C 391.49159,362.30066 392.10439,362.8859 392.10368,363.60739 z"
|
||||
style="opacity:1;fill:#f5d8bc;fill-opacity:1;stroke:none;stroke-width:1.89999998;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path34962" />
|
||||
<path
|
||||
d="M 392.10368,363.60739 C 392.10439,364.32888 391.49159,364.91412 390.73541,364.91412 C 389.97923,364.91412 389.36643,364.32888 389.36714,363.60739 C 389.36643,362.8859 389.97923,362.30066 390.73541,362.30066 C 391.49159,362.30066 392.10439,362.8859 392.10368,363.60739 z"
|
||||
transform="translate(8.2723912,0.4769997)"
|
||||
style="opacity:1;fill:#f5d8bc;fill-opacity:1;stroke:none;stroke-width:1.89999998;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path34964" />
|
||||
<path
|
||||
d="M 392.10368,363.60739 C 392.10439,364.32888 391.49159,364.91412 390.73541,364.91412 C 389.97923,364.91412 389.36643,364.32888 389.36714,363.60739 C 389.36643,362.8859 389.97923,362.30066 390.73541,362.30066 C 391.49159,362.30066 392.10439,362.8859 392.10368,363.60739 z"
|
||||
transform="matrix(1.2568807,0,0,1.2568807,-96.644174,-89.713181)"
|
||||
style="opacity:1;fill:#f5d8bc;fill-opacity:1;stroke:none;stroke-width:1.89999998;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path34966" />
|
||||
<path
|
||||
d="M 392.10368,363.60739 C 392.10439,364.32888 391.49159,364.91412 390.73541,364.91412 C 389.97923,364.91412 389.36643,364.32888 389.36714,363.60739 C 389.36643,362.8859 389.97923,362.30066 390.73541,362.30066 C 391.49159,362.30066 392.10439,362.8859 392.10368,363.60739 z"
|
||||
transform="translate(8.0715441,9.0883177)"
|
||||
style="opacity:1;fill:#f5d8bc;fill-opacity:1;stroke:none;stroke-width:1.89999998;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path34968" />
|
||||
<path
|
||||
d="M 392.10368,363.60739 C 392.10439,364.32888 391.49159,364.91412 390.73541,364.91412 C 389.97923,364.91412 389.36643,364.32888 389.36714,363.60739 C 389.36643,362.8859 389.97923,362.30066 390.73541,362.30066 C 391.49159,362.30066 392.10439,362.8859 392.10368,363.60739 z"
|
||||
transform="translate(8.7873223e-2,8.0589765)"
|
||||
style="opacity:1;fill:#f5d8bc;fill-opacity:1;stroke:none;stroke-width:1.89999998;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path34970" />
|
||||
</g>
|
||||
<path
|
||||
d="M 322.48342,55.581939 C 322.48342,55.581939 321.20136,56.783881 319.6789,56.783881 C 318.15644,56.783881 317.27502,56.142844 316.79424,55.822329 C 316.31347,55.501812 316.95451,54.540257 316.95451,54.540257"
|
||||
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.74973458;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path40792" />
|
||||
<path
|
||||
d="M 295.55995,57.985822 C 295.55995,57.985822 293.23619,57.585178 292.27464,57.264658 C 291.31309,56.944141 291.55347,56.303104 290.43167,56.383236 C 289.30984,56.463362 288.18803,57.264658 288.42841,58.38647 C 288.66881,59.508282 289.47011,59.668541 290.27139,59.428152 C 291.0727,59.187763 290.83232,57.825565 289.79062,57.905691 C 288.74894,57.985822 289.63037,58.867246 289.63037,58.867246"
|
||||
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.68454021;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path42739" />
|
||||
<path
|
||||
d="M 279.53406,56.222975 C 279.53406,56.222975 280.17509,57.184529 281.85782,57.024269 C 283.54053,56.864011 284.18157,55.982587 284.26169,55.581939 C 284.34182,55.181294 284.26169,54.460127 283.94117,54.139608 C 283.62065,53.81909 282.49885,53.658833 282.49885,53.658833"
|
||||
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.65194309;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path43710" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 94 KiB |
5
build/default/data/svg/GB-SCT.svg
Normal file
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="1000" height="600" viewBox="0 0 5 3">
|
||||
<rect width="5" height="3" fill="#0065BD"/>
|
||||
<path d="M 0,0 L 5,3 M 0,3 L 5,0" stroke="#fff" stroke-width=".6"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 226 B |
9
build/default/data/svg/GB-WLS.svg
Normal file
|
After Width: | Height: | Size: 59 KiB |
10
build/default/data/svg/GB.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 30" width="1200" height="600">
|
||||
<clipPath id="t">
|
||||
<path d="M30,15 h30 v15 z v15 h-30 z h-30 v-15 z v-15 h30 z"/>
|
||||
</clipPath>
|
||||
<path d="M0,0 v30 h60 v-30 z" fill="#00247d"/>
|
||||
<path d="M0,0 L60,30 M60,0 L0,30" stroke="#fff" stroke-width="6"/>
|
||||
<path d="M0,0 L60,30 M60,0 L0,30" clip-path="url(#t)" stroke="#cf142b" stroke-width="4"/>
|
||||
<path d="M30,0 v30 M0,15 h60" stroke="#fff" stroke-width="10"/>
|
||||
<path d="M30,0 v30 M0,15 h60" stroke="#cf142b" stroke-width="6"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 522 B |
28
build/default/data/svg/GD.svg
Normal file
@@ -0,0 +1,28 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg version="1.0" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="600" height="360" viewBox="0 0 500 300">
|
||||
<defs>
|
||||
<g id="s">
|
||||
<g id="c">
|
||||
<path id="t" d="M 0,-1 v 1 h .5" transform="rotate(18 0,-1)" fill="#fcd116"/>
|
||||
<use xlink:href="#t" transform="scale(-1,1)"/>
|
||||
</g>
|
||||
<use xlink:href="#c" transform="rotate(72)"/>
|
||||
<use xlink:href="#c" transform="rotate(144)"/>
|
||||
<use xlink:href="#c" transform="rotate(216)"/>
|
||||
<use xlink:href="#c" transform="rotate(288)"/>
|
||||
</g>
|
||||
</defs>
|
||||
<rect width="500" height="300" fill="#ce1126"/>
|
||||
<rect x="42" y="42" width="416" height="216" fill="#007a5e"/>
|
||||
<path d="M 42,42 h 416 l -416,216 h 416 z" fill="#fcd116"/>
|
||||
<circle cx="250" cy="150" r="36" fill="#ce1126"/>
|
||||
<use xlink:href="#s" transform="translate(250,150) scale(33)"/>
|
||||
<use xlink:href="#s2" x="-100"/>
|
||||
<use id="s2" xlink:href="#s" transform="translate(250,21) scale(19.5)"/>
|
||||
<use xlink:href="#s2" x="100"/>
|
||||
<use xlink:href="#s2" x="-100" y="258"/>
|
||||
<use xlink:href="#s2" y="258"/>
|
||||
<use xlink:href="#s2" x="100" y="258"/>
|
||||
<path d="M 67.749,150.41 c 4.504,8.39 13.265,17.52 20.916,20.73 c .123,-8.52 -2.9,-19.44 -7.034,-28.14 l -13.882,7.41 z" fill="#ce1126"/>
|
||||
<path d="M 60.112,121.63 c 6.529,13.61 -16.933,46.08 22.156,53.69 c -4.822,-6.58 -7.931,-17.44 -6.755,-26.16 c 8.201,3.12 16.83,12.25 20.317,19.23 c 10.23,-37.15 -26.24,-34.89 -35.718,-46.76 z" fill="#fcd116"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
12
build/default/data/svg/GE.svg
Normal file
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="900" height="600" viewBox="0 0 300 200">
|
||||
<defs>
|
||||
<g id="smallcross"><clipPath id="vclip"><path d="M-109,104 a104,104 0 0,0 0,-208 H109 a104,104 0 0,0 0,208 z"/></clipPath><path id="varm" d="M-55,74 a55,55 0 0,1 110,0 V-74 a55,55 0 0,1 -110,0 z" clip-path="url(#vclip)"/>
|
||||
<use xlink:href="#varm" transform="rotate(90)"/></g>
|
||||
</defs>
|
||||
<rect width="300" height="200" style="fill:#fff"/>
|
||||
<path d="m 130,0 0,80 -130,0 L 0,120 l 130,0 0,80 40,0 0,-80 130,0 0,-40 -130,0 L 170,0 130,0 z" style="fill:#ff0000" />
|
||||
<use xlink:href="#smallcross" transform="translate(64.45,39.45)" fill="#f00"/>
|
||||
<use xlink:href="#smallcross" transform="translate(235.55,160.55)" fill="#f00"/>
|
||||
<use xlink:href="#smallcross" transform="translate(235.55,39.45)" fill="#f00"/>
|
||||
<use xlink:href="#smallcross" transform="translate(64.45,160.55)" fill="#f00"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 958 B |
22
build/default/data/svg/GF.svg
Normal file
@@ -0,0 +1,22 @@
|
||||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
|
||||
<svg
|
||||
width="900"
|
||||
height="600"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
id="Flag of French Guiana">
|
||||
|
||||
<!--
|
||||
This file is in the public domain
|
||||
-->
|
||||
|
||||
<polygon fill="#078930" points="0,0 900,0 900,600" />
|
||||
<polygon fill="#FCDD09" points="0,0 900,600 0,600" />
|
||||
<polygon fill="#DA121A" id="pentagram" transform="translate(450,300) scale(100) rotate(0)" points="0,-1
|
||||
0.587785252292473129168705954639072768597652,0.809016994374947424102293417182819058860155
|
||||
-0.951056516295153572116439333379382143405699,-0.309016994374947424102293417182819058860155
|
||||
0.951056516295153572116439333379382143405699,-0.309016994374947424102293417182819058860155
|
||||
-0.587785252292473129168705954639072768597652,0.809016994374947424102293417182819058860155" />
|
||||
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 903 B |
10
build/default/data/svg/GG.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE svg>
|
||||
<svg width="900" height="600" viewBox="-18 -12 36 24" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<rect x="-18" y="-12" width="36" height="24" fill="white"/>
|
||||
<path d="M 0,-12 v 24 M -18,0 h 36" stroke="#e8112d" stroke-width="6" fill="none"/>
|
||||
<path id="arm" d="M -9,2 l 1,-1 h 9 v -2 h -9 l -1,-1 z" fill="#f9dd16"/>
|
||||
<use xlink:href="#arm" transform="rotate(90)"/>
|
||||
<use xlink:href="#arm" transform="rotate(-90)"/>
|
||||
<use xlink:href="#arm" transform="rotate(180)"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 576 B |
7
build/default/data/svg/GH.svg
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="450" height="300">
|
||||
<rect width="450" height="300" fill="#006b3f"/>
|
||||
<rect width="450" height="200" fill="#fcd116"/>
|
||||
<rect width="450" height="100" fill="#ce1126"/>
|
||||
<path d="M225,100 257.492,200 172.427,138.197H277.573L192.508,200z" fill="#000"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 338 B |
55
build/default/data/svg/GI.svg
Normal file
@@ -0,0 +1,55 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1000" height="500" viewBox="0 0 512 256">
|
||||
<rect fill="#da000c" width="512" height="256"/>
|
||||
<rect fill="#fff" width="512" height="171.5"/>
|
||||
<g stroke="#000">
|
||||
<g id="castle_half" fill="#da000c" stroke-linecap="square">
|
||||
<rect fill="#000" stroke="none" width="64" height="43.992859" x="196.57106" y="116.30338"/>
|
||||
<path d="M229.81889,153.86465H190.75L182.08989,159.56444V165.60411H229.81889"/>
|
||||
<path d="M213.46875,128.59375C219.09357,128.59375 223.6875,133.28303 223.6875,139.0625V153.84375H231.03125V97.84375H190.75V153.84375H203.25V139.0625C203.24999,133.50878 207.76491,128.59375 213.46875,128.59375z"/>
|
||||
<rect fill="#000" stroke="none" width="18.523308" height="33.9594" x="204.5282" y="59.961655"/>
|
||||
<path d="M223,88.65625H206.79108V82.90625H194.90625V88.65625H186.84375V82.90625H182.03125V93.34375H223M186.84375,93.306038H221.81414V97.843752H186.84375z"/>
|
||||
<path d="M200.71875,47.625V82.90625H206.79108V73.21875C206.79108,69.589448 209.35314,66.619386 212.9375,66.4375C213.05312,66.431633 213.16418,66.4375 213.28125,66.4375C217.02763,66.437497 220.0625,69.472374 220.0625,73.21875V82.90625H225.84375V47.625z"/>
|
||||
<path d="M198.53125,42.84375V47.625H227.78125V42.84375z"/>
|
||||
<path d="M194.78125,33.6875V42.84375H229.875V33.6875H224.46875V38.34375H217.9375V33.6875H207.96875V38.34375H201.4375V33.6875z"/>
|
||||
<path d="M182.08989,159.56444H230"/>
|
||||
<path d="M261,156.8125H228.5625L218.78125,161.53125V168.5625H261"/>
|
||||
<path stroke-linecap="butt" d="M218.771,161.51923H262"/>
|
||||
</g>
|
||||
<use xlink:href="#castle_half" transform="matrix(-1,0,0,1,512,0)"/>
|
||||
<g fill="#f8d80e">
|
||||
<g stroke-linecap="round">
|
||||
<path stroke-width="0.768" d="m273.297,150.031c-2.65428,0.88339-5.05329,2.369-7.46888,3.75283-3.1004,1.83163-6.10683,3.82731-8.90451,6.09885-0.98462,0.64912-1.92929,1.36065-2.68911,2.27332-1.02583,0.8776-2.06486,2.05478-1.86885,3.51297,0.0518,0.64315,0.87359-0.75523,1.41401-0.82297,0.94235-0.54095,2.0838-0.7154,3.14219-0.4713,1.27117-1.33857,2.90994-2.23563,4.3249-3.40609,3.00467-2.24222,6.23664-4.16769,9.52502-5.96082,1.1481-0.58838,2.30104-1.18568,3.52508-1.60184-0.33328-1.12498-0.66657-2.24997-0.99985-3.37495z"/>
|
||||
<path d="M260.40041,157.3913V161.3032"/>
|
||||
<path d="M262.81691,155.68544V159.56821"/>
|
||||
<path d="M265.23339,154.17984V158.03797"/>
|
||||
<path d="M267.64986,152.69367V156.67498"/>
|
||||
<path stroke-width="0.768" d="m238.891,150.156c-0.39583,1.10417-0.79167,2.20833-1.1875,3.3125,5.53699,2.10036,10.8089,4.87874,15.7978,8.06036,1.69067,1.15075,3.46718,2.26632,4.79593,3.84589,0.2927,0.81098-0.51392,1.48903-1.31413,1.24403-0.73225-0.24871-1.45351-0.53169-2.22629-0.004-1.10637,0.50311-2.10598,2.1416-0.42575,2.69112,2.31528,1.55489,6.08158,0.87915,7.19454-1.84522,0.58146-1.40134,0.61878-3.19523-0.50753-4.34456-2.06261-2.36404-4.79728-4.00804-7.4215-5.67182-4.68917-2.82023-9.57283-5.37389-14.7055-7.28801z"/>
|
||||
<path d="M254.04985,158.03521 253.73747,161.37469"/>
|
||||
<path d="M256.8319,159.73914 255.96991,163.00882"/>
|
||||
<path d="M259.80442,162.01152 257.99552,164.54884"/>
|
||||
<path d="M260.71528,168.18078 258.10512,166.78032"/>
|
||||
<path d="M261.52792,165.42898 258.53251,165.70943"/>
|
||||
<path d="M257.66497,169.7646 257.45987,167.13228"/>
|
||||
<path d="M256.56809,166.75559 254.09509,168.57779"/>
|
||||
<path d="M244.67669,152.9368V156.05184"/>
|
||||
<path d="M250.96338,156.24386V159.77805"/>
|
||||
<path d="M247.82004,154.59318V157.9121"/>
|
||||
</g>
|
||||
<path d="M235.78125,227.5625V235.59375H240.8125V231.5625H247.65625V235.59375H253.0625V227.5625zM235.78125,238.625V246.6875H253.0625V238.625H247.65625V242.65625H240.8125V238.625z"/>
|
||||
<rect width="4.9902272" height="58.115017" x="253.05186" y="193.65144"/>
|
||||
<rect width="4.9902272" height="50.060368" x="253.05186" y="198.6788"/>
|
||||
<path stroke-width="1.024" d="M255.54688,179.40625 266.17188,185.59375 255.54688,191.75 244.92188,185.59375zM241.32813,183.375H238.54688V187.8125H241.32813L255.54688,196.0625 269.76563,187.8125H272.54688V183.375H269.76563L255.54688,175.125z"/>
|
||||
<path stroke-width="1.024" d="m255.344,164.281c-2.41872,0.33922-4.22593,2.73018-4.09375,5.13412,0.009,3.73773-0.0185,7.47634,0.0141,11.2135,0.12824,2.40829,2.23219,4.56615,4.6744,4.58823,1.98493,0.18804,3.97892-0.97232,4.81154-2.77961-0.57292-0.34375-1.14583-0.6875-1.71875-1.03125-0.44378,1.18388-1.72345,1.91762-2.96875,1.78125-1.63507,0.046-2.95917-1.54398-2.8125-3.13412,0.01-3.71344-0.0192-7.42801,0.0146-11.1407,0.0899-1.5151,1.53488-2.75487,3.04795-2.60016,0.6265-0.17973,1.48748,0.67715,1.8747-0.0623,0.5838-0.82944-0.41442-1.47737-0.96875-1.9374-0.61348-0.0841-1.25418-0.008-1.8747-0.0316zm5.78125,3.90625c-0.39638,0.7459-1.21626,1.18923-1.875,1.58041v7.51334c0.66667,0.38542,1.33333,0.77083,2,1.15625-0.008-3.20377,0.0153-6.40813-0.0117-9.61152-0.0315-0.19722-0.008-0.4984-0.11328-0.63848z"/>
|
||||
</g>
|
||||
<g fill="#da000c">
|
||||
<rect fill="#000" stroke="none" width="29.328571" height="53.254513" x="240.80301" y="38.351128"/>
|
||||
<path d="M238.75,38.375V82.9375H248.0625V69.71875C248.0625,66.669822 250.01501,62.4375 256,62.4375C261.98499,62.4375 263.9375,66.669822 263.9375,69.71875V82.9375H273.25V38.375zM254.5625,43.375H257.4375V58.625H254.5625zM246.3125,46.375H249.21875V57.53125H246.3125zM262.78125,46.375H265.6875V57.53125H262.78125z"/>
|
||||
<path d="M235.59375,31.96875V38.3125H276.40625V31.96875z"/>
|
||||
<path d="M231.75,24.59375V31.96875H280.25V24.59375H274.15625V28.65625H267.28125V24.59375H259.4375V28.65625H252.5625V24.59375H244.71875V28.65625H237.84375V24.59375z"/>
|
||||
<path d="M222.75,97.84375V102.4375H289.25V97.84375z"/>
|
||||
<path d="M220.03125,82.90625V97.84375H291.96875V82.90625H285.15625V88.65625H276.09375V82.90625H263.9375V88.65625H248.0625V82.90625H235.90625V88.65625H226.84375V82.90625z"/>
|
||||
<path stroke-linejoin="round" d="M228.6875,102.4375V156.78125H241.53125V136.4375C241.53125,126.85477 247.92755,122.34375 256,122.34375C263.75894,122.34375 270.46875,126.85477 270.46875,136.4375V156.78125H283.3125V102.4375z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.8 KiB |
5
build/default/data/svg/GL.svg
Normal file
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="900" height="600" viewBox="0 0 18 12">
|
||||
<rect width="18" height="12" fill="#fff"/>
|
||||
<path fill="#d00c33" d="m0,6h18v6H0zm3,0a4,4 0 0,0 8,0a4,4 0 0,0-8,0"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 247 B |
7
build/default/data/svg/GM.svg
Normal file
@@ -0,0 +1,7 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="600" height="400" viewBox="0 0 27 18">
|
||||
<title>Flag of The Gambia</title>
|
||||
<path d="m0,0h27v18H0" fill="#3A7728"/>
|
||||
<path d="m0,0h27v11H0" fill="#0C1C8C"/>
|
||||
<path d="m0,0h27v6H0" fill="#CE1126"/>
|
||||
<path d="m0,6.5h27m0,5H0" stroke="#FFF"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 288 B |